.page-promo-loyalty-program {
  color: #ffffff; /* Default text color for dark background */
  background-color: var(--background-color, #0d0d0d); /* Assuming shared.css provides a dark background */
  padding-top: var(--header-offset, 120px);
}

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

.page-promo-loyalty-program__section-title {
  font-size: 2.8em;
  color: #FCBC45;
  text-align: center;
  margin-bottom: 20px;
  padding-top: 40px;
  font-weight: bold;
}

.page-promo-loyalty-program__section-intro,
.page-promo-loyalty-program__section-text {
  font-size: 1.1em;
  line-height: 1.6;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #f0f0f0;
}

/* Hero Section */
.page-promo-loyalty-program__hero-section {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin-bottom: 60px;
}

.page-promo-loyalty-program__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.6); /* Slightly dim the background image for text readability */
}

.page-promo-loyalty-program__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  max-width: 900px;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text */
  border-radius: 10px;
}

.page-promo-loyalty-program__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FCBC45;
  font-weight: bold;
  line-height: 1.2;
}

.page-promo-loyalty-program__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  line-height: 1.5;
}

.page-promo-loyalty-program__hero-button,
.page-promo-loyalty-program__cta-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-promo-loyalty-program__hero-button:hover,
.page-promo-loyalty-program__cta-button:hover {
  background-color: #e0a73b;
  transform: translateY(-3px);
}

.page-promo-loyalty-program__cta-button--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

/* Tiers Section */
.page-promo-loyalty-program__tiers-section {
  padding: 60px 0;
  background-color: #0d0d0d;
}

.page-promo-loyalty-program__tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-promo-loyalty-program__tier-card {
  background-color: #1a1a1a;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 30px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promo-loyalty-program__tier-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6);
}

.page-promo-loyalty-program__tier-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-promo-loyalty-program__tier-title {
  font-size: 1.8em;
  color: #FCBC45;
  margin-bottom: 15px;
  padding: 0 20px;
}

.page-promo-loyalty-program__tier-features {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
  color: #f0f0f0;
}

.page-promo-loyalty-program__tier-features li {
  padding: 8px 20px;
  font-size: 1.05em;
}

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

.page-promo-loyalty-program__tier-button:hover {
  background-color: #e0a73b;
}

/* How It Works Section */
.page-promo-loyalty-program__how-it-works-section {
  padding: 60px 0;
  background-color: #000000;
}

.page-promo-loyalty-program__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-promo-loyalty-program__step-card {
  background-color: #1a1a1a;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promo-loyalty-program__step-icon {
  background-color: #FCBC45;
  color: #000000;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  margin: 0 auto 20px auto;
}

.page-promo-loyalty-program__step-title {
  font-size: 1.6em;
  color: #FCBC45;
  margin-bottom: 10px;
}

.page-promo-loyalty-program__step-description {
  font-size: 1em;
  color: #f0f0f0;
  line-height: 1.5;
}

.page-promo-loyalty-program__cta-button {
  margin-top: 50px;
}

/* FAQ Section */
.page-promo-loyalty-program__faq-section {
  padding: 60px 0;
  background-color: #0d0d0d;
}

.page-promo-loyalty-program__faq-list {
  margin-top: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promo-loyalty-program__faq-item {
  background-color: #1a1a1a;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-promo-loyalty-program__faq-question {
  font-size: 1.4em;
  color: #FCBC45;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-promo-loyalty-program__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-promo-loyalty-program__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-promo-loyalty-program__faq-answer {
  font-size: 1em;
  color: #f0f0f0;
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, opacity 0.4s ease-out;
  opacity: 0;
}

.page-promo-loyalty-program__faq-answer.active {
  max-height: 200px; /* Adjust as needed */
  opacity: 1;
  margin-top: 15px;
}

.page-promo-loyalty-program__contact-link {
  display: block;
  text-align: center;
  margin-top: 40px;
  color: #FCBC45;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-promo-loyalty-program__contact-link:hover {
  color: #e0a73b;
}

/* Bottom CTA Section */
.page-promo-loyalty-program__cta-bottom-section {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(45deg, #000000, #1a1a1a);
  margin-top: 60px;
}

.page-promo-loyalty-program__cta-bottom-title {
  font-size: 3em;
  color: #FCBC45;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-promo-loyalty-program__cta-bottom-description {
  font-size: 1.2em;
  color: #ffffff;
  max-width: 700px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

/* Responsible Gambling Section */
.page-promo-loyalty-program__responsible-gambling-section {
  padding: 60px 0;
  background-color: #000000;
}

.page-promo-loyalty-program__responsible-gambling-link {
  display: inline-block;
  margin-top: 30px;
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: color 0.3s ease;
}

.page-promo-loyalty-program__responsible-gambling-link:hover {
  color: #e0a73b;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promo-loyalty-program__hero-title {
    font-size: 3em;
  }

  .page-promo-loyalty-program__hero-description {
    font-size: 1.2em;
  }

  .page-promo-loyalty-program__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-promo-loyalty-program__hero-section {
    min-height: 400px;
  }

  .page-promo-loyalty-program__hero-title {
    font-size: 2.5em;
  }

  .page-promo-loyalty-program__hero-description {
    font-size: 1em;
  }

  .page-promo-loyalty-program__hero-button,
  .page-promo-loyalty-program__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-promo-loyalty-program__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }

  .page-promo-loyalty-program__section-title {
    font-size: 1.8em;
  }

  .page-promo-loyalty-program__section-intro,
  .page-promo-loyalty-program__section-text {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

  .page-promo-loyalty-program__tier-grid,
  .page-promo-loyalty-program__steps-grid {
    grid-template-columns: 1fr;
  }

  .page-promo-loyalty-program__tier-image {
    height: 200px;
  }

  .page-promo-loyalty-program__tier-title {
    font-size: 1.5em;
  }

  .page-promo-loyalty-program__step-title {
    font-size: 1.4em;
  }

  .page-promo-loyalty-program__cta-bottom-title {
    font-size: 2.2em;
  }

  .page-promo-loyalty-program__cta-bottom-description {
    font-size: 1em;
  }

  /* Mobile image scaling for content images */
  .page-promo-loyalty-program img {
    max-width: 100%;
    height: auto;
  }
  /* Ensure no content causes horizontal overflow */
  .page-promo-loyalty-program {
    overflow-x: hidden;
  }
}