:root {
  --main-color: #11A84E;
  --secondary-color: #22C768;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --card-bg-color: #11271B;
  --background-color: #08160F;
  --text-main-color: #F2FFF6;
  --text-secondary-color: #A7D9B8;
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green-color: #0A4B2C;
}

.page-promotions-new-user-bonus {
  font-family: Arial, sans-serif;
  color: var(--text-main-color); /* Main text color for dark body background */
  background-color: var(--background-color); /* Body background color */
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* Hero Section */
.page-promotions-new-user-bonus__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: var(--deep-green-color);
  text-align: center;
  padding-bottom: 60px;
}

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

.page-promotions-new-user-bonus__hero-content {
  max-width: 900px;
  margin-top: 40px;
  padding: 0 20px;
}

.page-promotions-new-user-bonus__hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--gold-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-promotions-new-user-bonus__hero-description {
  font-size: 1.15rem;
  color: var(--text-secondary-color);
  margin-bottom: 30px;
}

.page-promotions-new-user-bonus__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-promotions-new-user-bonus__btn-primary,
.page-promotions-new-user-bonus__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-promotions-new-user-bonus__btn-primary {
  background: var(--button-gradient);
  color: var(--text-main-color);
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-new-user-bonus__btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.page-promotions-new-user-bonus__btn-secondary {
  background: transparent;
  color: var(--main-color);
  border: 2px solid var(--main-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-new-user-bonus__btn-secondary:hover {
  background: var(--main-color);
  color: var(--text-main-color);
}

.page-promotions-new-user-bonus__btn-primary--large {
  padding: 18px 40px;
  font-size: 1.25rem;
}

/* General Section Styles */
.page-promotions-new-user-bonus__benefits-section,
.page-promotions-new-user-bonus__how-to-claim-section,
.page-promotions-new-user-bonus__terms-section,
.page-promotions-new-user-bonus__faq-section,
.page-promotions-new-user-bonus__cta-final-section {
  padding: 60px 0;
  text-align: center;
}

.page-promotions-new-user-bonus__section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--main-color);
  margin-bottom: 20px;
}

.page-promotions-new-user-bonus__section-description {
  font-size: 1.05rem;
  color: var(--text-secondary-color);
  max-width: 800px;
  margin: 0 auto 40px auto;
}

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

.page-promotions-new-user-bonus__benefit-card {
  background-color: var(--card-bg-color);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-promotions-new-user-bonus__benefit-icon {
  width: 200px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
  display: block;
}

.page-promotions-new-user-bonus__benefit-title {
  font-size: 1.5rem;
  color: var(--gold-color);
  margin-bottom: 15px;
}

.page-promotions-new-user-bonus__benefit-text {
  font-size: 1rem;
  color: var(--text-secondary-color);
}

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

.page-promotions-new-user-bonus__step-card {
  background-color: var(--card-bg-color);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  border: 1px solid var(--border-color);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-promotions-new-user-bonus__step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--button-gradient);
  color: var(--text-main-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 1.2rem;
  border: 2px solid var(--border-color);
}

.page-promotions-new-user-bonus__step-image {
  width: 250px;
  height: 180px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
  display: block;
}

.page-promotions-new-user-bonus__step-title {
  font-size: 1.4rem;
  color: var(--gold-color);
  margin-bottom: 15px;
}

.page-promotions-new-user-bonus__step-text {
  font-size: 1rem;
  color: var(--text-secondary-color);
}

.page-promotions-new-user-bonus__cta-buttons--centered {
  margin-top: 50px;
}

/* Terms and Conditions Section */
.page-promotions-new-user-bonus__terms-list {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
}

.page-promotions-new-user-bonus__terms-item {
  background-color: var(--card-bg-color);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 15px 20px;
  margin-bottom: 15px;
  color: var(--text-secondary-color);
  font-size: 1rem;
}

.page-promotions-new-user-bonus__terms-item::before {
  content: '• ';
  color: var(--main-color);
  font-weight: bold;
}

.page-promotions-new-user-bonus__terms-note {
  margin-top: 30px;
  font-size: 1rem;
  color: var(--text-secondary-color);
}

.page-promotions-new-user-bonus__terms-note a {
  color: var(--main-color);
  text-decoration: none;
  font-weight: 600;
}

.page-promotions-new-user-bonus__terms-note a:hover {
  text-decoration: underline;
}

/* FAQ Section */
.page-promotions-new-user-bonus__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
  text-align: left;
}

.page-promotions-new-user-bonus__faq-item {
  background-color: var(--card-bg-color);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-promotions-new-user-bonus__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-main-color);
  background-color: var(--deep-green-color);
  transition: background-color 0.3s ease;
  list-style: none; /* For details summary */
}

.page-promotions-new-user-bonus__faq-question::-webkit-details-marker {
  display: none;
}

.page-promotions-new-user-bonus__faq-question:hover {
  background-color: var(--main-color);
}

.page-promotions-new-user-bonus__faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--gold-color);
  margin-left: 15px;
}

.page-promotions-new-user-bonus__faq-answer {
  padding: 15px 25px 20px 25px;
  font-size: 1rem;
  color: var(--text-secondary-color);
  line-height: 1.7;
}

/* Final CTA Section */
.page-promotions-new-user-bonus__cta-final-section {
  background-color: var(--deep-green-color);
  padding: 80px 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-promotions-new-user-bonus {
    font-size: 16px;
    line-height: 1.6;
  }

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

  .page-promotions-new-user-bonus__hero-section {
    padding-bottom: 40px;
  }

  .page-promotions-new-user-bonus__hero-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  .page-promotions-new-user-bonus__hero-description {
    font-size: 1rem;
  }

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

  .page-promotions-new-user-bonus__btn-primary,
  .page-promotions-new-user-bonus__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
  }

  .page-promotions-new-user-bonus__btn-primary--large {
    padding: 15px 30px;
    font-size: 1.1rem;
  }

  .page-promotions-new-user-bonus__benefits-section,
  .page-promotions-new-user-bonus__how-to-claim-section,
  .page-promotions-new-user-bonus__terms-section,
  .page-promotions-new-user-bonus__faq-section,
  .page-promotions-new-user-bonus__cta-final-section {
    padding: 40px 0;
  }

  .page-promotions-new-user-bonus__section-title {
    font-size: clamp(1.8rem, 7vw, 2.2rem);
  }

  .page-promotions-new-user-bonus__section-description {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  .page-promotions-new-user-bonus__benefit-card,
  .page-promotions-new-user-bonus__step-card {
    padding: 25px;
  }

  .page-promotions-new-user-bonus__benefit-icon,
  .page-promotions-new-user-bonus__step-image {
    width: 100% !important;
    max-width: 250px !important; /* Keep a reasonable max-width for smaller images */
    height: auto !important;
  }

  .page-promotions-new-user-bonus__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-promotions-new-user-bonus__faq-answer {
    font-size: 0.95rem;
    padding: 10px 20px 15px 20px;
  }

  /* Mobile responsive images/videos/buttons - forced */
  .page-promotions-new-user-bonus img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-promotions-new-user-bonus video,
  .page-promotions-new-user-bonus__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-promotions-new-user-bonus__section,
  .page-promotions-new-user-bonus__card,
  .page-promotions-new-user-bonus__container,
  .page-promotions-new-user-bonus__video-section,
  .page-promotions-new-user-bonus__video-container,
  .page-promotions-new-user-bonus__video-wrapper,
  .page-promotions-new-user-bonus__cta-buttons,
  .page-promotions-new-user-bonus__button-group,
  .page-promotions-new-user-bonus__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-promotions-new-user-bonus__video-section {
    padding-top: 10px !important;
  }

  .page-promotions-new-user-bonus__cta-buttons {
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-promotions-new-user-bonus__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}