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

.page-promo__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 20px 40px;
  background-color: #000000;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

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

.page-promo__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FCBC45;
  line-height: 1.2;
}

.page-promo__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  opacity: 0.9;
}

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

.page-promo__hero-cta-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;
  min-width: 200px;
  text-align: center;
}

.page-promo__hero-cta-button--register {
  background-color: #FCBC45;
  color: #000000;
}

.page-promo__hero-cta-button--register:hover {
  background-color: #e0a33c;
}

.page-promo__hero-cta-button--download {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-promo__hero-cta-button--download:hover {
  background-color: #FCBC45;
  color: #FFFFFF;
}

.page-promo__hero-image {
  width: 100%;
  max-width: 1000px;
  height: auto;
  margin-top: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  object-fit: cover;
}

.page-promo__why-choose-section,
.page-promo__types-section,
.page-promo__how-to-claim-section,
.page-promo__featured-section,
.page-promo__responsible-gaming-section,
.page-promo__faq-section,
.page-promo__cta-final-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

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

.page-promo__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FCBC45;
  margin: 15px auto 0;
  border-radius: 2px;
}

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

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

.page-promo__feature-card {
  background-color: #F8F8F8;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

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

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

.page-promo__promo-card {
  background-color: #000000;
  color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-promo__promo-card-title {
  font-size: 1.8em;
  color: #FCBC45;
  padding: 20px 25px 10px;
}

.page-promo__promo-card-description {
  font-size: 1em;
  color: #E0E0E0;
  padding: 0 25px 20px;
  flex-grow: 1;
}

.page-promo__promo-card-button {
  display: block;
  background-color: #FCBC45;
  color: #000000;
  text-align: center;
  padding: 15px 25px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  border-radius: 0 0 12px 12px;
  transition: background-color 0.3s ease;
}

.page-promo__promo-card-button:hover {
  background-color: #e0a33c;
}

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

.page-promo__step-card {
  background-color: #F8F8F8;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

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

.page-promo__step-button {
  display: inline-block;
  background-color: #000000;
  color: #FFFFFF;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease;
}

.page-promo__step-button:hover {
  background-color: #333333;
}

.page-promo__how-to-claim-cta {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background-color: #000000;
  color: #FFFFFF;
  border-radius: 12px;
}

.page-promo__how-to-claim-text {
  font-size: 1.5em;
  margin-bottom: 30px;
  color: #FCBC45;
}

.page-promo__how-to-claim-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 18px 40px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-promo__how-to-claim-button:hover {
  background-color: #e0a33c;
  transform: translateY(-3px);
}

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

.page-promo__detail-card {
  background-color: #F8F8F8;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promo__detail-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.page-promo__detail-content {
  padding: 30px;
  text-align: center;
  flex-grow: 1;
}

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

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

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

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

.page-promo__detail-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease;
}

.page-promo__detail-button:hover {
  background-color: #e0a33c;
}

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

.page-promo__responsible-gaming-button {
  display: block;
  width: fit-content;
  margin: 0 auto;
  background-color: #000000;
  color: #FFFFFF;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-promo__responsible-gaming-button:hover {
  background-color: #333333;
}

.page-promo__faq-container {
  margin-top: 40px;
}

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

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

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

.page-promo__cta-final-section {
  background-color: #000000;
  color: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

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

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

.page-promo__cta-final-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  opacity: 0.9;
}

.page-promo__cta-final-button {
  display: inline-block;
  background-color: #FFFFFF;
  color: #000000;
  padding: 18px 40px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FCBC45;
}

.page-promo__cta-final-button:hover {
  background-color: #FCBC45;
  color: #000000;
  transform: translateY(-3px);
}

.page-promo__cta-final-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  object-fit: cover;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-promo__hero-title {
    font-size: 2.8em;
  }
  .page-promo__section-title {
    font-size: 2.2em;
  }
  .page-promo__promotion-cards {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-promo {
    padding-top: var(--header-offset, 120px);
  }
  .page-promo__hero-section {
    padding: 60px 15px 30px;
  }
  .page-promo__hero-title {
    font-size: 2.2em;
  }
  .page-promo__hero-description {
    font-size: 1em;
  }
  .page-promo__hero-cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-promo__hero-cta-button {
    width: 100%;
    max-width: 300px;
  }
  .page-promo__section-title {
    font-size: 1.8em;
  }
  .page-promo__section-intro {
    font-size: 0.95em;
  }
  .page-promo__features-grid,
  .page-promo__promotion-cards,
  .page-promo__steps-container {
    grid-template-columns: 1fr;
  }
  .page-promo__promo-card-image,
  .page-promo__detail-image {
    height: 200px;
  }
  .page-promo__promo-card-title,
  .page-promo__detail-title {
    font-size: 1.5em;
  }
  .page-promo__how-to-claim-text {
    font-size: 1.2em;
  }
  .page-promo__cta-final-title {
    font-size: 2em;
  }
  .page-promo__cta-final-description {
    font-size: 1em;
  }
  .page-promo__cta-final-button {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  /* Mobile content area image overflow prevention */
  .page-promo img {
    max-width: 100%;
    height: auto;
  }
  .page-promo__detail-card {
    flex-direction: column;
  }
  .page-promo__detail-content {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 1.8em;
  }
  .page-promo__section-title {
    font-size: 1.6em;
  }
  .page-promo__hero-cta-button {
    min-width: unset;
  }
  .page-promo__faq-question {
    font-size: 1.2em;
  }
  .page-promo__cta-final-title {
    font-size: 1.8em;
  }
}