.page-promotions-first-deposit-bonus-details {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-main-color); /* Default light text for dark body */
  background-color: var(--background-color); /* From custom palette #08160F */
}

.page-promotions-first-deposit-bonus-details__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 40px 0; /* Small top padding, larger bottom */
  overflow: hidden;
  background-color: var(--card-bg-color); /* Dark green background */
}

.page-promotions-first-deposit-bonus-details__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 600px;
  filter: brightness(0.7); /* Slightly darken image for text readability */
}

.page-promotions-first-deposit-bonus-details__hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
  color: var(--text-main-color); /* Light text */
  z-index: 10;
  margin-top: -150px; /* Pull content up over the image for visual hierarchy */
  background-color: transparent; /* No background, text is directly on image */
}

.page-promotions-first-deposit-bonus-details__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--gold-color); /* Gold for main title */
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-promotions-first-deposit-bonus-details__description {
  font-size: 1.1rem;
  color: var(--text-secondary-color); /* Secondary light text */
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-promotions-first-deposit-bonus-details__btn-primary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Custom button gradient */
  color: #ffffff; /* White text on button */
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-first-deposit-bonus-details__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

.page-promotions-first-deposit-bonus-details__section {
  padding: 60px 20px;
  text-align: center;
}

.page-promotions-first-deposit-bonus-details__dark-bg {
  background-color: var(--card-bg-color); /* Dark green for sections */
  color: var(--text-main-color); /* Light text */
}

.page-promotions-first-deposit-bonus-details__light-bg {
  background-color: var(--background-color); /* Deeper dark green for contrast */
  color: var(--text-main-color); /* Light text */
}

.page-promotions-first-deposit-bonus-details__container {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-promotions-first-deposit-bonus-details__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--main-color); /* Main brand color */
  margin-bottom: 30px;
  font-weight: 700;
}

.page-promotions-first-deposit-bonus-details__text-block {
  font-size: 1rem;
  color: var(--text-secondary-color); /* Secondary light text */
  max-width: 900px;
  margin: 0 auto 40px auto;
}

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

.page-promotions-first-deposit-bonus-details__card,
.page-promotions-first-deposit-bonus-details__step-card,
.page-promotions-first-deposit-bonus-details__feature-card {
  background-color: var(--deep-green-color); /* Darker green for cards */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: left;
  color: var(--text-main-color); /* Light text */
  border: 1px solid var(--border-color); /* Border color */
}

.page-promotions-first-deposit-bonus-details__card-title,
.page-promotions-first-deposit-bonus-details__step-title,
.page-promotions-first-deposit-bonus-details__feature-title {
  font-size: 1.5rem;
  color: var(--glow-color); /* Glow color for titles */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-promotions-first-deposit-bonus-details__card-text,
.page-promotions-first-deposit-bonus-details__step-text,
.page-promotions-first-deposit-bonus-details__feature-text {
  font-size: 1rem;
  color: var(--text-secondary-color); /* Secondary light text */
}

.page-promotions-first-deposit-bonus-details__step-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-color); /* Gold for step numbers */
  margin-bottom: 15px;
}

.page-promotions-first-deposit-bonus-details__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 50px auto 0 auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-promotions-first-deposit-bonus-details__text-link {
  color: var(--glow-color); /* Link color */
  text-decoration: none;
  font-weight: 500;
}

.page-promotions-first-deposit-bonus-details__text-link:hover {
  text-decoration: underline;
}

.page-promotions-first-deposit-bonus-details__terms-list {
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
}

.page-promotions-first-deposit-bonus-details__term-item {
  background-color: var(--deep-green-color); /* Darker green for term items */
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid var(--border-color); /* Border color */
}

.page-promotions-first-deposit-bonus-details__term-title {
  font-size: 1.3rem;
  color: var(--glow-color); /* Glow color for term titles */
  margin-bottom: 10px;
  font-weight: 600;
}

.page-promotions-first-deposit-bonus-details__term-text {
  font-size: 1rem;
  color: var(--text-secondary-color); /* Secondary light text */
}

.page-promotions-first-deposit-bonus-details__faq-list {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.page-promotions-first-deposit-bonus-details__faq-item {
  background-color: var(--deep-green-color); /* Darker green for FAQ items */
  border: 1px solid var(--border-color); /* Border color */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-main-color); /* Light text */
}

.page-promotions-first-deposit-bonus-details__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none; /* Hide default marker */
  color: var(--glow-color); /* Glow color for questions */
}

.page-promotions-first-deposit-bonus-details__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-promotions-first-deposit-bonus-details__faq-toggle {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-color); /* Gold for toggle icon */
  transition: transform 0.3s ease;
}

.page-promotions-first-deposit-bonus-details__faq-item[open] .page-promotions-first-deposit-bonus-details__faq-toggle {
  transform: rotate(45deg);
}

.page-promotions-first-deposit-bonus-details__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1rem;
  color: var(--text-secondary-color); /* Secondary light text */
  line-height: 1.6;
}

.page-promotions-first-deposit-bonus-details__cta-section {
  padding: 80px 20px;
  background-color: var(--background-color); /* Dark background */
  color: var(--text-main-color); /* Light text */
}

.page-promotions-first-deposit-bonus-details__cta-section .page-promotions-first-deposit-bonus-details__section-title {
  color: var(--gold-color); /* Gold for CTA title */
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-promotions-first-deposit-bonus-details__hero-content {
    margin-top: -100px;
  }
}

@media (max-width: 768px) {
  .page-promotions-first-deposit-bonus-details {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .page-promotions-first-deposit-bonus-details__hero-section {
    padding-bottom: 20px;
  }

  .page-promotions-first-deposit-bonus-details__hero-content {
    margin-top: -80px; /* Adjust for smaller screens */
    padding: 15px;
  }

  .page-promotions-first-deposit-bonus-details__main-title {
    font-size: 2rem;
  }

  .page-promotions-first-deposit-bonus-details__description {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .page-promotions-first-deposit-bonus-details__section {
    padding: 40px 15px;
  }

  .page-promotions-first-deposit-bonus-details__section-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .page-promotions-first-deposit-bonus-details__text-block {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  .page-promotions-first-deposit-bonus-details__card-grid,
  .page-promotions-first-deposit-bonus-details__step-grid,
  .page-promotions-first-deposit-bonus-details__feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions-first-deposit-bonus-details__card,
  .page-promotions-first-deposit-bonus-details__step-card,
  .page-promotions-first-deposit-bonus-details__feature-card {
    padding: 25px;
  }

  .page-promotions-first-deposit-bonus-details__card-title,
  .page-promotions-first-deposit-bonus-details__step-title,
  .page-promotions-first-deposit-bonus-details__feature-title {
    font-size: 1.3rem;
  }

  .page-promotions-first-deposit-bonus-details__content-image {
    margin-top: 30px;
  }

  .page-promotions-first-deposit-bonus-details__terms-list,
  .page-promotions-first-deposit-bonus-details__faq-list {
    max-width: 100%;
  }

  .page-promotions-first-deposit-bonus-details__term-item,
  .page-promotions-first-deposit-bonus-details__faq-item {
    margin-bottom: 10px;
  }

  .page-promotions-first-deposit-bonus-details__faq-item summary {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .page-promotions-first-deposit-bonus-details__faq-answer {
    padding: 0 20px 15px 20px;
    font-size: 0.95rem;
  }

  .page-promotions-first-deposit-bonus-details__cta-section {
    padding: 50px 15px;
  }

  /* Responsive images/videos/buttons - MUST include !important */
  .page-promotions-first-deposit-bonus-details img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-promotions-first-deposit-bonus-details video,
  .page-promotions-first-deposit-bonus-details__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-promotions-first-deposit-bonus-details__section,
  .page-promotions-first-deposit-bonus-details__card,
  .page-promotions-first-deposit-bonus-details__container,
  .page-promotions-first-deposit-bonus-details__hero-section,
  .page-promotions-first-deposit-bonus-details__cta-section,
  .page-promotions-first-deposit-bonus-details__card-grid,
  .page-promotions-first-deposit-bonus-details__step-grid,
  .page-promotions-first-deposit-bonus-details__feature-grid,
  .page-promotions-first-deposit-bonus-details__terms-list,
  .page-promotions-first-deposit-bonus-details__faq-list,
  .page-promotions-first-deposit-bonus-details__video-section,
  .page-promotions-first-deposit-bonus-details__video-container,
  .page-promotions-first-deposit-bonus-details__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Ensure no horizontal scroll */
  }

  .page-promotions-first-deposit-bonus-details__video-section {
    padding-top: 10px !important; /* body already handles --header-offset */
  }

  .page-promotions-first-deposit-bonus-details__cta-button,
  .page-promotions-first-deposit-bonus-details__btn-primary,
  .page-promotions-first-deposit-bonus-details__btn-secondary,
  .page-promotions-first-deposit-bonus-details a[class*="button"],
  .page-promotions-first-deposit-bonus-details a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 10px; /* Add spacing for stacked buttons */
  }

  .page-promotions-first-deposit-bonus-details__cta-buttons,
  .page-promotions-first-deposit-bonus-details__button-group,
  .page-promotions-first-deposit-bonus-details__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-direction: column !important; /* Stack buttons vertically */
    gap: 10px; /* Space between stacked buttons */
  }
}