.page-promotions-new-user {
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  font-size: 16px;
}

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

.page-promotions-new-user__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;
  background: linear-gradient(180deg, #0A4B2C 0%, #08160F 100%); /* Deep Green to Background */
  overflow: hidden;
}

.page-promotions-new-user__hero-image {
  width: 100%;
  max-width: 1920px;
  height: auto;
  display: block;
  object-fit: cover;
  margin-bottom: 30px;
  border-radius: 8px;
}

.page-promotions-new-user__hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
  z-index: 1; /* Ensure content is above any potential background elements */
}

.page-promotions-new-user__main-title {
  font-size: clamp(2.5rem, 5vw, 3.2rem); /* Responsive H1 font size */
  color: #F2C14E; /* Gold */
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-new-user__hero-description {
  font-size: 1.15rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-new-user__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  padding-top: 40px;
}

.page-promotions-new-user__sub-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #57E38D; /* Glow */
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-promotions-new-user__content-block p,
.page-promotions-new-user__content-block li {
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  font-size: 1rem;
}

.page-promotions-new-user__content-block strong {
  color: #F2C14E; /* Gold */
}

.page-promotions-new-user__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-promotions-new-user__list ol {
  list-style-type: decimal;
}

.page-promotions-new-user__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.page-promotions-new-user__btn-primary,
.page-promotions-new-user__btn-secondary {
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow word breaking */
  box-sizing: border-box;
  text-align: center;
}

.page-promotions-new-user__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6; /* Text Main */
  border: none;
}

.page-promotions-new-user__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-promotions-new-user__btn-secondary {
  background: transparent;
  color: #A7D9B8; /* Text Secondary */
  border: 2px solid #2E7A4E; /* Border */
}

.page-promotions-new-user__btn-secondary:hover {
  background: rgba(46, 122, 78, 0.2); /* Border color with opacity */
  color: #57E38D; /* Glow */
  transform: translateY(-2px);
}

.page-promotions-new-user__cta-buttons--bottom {
  margin-top: 60px;
  margin-bottom: 40px;
}

.page-promotions-new-user__intro-section,
.page-promotions-new-user__registration-guide,
.page-promotions-new-user__exclusive-promos,
.page-promotions-new-user__terms-conditions,
.page-promotions-new-user__faq-section,
.page-promotions-new-user__call-to-action {
  padding: 40px 0;
  border-top: 1px solid #1E3A2A; /* Divider */
}

.page-promotions-new-user__image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.page-promotions-new-user__image--centered {
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
  margin-bottom: 30px;
  max-width: 800px;
}

/* FAQ Section Styling */
.page-promotions-new-user__faq-list {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-promotions-new-user__faq-item {
  background-color: #11271B; /* Card BG */
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #2E7A4E; /* Border */
}

.page-promotions-new-user__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1rem;
  color: #F2FFF6; /* Text Main */
  transition: background-color 0.3s ease;
  list-style: none; /* Remove default marker for summary */
}

.page-promotions-new-user__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for webkit browsers */
}

.page-promotions-new-user__faq-item[open] > .page-promotions-new-user__faq-question {
  background-color: #0A4B2C; /* Deep Green */
}

.page-promotions-new-user__faq-qtext {
  flex-grow: 1;
  padding-right: 15px;
}

.page-promotions-new-user__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: #57E38D; /* Glow */
}

.page-promotions-new-user__faq-answer {
  padding: 0 20px 20px;
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
}

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

  .page-promotions-new-user__container {
    padding-left: 15px;
    padding-right: 15px;
  }

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

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

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

  .page-promotions-new-user__section-title {
    font-size: clamp(1.8rem, 6vw, 2.2rem);
    margin-bottom: 30px;
  }

  .page-promotions-new-user__sub-title {
    font-size: clamp(1.3rem, 4vw, 1.6rem);
  }

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

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

  .page-promotions-new-user__intro-section,
  .page-promotions-new-user__registration-guide,
  .page-promotions-new-user__exclusive-promos,
  .page-promotions-new-user__terms-conditions,
  .page-promotions-new-user__faq-section,
  .page-promotions-new-user__call-to-action {
    padding: 30px 0;
  }

  .page-promotions-new-user img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-promotions-new-user__hero-image,
  .page-promotions-new-user__image--centered {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
  }

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

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

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