:root {
  --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 {
  color: var(--color-text-main); /* Default text color for dark body background */
  background-color: var(--color-background); /* Overall page background */
}

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

.page-promotions__section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--color-gold);
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.page-promotions__text-block {
  font-size: 16px;
  line-height: 1.7;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: var(--color-text-secondary);
}

.page-promotions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  padding: 10px 0 60px 0; /* body handles top padding, only small decorative top padding here */
  overflow: hidden;
  text-align: center;
}

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

.page-promotions__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4); /* Darken image for text readability */
}

.page-promotions__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  box-sizing: border-box;
}

.page-promotions__main-title {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 900;
  color: var(--color-gold);
  margin-bottom: 20px;
  line-height: 1.1;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.page-promotions__hero-description {
  font-size: clamp(18px, 2vw, 22px);
  color: var(--color-text-main);
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-promotions__btn-primary,
.page-promotions__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
  box-sizing: border-box;
}

.page-promotions__btn-primary {
  background: var(--color-button-gradient);
  color: var(--color-text-main);
  border: 2px solid transparent;
}

.page-promotions__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

.page-promotions__btn-secondary {
  background: transparent;
  color: var(--color-gold);
  border: 2px solid var(--color-gold);
}

.page-promotions__btn-secondary:hover {
  background: var(--color-gold);
  color: var(--color-background);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions__btn-text {
  color: var(--color-gold);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s ease;
}

.page-promotions__btn-text:hover {
  color: var(--color-glow);
  text-decoration: underline;
}

.page-promotions__overview-section,
.page-promotions__how-to-claim,
.page-promotions__faq-section {
  padding: 80px 0;
  background-color: var(--color-background);
}

.page-promotions__featured-promos,
.page-promotions__terms-section,
.page-promotions__cta-final {
  padding: 80px 0;
  background-color: var(--color-deep-green);
}

.page-promotions__dark-section {
  background-color: var(--color-deep-green);
  color: var(--color-text-main);
}

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

.page-promotions__card {
  background-color: var(--color-card-bg);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--color-text-main);
}

.page-promotions__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.page-promotions__card-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-promotions__card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: 20px;
}

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

.page-promotions__promo-card-item {
  text-align: left;
  padding: 0;
  overflow: hidden;
  background-color: var(--color-card-bg);
}

.page-promotions__promo-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
  display: block;
}

.page-promotions__promo-card-item .page-promotions__card-content {
  padding: 25px;
  color: var(--color-text-main);
}

.page-promotions__promo-card-item .page-promotions__card-title {
  font-size: 22px;
  color: var(--color-gold);
  margin-bottom: 10px;
}

.page-promotions__promo-card-item p {
  font-size: 15px;
  color: var(--color-text-secondary);
  margin-bottom: 20px;
}

.page-promotions__steps-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 40px auto;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.page-promotions__steps-list li {
  display: flex;
  align-items: flex-start;
  text-align: left;
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text-secondary);
  position: relative;
  padding-left: 60px;
}

.page-promotions__step-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  background: var(--color-button-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text-main);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.page-promotions__steps-list li strong {
  color: var(--color-text-main);
}

.page-promotions__steps-list li a {
  color: var(--color-gold);
  text-decoration: underline;
  font-weight: 600;
}

.page-promotions__steps-list li a:hover {
  color: var(--color-glow);
}

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

.page-promotions__terms-list {
  list-style: disc;
  padding-left: 25px;
  margin: 0 auto 40px auto;
  max-width: 800px;
  color: var(--color-text-secondary);
}

.page-promotions__terms-list li {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.7;
}

.page-promotions__faq-list {
  max-width: 900px;
  margin: 0 auto;
  margin-top: 40px;
}

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

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 18px;
  font-weight: 600;
  color: var(--color-gold);
  cursor: pointer;
  user-select: none;
  background-color: var(--color-card-bg);
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-promotions__faq-question::-webkit-details-marker {
  display: none;
}

.page-promotions__faq-question:hover {
  background-color: var(--color-deep-green);
}

.page-promotions__faq-toggle {
  font-size: 24px;
  line-height: 1;
  color: var(--color-glow);
  margin-left: 15px;
}

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

.page-promotions__cta-final {
  text-align: center;
  padding: 80px 0;
}

.page-promotions__cta-image {
  max-width: 100%;
  height: auto;
  margin-bottom: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
  .page-promotions__main-title {
    font-size: clamp(30px, 4vw, 48px);
  }

  .page-promotions__hero-description {
    font-size: clamp(16px, 1.8vw, 20px);
  }

  .page-promotions__section-title {
    font-size: clamp(26px, 3vw, 38px);
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding: 10px 0 40px 0;
  }

  .page-promotions__hero-content {
    padding: 15px;
  }

  .page-promotions__main-title {
    font-size: 32px; /* Specific for mobile to prevent over-scaling */
  }

  .page-promotions__hero-description {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .page-promotions__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-promotions__btn-primary,
  .page-promotions__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
    font-size: 16px;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-promotions__overview-section,
  .page-promotions__how-to-claim,
  .page-promotions__faq-section,
  .page-promotions__featured-promos,
  .page-promotions__terms-section,
  .page-promotions__cta-final {
    padding: 60px 0;
  }

  .page-promotions__container {
    padding: 0 15px;
  }

  .page-promotions__section-title {
    font-size: 28px;
    margin-bottom: 25px;
  }

  .page-promotions__text-block {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .page-promotions__promo-types,
  .page-promotions__promo-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-promotions__card-title {
    font-size: 20px;
  }

  .page-promotions__promo-card-item .page-promotions__card-title {
    font-size: 18px;
  }

  .page-promotions__promo-image {
    height: 180px;
  }

  .page-promotions__steps-list li {
    padding-left: 50px;
  }

  .page-promotions__step-number {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }

  .page-promotions__faq-question {
    padding: 18px 20px;
    font-size: 16px;
  }

  .page-promotions__faq-answer {
    padding: 0 20px 18px 20px;
    font-size: 14px;
  }

  /* Mobile image responsiveness */
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-promotions__section,
  .page-promotions__card,
  .page-promotions__container,
  .page-promotions__promo-card-item,
  .page-promotions__cta-buttons,
  .page-promotions__button-group,
  .page-promotions__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  
  .page-promotions__hero-section {
    padding-top: 10px !important; /* body handles --header-offset */
  }
  
  .page-promotions__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
}