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

.page-promo__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  padding-bottom: 60px;
  overflow: hidden;
  background-color: #000000; /* Dark background for hero text readability */
  color: #FFFFFF; /* Light text on dark background */
  text-align: center;
}

.page-promo__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0.4; /* Make image subtle for text readability */
}

.page-promo__hero-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.page-promo__hero-content {
  position: relative;
  z-index: 3;
}

.page-promo__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FCBC45; /* Login 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.4em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

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

.page-promo__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-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: #f0f0f0;
  transform: translateY(-2px);
}

.page-promo__button--claim {
  background-color: #FCBC45; /* Login color */
  color: #000000;
  border: 2px solid #FCBC45;
}

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

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

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

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

.page-promo__why-fatchai-section {
  background-color: #f8f8f8;
  padding: 60px 0;
}

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

.page-promo__feature-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-promo__feature-item:hover {
  transform: translateY(-5px);
}

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

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

.page-promo__feature-description {
  font-size: 1em;
  color: #666666;
  line-height: 1.5;
}

.page-promo__current-offers-section {
  padding: 60px 0;
}

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

.page-promo__offer-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.page-promo__offer-card:hover {
  transform: translateY(-5px);
}

.page-promo__card-image {
  width: 100%;
  height: 225px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-promo__card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-promo__card-title {
  font-size: 1.4em;
  color: #000000;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-promo__card-link {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promo__card-link:hover {
  color: #FCBC45;
}

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

.page-promo__button--details {
  background-color: #000000;
  color: #FFFFFF;
  padding: 10px 20px;
  font-size: 0.9em;
  align-self: flex-start;
  border: 2px solid #000000;
}

.page-promo__button--details:hover {
  background-color: #333333;
}

.page-promo__all-offers-cta {
  text-align: center;
  margin-top: 50px;
}

.page-promo__button--view-all {
  background-color: #FCBC45;
  color: #000000;
  padding: 15px 35px;
  font-size: 1.1em;
  border: 2px solid #FCBC45;
}

.page-promo__button--view-all:hover {
  background-color: #e0a53b;
}

.page-promo__how-to-claim-section {
  background-color: #f8f8f8;
  padding: 60px 0;
}

.page-promo__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-promo__step-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-promo__step-icon {
  width: 200px; /* Minimum size */
  height: auto;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 8px;
  object-fit: cover;
}

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

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

.page-promo__cta-button-wrapper {
  text-align: center;
  margin-top: 50px;
}

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

.page-promo__button--register-bottom:hover {
  background-color: #e0a53b;
}

.page-promo__responsible-gaming-section {
  padding: 60px 0;
  text-align: center;
}

.page-promo__button--responsible-gaming {
  background-color: #000000;
  color: #FFFFFF;
  padding: 12px 25px;
  font-size: 1em;
  margin-top: 30px;
  border: 2px solid #000000;
}

.page-promo__button--responsible-gaming:hover {
  background-color: #333333;
}

.page-promo__cta-section {
  background-color: #000000;
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
}

.page-promo__section-title--cta {
  color: #FCBC45;
  font-size: 3em;
}

.page-promo__section-intro--cta {
  color: #f0f0f0;
  font-size: 1.2em;
  margin-bottom: 40px;
}

.page-promo__button--join-now {
  background-color: #FCBC45;
  color: #000000;
  padding: 20px 50px;
  font-size: 1.3em;
  border: 2px solid #FCBC45;
}

.page-promo__button--join-now:hover {
  background-color: #e0a53b;
}

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

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

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

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

@media (max-width: 768px) {
  .page-promo__hero-section {
    padding-top: var(--header-offset, 120px); /* Keep padding top for smaller screens */
    padding-bottom: 40px;
  }

  .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%;
    max-width: 300px;
  }

  .page-promo__container {
    padding: 30px 15px;
  }

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

  .page-promo__section-intro {
    font-size: 0.95em;
  }

  .page-promo__features-grid, .page-promo__offers-grid, .page-promo__steps-grid {
    grid-template-columns: 1fr;
  }

  .page-promo__feature-item, .page-promo__offer-card, .page-promo__step-item {
    padding: 20px;
  }

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

  .page-promo__card-image {
    height: 180px;
  }

  .page-promo__button--view-all, .page-promo__button--register-bottom, .page-promo__button--join-now {
    padding: 12px 25px;
    font-size: 1em;
  }

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

  .page-promo__section-intro--cta {
    font-size: 1em;
  }

  /* Ensure all content images are responsive and don't overflow */
  .page-promo img {
    max-width: 100%;
    height: auto;
  }

  /* Specific override for any smaller img in content area if needed, ensuring minimum size */
  .page-promo__feature-icon, .page-promo__step-icon {
    max-width: 200px; /* Ensures minimum size for smaller screens if needed */
    height: auto;
  }
}

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

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

  .page-promo__button {
    font-size: 1em;
    padding: 12px 20px;
  }

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

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

  .page-promo__section-intro--cta {
    font-size: 0.9em;
  }
}