:root {
  --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;
  --gradient-button: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
}

/* General Page Styles */
.page-promotions {
  font-family: Arial, sans-serif;
  color: var(--color-text-main); /* Light text on dark body background */
  background-color: var(--color-background); /* Body background from shared.css, this acts as a fallback/reinforcement */
  line-height: 1.6;
}

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

.page-promotions__section-title {
  font-size: 2.5em;
  font-weight: bold;
  color: var(--color-gold);
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.page-promotions__section-subtitle {
  font-size: 1.1em;
  color: var(--color-text-secondary);
  text-align: center;
  margin-bottom: 40px;
}

/* Hero Section */
.page-promotions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  background-color: var(--color-deep-green);
  overflow: hidden;
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

.page-promotions__hero-content {
  max-width: 900px;
  text-align: center;
  z-index: 1;
}

.page-promotions__main-title {
  font-size: clamp(2em, 4vw, 3.2em);
  font-weight: 900;
  color: var(--color-gold);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-promotions__hero-description {
  font-size: 1.15em;
  color: var(--color-text-main);
  margin-bottom: 30px;
  max-width: 800px;
  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,
.page-promotions__btn-card {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.05em;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  text-align: center;
}

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

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

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

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

/* Video Section */
.page-promotions__video-section {
  padding: 60px 20px;
  background-color: var(--color-background);
  text-align: center;
}

.page-promotions__video-container {
  width: 100%;
  max-width: 960px; /* Adjusted for common video aspect ratios */
  margin: 0 auto;
  box-sizing: border-box;
}

.page-promotions__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  margin-top: 30px;
  margin-bottom: 20px;
}

.page-promotions__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  cursor: pointer;
}

.page-promotions__video-caption {
  font-size: 1em;
  color: var(--color-text-secondary);
  margin-top: 10px;
}

/* Featured Promotions */
.page-promotions__featured-promotions {
  padding: 80px 20px;
  background-color: var(--color-deep-green);
}

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

.page-promotions__promo-card {
  background-color: var(--color-card-bg);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-promotions__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-promotions__promo-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-promotions__promo-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-promotions__promo-description {
  font-size: 0.95em;
  color: var(--color-text-secondary);
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__btn-card {
  width: 100%;
  margin-top: auto; /* Pushes button to bottom */
}

/* Benefits Section */
.page-promotions__benefits-section {
  padding: 80px 20px;
  background-color: var(--color-background);
}

.page-promotions__benefits-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.page-promotions__benefits-list {
  flex: 1;
  min-width: 300px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.page-promotions__benefit-item {
  background-color: var(--color-card-bg);
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__benefit-title {
  font-size: 1.3em;
  font-weight: bold;
  color: var(--color-gold);
  margin-bottom: 10px;
}

.page-promotions__benefit-description {
  font-size: 0.9em;
  color: var(--color-text-secondary);
}

.page-promotions__benefits-image {
  flex: 1;
  min-width: 400px;
  max-width: 600px;
  height: auto;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  display: block;
}

/* Guide Section */
.page-promotions__guide-section {
  padding: 80px 20px;
  background-color: var(--color-deep-green);
}

.page-promotions__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-promotions__step-item {
  background-color: var(--color-card-bg);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.page-promotions__step-number {
  width: 50px;
  height: 50px;
  background: var(--gradient-button);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8em;
  font-weight: bold;
  color: var(--color-text-main);
  margin-bottom: 20px;
  box-shadow: 0 0 15px rgba(42, 209, 111, 0.6);
}

.page-promotions__step-title {
  font-size: 1.4em;
  font-weight: bold;
  color: var(--color-gold);
  margin-bottom: 15px;
}

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

/* Terms & Conditions Summary */
.page-promotions__terms-conditions-summary {
  padding: 80px 20px;
  background-color: var(--color-background);
  text-align: center;
}

.page-promotions__text-block {
  font-size: 1.05em;
  color: var(--color-text-main);
  max-width: 900px;
  margin: 0 auto 40px auto;
  line-height: 1.8;
}

/* FAQ Section */
.page-promotions__faq-section {
  padding: 80px 20px;
  background-color: var(--color-deep-green);
}

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

.page-promotions__faq-item {
  background-color: var(--color-card-bg);
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

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

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

.page-promotions__faq-item[open] > .page-promotions__faq-question {
  background-color: var(--color-deep-green);
}

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

.page-promotions__faq-qtext {
  flex-grow: 1;
}

.page-promotions__faq-toggle {
  font-size: 1.5em;
  margin-left: 20px;
  color: var(--color-glow);
}

.page-promotions__faq-item[open] .page-promotions__faq-toggle {
  content: '−';
}

.page-promotions__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1em;
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-promotions__faq-item[open] .page-promotions__faq-answer {
  max-height: 500px; /* Sufficient height for content */
  padding-top: 10px;
}

/* Final CTA Section */
.page-promotions__cta-final-section {
  padding: 80px 20px;
  background-color: var(--color-background);
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions__hero-image-wrapper {
    max-height: 500px;
  }
  .page-promotions__benefits-wrapper {
    flex-direction: column;
  }
  .page-promotions__benefits-image {
    min-width: auto;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-promotions__section-title {
    font-size: 2em;
  }
  .page-promotions__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
  }
  .page-promotions__hero-description {
    font-size: 1em;
  }
  .page-promotions__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }
  .page-promotions__hero-image-wrapper {
    max-height: 300px;
    margin-bottom: 30px;
  }
  .page-promotions__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-promotions__btn-primary,
  .page-promotions__btn-secondary,
  .page-promotions__btn-card {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    margin: 0 auto;
  }

  /* Mobile image responsiveness */
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  /* Mobile video responsiveness */
  .page-promotions video,
  .page-promotions__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-promotions__video-section,
  .page-promotions__video-container,
  .page-promotions__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-promotions__video-section {
    padding-top: 10px !important; /* body already handles --header-offset */
  }

  /* Container padding for mobile */
  .page-promotions__section,
  .page-promotions__card,
  .page-promotions__container,
  .page-promotions__featured-promotions,
  .page-promotions__benefits-section,
  .page-promotions__guide-section,
  .page-promotions__terms-conditions-summary,
  .page-promotions__faq-section,
  .page-promotions__cta-final-section {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

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

  .page-promotions__promo-grid {
    grid-template-columns: 1fr;
  }

  .page-promotions__benefits-image {
    min-width: auto;
  }
  
  .page-promotions__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-promotions__faq-answer {
    padding: 0 20px 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-promotions__section-title {
    font-size: 1.8em;
  }
  .page-promotions__hero-section {
    padding: 30px 10px;
    padding-top: 10px !important;
  }
  .page-promotions__hero-image-wrapper {
    max-height: 200px;
  }
  .page-promotions__main-title {
    font-size: clamp(1.5em, 8vw, 2em);
  }
  .page-promotions__promo-image {
    height: 150px;
  }
  .page-promotions__promo-title {
    font-size: 1.3em;
  }
  .page-promotions__step-title {
    font-size: 1.2em;
  }
  .page-promotions__text-block {
    font-size: 0.95em;
  }
  .page-promotions__faq-question {
    font-size: 0.95em;
  }
}