.page-promo {
  padding-top: var(--header-offset, 120px);
  background-color: #f0f0f0; /* Light background for contrast with dark text */
  color: #333333; /* Dark text for readability on light background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-promo__hero-section {
  position: relative;
  text-align: center;
  color: #ffffff; /* White text on hero for contrast */
  padding: 80px 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #8B0000 0%, #FFD700 100%); /* Gradient fallback */
}

.page-promo__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.page-promo__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly darken image for text readability */
  display: block;
}

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

.page-promo__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700; /* Gold for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-promo__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #f0f0f0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-promo__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #8B0000; /* Dark red text on gold button */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promo__cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

.page-promo__cta-button--secondary {
  background-color: #8B0000; /* Dark red button */
  color: #FFD700; /* Gold text on dark red button */
}

.page-promo__cta-button--secondary:hover {
  background-color: #6a0000; /* Darker red on hover */
}

.page-promo__cta-button--small {
  padding: 10px 20px;
  font-size: 1em;
}

.page-promo__cta-button--large {
  padding: 20px 40px;
  font-size: 1.5em;
}

.page-promo__introduction-section,
.page-promo__promo-types-section,
.page-promo__how-to-claim-section,
.page-promo__terms-section,
.page-promo__responsible-gambling-section,
.page-promo__faq-section,
.page-promo__latest-details-section,
.page-promo__cta-section {
  padding: 60px 0;
}

.page-promo__section-title {
  font-size: 2.5em;
  color: #8B0000; /* Dark red for section titles */
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

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

.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: #ffffff;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-promo__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
  display: block;
}

.page-promo__card-title {
  font-size: 1.6em;
  color: #8B0000;
  margin-bottom: 15px;
  font-weight: bold;
}

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

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

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

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

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

.page-promo__step-title {
  font-size: 1.5em;
  color: #8B0000;
  margin-bottom: 15px;
  font-weight: bold;
}

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

.page-promo__step-button {
  display: inline-block;
  background-color: #8B0000;
  color: #FFD700;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  transition: background-color 0.3s ease;
}

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

.page-promo__terms-list {
  list-style: disc inside;
  max-width: 900px;
  margin: 40px auto;
  padding-left: 20px;
  color: #555555;
}

.page-promo__terms-item {
  margin-bottom: 15px;
  font-size: 1.1em;
}

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

.page-promo__faq-section {
  background-color: #f8f8f8;
}

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

.page-promo__faq-question {
  font-size: 1.3em;
  color: #8B0000;
  margin-bottom: 10px;
  font-weight: bold;
}

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

.page-promo__latest-details-section {
  background-color: #e9e9e9;
}

.page-promo__detail-card {
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  max-width: 800px;
  margin: 40px auto 0 auto;
}

.page-promo__detail-title {
  font-size: 1.8em;
  color: #8B0000;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promo__detail-title a {
  color: #8B0000;
  text-decoration: none;
}

.page-promo__detail-title a:hover {
  text-decoration: underline;
}

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

.page-promo__cta-section {
  background: linear-gradient(45deg, #8B0000, #FFD700);
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

.page-promo__cta-container {
  max-width: 900px;
}

.page-promo__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-promo__hero-title {
    font-size: 3em;
  }
  .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__hero-title {
    font-size: 2.5em;
  }
  .page-promo__hero-description {
    font-size: 1.1em;
  }
  .page-promo__section-title {
    font-size: 1.8em;
  }
  .page-promo__section-text {
    font-size: 1em;
  }
  .page-promo__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-promo__claim-steps {
    grid-template-columns: 1fr;
  }
  .page-promo__cta-title {
    font-size: 2.2em;
  }
  .page-promo__cta-button--large {
    font-size: 1.2em;
    padding: 15px 30px;
  }
  .page-promo__promo-card img, .page-promo__card-image, .page-promo__hero-image img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  /* Content area images must not cause horizontal scroll */
  .page-promo img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 2em;
  }
  .page-promo__hero-description {
    font-size: 0.9em;
  }
  .page-promo__cta-button {
    font-size: 1em;
    padding: 12px 25px;
  }
  .page-promo__section-title {
    font-size: 1.6em;
  }
  .page-promo__card-title,
  .page-promo__step-title {
    font-size: 1.3em;
  }
  .page-promo__faq-question {
    font-size: 1.1em;
  }
  .page-promo__cta-title {
    font-size: 1.8em;
  }
  .page-promo__cta-description {
    font-size: 1em;
  }
}