.page-promo {
  background-color: #FFFFFF;
  color: #333333;
  padding-top: var(--header-offset, 120px); /* Ensures content starts below fixed header */
}

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

.page-promo__main-title,
.page-promo__section-title {
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.8em;
  line-height: 1.2;
}

.page-promo__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 20px;
  gap: 40px;
  background-color: #000000; /* Dark background for hero */
  color: #FFFFFF;
}

.page-promo__hero-content {
  max-width: 800px;
}

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

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

.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;
  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--claim,
.page-promo__button--primary {
  background-color: #FCBC45;
  color: #000000;
}

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

.page-promo__hero-image-wrapper {
  width: 100%;
  max-width: 900px;
}

.page-promo__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0,0, 0.2);
  min-width: 200px;
  min-height: 200px;
}

.page-promo__section-text {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
}

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

.page-promo__promo-card {
  background-color: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promo__promo-card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-promo__promo-card-title {
  font-size: 1.6em;
  color: #000000;
  margin: 20px 15px 10px;
  flex-grow: 1;
}

.page-promo__promo-card-description {
  font-size: 0.95em;
  line-height: 1.6;
  padding: 0 20px 20px;
  color: #555555;
  flex-grow: 1;
}

.page-promo__button--card {
  margin: 0 20px 20px;
  background-color: #FCBC45;
  color: #000000;
}

.page-promo__button--card:hover {
  background-color: #e8a83a;
}

.page-promo__claim-steps {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

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

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

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

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

.page-promo__terms-list {
  list-style: disc inside;
  margin-left: 20px;
  margin-top: 20px;
  font-size: 1.1em;
  line-height: 1.8;
  color: #444444;
}

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

.page-promo__link {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

.page-promo__link:hover {
  text-decoration: underline;
}

.page-promo__detail-list {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.page-promo__detail-card {
  background-color: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  max-width: 450px;
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promo__detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-promo__detail-card-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-promo__detail-card-title {
  font-size: 1.8em;
  color: #000000;
  margin: 20px 15px 10px;
}

.page-promo__detail-card-link {
  color: #000000;
  text-decoration: none;
}

.page-promo__detail-card-link:hover {
  color: #FCBC45;
  text-decoration: underline;
}

.page-promo__detail-card-description {
  font-size: 1em;
  line-height: 1.6;
  padding: 0 20px 20px;
  color: #555555;
}

.page-promo__button--detail {
  margin: 0 20px 20px;
  background-color: #FCBC45;
  color: #000000;
}

.page-promo__button--detail:hover {
  background-color: #e8a83a;
}

.page-promo__mobile-gaming {
  text-align: center;
}

.page-promo__mobile-cta {
  margin-top: 30px;
  margin-bottom: 40px;
}

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

.page-promo__button--download:hover {
  background-color: #e8a83a;
}

.page-promo__mobile-image-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.page-promo__mobile-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  min-width: 200px;
  min-height: 200px;
}

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

.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__cta-section {
  background-color: #000000; /* Dark background for CTA */
  color: #FFFFFF;
  text-align: center;
}

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

.page-promo__cta-section .page-promo__section-text {
  color: #f0f0f0;
}

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

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

.page-promo__button--login:hover {
  background-color: #e8a83a;
}

@media (max-width: 768px) {
  .page-promo__hero-section {
    flex-direction: column;
    padding: 60px 15px;
  }

  .page-promo__main-title {
    font-size: 2em;
    margin-bottom: 20px;
  }

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

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

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

  .page-promo__section {
    padding: 40px 15px;
  }

  .page-promo__section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }

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

  .page-promo__promo-card-image {
    height: 200px;
  }

  .page-promo__promo-card-title {
    font-size: 1.4em;
  }

  .page-promo__detail-list {
    flex-direction: column;
    align-items: center;
  }

  .page-promo__detail-card {
    max-width: 100%;
  }

  .page-promo__detail-card-image {
    height: 200px;
  }

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

  .page-promo__mobile-image {
    width: 100%;
    height: auto;
    max-width: 100%;
  }

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

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

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