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

/* --- Base Styles --- */
.page-promotions {
  background-color: var(--background-color);
  color: var(--text-main-color);
  font-family: Arial, sans-serif;
  line-height: 1.6;
  font-size: 16px;
}

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

.page-promotions__section {
  padding: 60px 0;
  text-align: center;
}

.page-promotions__section:nth-child(odd) {
  background-color: var(--card-bg-color);
}

.page-promotions__main-title {
  font-size: 3.2em;
  font-weight: bold;
  color: var(--text-main-color);
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.page-promotions__section-title {
  font-size: 2.5em;
  font-weight: bold;
  color: var(--glow-color);
  margin-bottom: 30px;
  line-height: 1.3;
}

.page-promotions__promo-category-title {
  font-size: 1.8em;
  font-weight: bold;
  color: var(--gold-color);
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: left;
}

.page-promotions__intro-description,
.page-promotions__text-block {
  font-size: 1.1em;
  color: var(--text-secondary-color);
  margin-bottom: 20px;
}

.page-promotions__list-item {
  color: var(--text-secondary-color);
  text-align: left;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.page-promotions__list-item::before {
  content: '✓';
  color: var(--glow-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

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

/* --- Buttons --- */
.page-promotions__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.page-promotions__cta-buttons--centered {
  justify-content: center;
}

.page-promotions__btn-primary,
.page-promotions__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 200px;
  box-sizing: border-box;
}

.page-promotions__btn-primary {
  background: var(--button-gradient);
  color: var(--text-main-color);
  border: none;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-promotions__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

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

.page-promotions__btn-secondary:hover {
  background: var(--glow-color);
  color: var(--deep-green-color);
}

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

.page-promotions__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.page-promotions__hero-content-wrapper {
  position: relative;
  padding: 40px 0;
  width: 100%;
  text-align: center;
  background-color: var(--background-color);
}

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

.page-promotions__card {
  background-color: var(--card-bg-color);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-main-color);
}

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

.page-promotions__card-title {
  font-size: 1.5em;
  color: var(--gold-color);
  margin-bottom: 15px;
}

.page-promotions__card-text {
  color: var(--text-secondary-color);
  font-size: 0.95em;
}

/* --- Promo Types Section --- */
.page-promotions__promo-category {
  margin-bottom: 50px;
  text-align: left;
}

.page-promotions__promo-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-promotions__content-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  margin: 30px auto;
  display: block;
  min-width: 200px;
  min-height: 200px;
}

/* --- How To Claim Section --- */
.page-promotions__steps-list {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-top: 30px;
}

.page-promotions__steps-list .page-promotions__list-item {
  counter-increment: step-counter;
  margin-bottom: 15px;
  padding-left: 40px;
  position: relative;
  font-size: 1.1em;
  color: var(--text-main-color);
}

.page-promotions__steps-list .page-promotions__list-item::before {
  content: counter(step-counter) ".";
  color: var(--gold-color);
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 1.2em;
}

/* --- FAQ Section --- */
.page-promotions__faq-list {
  margin-top: 40px;
  text-align: left;
}

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

.page-promotions__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1em;
  color: var(--text-main-color);
  list-style: none;
}

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

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.page-promotions__faq-qtext {
  flex-grow: 1;
  color: var(--text-main-color);
}

.page-promotions__faq-toggle {
  margin-left: 15px;
  font-size: 1.5em;
  color: var(--gold-color);
  transition: transform 0.3s ease;
}

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

.page-promotions__faq-answer {
  padding: 0 20px 20px;
  color: var(--text-secondary-color);
  font-size: 0.95em;
  text-align: left;
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
  .page-promotions__main-title {
    font-size: 2.8em;
  }
  .page-promotions__section-title {
    font-size: 2em;
  }
  .page-promotions__hero-image-wrapper {
    max-height: 500px;
  }
}

@media (max-width: 768px) {
  .page-promotions {
    font-size: 15px;
  }

  .page-promotions__main-title {
    font-size: clamp(2em, 8vw, 2.5em); /* Clamp for H1 */
    padding: 0 10px;
  }

  .page-promotions__section-title {
    font-size: 1.8em;
    padding: 0 10px;
  }

  .page-promotions__promo-category-title {
    font-size: 1.5em;
  }

  .page-promotions__hero-section {
    padding-top: 10px !important; /* body handles --header-offset, this is decorative */
  }

  .page-promotions__hero-image-wrapper {
    max-height: 300px;
  }

  .page-promotions__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px !important;
  }

  .page-promotions__btn-primary,
  .page-promotions__btn-secondary {
    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__section,
  .page-promotions__card,
  .page-promotions__container,
  .page-promotions__hero-content-wrapper,
  .page-promotions__benefits-grid,
  .page-promotions__promo-category,
  .page-promotions__faq-list,
  .page-promotions__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

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

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

  .page-promotions__faq-item summary {
    padding: 15px;
  }
  .page-promotions__faq-answer {
    padding: 0 15px 15px;
  }

  .page-promotions__list-item {
    padding-left: 15px;
  }
  .page-promotions__list-item::before {
    left: -5px;
  }
  .page-promotions__steps-list .page-promotions__list-item::before {
    left: -5px;
  }
}