.page-promo {
  color: #333333; /* Dark text for light body background */
}

.page-promo__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensures content is below fixed header */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #000000; /* Black background for hero */
  color: #ffffff; /* White text on black background */
  padding-bottom: 60px;
}

.page-promo__hero-content {
  max-width: 900px;
  padding: 20px;
  z-index: 1;
}

.page-promo__hero-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #FCBC45; /* Login button color for highlight */
  line-height: 1.2;
}

.page-promo__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.6;
}

.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, color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

.page-promo__button--register {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FFFFFF;
}

.page-promo__button--register:hover {
  background-color: transparent;
  color: #FFFFFF;
  transform: translateY(-3px);
}

.page-promo__button--login {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-promo__button--login:hover {
  background-color: transparent;
  color: #FCBC45;
  transform: translateY(-3px);
}

.page-promo__hero-image-container {
  width: 100%;
  max-width: 1200px;
  margin-top: 40px;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-promo__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-promo__promotions-grid,
.page-promo__how-to-claim,
.page-promo__terms-overview,
.page-promo__responsible-gaming,
.page-promo__faq,
.page-promo__detail-pages,
.page-promo__cta-final {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.page-promo__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.page-promo__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FCBC45;
  border-radius: 2px;
}

.page-promo__section-description {
  font-size: 1.1em;
  line-height: 1.6;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #555555;
}

.page-promo__grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-promo__promotion-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #eee;
}

.page-promo__promotion-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.page-promo__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.page-promo__card-title {
  font-size: 1.8em;
  color: #000000;
  margin: 25px 15px 10px 15px;
}

.page-promo__card-text {
  font-size: 1em;
  color: #666666;
  line-height: 1.5;
  padding: 0 20px 20px 20px;
  flex-grow: 1;
}

.page-promo__button--claim,
.page-promo__button--details,
.page-promo__button--join,
.page-promo__button--support,
.page-promo__button--view-details,
.page-promo__button--final-register {
  background-color: #FCBC45;
  color: #000000;
  padding: 12px 25px;
  margin: 0 20px 25px 20px;
  border-radius: 6px;
  border: none;
}

.page-promo__button--claim:hover,
.page-promo__button--details:hover,
.page-promo__button--join:hover,
.page-promo__button--support:hover,
.page-promo__button--view-details:hover,
.page-promo__button--final-register:hover {
  background-color: #e0a33c;
  transform: translateY(-2px);
}

.page-promo__claim-steps {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

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

.page-promo__step-item::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  top: 15px;
  left: -20px;
  background-color: #FCBC45;
  color: #000000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 1.3em;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-promo__step-title {
  font-size: 1.5em;
  color: #000000;
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 30px; /* Space for the counter */
}

.page-promo__step-text {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
}

.page-promo__call-to-action {
  text-align: center;
  margin-top: 50px;
}

.page-promo__terms-list,
.page-promo__responsible-gaming-points {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.page-promo__term-item,
.page-promo__point-item {
  background-color: #f5f5f5;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #000000;
}

.page-promo__term-heading {
  font-size: 1.4em;
  color: #000000;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-promo__term-text {
  font-size: 0.95em;
  line-height: 1.6;
  color: #666666;
}

.page-promo__point-item {
  font-size: 1em;
  line-height: 1.6;
  color: #333333;
  position: relative;
  padding-left: 35px;
}

.page-promo__point-item::before {
  content: '✔️';
  position: absolute;
  left: 0;
  color: #000000; /* Use main color for bullet */
  font-size: 1.2em;
}

.page-promo__faq-item {
  background-color: #ffffff;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.page-promo__faq-question {
  font-size: 1.3em;
  color: #000000;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-promo__faq-answer {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
}

.page-promo__detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 30px;
}

.page-promo__detail-card {
  background-color: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
}

.page-promo__detail-card-title {
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-promo__detail-card-title a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promo__detail-card-title a:hover {
  color: #FCBC45;
}

.page-promo__detail-card-description {
  font-size: 1.1em;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 25px;
}

.page-promo__cta-final {
  text-align: center;
  background-color: #000000;
  color: #ffffff;
  padding: 80px 20px;
  border-radius: 15px;
  margin-bottom: 60px;
}

.page-promo__cta-title {
  font-size: 2.8em;
  color: #FCBC45;
  margin-bottom: 20px;
}

.page-promo__cta-description {
  font-size: 1.2em;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-promo__button--final-register {
  background-color: #FFFFFF;
  color: #000000;
  padding: 18px 40px;
  font-size: 1.2em;
  border: 2px solid #FFFFFF;
}

.page-promo__button--final-register:hover {
  background-color: transparent;
  color: #FFFFFF;
  transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-promo__hero-title {
    font-size: 2.5em;
  }
  .page-promo__section-title {
    font-size: 2em;
  }
  .page-promo__card-title {
    font-size: 1.5em;
  }
}

@media (max-width: 768px) {
  .page-promo__hero-section {
    flex-direction: column;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promo__hero-title {
    font-size: 2em;
  }
  .page-promo__hero-description {
    font-size: 1em;
  }
  .page-promo__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-promo__button {
    width: 100%;
  }
  .page-promo__promotions-grid,
  .page-promo__how-to-claim,
  .page-promo__terms-overview,
  .page-promo__responsible-gaming,
  .page-promo__faq,
  .page-promo__detail-pages,
  .page-promo__cta-final {
    margin: 40px auto;
    padding: 0 15px;
  }
  .page-promo__section-title {
    font-size: 1.8em;
  }
  .page-promo__section-description {
    font-size: 0.95em;
  }
  .page-promo__grid-container,
  .page-promo__claim-steps,
  .page-promo__terms-list,
  .page-promo__responsible-gaming-points {
    grid-template-columns: 1fr;
  }
  .page-promo__card-image {
    height: 200px;
  }
  .page-promo__card-title {
    font-size: 1.3em;
  }
  .page-promo__step-title {
    font-size: 1.3em;
  }
  .page-promo__faq-question {
    font-size: 1.1em;
  }
  .page-promo__cta-title {
    font-size: 2em;
  }
  .page-promo__cta-description {
    font-size: 1em;
  }
  /* Mobile content image overflow prevention */
  .page-promo img {
    max-width: 100%;
    height: auto;
  }
  .page-promo {
    overflow-x: hidden;
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 1.8em;
  }
  .page-promo__hero-description {
    font-size: 0.9em;
  }
  .page-promo__section-title {
    font-size: 1.6em;
  }
  .page-promo__card-title {
    font-size: 1.2em;
  }
  .page-promo__step-title {
    font-size: 1.2em;
  }
  .page-promo__faq-question {
    font-size: 1em;
  }
  .page-promo__cta-title {
    font-size: 1.8em;
  }
}

/* Ensure all content area images are at least 200px wide/high, but responsive */
.page-promo__hero-image, 
.page-promo__card-image, 
.page-promo__terms-overview img, 
.page-promo__responsible-gaming img, 
.page-promo__faq img, 
.page-promo__detail-pages img, 
.page-promo__cta-final img {
  min-width: 200px; 
  min-height: 200px;
}

/* Override specific element sizes if they fall below 200px */
.page-promo__card-image {
  width: 100%; /* Ensure it fills card width */
  height: 250px; /* Maintain a good height */
}

/* Ensure contrast for specific elements */
.page-promo__button--register {
  color: #000000; /* Black text on white button */
}
.page-promo__button--login {
  color: #000000; /* Black text on FCBC45 button */
}
.page-promo__button--claim,
.page-promo__button--details,
.page-promo__button--join,
.page-promo__button--support,
.page-promo__button--view-details,
.page-promo__button--final-register {
  color: #000000; /* Black text on FCBC45 button */
}

.page-promo__hero-title {
  color: #FCBC45; /* Highlight color for title on dark background */
}
.page-promo__hero-description {
  color: #FFFFFF; /* White text on dark background */
}

.page-promo__section-title {
  color: #000000; /* Black text on light background */
}
.page-promo__section-description {
  color: #555555; /* Dark gray text on light background */
}

.page-promo__card-title {
  color: #000000; /* Black text on white card */
}
.page-promo__card-text {
  color: #666666; /* Dark gray text on white card */
}

.page-promo__step-title {
  color: #000000; /* Black text on light step item */
}
.page-promo__step-text {
  color: #555555; /* Dark gray text on light step item */
}

.page-promo__term-heading {
  color: #000000; /* Black text on light term item */
}
.page-promo__term-text {
  color: #666666; /* Dark gray text on light term item */
}

.page-promo__point-item {
  color: #333333; /* Dark gray text on light point item */
}

.page-promo__faq-question {
  color: #000000; /* Black text on white faq item */
}
.page-promo__faq-answer {
  color: #555555; /* Dark gray text on white faq item */
}

.page-promo__detail-card-title a {
  color: #000000; /* Black text for link */
}
.page-promo__detail-card-title a:hover {
  color: #FCBC45; /* Highlight color on hover */
}
.page-promo__detail-card-description {
  color: #666666; /* Dark gray text */
}

.page-promo__cta-title {
  color: #FCBC45; /* Highlight color on dark background */
}
.page-promo__cta-description {
  color: #FFFFFF; /* White text on dark background */
}