.page-promo {
  color: #ffffff;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px);
}

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

.page-promo__hero-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background-color: #1a1a1a;
}

.page-promo__hero-image {
  width: 100%;
  height: auto;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  z-index: 1;
  opacity: 0.3;
}

.page-promo__hero-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}

.page-promo__hero-content {
  text-align: center;
  background: rgba(0, 0, 0, 0.6);
  padding: 30px;
  border-radius: 10px;
  max-width: 800px;
  margin: 0 auto;
}

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

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

.page-promo__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #121212;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

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

.page-promo__cta-button--centered {
  margin-top: 40px;
}

.page-promo__cta-button--large {
  padding: 20px 40px;
  font-size: 1.3em;
  margin-top: 50px;
}

.page-promo__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 30px;
  margin-top: 60px;
}

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

.page-promo__why-choose-section, .page-promo__types-section, .page-promo__how-to-claim-section, .page-promo__terms-section, .page-promo__faq-section, .page-promo__cta-final-section {
  padding: 60px 0;
  background-color: #1e1e1e;
  margin-bottom: 20px;
  border-radius: 10px;
}

.page-promo__why-choose-section {
  background-color: #121212;
}

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

.page-promo__feature-card, .page-promo__promo-card {
  background-color: #2a2a2a;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-promo__feature-icon, .page-promo__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-promo__feature-title, .page-promo__promo-title {
  font-size: 1.8em;
  color: #1E90FF;
  margin-bottom: 15px;
}

.page-promo__feature-text, .page-promo__promo-text {
  font-size: 1em;
  color: #cccccc;
  flex-grow: 1;
}

.page-promo__learn-more-button {
  display: inline-block;
  background-color: #1E90FF;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.page-promo__learn-more-button:hover {
  background-color: #1565b3;
}

.page-promo__claim-steps {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-promo__step-item {
  background-color: #2a2a2a;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  text-align: left;
}

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

.page-promo__step-text {
  color: #cccccc;
  font-size: 0.95em;
}

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

.page-promo__term-item {
  background-color: #2a2a2a;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-promo__term-title {
  font-size: 1.4em;
  color: #1E90FF;
  margin-bottom: 8px;
}

.page-promo__term-text {
  color: #cccccc;
  font-size: 0.95em;
}

.page-promo__responsible-gaming-note {
  text-align: center;
  color: #aaaaaa;
  font-size: 0.9em;
  margin-top: 30px;
}

.page-promo__read-more-button {
  display: block;
  width: fit-content;
  margin: 30px auto 0 auto;
  background-color: #FFD700;
  color: #121212;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-promo__read-more-button:hover {
  background-color: #e6c200;
}

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

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

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

.page-promo__faq-answer {
  color: #cccccc;
  font-size: 0.95em;
}

.page-promo__cta-final-section {
  text-align: center;
  background-color: #1E90FF;
  padding: 80px 20px;
  margin-bottom: 0;
  border-radius: 0 0 10px 10px;
}

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

.page-promo__cta-final-section .page-promo__section-intro {
  color: #e0e0e0;
}

.page-promo__cta-final-section .page-promo__cta-button {
  background-color: #FFD700;
  color: #121212;
}

.page-promo__cta-final-section .page-promo__cta-button:hover {
  background-color: #e6c200;
}

@media (max-width: 768px) {
  .page-promo__hero-title {
    font-size: 2.2em;
  }
  .page-promo__hero-description {
    font-size: 1em;
  }
  .page-promo__section-title {
    font-size: 2em;
  }
  .page-promo__section-intro {
    font-size: 1em;
  }
  .page-promo__features-grid, .page-promo__promo-grid, .page-promo__claim-steps {
    grid-template-columns: 1fr;
  }
  .page-promo__hero-image {
    height: 300px;
  }
  .page-promo__feature-icon, .page-promo__promo-image {
    height: 180px;
  }
  .page-promo__hero-section {
    padding: 40px 0;
  }
  .page-promo__hero-container {
    min-height: 300px;
  }
  /* Mobile content area images must be constrained */
  .page-promo img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 1.8em;
  }
  .page-promo__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promo__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-promo__section-title {
    font-size: 1.8em;
  }
  .page-promo__feature-title, .page-promo__promo-title {
    font-size: 1.5em;
  }
  .page-promo__step-title, .page-promo__term-title, .page-promo__faq-question {
    font-size: 1.3em;
  }
}