/* style/promotions-new-user-first-deposit-bonus.css */
:root {
  --primary-color: #FFD700;
  --secondary-color: #8B0000;
  --text-light: #ffffff;
  --text-dark: #333333;
  --background-dark: #0a0a0a;
  --background-light: #f5f5f5;
  --border-color: #e0e0e0;
}

.page-promotions-new-user-first-deposit-bonus {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Body background is dark, so use light text */
  background-color: var(--background-dark);
  padding-top: 120px; /* Adjust for fixed header */
}

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

.page-promotions-new-user-first-deposit-bonus__section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-new-user-first-deposit-bonus__subtitle {
  font-size: 24px;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-promotions-new-user-first-deposit-bonus__text-block {
  margin-bottom: 20px;
  font-size: 17px;
  line-height: 1.7;
  color: #f0f0f0;
}

.page-promotions-new-user-first-deposit-bonus__list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
  font-size: 17px;
  color: #f0f0f0;
}

.page-promotions-new-user-first-deposit-bonus__list-item {
  margin-bottom: 10px;
}

.page-promotions-new-user-first-deposit-bonus__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-promotions-new-user-first-deposit-bonus__cta-button:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(139, 0, 0, 0.6);
}

.page-promotions-new-user-first-deposit-bonus__cta-button--small {
  padding: 10px 25px;
  font-size: 16px;
  margin-top: 15px;
}

.page-promotions-new-user-first-deposit-bonus__cta-button--primary {
  background: var(--primary-color);
  color: var(--text-light);
}

.page-promotions-new-user-first-deposit-bonus__cta-button--secondary {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  margin-left: 20px;
  box-shadow: none;
}

.page-promotions-new-user-first-deposit-bonus__cta-button--secondary:hover {
  background: var(--primary-color);
  color: var(--text-light);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

/* HERO Section */
.page-promotions-new-user-first-deposit-bonus__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 20px 60px; /* Desktop: padding-top 10px to clear fixed header */
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(139, 0, 0, 0.2)); /* Subtle gradient overlay */
}

.page-promotions-new-user-first-deposit-bonus__hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-promotions-new-user-first-deposit-bonus__hero-image {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-promotions-new-user-first-deposit-bonus__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page-promotions-new-user-first-deposit-bonus__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 0 20px;
}

.page-promotions-new-user-first-deposit-bonus__hero-title {
  font-size: 48px;
  font-weight: 900;
  color: var(--primary-color);
  margin-bottom: 20px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.page-promotions-new-user-first-deposit-bonus__hero-description {
  font-size: 20px;
  color: var(--text-light);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* General Section Styling */
.page-promotions-new-user-first-deposit-bonus__intro-section,
.page-promotions-new-user-first-deposit-bonus__details-section,
.page-promotions-new-user-first-deposit-bonus__how-to-claim-section,
.page-promotions-new-user-first-deposit-bonus__terms-section,
.page-promotions-new-user-first-deposit-bonus__benefits-section,
.page-promotions-new-user-first-deposit-bonus__other-promos-section,
.page-promotions-new-user-first-deposit-bonus__faq-section,
.page-promotions-new-user-first-deposit-bonus__final-cta-section {
  padding: 80px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-promotions-new-user-first-deposit-bonus__intro-section,
.page-promotions-new-user-first-deposit-bonus__how-to-claim-section,
.page-promotions-new-user-first-deposit-bonus__benefits-section,
.page-promotions-new-user-first-deposit-bonus__faq-section {
  background-color: #1a1a1a; /* Slightly lighter dark for contrast */
}

/* Details Section */
.page-promotions-new-user-first-deposit-bonus__detail-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  border-left: 5px solid var(--primary-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-promotions-new-user-first-deposit-bonus__detail-item .page-promotions-new-user-first-deposit-bonus__subtitle {
  margin-top: 0;
  color: var(--primary-color);
}

/* How-To-Claim Section */
.page-promotions-new-user-first-deposit-bonus__step-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-promotions-new-user-first-deposit-bonus__step-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 10px;
  border-left: 5px solid var(--secondary-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-promotions-new-user-first-deposit-bonus__step-number {
  font-size: 36px;
  font-weight: bold;
  color: var(--primary-color);
  margin-right: 20px;
  flex-shrink: 0;
  line-height: 1;
  padding-top: 5px;
}

.page-promotions-new-user-first-deposit-bonus__step-content {
  flex-grow: 1;
}

.page-promotions-new-user-first-deposit-bonus__step-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-color);
  margin-top: 0;
  margin-bottom: 10px;
}

/* Benefits Section */
.page-promotions-new-user-first-deposit-bonus__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions-new-user-first-deposit-bonus__feature-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-promotions-new-user-first-deposit-bonus__feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.3);
}

/* 🚨 feature-icon 强制尺寸要求（必须严格遵守） */
.page-promotions-new-user-first-deposit-bonus__feature-icon {
  width: 200px !important;
  height: 200px !important;
  min-width: 200px !important;
  min-height: 200px !important;
  object-fit: contain;
  margin: 0 auto 20px;
  border-radius: 50%; /* Optional: for circular icons */
  border: 3px solid var(--primary-color);
  padding: 10px;
  background-color: rgba(255, 215, 0, 0.1);
}

.page-promotions-new-user-first-deposit-bonus__feature-icon img {
  width: 200px !important;
  height: 200px !important;
  min-width: 200px !important;
  min-height: 200px !important;
  object-fit: contain;
  border-radius: 50%;
}

.page-promotions-new-user-first-deposit-bonus__feature-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-promotions-new-user-first-deposit-bonus__feature-description {
  font-size: 16px;
  color: #f0f0f0;
}

/* Other Promotions Section */
.page-promotions-new-user-first-deposit-bonus__promo-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.page-promotions-new-user-first-deposit-bonus__promo-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 10px;
  border-left: 4px solid var(--primary-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  font-size: 17px;
  color: #f0f0f0;
  transition: background-color 0.3s ease;
}

.page-promotions-new-user-first-deposit-bonus__promo-item:hover {
  background-color: rgba(255, 215, 0, 0.1);
}

/* FAQ Section */
.page-promotions-new-user-first-deposit-bonus__faq-list {
  margin-top: 40px;
}

.page-promotions-new-user-first-deposit-bonus__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-promotions-new-user-first-deposit-bonus__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  padding: 0 20px;
  opacity: 0;
  background-color: #1a1a1a; /* Match section background */
  color: #f0f0f0;
  font-size: 16px;
}

.page-promotions-new-user-first-deposit-bonus__faq-item.active .page-promotions-new-user-first-deposit-bonus__faq-answer {
  max-height: 2000px !important;
  padding: 20px !important;
  opacity: 1;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.page-promotions-new-user-first-deposit-bonus__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-promotions-new-user-first-deposit-bonus__faq-question:hover {
  background: rgba(255, 215, 0, 0.15);
  border-color: var(--primary-color);
}

.page-promotions-new-user-first-deposit-bonus__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--primary-color);
  pointer-events: none;
}

.page-promotions-new-user-first-deposit-bonus__faq-toggle {
  font-size: 30px;
  font-weight: bold;
  line-height: 1;
  color: var(--primary-color);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.page-promotions-new-user-first-deposit-bonus__faq-item.active .page-promotions-new-user-first-deposit-bonus__faq-toggle {
  color: var(--text-light);
  transform: rotate(45deg);
}

/* Final CTA */
.page-promotions-new-user-first-deposit-bonus__final-cta-section {
  text-align: center;
  padding-bottom: 100px;
}

.page-promotions-new-user-first-deposit-bonus__cta-group {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions-new-user-first-deposit-bonus__hero-title {
    font-size: 42px;
  }
  .page-promotions-new-user-first-deposit-bonus__section-title {
    font-size: 32px;
  }
  .page-promotions-new-user-first-deposit-bonus__subtitle {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .page-promotions-new-user-first-deposit-bonus {
    padding-top: 100px !important; /* Mobile: Adjust for fixed header */
    font-size: 16px;
    line-height: 1.6;
  }

  .page-promotions-new-user-first-deposit-bonus__container {
    padding: 0 15px;
  }

  .page-promotions-new-user-first-deposit-bonus__hero-section {
    padding: 10px 15px 40px !important; /* Mobile: padding-top 10px to clear fixed header */
  }

  .page-promotions-new-user-first-deposit-bonus__hero-title {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .page-promotions-new-user-first-deposit-bonus__hero-description {
    font-size: 16px;
  }

  .page-promotions-new-user-first-deposit-bonus__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    margin-top: 15px;
  }

  .page-promotions-new-user-first-deposit-bonus__cta-button--secondary {
    margin-left: 0;
    margin-top: 15px;
  }

  .page-promotions-new-user-first-deposit-bonus__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .page-promotions-new-user-first-deposit-bonus__subtitle {
    font-size: 20px;
  }

  .page-promotions-new-user-first-deposit-bonus__text-block,
  .page-promotions-new-user-first-deposit-bonus__list,
  .page-promotions-new-user-first-deposit-bonus__list-item {
    font-size: 16px;
  }

  .page-promotions-new-user-first-deposit-bonus__detail-item,
  .page-promotions-new-user-first-deposit-bonus__step-item,
  .page-promotions-new-user-first-deposit-bonus__feature-card,
  .page-promotions-new-user-first-deposit-bonus__promo-item {
    padding: 20px;
    margin-bottom: 20px;
  }

  .page-promotions-new-user-first-deposit-bonus__step-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .page-promotions-new-user-first-deposit-bonus__step-number {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .page-promotions-new-user-first-deposit-bonus__step-title {
    font-size: 20px;
  }

  .page-promotions-new-user-first-deposit-bonus__features-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-promotions-new-user-first-deposit-bonus__feature-icon,
  .page-promotions-new-user-first-deposit-bonus__feature-icon img {
    width: 200px !important;
    height: 200px !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }

  .page-promotions-new-user-first-deposit-bonus__feature-title {
    font-size: 20px;
  }

  .page-promotions-new-user-first-deposit-bonus__promo-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions-new-user-first-deposit-bonus__faq-question {
    padding: 18px 20px;
  }

  .page-promotions-new-user-first-deposit-bonus__faq-question h3 {
    font-size: 17px;
  }

  .page-promotions-new-user-first-deposit-bonus__faq-toggle {
    font-size: 26px;
    width: 26px;
    height: 26px;
  }

  .page-promotions-new-user-first-deposit-bonus__faq-item.active .page-promotions-new-user-first-deposit-bonus__faq-answer {
    padding: 18px !important;
  }

  .page-promotions-new-user-first-deposit-bonus__cta-group {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-promotions-new-user-first-deposit-bonus__hero-title {
    font-size: 28px;
  }
  .page-promotions-new-user-first-deposit-bonus__section-title {
    font-size: 24px;
  }
  .page-promotions-new-user-first-deposit-bonus__faq-question h3 {
    font-size: 16px;
  }
  .page-promotions-new-user-first-deposit-bonus__faq-toggle {
    font-size: 24px;
    width: 24px;
    height: 24px;
  }
}

/* All images responsive */
.page-promotions-new-user-first-deposit-bonus img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Mobile image adaptation */
@media (max-width: 768px) {
  .page-promotions-new-user-first-deposit-bonus img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-promotions-new-user-first-deposit-bonus__hero-image,
  .page-promotions-new-user-first-deposit-bonus__section,
  .page-promotions-new-user-first-deposit-bonus__card,
  .page-promotions-new-user-first-deposit-bonus__container,
  .page-promotions-new-user-first-deposit-bonus__detail-item,
  .page-promotions-new-user-first-deposit-bonus__step-item,
  .page-promotions-new-user-first-deposit-bonus__feature-card,
  .page-promotions-new-user-first-deposit-bonus__promo-item,
  .page-promotions-new-user-first-deposit-bonus__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-promotions-new-user-first-deposit-bonus__hero-section {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promotions-new-user-first-deposit-bonus__intro-section,
  .page-promotions-new-user-first-deposit-bonus__details-section,
  .page-promotions-new-user-first-deposit-bonus__how-to-claim-section,
  .page-promotions-new-user-first-deposit-bonus__terms-section,
  .page-promotions-new-user-first-deposit-bonus__benefits-section,
  .page-promotions-new-user-first-deposit-bonus__other-promos-section,
  .page-promotions-new-user-first-deposit-bonus__faq-section,
  .page-promotions-new-user-first-deposit-bonus__final-cta-section {
    padding-left: 15px;
    padding-right: 15px;
  }
}