.page-promo {
  color: #333333; /* Dark text for default light body 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;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  background-color: #000000; /* Dark background for hero to contrast with gold/red */
  color: #ffffff;
  text-align: center;
  overflow: hidden;
}

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

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

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

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

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

.page-promo__cta-button {
  display: inline-block;
  background-color: #CC0000; /* Main red color */
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #CC0000;
}

.page-promo__cta-button:hover {
  background-color: #FFD700; /* Gold on hover */
  color: #CC0000;
  transform: translateY(-3px);
  border-color: #FFD700;
}

.page-promo__cta-button--large {
  padding: 18px 35px;
  font-size: 1.4em;
  margin-top: 40px;
}

.page-promo__section-title {
  font-size: 2.8em;
  color: #CC0000; /* Main red for section titles */
  text-align: center;
  margin: 80px 0 40px;
  position: relative;
}

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

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

.page-promo__why-choose-section,
.page-promo__featured-promos-section,
.page-promo__how-to-claim-section,
.page-promo__responsible-gaming-section,
.page-promo__faq-section {
  padding: 60px 0;
  background-color: #f8f8f8;
}

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

.page-promo__featured-promos-section {
  background-color: #f0f0f0;
}

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

.page-promo__feature-card {
  background-color: #ffffff;
  border-radius: 12px;
  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;
  border-top: 5px solid #CC0000;
}

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

.page-promo__feature-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  min-width: 200px; /* Enforce min image size */
  min-height: 200px; /* Enforce min image size */
}

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

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

.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: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e0e0e0;
}

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

.page-promo__promo-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  min-width: 200px; /* Enforce min image size */
  min-height: 200px; /* Enforce min image size */
}

.page-promo__promo-title {
  font-size: 1.6em;
  color: #CC0000;
  padding: 20px 25px 10px;
}

.page-promo__promo-description {
  font-size: 0.95em;
  color: #666666;
  padding: 0 25px 20px;
}

.page-promo__promo-button {
  display: block;
  background-color: #FFD700; /* Gold button */
  color: #333333;
  padding: 12px 25px;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border-top: 1px solid #e0e0e0;
}

.page-promo__promo-button:hover {
  background-color: #CC0000; /* Red on hover */
  color: #ffffff;
}

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

.page-promo__step-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  position: relative;
  border-bottom: 4px solid #FFD700;
}

.page-promo__step-number {
  width: 50px;
  height: 50px;
  background-color: #CC0000;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  margin: -50px auto 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

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

.page-promo__step-description a {
  color: #CC0000;
  text-decoration: none;
  font-weight: bold;
}

.page-promo__step-description a:hover {
  text-decoration: underline;
}

.page-promo__claim-cta {
  text-align: center;
  margin-top: 60px;
  background-color: #fdfdfd;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.page-promo__how-to-claim-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 10px;
  margin-bottom: 30px;
  object-fit: cover;
  min-width: 200px; /* Enforce min image size */
  min-height: 200px; /* Enforce min image size */
}

.page-promo__secondary-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #333333;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FFD700;
  margin-top: 30px;
}

.page-promo__secondary-button:hover {
  background-color: #CC0000; /* Red on hover */
  color: #ffffff;
  transform: translateY(-3px);
  border-color: #CC0000;
}

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

.page-promo__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

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

.page-promo__faq-answer a {
  color: #CC0000;
  text-decoration: none;
  font-weight: bold;
}

.page-promo__faq-answer a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promo__hero-title {
    font-size: 3em;
  }
  .page-promo__section-title {
    font-size: 2.4em;
  }
}

@media (max-width: 768px) {
  .page-promo__hero-content {
    padding: 80px 15px;
  }
  .page-promo__hero-title {
    font-size: 2.5em;
  }
  .page-promo__hero-description {
    font-size: 1.1em;
  }
  .page-promo__cta-button {
    font-size: 1em;
    padding: 12px 25px;
  }
  .page-promo__cta-button--large {
    font-size: 1.2em;
    padding: 15px 30px;
  }
  .page-promo__section-title {
    font-size: 2em;
    margin: 60px 0 30px;
  }
  .page-promo__section-intro {
    font-size: 1em;
    margin-bottom: 40px;
  }
  .page-promo__features-grid,
  .page-promo__promo-grid,
  .page-promo__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-promo__feature-card,
  .page-promo__promo-card,
  .page-promo__step-card {
    padding: 25px;
  }
  .page-promo__hero-section .page-promo__hero-image {
    max-width: 100%;
    height: auto;
  }
  .page-promo__why-choose-section img, 
  .page-promo__featured-promos-section img, 
  .page-promo__how-to-claim-section img, 
  .page-promo__responsible-gaming-section img, 
  .page-promo__faq-section img {
    max-width: 100%;
    height: auto;
  }
  .page-promo__container {
    padding: 0 15px;
  }
  .page-promo {
    overflow-x: hidden;
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 2em;
  }
  .page-promo__section-title {
    font-size: 1.8em;
  }
  .page-promo__hero-content {
    padding: 60px 10px;
  }
  .page-promo__cta-button--large {
    font-size: 1em;
    padding: 10px 20px;
  }
}