.page-new-user-promotions {
  font-family: 'Arial', sans-serif;
  color: var(--text-main);
  background-color: var(--background-color-page);
}

.page-new-user-promotions__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-new-user-promotions__dark-bg {
  background-color: var(--card-bg);
  color: var(--text-main);
}

.page-new-user-promotions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 60px 0; /* body padding-top handles header offset */
  text-align: center;
  overflow: hidden;
}

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

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

.page-new-user-promotions__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text */
  border-radius: 10px;
  margin-top: 80px;
}

.page-new-user-promotions__main-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-new-user-promotions__description {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-new-user-promotions__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
}

.page-new-user-promotions__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: none;
}

.page-new-user-promotions__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(17, 168, 78, 0.4);
}

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

.page-new-user-promotions__introduction-section,
.page-new-user-promotions__how-to-claim-section,
.page-new-user-promotions__faq-section,
.page-new-user-promotions__final-cta-section {
  padding: 80px 0;
}

.page-new-user-promotions__text-content {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--text-secondary);
  text-align: justify;
}

.page-new-user-promotions__promo-types-section {
  padding: 80px 0;
}

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

.page-new-user-promotions__promo-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-new-user-promotions__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

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

.page-new-user-promotions__card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 15px;
}

.page-new-user-promotions__card-description {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-new-user-promotions__card-button {
  width: 100%;
}

.page-new-user-promotions__step-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.page-new-user-promotions__step-item {
  display: flex;
  align-items: flex-start;
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 25px;
}

.page-new-user-promotions__step-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-right: 20px;
  flex-shrink: 0;
  line-height: 1;
}

.page-new-user-promotions__step-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 10px;
}

.page-new-user-promotions__step-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.page-new-user-promotions__cta-bottom {
  text-align: center;
  margin-top: 50px;
}

.page-new-user-promotions__benefits-section {
  padding: 80px 0;
}

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

.page-new-user-promotions__benefit-item {
  text-align: center;
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 30px 20px;
  transition: transform 0.3s ease;
}

.page-new-user-promotions__benefit-item:hover {
  transform: translateY(-5px);
}

.page-new-user-promotions__benefit-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

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

.page-new-user-promotions__benefit-description {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

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

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

.page-new-user-promotions__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  list-style: none;
  color: var(--text-main);
  font-weight: 600;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
}

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

.page-new-user-promotions__faq-item summary:hover {
  background-color: rgba(17, 168, 78, 0.1);
}

.page-new-user-promotions__faq-item[open] summary {
  background-color: rgba(17, 168, 78, 0.2);
}

.page-new-user-promotions__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

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

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

.page-new-user-promotions__final-cta-section {
  text-align: center;
}

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

/* Responsive Styles */
@media (min-width: 769px) {
  .page-new-user-promotions__step-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .page-new-user-promotions__container {
    padding: 0 15px;
  }

  .page-new-user-promotions__hero-content {
    padding: 30px 15px;
    margin-top: 60px;
  }

  .page-new-user-promotions__main-title {
    font-size: 2rem;
  }

  .page-new-user-promotions__description {
    font-size: 1rem;
  }

  .page-new-user-promotions__cta-button {
    padding: 12px 25px;
    font-size: 1rem;
    max-width: 100% !important;
    width: 100% !important;
  }

  .page-new-user-promotions__section-title {
    font-size: 1.8rem;
  }

  .page-new-user-promotions__introduction-section,
  .page-new-user-promotions__how-to-claim-section,
  .page-new-user-promotions__faq-section,
  .page-new-user-promotions__final-cta-section,
  .page-new-user-promotions__promo-types-section,
  .page-new-user-promotions__benefits-section {
    padding: 40px 0;
  }

  .page-new-user-promotions__promo-grid,
  .page-new-user-promotions__benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-new-user-promotions__promo-card,
  .page-new-user-promotions__benefit-item,
  .page-new-user-promotions__step-item {
    padding: 20px;
  }

  .page-new-user-promotions__card-image,
  .page-new-user-promotions__benefit-icon,
  .page-new-user-promotions__hero-image {
    max-width: 100% !important;
    height: auto !important;
    width: 100% !important;
    display: block !important;
  }

  .page-new-user-promotions__promo-card,
  .page-new-user-promotions__step-item,
  .page-new-user-promotions__benefit-item,
  .page-new-user-promotions__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-new-user-promotions__faq-item summary {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-new-user-promotions__faq-answer {
    padding: 0 20px 15px 20px;
  }
  
  /* Ensure all image containers are responsive */
  .page-new-user-promotions__hero-image-wrapper,
  .page-new-user-promotions__promo-card,
  .page-new-user-promotions__benefits-grid {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  /* Buttons responsive */
  .page-new-user-promotions__cta-button,
  .page-new-user-promotions__btn-primary,
  .page-new-user-promotions__btn-secondary,
  .page-new-user-promotions a[class*="button"],
  .page-new-user-promotions a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
}