.page-promo {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

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

.page-promo__hero-section {
  background-color: #000000; /* Dark background for hero section */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.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 readable */
  z-index: 0;
}

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

.page-promo__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FCBC45; /* Golden yellow for emphasis */
}

.page-promo__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.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.2s ease;
  white-space: nowrap;
}

.page-promo__button--register {
  background-color: #ffffff; /* White button */
  color: #000000; /* Black text */
  border: 2px solid #ffffff;
}

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

.page-promo__button--login {
  background-color: #FCBC45; /* Golden yellow button */
  color: #000000; /* Black text */
  border: 2px solid #FCBC45;
}

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

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

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

.page-promo__overview-section,
.page-promo__how-to-claim-section,
.page-promo__terms-section,
.page-promo__featured-games-section,
.page-promo__app-download-section,
.page-promo__faq-section,
.page-promo__cta-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.page-promo__promo-grid,
.page-promo__steps-grid,
.page-promo__games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promo__promo-card,
.page-promo__step-card,
.page-promo__game-card {
  background-color: #f8f8f8;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 20px 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__promo-card:hover,
.page-promo__step-card:hover,
.page-promo__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.page-promo__promo-image,
.page-promo__game-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

.page-promo__card-text,
.page-promo__step-text,
.page-promo__game-text {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promo__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
  background-color: #000000; /* Black button */
  color: #ffffff; /* White text */
  border: 2px solid #000000;
}

.page-promo__button--small:hover {
  background-color: #FCBC45;
  color: #000000;
  border-color: #FCBC45;
}

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

.page-promo__button--secondary:hover {
  background-color: #000000;
  color: #ffffff;
}

.page-promo__terms-list {
  list-style: none;
  padding: 0;
  margin: 40px auto 0 auto;
  max-width: 800px;
  text-align: left;
}

.page-promo__terms-item {
  background-color: #f8f8f8;
  padding: 20px;
  margin-bottom: 15px;
  border-left: 5px solid #FCBC45;
  border-radius: 5px;
  font-size: 1.05em;
  color: #333333;
}

.page-promo__terms-item strong {
  color: #000000;
}

.page-promo__app-download-section {
  background-color: #000000;
  color: #ffffff;
  text-align: center;
  padding: 80px 0;
}

.page-promo__app-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  margin-bottom: 50px;
}

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

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

.page-promo__app-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  margin-top: 30px;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px;
}

.page-promo__faq-item {
  background-color: #f8f8f8;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  text-align: left;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

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

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

.page-promo__cta-section .page-promo__section-title {
  color: #000000;
}

.page-promo__cta-section .page-promo__section-description {
  color: #333333;
  margin-bottom: 50px;
}

.page-promo__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-promo__cta-buttons .page-promo__button--register {
  background-color: #000000;
  color: #ffffff;
  border-color: #000000;
}

.page-promo__cta-buttons .page-promo__button--register:hover {
  background-color: #333333;
  color: #ffffff;
}

.page-promo__cta-buttons .page-promo__button--login {
  background-color: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

.page-promo__cta-buttons .page-promo__button--login:hover {
  background-color: #f0f0f0;
  color: #000000;
}

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

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

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

@media (max-width: 768px) {
  .page-promo {
    padding-top: var(--header-offset, 120px);
  }

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

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

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

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

  .page-promo__button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

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

  .page-promo__section-description {
    font-size: 0.95em;
    margin-bottom: 40px;
  }

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

  .page-promo__promo-image,
  .page-promo__game-image {
    height: 180px;
  }

  .page-promo__button--small {
    width: auto;
    max-width: none;
  }

  /* Ensure all content images in mobile are responsive and not too small */
  .page-promo img {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }

  .page-promo__promo-image, .page-promo__game-image {
    min-width: 200px;
    min-height: 200px;
  }

  .page-promo__app-image {
    min-width: 200px;
    min-height: 200px;
  }

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

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

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

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

  .page-promo__promo-card,
  .page-promo__step-card,
  .page-promo__game-card {
    padding: 20px;
  }
}