.page-promo {
  color: #ffffff; /* Light text for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
}

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

.page-promo__hero-section {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  padding-bottom: 60px; /* Add padding below content for visual balance */
}

.page-promo__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  min-height: 100%;
  z-index: 1;
}

.page-promo__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 100px 20px;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for text readability */
  max-width: 900px;
  margin: 60px auto;
  border-radius: 10px;
}

.page-promo__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FCBC45; /* Highlight color for title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

.page-promo__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-promo__cta-button {
  display: inline-block;
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Dark text for light button */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-promo__cta-button:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

.page-promo__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 30px;
  color: #FCBC45;
  padding-top: 40px;
}

.page-promo__section-text {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: #f0f0f0;
}

.page-promo__overview-section, .page-promo__current-promotions, .page-promo__how-to-claim, .page-promo__faq-section, .page-promo__call-to-action {
  padding: 60px 0;
  background-color: #000000; /* Main dark background */
}

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

.page-promo__feature-item, .page-promo__promotion-card, .page-promo__faq-item {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter card background */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-promo__feature-item:hover, .page-promo__promotion-card:hover {
  transform: translateY(-5px);
}

.page-promo__feature-image, .page-promo__card-image {
  width: 100%;
  height: 225px; /* Fixed height for consistent card images */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-promo__feature-title, .page-promo__card-title {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #FCBC45;
  line-height: 1.3;
}

.page-promo__card-title a {
  color: #FCBC45;
  text-decoration: none;
}

.page-promo__card-title a:hover {
  text-decoration: underline;
}

.page-promo__feature-description, .page-promo__card-description {
  font-size: 1em;
  color: #cccccc;
  flex-grow: 1;
}

.page-promo__card-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.page-promo__card-button:hover {
  background-color: #e0a53b;
}

.page-promo__main-cta, .page-promo__claim-cta, .page-promo__final-cta-button {
  display: block;
  width: fit-content;
  margin: 50px auto 0 auto;
  background-color: #FCBC45;
  color: #000000;
  padding: 18px 40px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.3em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-promo__main-cta:hover, .page-promo__claim-cta:hover, .page-promo__final-cta-button:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

.page-promo__how-to-claim {
  background-color: #1a1a1a;
}

.page-promo__claim-steps {
  list-style: none;
  padding: 0;
  margin: 50px auto;
  max-width: 900px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-promo__step-item {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-promo__step-title {
  font-size: 1.5em;
  color: #FCBC45;
  margin-bottom: 10px;
}

.page-promo__step-description {
  color: #cccccc;
}

.page-promo__step-description a {
  color: #FCBC45;
  text-decoration: none;
}

.page-promo__step-description a:hover {
  text-decoration: underline;
}

.page-promo__faq-section {
  background-color: #000000;
}

.page-promo__faq-item {
  text-align: left;
}

.page-promo__faq-question {
  font-size: 1.4em;
  color: #FCBC45;
  margin-bottom: 10px;
}

.page-promo__faq-answer {
  color: #cccccc;
}

.page-promo__faq-answer a {
  color: #FCBC45;
  text-decoration: none;
}

.page-promo__faq-answer a:hover {
  text-decoration: underline;
}

.page-promo__call-to-action {
  background-color: #1a1a1a;
  text-align: center;
  padding: 80px 0;
}

.page-promo__call-to-action .page-promo__section-text a {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

.page-promo__call-to-action .page-promo__section-text a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promo__hero-title {
    font-size: 2.8em;
  }
  .page-promo__hero-description {
    font-size: 1.1em;
  }
  .page-promo__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-promo {
    padding-top: var(--header-offset, 80px);
  }
  .page-promo__hero-content {
    padding: 80px 15px;
    margin: 30px auto;
  }
  .page-promo__hero-title {
    font-size: 2.2em;
  }
  .page-promo__hero-description {
    font-size: 1em;
  }
  .page-promo__cta-button {
    padding: 12px 25px;
    font-size: 1.1em;
  }
  .page-promo__section-title {
    font-size: 1.8em;
  }
  .page-promo__section-text {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-promo__feature-grid, .page-promo__promotion-list, .page-promo__faq-grid, .page-promo__claim-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-promo__feature-item, .page-promo__promotion-card, .page-promo__faq-item {
    padding: 20px;
  }
  .page-promo__feature-image, .page-promo__card-image {
    height: 200px;
  }
  .page-promo__feature-title, .page-promo__card-title {
    font-size: 1.5em;
  }
  .page-promo__card-button {
    padding: 8px 15px;
    font-size: 0.95em;
  }
  .page-promo__main-cta, .page-promo__claim-cta, .page-promo__final-cta-button {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  /* Ensure images do not overflow on mobile */
  .page-promo img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 1.8em;
  }
  .page-promo__hero-description {
    font-size: 0.9em;
  }
  .page-promo__hero-content {
    padding: 60px 10px;
  }
  .page-promo__cta-button {
    font-size: 1em;
    padding: 10px 20px;
  }
  .page-promo__section-title {
    font-size: 1.5em;
  }
  .page-promo__section-text {
    font-size: 0.9em;
  }
  .page-promo__feature-title, .page-promo__card-title {
    font-size: 1.3em;
  }
  .page-promo__main-cta, .page-promo__claim-cta, .page-promo__final-cta-button {
    font-size: 1em;
    padding: 12px 25px;
  }
}