/* style/promotions-first-deposit-bonus.css */
.page-promotions-first-deposit-bonus {
  font-family: 'Arial', sans-serif;
  color: #E5E5D1; /* Light text for contrast on dark background */
  background-color: #1A1A2E; /* 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, #1A1A2E, #33334F);
  padding: 100px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promotions-first-deposit-bonus__hero-title {
  font-size: 3.2em;
  color: #E0B95B; /* Accent gold for titles */
  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: #E5E5D1;
  max-width: 800px;
  margin: 0 auto 40px;
}

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

.page-promotions-first-deposit-bonus__cta-button {
  display: inline-block;
  background-color: #E0B95B; /* Accent gold for buttons */
  color: #1A1A2E; /* Dark text on gold button */
  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;
  border: none;
  cursor: pointer;
}

.page-promotions-first-deposit-bonus__cta-button:hover {
  background-color: #FFD700; /* Lighter gold on hover */
  transform: translateY(-3px);
}

.page-promotions-first-deposit-bonus__cta-button--large {
  padding: 20px 40px;
  font-size: 1.5em;
}

.page-promotions-first-deposit-bonus__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(224, 185, 91, 0.2);
}

.page-promotions-first-deposit-bonus__section:last-of-type {
  border-bottom: none;
}

.page-promotions-first-deposit-bonus__section-title {
  font-size: 2.5em;
  color: #E0B95B;
  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: #E0B95B;
  border-radius: 2px;
}

.page-promotions-first-deposit-bonus__subsection-title {
  font-size: 1.8em;
  color: #E0B95B;
  margin-top: 40px;
  margin-bottom: 20px;
}

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

.page-promotions-first-deposit-bonus__list,
.page-promotions-first-deposit-bonus__numbered-list {
  list-style-type: none;
  padding: 0;
  margin: 20px 0;
}

.page-promotions-first-deposit-bonus__list li,
.page-promotions-first-deposit-bonus__numbered-list li {
  background-color: #2A2A3E;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-promotions-first-deposit-bonus__list li::before {
  content: '✔';
  color: #E0B95B;
  font-weight: bold;
  margin-right: 15px;
  font-size: 1.2em;
}

.page-promotions-first-deposit-bonus__numbered-list li::before {
  counter-increment: list-counter;
  content: counter(list-counter) ".";
  color: #E0B95B;
  font-weight: bold;
  margin-right: 15px;
  font-size: 1.2em;
}

.page-promotions-first-deposit-bonus__numbered-list {
  counter-reset: list-counter;
}

.page-promotions-first-deposit-bonus__link {
  color: #E0B95B;
  text-decoration: none;
  font-weight: bold;
}

.page-promotions-first-deposit-bonus__link:hover {
  text-decoration: underline;
}

.page-promotions-first-deposit-bonus__list--two-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .page-promotions-first-deposit-bonus__list--two-cols {
    grid-template-columns: 1fr 1fr;
  }
}

.page-promotions-first-deposit-bonus__faq-item {
  background-color: #2A2A3E;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-promotions-first-deposit-bonus__faq-question {
  font-size: 1.4em;
  color: #E0B95B;
  padding: 20px;
  cursor: pointer;
  margin: 0;
  position: relative;
}

.page-promotions-first-deposit-bonus__faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-promotions-first-deposit-bonus__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-promotions-first-deposit-bonus__faq-answer {
  padding: 0 20px 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
  color: #E5E5D1;
}

.page-promotions-first-deposit-bonus__faq-answer.open {
  max-height: 200px; /* Adjust based on expected content height */
}

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

.page-promotions-first-deposit-bonus__final-cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #1A1A2E;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.page-promotions-first-deposit-bonus__final-cta-subtitle {
  font-size: 1.4em;
  max-width: 900px;
  margin: 0 auto 40px;
  color: #33334F;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-promotions-first-deposit-bonus__hero-title {
    font-size: 2.8em;
  }
  .page-promotions-first-deposit-bonus__section-title {
    font-size: 2em;
  }
  .page-promotions-first-deposit-bonus__final-cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-promotions-first-deposit-bonus__hero-title {
    font-size: 2.2em;
  }
  .page-promotions-first-deposit-bonus__hero-subtitle {
    font-size: 1.1em;
  }
  .page-promotions-first-deposit-bonus__section-title {
    font-size: 1.8em;
  }
  .page-promotions-first-deposit-bonus__subsection-title {
    font-size: 1.5em;
  }
  .page-promotions-first-deposit-bonus__cta-button {
    font-size: 1.1em;
    padding: 12px 25px;
  }
  .page-promotions-first-deposit-bonus__cta-button--large {
    font-size: 1.3em;
    padding: 15px 30px;
  }
  .page-promotions-first-deposit-bonus__final-cta-title {
    font-size: 2em;
  }
  .page-promotions-first-deposit-bonus__final-cta-subtitle {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-promotions-first-deposit-bonus__hero-title {
    font-size: 1.8em;
  }
  .page-promotions-first-deposit-bonus__hero-subtitle {
    font-size: 1em;
  }
  .page-promotions-first-deposit-bonus__section-title {
    font-size: 1.5em;
  }
  .page-promotions-first-deposit-bonus__subsection-title {
    font-size: 1.3em;
  }
  .page-promotions-first-deposit-bonus__cta-button {
    font-size: 1em;
    padding: 10px 20px;
  }
  .page-promotions-first-deposit-bonus__cta-button--large {
    font-size: 1.1em;
    padding: 12px 25px;
  }
  .page-promotions-first-deposit-bonus__final-cta-title {
    font-size: 1.8em;
  }
  .page-promotions-first-deposit-bonus__final-cta-subtitle {
    font-size: 1em;
  }
  .page-promotions-first-deposit-bonus__list li,
  .page-promotions-first-deposit-bonus__numbered-list li {
    padding: 10px 15px;
  }
  .page-promotions-first-deposit-bonus__faq-question {
    font-size: 1.2em;
    padding: 15px;
  }
  .page-promotions-first-deposit-bonus__faq-question::after {
    right: 15px;
  }
  .page-promotions-first-deposit-bonus__faq-answer {
    padding: 0 15px 15px;
  }
}