.page-promo {
  color: #333333; /* Dark text on light background for contrast */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px);
}

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

.page-promo__hero-section {
  background-color: #000000; /* Black background for hero */
  color: #FFFFFF;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.page-promo__hero-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 1920px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}

.page-promo__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4; /* Slightly dim the image to make text pop */
  z-index: 1;
}

.page-promo__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

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

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

.page-promo__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-promo__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-promo__button--register {
  background-color: #FFFFFF;
  color: #000000;
}

.page-promo__button--register:hover {
  background-color: #e0e0e0;
  transform: translateY(-2px);
}

.page-promo__button--login {
  background-color: #FCBC45;
  color: #000000;
}

.page-promo__button--login:hover {
  background-color: #e6a73c;
  transform: translateY(-2px);
}

.page-promo__button--cta {
  background-color: #FCBC45;
  color: #000000;
  margin-top: 40px;
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-promo__button--cta:hover {
  background-color: #e6a73c;
  transform: translateY(-2px);
}

.page-promo__section-title {
  font-size: 2.8em;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
  margin-top: 60px;
  font-weight: bold;
}

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

.page-promo__bonus-grid, .page-promo__event-grid, .page-promo__program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-promo__bonus-card, .page-promo__event-card, .page-promo__program-card {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promo__bonus-card:hover, .page-promo__event-card:hover, .page-promo__program-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-promo__bonus-image, .page-promo__event-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
  object-fit: cover;
  min-height: 200px; /* Enforce min image size */
}

.page-promo__card-title {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promo__card-text {
  font-size: 1em;
  color: #666666;
  margin-bottom: 25px;
  flex-grow: 1;
}

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

.page-promo__claim-steps {
  list-style: none;
  padding: 0;
  margin: 0 auto 60px;
  max-width: 900px;
}

.page-promo__step-item {
  background-color: #f9f9f9;
  border-left: 5px solid #FCBC45;
  padding: 25px 30px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

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

.page-promo__step-description {
  font-size: 1em;
  color: #555555;
}

.page-promo__responsible-gambling-section {
  background-color: #f0f0f0;
  padding: 60px 20px;
  text-align: center;
}

.page-promo__content-text {
  font-size: 1.1em;
  max-width: 900px;
  margin: 20px auto 40px;
  color: #555555;
}

.page-promo__faq-section {
  padding: 60px 20px;
}

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

.page-promo__faq-question {
  font-size: 1.4em;
  color: #000000;
  margin-bottom: 10px;
  cursor: pointer;
  font-weight: bold;
  position: relative;
}

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

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

.page-promo__faq-answer {
  font-size: 1em;
  color: #666666;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
  opacity: 0;
  padding-top: 0;
}

.page-promo__faq-answer.open {
  max-height: 500px; /* Adjust as needed */
  opacity: 1;
  padding-top: 15px;
}

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

  .page-promo__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-promo__hero-container {
    padding: 40px 15px;
  }

  .page-promo__hero-title {
    font-size: 2.5em;
  }

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

  .page-promo__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-promo__button {
    width: 100%;
    padding: 12px 20px;
  }

  .page-promo__section-title {
    font-size: 1.8em;
    margin-top: 40px;
  }

  .page-promo__section-intro {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

  .page-promo__bonus-grid, .page-promo__event-grid, .page-promo__program-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-promo__bonus-card, .page-promo__event-card, .page-promo__program-card {
    padding: 25px;
  }

  .page-promo__card-title {
    font-size: 1.5em;
  }

  .page-promo__claim-steps {
    margin-bottom: 40px;
  }

  .page-promo__step-item {
    padding: 20px 25px;
  }

  .page-promo__step-title {
    font-size: 1.3em;
  }

  .page-promo__content-text {
    font-size: 1em;
    margin: 15px auto 30px;
  }

  .page-promo__faq-question {
    font-size: 1.2em;
  }

  /* Ensure images do not overflow */
  .page-promo img {
    max-width: 100%;
    height: auto;
  }
}

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

  .page-promo__section-title {
    font-size: 1.6em;
  }

  .page-promo__button--cta {
    font-size: 1.1em;
    padding: 15px 25px;
  }
}