.page-promo {
  color: #333333; /* Dark text for light body background */
  background-color: var(--secondary-color); /* Defaults to #FFFFFF */
  padding-top: var(--header-offset, 120px); /* Ensure space below fixed header */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-promo__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background-color: #000000; /* Dark background for hero */
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

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

.page-promo__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6; /* Semi-transparent overlay for text readability */
}

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

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

.page-promo__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 700px;
  line-height: 1.5;
  color: #f0f0f0;
}

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

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

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

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

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

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

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

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

.page-promo__featured-promotions {
  padding: 80px 20px;
  background-color: #f9f9f9;
}

.page-promo__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-promo__promo-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-promo__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
}

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

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

.page-promo__btn--card {
  background-color: #FCBC45;
  color: #000000;
  padding: 12px 25px;
  font-size: 1em;
  border-radius: 6px;
}

.page-promo__btn--card:hover {
  background-color: #e0a73b;
}

.page-promo__how-to-claim {
  padding: 80px 20px;
  background-color: #ffffff;
}

.page-promo__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-promo__step-card {
  text-align: center;
  padding: 30px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  background-color: #fefefe;
  transition: box-shadow 0.3s ease;
}

.page-promo__step-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.page-promo__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #FCBC45;
  color: #000000;
  border-radius: 50%;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promo__step-title {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 15px;
}

.page-promo__step-description {
  font-size: 0.95em;
  color: #666666;
}

.page-promo__cta-bottom {
  text-align: center;
  margin-top: 60px;
}

.page-promo__btn--large {
  background-color: #000000;
  color: #FFFFFF;
  padding: 18px 40px;
  font-size: 1.2em;
  border-radius: 10px;
}

.page-promo__btn--large:hover {
  background-color: #333333;
}

.page-promo__vip-program {
  padding: 80px 20px;
  background-color: #000000;
  color: #ffffff;
}

.page-promo__vip-program .page-promo__section-title,
.page-promo__vip-program .page-promo__section-intro {
  color: #ffffff;
}

.page-promo__vip-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 50px auto;
}

.page-promo__feature-item {
  text-align: center;
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 12px;
  transition: background-color 0.3s ease;
}

.page-promo__feature-item:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-promo__feature-icon {
  width: 200px; /* Minimum 200px */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

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

.page-promo__feature-description {
  font-size: 0.95em;
  color: #cccccc;
}

.page-promo__vip-cta {
  text-align: center;
  margin-top: 40px;
}

.page-promo__btn--vip {
  background-color: #FCBC45;
  color: #000000;
  padding: 15px 35px;
  font-size: 1.1em;
  border-radius: 8px;
}

.page-promo__btn--vip:hover {
  background-color: #e0a73b;
}

.page-promo__responsible-gaming {
  padding: 80px 20px;
  background-color: #f0f0f0;
}

.page-promo__btn--text {
  display: block;
  text-align: center;
  margin-top: 30px;
  color: #000000;
  text-decoration: underline;
  font-weight: bold;
}

.page-promo__btn--text:hover {
  color: #FCBC45;
}

.page-promo__faq {
  padding: 80px 20px;
  background-color: #ffffff;
}

.page-promo__faq-item {
  background-color: #f8f8f8;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-promo__join-cta {
  padding: 80px 20px;
  background-color: #000000;
  color: #ffffff;
  text-align: center;
}

.page-promo__join-cta .page-promo__section-title,
.page-promo__join-cta .page-promo__section-intro {
  color: #ffffff;
}

.page-promo__cta-actions {
  display: flex;
  gap: 25px;
  justify-content: center;
  margin-top: 40px;
}

.page-promo__btn--register-large {
  background-color: #FFFFFF;
  color: #000000;
  padding: 18px 40px;
  font-size: 1.2em;
  border-radius: 10px;
}

.page-promo__btn--register-large:hover {
  background-color: #f0f0f0;
}

.page-promo__btn--login-large {
  background-color: #FCBC45;
  color: #000000;
  padding: 18px 40px;
  font-size: 1.2em;
  border-radius: 10px;
}

.page-promo__btn--login-large:hover {
  background-color: #e0a73b;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .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__btn {
    width: 100%;
    max-width: 300px;
  }

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

  .page-promo__promo-grid,
  .page-promo__steps-grid,
  .page-promo__vip-features {
    grid-template-columns: 1fr;
  }

  .page-promo__card-image, .page-promo__feature-icon {
    max-width: 100%;
    height: auto;
  }

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

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