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

.page-promotions-new-user-benefits {
  background-color: var(--color-background); /* Dark background */
  color: var(--color-text-main); /* Light text for dark background */
}

.page-promotions-new-user-benefits__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  overflow: hidden;
  text-align: center;
}

.page-promotions-new-user-benefits__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-promotions-new-user-benefits__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly darken image for text readability */
}

.page-promotions-new-user-benefits__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 40px 20px;
  color: var(--color-text-main);
}

.page-promotions-new-user-benefits__hero-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--color-gold);
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.page-promotions-new-user-benefits__hero-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: var(--color-text-main);
}

.page-promotions-new-user-benefits__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: var(--color-button-gradient);
  color: var(--color-text-main);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-new-user-benefits__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions-new-user-benefits__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--color-gold);
}

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

.page-promotions-new-user-benefits__intro-section, 
.page-promotions-new-user-benefits__how-to-claim-section,
.page-promotions-new-user-benefits__why-choose-us-section,
.page-promotions-new-user-benefits__cta-final-section {
  background-color: var(--color-background); /* Consistent dark background */
  color: var(--color-text-main);
}

.page-promotions-new-user-benefits__benefits-list-section,
.page-promotions-new-user-benefits__terms-section,
.page-promotions-new-user-benefits__faq-section {
  background-color: var(--color-card-bg); /* Slightly lighter dark background for contrast */
  color: var(--color-text-main);
}

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

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

.page-promotions-new-user-benefits__image-content {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

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

.page-promotions-new-user-benefits__benefit-card {
  background-color: var(--color-background);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid var(--color-border);
}

.page-promotions-new-user-benefits__benefit-card:hover {
  transform: translateY(-5px);
}

.page-promotions-new-user-benefits__card-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--color-primary);
}

.page-promotions-new-user-benefits__card-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

.page-promotions-new-user-benefits__step-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-promotions-new-user-benefits__step-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  gap: 20px;
}

.page-promotions-new-user-benefits__step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--color-button-gradient);
  color: var(--color-text-main);
  font-size: 1.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

.page-promotions-new-user-benefits__step-content {
  flex-grow: 1;
}

.page-promotions-new-user-benefits__step-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--color-gold);
}

.page-promotions-new-user-benefits__step-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

.page-promotions-new-user-benefits__terms-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-promotions-new-user-benefits__terms-item {
  background-color: var(--color-background);
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  border-left: 5px solid var(--color-primary);
  color: var(--color-text-secondary);
  font-size: 1.05rem;
  line-height: 1.6;
}

.page-promotions-new-user-benefits__terms-item strong {
  color: var(--color-gold);
}

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

.page-promotions-new-user-benefits__reason-card {
  background-color: var(--color-card-bg);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--color-border);
}

.page-promotions-new-user-benefits__reason-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-promotions-new-user-benefits__faq-list {
  margin-top: 40px;
}

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

.page-promotions-new-user-benefits__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-gold);
  background-color: var(--color-background);
  border-bottom: 1px solid var(--color-divider);
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

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

.page-promotions-new-user-benefits__faq-question:hover {
  background-color: var(--color-deep-green);
}

.page-promotions-new-user-benefits__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  color: var(--color-primary);
  transition: transform 0.3s ease;
}

.page-promotions-new-user-benefits__faq-item[open] .page-promotions-new-user-benefits__faq-toggle {
  transform: rotate(45deg);
}

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

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

.page-promotions-new-user-benefits__btn-primary {
  background: var(--color-button-gradient);
  color: var(--color-text-main);
}

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

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

/* Global image responsiveness */
.page-promotions-new-user-benefits img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

  .page-promotions-new-user-benefits__hero-section {
    min-height: 400px;
    padding: 30px 15px;
    padding-top: 10px !important;
  }

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

  .page-promotions-new-user-benefits__hero-description {
    font-size: clamp(0.9rem, 3vw, 1.1rem);
  }

  .page-promotions-new-user-benefits__cta-button,
  .page-promotions-new-user-benefits__btn-primary,
  .page-promotions-new-user-benefits__btn-secondary,
  .page-promotions-new-user-benefits a[class*="button"],
  .page-promotions-new-user-benefits a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promotions-new-user-benefits__button-group {
    flex-direction: column;
    gap: 15px;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-promotions-new-user-benefits__container {
    padding: 20px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-promotions-new-user-benefits__section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: 30px;
  }

  .page-promotions-new-user-benefits__text-block {
    font-size: 1rem;
  }

  .page-promotions-new-user-benefits__benefit-card-grid,
  .page-promotions-new-user-benefits__reason-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .page-promotions-new-user-benefits__step-number {
    margin-bottom: 15px;
  }

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

  .page-promotions-new-user-benefits__faq-answer {
    padding: 10px 20px 15px;
  }

  /* Ensure all images within content sections are responsive */
  .page-promotions-new-user-benefits__intro-section img,
  .page-promotions-new-user-benefits__benefits-list-section img,
  .page-promotions-new-user-benefits__how-to-claim-section img,
  .page-promotions-new-user-benefits__why-choose-us-section img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
}