.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); /* Ensures content is not hidden by fixed header */
}

.page-promo__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #000000; /* Fallback for image loading */
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px; /* Minimum height for hero section */
}

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

.page-promo__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #FFFFFF;
  max-width: 900px;
  padding: 40px 20px;
}

.page-promo__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FCBC45; /* Login color for emphasis */
}

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

.page-promo__claim-button {
  display: inline-block;
  background-color: #FCBC45; /* Login color */
  color: #000000; /* Main color for button text */
  padding: 15px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

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

.page-promo__current-promotions,
.page-promo__bonus-types,
.page-promo__how-to-claim,
.page-promo__terms-conditions,
.page-promo__faq,
.page-promo__final-cta {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

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

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

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

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

.page-promo__promo-card {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-promo__promo-card h3 {
  font-size: 1.5em;
  color: #000000; /* Main color */
  margin: 20px 15px 10px;
}

.page-promo__card-description {
  font-size: 0.95em;
  color: #555555;
  padding: 0 15px 20px;
}

.page-promo__card-button {
  display: inline-block;
  background-color: #000000; /* Main color */
  color: #FFFFFF; /* Auxiliary color */
  padding: 10px 25px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
  margin-bottom: 20px;
  transition: background-color 0.3s ease;
}

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

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

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

.page-promo__type-heading {
  color: #000000; /* Main color */
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-promo__type-text {
  color: #555555;
  font-size: 1em;
}

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

.page-promo__step-item {
  text-align: center;
  position: relative;
  padding-top: 60px;
}

.page-promo__step-number {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FCBC45; /* Login color */
  color: #000000; /* Main color */
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8em;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-promo__step-heading {
  font-size: 1.5em;
  color: #000000; /* Main color */
  margin-bottom: 10px;
}

.page-promo__step-description {
  color: #555555;
}

.page-promo__claim-cta {
  text-align: center;
  margin-top: 50px;
}

.page-promo__cta-text {
  font-size: 1.2em;
  margin-bottom: 20px;
  color: #000000; /* Main color */
}

.page-promo__claim-button--large {
  padding: 18px 50px;
  font-size: 1.3em;
}

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

.page-promo__terms-item {
  background-color: #F8F8F8;
  padding: 15px 20px;
  border-left: 5px solid #FCBC45;
  margin-bottom: 10px;
  border-radius: 5px;
  color: #333333;
}

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

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

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

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

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

.page-promo__cta-heading {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FCBC45; /* Login color */
}

.page-promo__cta-description {
  font-size: 1.3em;
  margin-bottom: 40px;
}

.page-promo__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-promo__cta-button {
  display: inline-block;
  padding: 18px 45px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-promo__cta-button--register {
  background-color: #FFFFFF; /* Register color */
  color: #000000; /* Main color */
}

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

.page-promo__cta-button--login {
  background-color: #FCBC45; /* Login color */
  color: #000000; /* Main color */
}

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

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-promo__main-title {
    font-size: 3em;
  }
  .page-promo__hero-description {
    font-size: 1.1em;
  }
  .page-promo__section-title {
    font-size: 2em;
  }
  .page-promo__cta-heading {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-promo__hero-section {
    min-height: 400px;
  }
  .page-promo__hero-content {
    padding: 30px 15px;
  }
  .page-promo__main-title {
    font-size: 2.5em;
  }
  .page-promo__hero-description {
    font-size: 1em;
  }
  .page-promo__claim-button {
    padding: 12px 30px;
    font-size: 1.1em;
  }
  .page-promo__current-promotions,
  .page-promo__bonus-types,
  .page-promo__how-to-claim,
  .page-promo__terms-conditions,
  .page-promo__faq,
  .page-promo__final-cta {
    margin: 40px auto;
    padding: 0 15px;
  }
  .page-promo__section-title {
    font-size: 1.8em;
  }
  .page-promo__section-description {
    font-size: 0.95em;
  }
  .page-promo__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-promo__types-list {
    grid-template-columns: 1fr;
  }
  .page-promo__steps-container {
    grid-template-columns: 1fr;
  }
  .page-promo__step-item {
    padding-top: 50px;
  }
  .page-promo__step-number {
    width: 45px;
    height: 45px;
    font-size: 1.5em;
  }
  .page-promo__cta-heading {
    font-size: 1.8em;
  }
  .page-promo__cta-description {
    font-size: 1.1em;
  }
  .page-promo__cta-button {
    padding: 15px 35px;
    font-size: 1.1em;
  }
  /* Ensure content images do not overflow on mobile */
  .page-promo img {
    max-width: 100%;
    height: auto;
  }
  .page-promo__hero-section,
  .page-promo__hero-content,
  .page-promo__current-promotions,
  .page-promo__bonus-types,
  .page-promo__how-to-claim,
  .page-promo__terms-conditions,
  .page-promo__faq,
  .page-promo__final-cta {
    max-width: 100%;
    overflow-x: hidden;
  }
  .page-promo__promo-card img, .page-promo__card-image, .page-promo__hero-image {
    min-width: 200px; /* Ensure images are not too small */
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .page-promo__main-title {
    font-size: 2em;
  }
  .page-promo__hero-description {
    font-size: 0.9em;
  }
  .page-promo__claim-button {
    padding: 10px 25px;
    font-size: 1em;
  }
  .page-promo__section-title {
    font-size: 1.5em;
  }
  .page-promo__cta-heading {
    font-size: 1.5em;
  }
  .page-promo__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-promo__cta-button {
    width: 100%;
    max-width: 250px;
  }
}