:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --login-color: #EA7C07;
  --bg-color-light: #FFFFFF;
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --bg-color-dark: #121212; /* From body background analysis */
}

/* Base styles for the page content, ensuring light text on dark body background */
.page-promotions-new-user-bonus {
  color: var(--text-color-light);
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: var(--bg-color-dark);
}

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

.page-promotions-new-user-bonus__section-title {
  font-size: 2.5em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: var(--text-color-light);
}

.page-promotions-new-user-bonus__description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.8);
}

/* Hero Section */
.page-promotions-new-user-bonus__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  overflow: hidden;
}

.page-promotions-new-user-bonus__hero-image-wrapper {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.page-promotions-new-user-bonus__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -100px; /* Overlap slightly with image for visual flow */
  background: rgba(18, 18, 18, 0.85); /* Dark semi-transparent background for text readability */
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-new-user-bonus__main-title {
  color: var(--secondary-color);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.page-promotions-new-user-bonus__description {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
}

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

.page-promotions-new-user-bonus__btn-primary,
.page-promotions-new-user-bonus__btn-secondary,
.page-promotions-new-user-bonus__btn-tertiary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
}

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

.page-promotions-new-user-bonus__btn-primary:hover {
  background-color: darken(var(--primary-color), 10%);
  border-color: darken(var(--primary-color), 10%);
}

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

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

.page-promotions-new-user-bonus__btn-tertiary {
  background-color: var(--login-color);
  color: var(--text-color-light);
  border: 2px solid var(--login-color);
}

.page-promotions-new-user-bonus__btn-tertiary:hover {
  background-color: darken(var(--login-color), 10%);
  border-color: darken(var(--login-color), 10%);
}

/* Benefits Section */
.page-promotions-new-user-bonus__benefits-section,
.page-promotions-new-user-bonus__how-to-claim-section,
.page-promotions-new-user-bonus__bonus-types-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: 80px 0;
  background-color: var(--bg-color-dark);
}

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

.page-promotions-new-user-bonus__benefit-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

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

.page-promotions-new-user-bonus__benefit-text {
  color: rgba(255, 255, 255, 0.8);
}

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

.page-promotions-new-user-bonus__step-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  position: relative;
  padding-top: 60px;
}

.page-promotions-new-user-bonus__step-icon {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary-color);
  color: var(--text-color-light);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8em;
  font-weight: bold;
  border: 4px solid var(--bg-color-dark);
}

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

.page-promotions-new-user-bonus__step-text {
  color: rgba(255, 255, 255, 0.8);
}

.page-promotions-new-user-bonus__image-center {
  text-align: center;
  margin-bottom: 40px;
}

.page-promotions-new-user-bonus__process-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-new-user-bonus__cta-center {
  text-align: center;
  margin-top: 30px;
}

/* Bonus Types Section */
.page-promotions-new-user-bonus__type-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-promotions-new-user-bonus__type-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-new-user-bonus__type-title {
  font-size: 1.6em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-promotions-new-user-bonus__type-text {
  color: rgba(255, 255, 255, 0.8);
}

/* Games Section */
.page-promotions-new-user-bonus__game-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-promotions-new-user-bonus__game-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
}

.page-promotions-new-user-bonus__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-promotions-new-user-bonus__game-card h3,
.page-promotions-new-user-bonus__game-card p,
.page-promotions-new-user-bonus__game-card a {
  padding: 0 20px;
}

.page-promotions-new-user-bonus__game-title {
  font-size: 1.4em;
  color: var(--primary-color);
  margin-top: 20px;
  margin-bottom: 10px;
}

.page-promotions-new-user-bonus__game-text {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions-new-user-bonus__game-card .page-promotions-new-user-bonus__btn-tertiary {
  margin: 0 20px 20px;
}

/* Terms Section */
.page-promotions-new-user-bonus__terms-list {
  list-style: disc;
  padding-left: 40px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-promotions-new-user-bonus__terms-list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

/* Why Choose Section */
.page-promotions-new-user-bonus__choice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-promotions-new-user-bonus__choice-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.page-promotions-new-user-bonus__choice-text {
  color: rgba(255, 255, 255, 0.8);
}

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

.page-promotions-new-user-bonus__faq-item {
  background: rgba(255, 255, 255, 0.05);
  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: 20px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  color: var(--primary-color);
  background: rgba(255, 255, 255, 0.1);
}

.page-promotions-new-user-bonus__faq-item summary {
  list-style: none;
}

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

.page-promotions-new-user-bonus__faq-qtext {
  flex-grow: 1;
}

.page-promotions-new-user-bonus__faq-toggle {
  margin-left: 15px;
  font-size: 1.5em;
  line-height: 1;
}

.page-promotions-new-user-bonus__faq-answer {
  padding: 20px;
  padding-top: 0;
  color: rgba(255, 255, 255, 0.8);
}

.page-promotions-new-user-bonus__faq-answer p {
  text-align: left;
  margin-bottom: 0;
}

/* Final CTA Section */
.page-promotions-new-user-bonus__final-cta-section .page-promotions-new-user-bonus__section-title {
  color: var(--text-color-light);
}

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

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

  .page-promotions-new-user-bonus__container,
  .page-promotions-new-user-bonus__hero-content {
    padding-left: 15px;
    padding-right: 15px;
  }

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

  .page-promotions-new-user-bonus__hero-content {
    margin-top: -50px;
    padding: 30px 15px;
  }

  .page-promotions-new-user-bonus__main-title {
    font-size: 1.8em;
    text-align: center;
  }

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

  .page-promotions-new-user-bonus__description {
    font-size: 1em;
  }

  .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-tertiary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-promotions-new-user-bonus__benefits-section,
  .page-promotions-new-user-bonus__how-to-claim-section,
  .page-promotions-new-user-bonus__bonus-types-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 0;
  }

  .page-promotions-new-user-bonus__benefit-image,
  .page-promotions-new-user-bonus__process-image,
  .page-promotions-new-user-bonus__game-image,
  .page-promotions-new-user-bonus__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-promotions-new-user-bonus__benefits-grid,
  .page-promotions-new-user-bonus__steps-grid,
  .page-promotions-new-user-bonus__type-cards,
  .page-promotions-new-user-bonus__game-cards-grid,
  .page-promotions-new-user-bonus__choice-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions-new-user-bonus__benefit-card,
  .page-promotions-new-user-bonus__step-card,
  .page-promotions-new-user-bonus__type-card,
  .page-promotions-new-user-bonus__game-card,
  .page-promotions-new-user-bonus__choice-card {
    padding: 20px;
  }

  .page-promotions-new-user-bonus__step-icon {
    top: -20px;
    width: 40px;
    height: 40px;
    font-size: 1.5em;
  }

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

  .page-promotions-new-user-bonus__faq-answer {
    padding: 15px;
    padding-top: 0;
  }
  
  /* Ensure all containers with images/buttons/videos are responsive */
  .page-promotions-new-user-bonus__hero-section,
  .page-promotions-new-user-bonus__benefits-section,
  .page-promotions-new-user-bonus__how-to-claim-section,
  .page-promotions-new-user-bonus__bonus-types-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,
  .page-promotions-new-user-bonus__hero-image-wrapper,
  .page-promotions-new-user-bonus__cta-buttons,
  .page-promotions-new-user-bonus__image-center,
  .page-promotions-new-user-bonus__cta-center {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
}