.page-promotions-new-user-bonus {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --bg-dark: #08160F;
  --bg-card: #11271B;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green: #0A4B2C;
  --btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);

  font-family: 'Arial', sans-serif;
  color: var(--text-main);
  background-color: var(--bg-dark); /* Ensure body's background is dark */
}

.page-promotions-new-user-bonus__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  background-color: var(--bg-dark);
  color: var(--text-main);
  text-align: center;
}

.page-promotions-new-user-bonus__hero-image {
  width: 100%;
  max-width: 1920px;
  height: auto;
  display: block;
  margin-bottom: 30px;
  border-radius: 10px;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly darken image for text contrast */
}

.page-promotions-new-user-bonus__hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative; /* Ensure content is above image if filter darkens */
  z-index: 1;
}

.page-promotions-new-user-bonus__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--gold-color); /* Highlight H1 with gold */
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.5);
}

.page-promotions-new-user-bonus__description {
  font-size: 1.1em;
  line-height: 1.6;
  color: var(--text-secondary);
  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,
.page-promotions-new-user-bonus__btn-card,
.page-promotions-new-user-bonus__btn-step,
.page-promotions-new-user-bonus a[class*="button"],
.page-promotions-new-user-bonus a[class*="btn"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

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

.page-promotions-new-user-bonus__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-promotions-new-user-bonus__btn-secondary {
  background-color: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

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

.page-promotions-new-user-bonus__introduction-section,
.page-promotions-new-user-bonus__how-to-claim-section,
.page-promotions-new-user-bonus__terms-section,
.page-promotions-new-user-bonus__faq-section {
  background-color: var(--bg-card);
  color: var(--text-main);
  padding: 60px 20px;
}

.page-promotions-new-user-bonus__bonus-details-section,
.page-promotions-new-user-bonus__games-section,
.page-promotions-new-user-bonus__why-choose-section,
.page-promotions-new-user-bonus__final-cta-section {
  background-color: var(--bg-dark);
  color: var(--text-main);
  padding: 60px 20px;
}

.page-promotions-new-user-bonus__container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-promotions-new-user-bonus__section-title {
  font-size: 2.5em;
  font-weight: bold;
  color: var(--gold-color);
  margin-bottom: 30px;
  text-shadow: 0 0 8px rgba(87, 227, 141, 0.3);
}

.page-promotions-new-user-bonus__text-block {
  font-size: 1.05em;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 20px;
  text-align: justify;
}

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

.page-promotions-new-user-bonus__card {
  background-color: var(--bg-card);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--border-color);
}

.page-promotions-new-user-bonus__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-promotions-new-user-bonus__card-title {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions-new-user-bonus__card-text {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions-new-user-bonus__btn-card {
  background: var(--btn-gradient);
  color: var(--text-main);
  border: none;
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 6px;
  margin-top: auto;
}

.page-promotions-new-user-bonus__btn-card:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-promotions-new-user-bonus__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions-new-user-bonus__step-item {
  background-color: var(--bg-dark);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  border: 1px solid var(--border-color);
}

.page-promotions-new-user-bonus__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--btn-gradient);
  color: var(--text-main);
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 0 15px rgba(42, 209, 111, 0.5);
}

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

.page-promotions-new-user-bonus__step-text {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.page-promotions-new-user-bonus__btn-step {
  background-color: var(--deep-green);
  color: var(--text-main);
  border: 1px solid var(--primary-color);
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 6px;
}

.page-promotions-new-user-bonus__btn-step:hover {
  background-color: var(--primary-color);
}

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

.page-promotions-new-user-bonus__game-card {
  background-color: var(--bg-card);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  border: 1px solid var(--divider-color);
}

.page-promotions-new-user-bonus__game-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  display: block;
}

.page-promotions-new-user-bonus__game-title {
  font-size: 1.3em;
  font-weight: bold;
  margin-bottom: 10px;
}

.page-promotions-new-user-bonus__game-title a {
  color: var(--primary-color);
  text-decoration: none;
}

.page-promotions-new-user-bonus__game-title a:hover {
  text-decoration: underline;
  color: var(--secondary-color);
}

.page-promotions-new-user-bonus__game-text {
  color: var(--text-secondary);
  line-height: 1.5;
  font-size: 0.95em;
}

.page-promotions-new-user-bonus__terms-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  text-align: left;
}

.page-promotions-new-user-bonus__terms-list li {
  background-color: var(--bg-dark);
  border-left: 4px solid var(--primary-color);
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 1.0em;
}

.page-promotions-new-user-bonus__terms-list li:last-child {
  margin-bottom: 0;
}

.page-promotions-new-user-bonus__terms-section a {
  color: var(--gold-color);
  text-decoration: underline;
}

.page-promotions-new-user-bonus__terms-section a:hover {
  color: var(--secondary-color);
}

.page-promotions-new-user-bonus__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions-new-user-bonus__feature-item {
  background-color: var(--bg-card);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  border: 1px solid var(--border-color);
}

.page-promotions-new-user-bonus__feature-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-new-user-bonus__feature-title {
  font-size: 1.4em;
  color: var(--gold-color);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promotions-new-user-bonus__feature-text {
  color: var(--text-secondary);
  line-height: 1.6;
}

.page-promotions-new-user-bonus__faq-list {
  margin-top: 40px;
  text-align: left;
}

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

.page-promotions-new-user-bonus__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--primary-color);
  cursor: pointer;
  list-style: none; /* For details/summary */
}

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

.page-promotions-new-user-bonus__faq-qtext {
  flex-grow: 1;
  color: var(--text-main);
}

.page-promotions-new-user-bonus__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  color: var(--secondary-color);
}

.page-promotions-new-user-bonus__faq-answer {
  padding: 0 20px 20px;
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 1.0em;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-promotions-new-user-bonus__faq-item[open] .page-promotions-new-user-bonus__faq-answer {
  max-height: 500px; /* Adjust as needed for content */
  padding-top: 10px;
}

.page-promotions-new-user-bonus__final-cta-section {
  padding-bottom: 80px;
}

.page-promotions-new-user-bonus__final-cta-section .page-promotions-new-user-bonus__description {
  margin-bottom: 40px;
}

.page-promotions-new-user-bonus__final-cta-section a {
  color: var(--gold-color);
  text-decoration: underline;
}

.page-promotions-new-user-bonus__final-cta-section a:hover {
  color: var(--secondary-color);
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-promotions-new-user-bonus__section-title {
    font-size: 2em;
  }
  .page-promotions-new-user-bonus__main-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-promotions-new-user-bonus__hero-section,
  .page-promotions-new-user-bonus__introduction-section,
  .page-promotions-new-user-bonus__bonus-details-section,
  .page-promotions-new-user-bonus__how-to-claim-section,
  .page-promotions-new-user-bonus__games-section,
  .page-promotions-new-user-bonus__terms-section,
  .page-promotions-new-user-bonus__why-choose-section,
  .page-promotions-new-user-bonus__faq-section,
  .page-promotions-new-user-bonus__final-cta-section {
    padding: 40px 15px;
  }

  .page-promotions-new-user-bonus__hero-section {
    padding-top: 10px !important; /* body handles --header-offset, this is small decoration */
  }

  .page-promotions-new-user-bonus__main-title {
    font-size: clamp(1.8em, 7vw, 2.2em); /* Use clamp for H1 */
  }

  .page-promotions-new-user-bonus__section-title {
    font-size: 1.8em;
  }

  .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,
  .page-promotions-new-user-bonus__btn-card,
  .page-promotions-new-user-bonus__btn-step,
  .page-promotions-new-user-bonus a[class*="button"],
  .page-promotions-new-user-bonus a[class*="btn"] {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-promotions-new-user-bonus__grid,
  .page-promotions-new-user-bonus__steps-grid,
  .page-promotions-new-user-bonus__games-grid,
  .page-promotions-new-user-bonus__features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions-new-user-bonus img {
    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__game-card,
  .page-promotions-new-user-bonus__step-item,
  .page-promotions-new-user-bonus__feature-item,
  .page-promotions-new-user-bonus__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    /* padding-left: 15px; */ /* Already handled by section padding */
    /* padding-right: 15px; */ /* Already handled by section padding */
  }

  .page-promotions-new-user-bonus__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }

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