.page-promo {
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  background-color: #FFFFFF; /* Default light background */
  color: #333333; /* Dark text for light background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-promo__hero-section {
  position: relative;
  text-align: center;
  padding: 80px 20px 40px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px; /* Minimum height for hero section */
}

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

.page-promo__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Cover the entire area */
  object-position: center;
  display: block;
  filter: brightness(0.6); /* Slightly dim the background image for text readability */
}

.page-promo__hero-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  color: #FFFFFF; /* White text over dark background image */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-promo__hero-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFFFFF; /* Consistent white color for title */
}

.page-promo__hero-description {
  font-size: 1.3rem;
  margin-bottom: 30px;
  color: #F0F0F0; /* Slightly off-white for description */
}

.page-promo__hero-cta-button {
  display: inline-block;
  background-color: #FCBC45; /* Login button color for CTA */
  color: #000000; /* Black text for contrast */
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-promo__hero-cta-button:hover {
  background-color: #e0a53a;
}

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

.page-promo__section-title {
  font-size: 2.5rem;
  color: #000000; /* Main color for section titles */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-promo__section-description {
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #555555;
}

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

.page-promo__promo-card {
  background-color: #F8F8F8;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promo__promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-promo__promo-card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistent card image display */
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.page-promo__promo-card-title {
  font-size: 1.6rem;
  color: #000000;
  margin-bottom: 15px;
  padding: 0 20px;
}

.page-promo__promo-card-text {
  font-size: 1rem;
  color: #666666;
  margin-bottom: 25px;
  padding: 0 20px;
}

.page-promo__promo-card-button {
  display: inline-block;
  background-color: #000000; /* Main color for card buttons */
  color: #FFFFFF; /* White text for contrast */
  padding: 12px 25px;
  border-radius: 40px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-promo__promo-card-button:hover {
  background-color: #333333;
}

.page-promo__disclaimer-text {
  font-size: 0.9rem;
  color: #888888;
  text-align: center;
  margin-top: 20px;
  padding: 0 20px;
}

.page-promo__event-highlights {
  background-color: #F0F0F0;
  border-radius: 15px;
  padding: 40px;
  margin-top: 40px;
  text-align: center;
}

.page-promo__event-subtitle {
  font-size: 2rem;
  color: #000000;
  margin-bottom: 25px;
}

.page-promo__event-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 30px;
  max-width: 700px;
}

.page-promo__event-list-item {
  font-size: 1.1rem;
  color: #333333;
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
}

.page-promo__event-list-item::before {
  content: '✨';
  position: absolute;
  left: 0;
  top: 0;
}

.page-promo__event-cta-text {
  font-size: 1.1rem;
  color: #555555;
  margin-bottom: 30px;
}

.page-promo__responsible-gaming-link {
  display: inline-block;
  color: #FCBC45; /* Highlight color for important links */
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  margin-top: 20px;
  transition: color 0.3s ease;
}

.page-promo__responsible-gaming-link:hover {
  color: #e0a53a;
  text-decoration: underline;
}

.page-promo__faq-section {
  background-color: #F8F8F8;
  padding: 60px 20px;
  border-radius: 15px;
  margin-top: 60px;
}

.page-promo__faq-item {
  margin-bottom: 25px;
  padding: 20px;
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-promo__faq-question {
  font-size: 1.3rem;
  color: #000000;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-promo__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.5rem;
  color: #FCBC45;
}

.page-promo__faq-answer {
  font-size: 1rem;
  color: #555555;
  display: none; /* Hidden by default, toggled by JS */
  padding-top: 10px;
}

.page-promo__faq-item.active .page-promo__faq-answer {
  display: block;
}

.page-promo__faq-item.active .page-promo__faq-question::after {
  content: '-';
}

.page-promo__cta-section {
  text-align: center;
  padding: 60px 20px;
  background-color: #000000; /* Dark background for strong CTA */
  color: #FFFFFF;
  margin-top: 60px;
  border-radius: 15px;
}

.page-promo__cta-section .page-promo__section-title,
.page-promo__cta-section .page-promo__section-description {
  color: #FFFFFF;
}

.page-promo__cta-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin: 10px;
  border: none;
  cursor: pointer;
}

.page-promo__cta-button:hover {
  background-color: #e0a53a;
}

.page-promo__cta-button--large {
  padding: 18px 40px;
  font-size: 1.4rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-promo__hero-title {
    font-size: 2.5rem;
  }

  .page-promo__hero-description {
    font-size: 1rem;
  }

  .page-promo__hero-cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }

  .page-promo__section-title {
    font-size: 2rem;
  }

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

  .page-promo__promo-card-image {
    height: 200px;
  }

  .page-promo__promo-card-title {
    font-size: 1.4rem;
  }

  .page-promo__event-subtitle {
    font-size: 1.6rem;
  }

  .page-promo__event-list-item {
    font-size: 1rem;
  }

  .page-promo__faq-question {
    font-size: 1.1rem;
  }

  .page-promo__cta-button {
    font-size: 1rem;
    padding: 12px 25px;
  }

  .page-promo__cta-button--large {
    font-size: 1.2rem;
    padding: 15px 30px;
  }

  .page-promo__content-area {
    padding: 20px 15px;
  }

  /* Ensure all content images in .page-promo are responsive and not too small */
  .page-promo img {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
  .page-promo__promo-card-image {
    min-width: unset;
    min-height: unset;
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 2rem;
  }

  .page-promo__hero-description {
    font-size: 0.9rem;
  }

  .page-promo__section-title {
    font-size: 1.8rem;
  }

  .page-promo__promo-card-image {
    height: 180px;
  }
}