/* style/promotions-first-deposit-bonus.css */
.page-promotions-first-deposit-bonus {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0A1931; /* Primary dark background */
  line-height: 1.6;
}

.page-promotions-first-deposit-bonus__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-promotions-first-deposit-bonus__hero-section {
  background: linear-gradient(135deg, #0A1931 0%, #1a2a47 100%); /* Dark blue gradient */
  padding: 80px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promotions-first-deposit-bonus__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Auxiliary gold for highlight */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-first-deposit-bonus__hero-subtitle {
  font-size: 1.3em;
  color: #C0C0C0;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-promotions-first-deposit-bonus__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 30px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.page-promotions-first-deposit-bonus__section {
  padding: 60px 0;
  background-color: #122340; /* Slightly lighter dark blue for sections */
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-promotions-first-deposit-bonus__section:nth-of-type(even) {
  background-color: #0A1931;
}

.page-promotions-first-deposit-bonus__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-promotions-first-deposit-bonus__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-promotions-first-deposit-bonus__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-promotions-first-deposit-bonus__image-content {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-promotions-first-deposit-bonus__list,
.page-promotions-first-deposit-bonus__step-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.page-promotions-first-deposit-bonus__list li,
.page-promotions-first-deposit-bonus__step-list li {
  background-color: #1a2a47;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  font-size: 1.1em;
  color: #E0E0E0;
  position: relative;
  padding-left: 60px;
}

.page-promotions-first-deposit-bonus__step-list li strong {
  color: #FFD700;
}

.page-promotions-first-deposit-bonus__step-list li::before {
  content: attr(data-step);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #FFD700;
  color: #0A1931;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1em;
}

.page-promotions-first-deposit-bonus__step-list li:nth-child(1)::before { content: '1'; }
.page-promotions-first-deposit-bonus__step-list li:nth-child(2)::before { content: '2'; }
.page-promotions-first-deposit-bonus__step-list li:nth-child(3)::before { content: '3'; }
.page-promotions-first-deposit-bonus__step-list li:nth-child(4)::before { content: '4'; }

.page-promotions-first-deposit-bonus__list li::before {
  content: '•';
  position: absolute;
  left: 25px;
  color: #FFD700;
  font-size: 1.5em;
  top: 15px;
}

.page-promotions-first-deposit-bonus__list a,
.page-promotions-first-deposit-bonus__step-list a {
  color: #FFD700;
  text-decoration: underline;
}

.page-promotions-first-deposit-bonus__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Auxiliary gold for CTA */
  color: #0A1931; /* Dark text on gold */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
  margin-top: 20px;
}

.page-promotions-first-deposit-bonus__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-promotions-first-deposit-bonus__cta-button--secondary {
  background-color: #0A1931;
  color: #FFD700;
  border: 2px solid #FFD700;
  box-shadow: none;
}

.page-promotions-first-deposit-bonus__cta-button--secondary:hover {
  background-color: #1a2a47;
  color: #FFD700;
  transform: translateY(-3px);
}

.page-promotions-first-deposit-bonus__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions-first-deposit-bonus__feature-item {
  background-color: #1a2a47;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-promotions-first-deposit-bonus__feature-item:hover {
  transform: translateY(-5px);
}

.page-promotions-first-deposit-bonus__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-promotions-first-deposit-bonus__feature-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-promotions-first-deposit-bonus__feature-description {
  font-size: 1em;
  color: #C0C0C0;
}

.page-promotions-first-deposit-bonus__accordion-item {
  margin-bottom: 15px;
  border: 1px solid #FFD700;
  border-radius: 8px;
  overflow: hidden;
}

.page-promotions-first-deposit-bonus__accordion-header {
  background-color: #FFD700;
  color: #0A1931;
  padding: 18px 25px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-promotions-first-deposit-bonus__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-promotions-first-deposit-bonus__accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-promotions-first-deposit-bonus__accordion-content {
  background-color: #1a2a47;
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-promotions-first-deposit-bonus__accordion-content p {
  padding: 15px 0;
  margin: 0;
  color: #E0E0E0;
}

.page-promotions-first-deposit-bonus__final-cta {
  background: linear-gradient(45deg, #0A1931, #1a2a47);
  padding: 80px 0;
  text-align: center;
}

.page-promotions-first-deposit-bonus__final-cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 25px;
}

.page-promotions-first-deposit-bonus__final-cta-text {
  font-size: 1.3em;
  color: #C0C0C0;
  max-width: 900px;
  margin: 0 auto 40px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-promotions-first-deposit-bonus__hero-title {
    font-size: 2.8em;
  }
  .page-promotions-first-deposit-bonus__hero-subtitle {
    font-size: 1.1em;
  }
  .page-promotions-first-deposit-bonus__section-title {
    font-size: 2em;
  }
  .page-promotions-first-deposit-bonus__feature-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-promotions-first-deposit-bonus__hero-section {
    padding: 60px 0 30px;
  }
  .page-promotions-first-deposit-bonus__hero-title {
    font-size: 2.2em;
  }
  .page-promotions-first-deposit-bonus__hero-subtitle {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-promotions-first-deposit-bonus__section {
    padding: 40px 0;
  }
  .page-promotions-first-deposit-bonus__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-promotions-first-deposit-bonus__text-content {
    font-size: 1em;
  }
  .page-promotions-first-deposit-bonus__cta-button {
    padding: 12px 25px;
    font-size: 1.1em;
  }
  .page-promotions-first-deposit-bonus__list li, .page-promotions-first-deposit-bonus__step-list li {
    padding-left: 50px;
    font-size: 1em;
  }
  .page-promotions-first-deposit-bonus__step-list li::before {
    left: 15px;
    width: 25px;
    height: 25px;
    font-size: 1em;
  }
  .page-promotions-first-deposit-bonus__feature-item {
    padding: 20px;
  }
  .page-promotions-first-deposit-bonus__feature-title {
    font-size: 1.3em;
  }
  .page-promotions-first-deposit-bonus__accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-promotions-first-deposit-bonus__accordion-content p {
    padding: 10px 0;
  }
  .page-promotions-first-deposit-bonus__final-cta-title {
    font-size: 2.2em;
  }
  .page-promotions-first-deposit-bonus__final-cta-text {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-promotions-first-deposit-bonus__hero-title {
    font-size: 1.8em;
  }
  .page-promotions-first-deposit-bonus__section-title {
    font-size: 1.5em;
  }
  .page-promotions-first-deposit-bonus__cta-button {
    font-size: 1em;
    padding: 10px 20px;
  }
  .page-promotions-first-deposit-bonus__final-cta-title {
    font-size: 1.8em;
  }
}