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

/* style/promotions.css */
.page-promotions {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main); 
  background-color: var(--background); 
  overflow-x: hidden; 
}

/* Ensure contrast for all text elements */
.page-promotions h1, .page-promotions h2, .page-promotions h3, .page-promotions h4, .page-promotions h5, .page-promotions h6 {
  color: var(--text-main); 
}
.page-promotions__main-title { color: var(--gold); }
.page-promotions__section-title { color: var(--gold); }
.page-promotions__card-title { color: var(--text-main); }
.page-promotions p {
  color: var(--text-secondary);
  margin-bottom: 15px;
  font-size: 1.05em;
}
.page-promotions li { color: var(--text-secondary); }
.page-promotions__steps-list li { color: var(--text-main); }
.page-promotions__terms-list li { color: var(--text-secondary); }
.page-promotions__benefits-list li { color: var(--text-main); }
.page-promotions__faq-question { color: var(--text-main); }
.page-promotions__faq-answer { color: var(--text-secondary); }
.page-promotions a {
  color: var(--gold);
  text-decoration: none;
}
.page-promotions a:hover { color: var(--glow); }

/* Ensure button text is white on dark gradient */
.page-promotions__btn-primary, .page-promotions__card-button {
  color: #ffffff;
}

/* Ensure no CSS filters on images */
.page-promotions img {
  filter: none !important;
}

/* Hero Section */
.page-promotions__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column; 
  align-items: center;
  padding: 10px 0 60px 0; 
  text-align: center;
  overflow: hidden;
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  position: relative;
  z-index: 1; 
}

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

.page-promotions__hero-content {
  position: relative; 
  z-index: 2;
  max-width: 900px;
  padding: 20px;
  margin-top: -80px; 
  background-color: var(--background); 
  border-radius: 10px;
}

.page-promotions__main-title {
  font-size: clamp(2em, 4vw, 3.5em); 
  font-weight: bold;
  color: var(--gold); 
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-promotions__description {
  font-size: 1.1em;
  color: var(--text-secondary); 
  margin-bottom: 30px;
}

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

.page-promotions__btn-primary,
.page-promotions__btn-secondary,
.page-promotions__card-button {
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal; 
  word-wrap: break-word; 
  display: inline-flex; 
  align-items: center;
  justify-content: center;
  text-align: center;
  min-width: 180px; 
}

.page-promotions__btn-primary {
  background: var(--button-gradient); 
  color: #ffffff; 
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

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

.page-promotions__btn-secondary:hover {
  background: var(--border);
  color: #ffffff;
}

/* General Section Styles */
.page-promotions__section {
  padding: 80px 0;
  border-bottom: 1px solid var(--divider); 
}

.page-promotions__section:last-of-type {
  border-bottom: none;
}

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

.page-promotions__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.8em); 
  color: var(--gold); 
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.3;
}

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

.page-promotions__promo-card {
  background-color: var(--card-bg); 
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-promotions__card-image {
  width: 100%;
  height: 200px; 
  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(--text-main); 
  margin-bottom: 15px;
  font-weight: bold;
  flex-grow: 1; 
}

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

.page-promotions__card-button {
  background: var(--button-gradient); 
  color: #ffffff;
  border: none;
  padding: 12px 25px;
  border-radius: 6px;
  font-size: 1em;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
  margin-top: auto; 
}

.page-promotions__card-button:hover {
  opacity: 0.9;
}

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

.page-promotions__steps-list li {
  background-color: var(--card-bg); 
  border-left: 5px solid var(--deep-green); 
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 1.1em;
  color: var(--text-main); 
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

/* Terms Section */
.page-promotions__terms-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  text-align: left;
}

.page-promotions__terms-list li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: var(--text-secondary); 
  font-size: 1.05em;
}

.page-promotions__terms-list li::before {
  content: "•";
  color: var(--deep-green); 
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 1.2em;
  line-height: 1;
}

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

/* Why Choose Section */
.page-promotions__benefits-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  text-align: left;
}

.page-promotions__benefits-list li {
  background-color: var(--card-bg); 
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: var(--text-main); 
  position: relative;
  padding-left: 45px;
}

.page-promotions__benefits-list li::before {
  content: "✅";
  position: absolute;
  left: 15px;
  top: 20px;
  font-size: 1.2em;
}

/* FAQ Section */
.page-promotions__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

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

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

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

.page-promotions__faq-answer {
  padding: 0 20px 20px 20px;
  color: var(--text-secondary); 
  font-size: 1em;
  line-height: 1.6;
}

/* Bottom CTA */
.page-promotions__cta-bottom {
  padding-top: 60px;
  padding-bottom: 80px;
  text-align: center;
}

.page-promotions__cta-bottom-content {
  background-color: var(--card-bg); 
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions__hero-content {
    margin-top: -60px;
  }
}

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

  .page-promotions__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
    margin-bottom: 15px;
  }

  .page-promotions__description {
    font-size: 1em;
    margin-bottom: 20px;
  }

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

  .page-promotions__btn-primary,
  .page-promotions__btn-secondary,
  .page-promotions__card-button {
    width: 100% !important; 
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    min-width: unset;
  }

  .page-promotions__section {
    padding: 40px 0;
  }

  .page-promotions__section-title {
    font-size: clamp(1.5em, 6vw, 2em);
    margin-bottom: 30px;
  }

  .page-promotions__container {
    padding: 0 15px; 
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important; 
  }

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

  .page-promotions__card-image {
    height: auto; 
    max-width: 100% !important;
    width: 100% !important;
    min-width: 200px !important; 
    min-height: 200px !important; 
  }

  .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 {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .page-promotions__hero-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-promotions__cta-bottom-content {
    padding: 30px 20px;
  }
}