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

.page-promo__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #000000; /* Dark background for hero content area */
  color: #FFFFFF;
  padding: 0;
  text-align: center;
}

.page-promo__hero-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
}

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

.page-promo__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 800px;
  padding: 20px;
  box-sizing: border-box;
  z-index: 10;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
}

.page-promo__hero-title {
  font-size: 3em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FCBC45; /* Login button color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

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

.page-promo__btn {
  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;
  white-space: nowrap;
}

.page-promo__btn--primary {
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Main color for text */
  border: 2px solid #FCBC45;
}

.page-promo__btn--primary:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

.page-promo__btn--secondary {
  background-color: #FFFFFF; /* Register button color */
  color: #000000; /* Main color for text */
  border: 2px solid #FFFFFF;
}

.page-promo__btn--secondary:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

.page-promo__btn--details {
  background-color: #000000; /* Main color */
  color: #FFFFFF;
  border: 2px solid #000000;
}

.page-promo__btn--details:hover {
  background-color: #333333;
  border-color: #333333;
  transform: translateY(-2px);
}

.page-promo__overview-section,
.page-promo__featured-promos,
.page-promo__how-to-claim-section,
.page-promo__why-choose-section,
.page-promo__responsible-gaming-section,
.page-promo__faq-section,
.page-promo__final-cta-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 40px 20px;
  background-color: #FFFFFF; /* Background color */
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.page-promo__section-title {
  font-size: 2.5em;
  color: #000000; /* Main color */
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.page-promo__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FCBC45; /* Login button color for accent */
  border-radius: 2px;
}

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

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

.page-promo__highlight-item {
  text-align: center;
  background-color: #F8F8F8;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-promo__highlight-image {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

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

.page-promo__highlight-text {
  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: #F8F8F8;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.page-promo__promo-card:hover {
  transform: translateY(-5px);
}

.page-promo__card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

.page-promo__card-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.page-promo__card-title {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 15px;
  flex-shrink: 0;
}

.page-promo__card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promo__card-title a:hover {
  color: #FCBC45; /* Login button color for accent */
}

.page-promo__card-description {
  color: #666666;
  margin-bottom: 20px;
  flex-grow: 1;
}

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

.page-promo__step-card {
  text-align: center;
  background-color: #F8F8F8;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-promo__step-icon {
  font-size: 3em;
  color: #FCBC45; /* Login button color */
  margin-bottom: 15px;
  font-weight: bold;
}

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

.page-promo__step-text {
  color: #666666;
}

.page-promo__claim-cta {
  text-align: center;
  margin-top: 60px;
  padding: 40px 20px;
  background-color: #000000; /* Main color */
  color: #FFFFFF;
  border-radius: 10px;
}

.page-promo__claim-cta-text {
  font-size: 1.8em;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-promo__benefits-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.page-promo__benefit-item {
  background-color: #F8F8F8;
  padding: 20px;
  border-left: 5px solid #FCBC45; /* Login button color for accent */
  border-radius: 5px;
  color: #333333;
  font-size: 1.1em;
}

.page-promo__benefit-item strong {
  color: #000000; /* Main color */
}

.page-promo__responsible-gaming-section a {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

.page-promo__responsible-gaming-section a:hover {
  text-decoration: underline;
}

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

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

.page-promo__faq-answer {
  color: #555555;
}

.page-promo__final-cta-section {
  text-align: center;
  background-color: #000000; /* Main color */
  color: #FFFFFF;
  padding: 60px 20px;
}

.page-promo__final-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

/* Media Queries for responsiveness */
@media (max-width: 1024px) {
  .page-promo__hero-title {
    font-size: 2.5em;
  }

  .page-promo__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-promo__hero-content {
    width: 95%;
    padding: 15px;
  }

  .page-promo__hero-title {
    font-size: 2em;
  }

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

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

  .page-promo__btn {
    width: 100%;
    padding: 12px 20px;
  }

  .page-promo__section-title {
    font-size: 1.8em;
  }

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

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

  .page-promo__claim-cta-text {
    font-size: 1.5em;
  }

  .page-promo__final-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-promo__hero-image,
  .page-promo__highlight-image,
  .page-promo__card-image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce min size for mobile */
    min-height: 200px; /* Enforce min size for mobile */
  }

  /* Ensure all images within .page-promo are responsive and don't overflow */
  .page-promo img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    min-width: 200px; /* Enforce min size for all content images */
    min-height: 200px; /* Enforce min size for all content images */
  }

  .page-promo {
    overflow-x: hidden;
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 1.8em;
  }
  .page-promo__section-title {
    font-size: 1.5em;
  }
  .page-promo__btn {
    font-size: 1em;
  }
  .page-promo__claim-cta-text {
    font-size: 1.2em;
  }
}