.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);
}

.page-promo__hero-section {
  background-color: #000000; /* Main color for hero background */
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promo__hero-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-promo__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Subtle background effect */
  z-index: 0;
}

.page-promo__hero-content {
  position: relative;
  z-index: 2;
  color: #FFFFFF;
  max-width: 900px;
}

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

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

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

.page-promo__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
  border: 2px solid transparent;
  min-width: 200px; /* Ensure buttons are not too small */
  text-align: center;
}

.page-promo__button--primary {
  background-color: #FCBC45; /* Login button color */
  color: #000000;
}

.page-promo__button--primary:hover {
  background-color: #e0a53b;
}

.page-promo__button--secondary {
  background-color: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.page-promo__button--secondary:hover {
  background-color: #FFFFFF;
  color: #000000;
}

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

.page-promo__section-title {
  font-size: 2.5em;
  color: #000000;
  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-text {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

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

.page-promo__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;
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-promo__card:hover {
  transform: translateY(-10px);
}

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

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

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

.page-promo__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
  min-width: 150px;
}

.page-promo__vip-program, .page-promo__mobile-promos {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.page-promo__vip-program .page-promo__section-title, .page-promo__mobile-promos .page-promo__section-title {
  width: 100%;
}

.page-promo__vip-image, .page-promo__mobile-image {
  flex: 1;
  min-width: 400px; /* Ensure images are large enough */
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  min-height: 200px; /* Enforce min size */
}

.page-promo__vip-text, .page-promo__mobile-text {
  flex: 2;
  min-width: 300px;
}

.page-promo__how-to-claim {
  background-color: #f8f8f8;
  padding: 60px 20px;
  border-radius: 12px;
}

.page-promo__steps-list {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
  margin-top: 40px;
}

.page-promo__step-item {
  background-color: #FFFFFF;
  margin-bottom: 20px;
  padding: 25px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.page-promo__step-item::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  font-size: 2em;
  font-weight: bold;
  color: #FCBC45;
  background-color: #000000;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.page-promo__step-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 0;
}

.page-promo__button--center {
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.page-promo__faq {
  background-color: #000000;
  color: #FFFFFF;
  padding: 60px 20px;
  border-radius: 12px;
}

.page-promo__faq .page-promo__section-title {
  color: #FFFFFF;
}

.page-promo__faq .page-promo__section-title::after {
  background-color: #FCBC45;
}

.page-promo__faq-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

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

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

.page-promo__join-today {
  text-align: center;
  padding: 60px 20px;
  background-color: #f8f8f8;
  border-radius: 12px;
}

.page-promo__join-today .page-promo__section-text {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}

.page-promo__button--large {
  padding: 18px 40px;
  font-size: 1.2em;
  min-width: 250px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-promo__hero-title {
    font-size: 3em;
  }
  .page-promo__hero-description {
    font-size: 1.2em;
  }
  .page-promo__vip-program, .page-promo__mobile-promos {
    flex-direction: column;
    gap: 30px;
  }
  .page-promo__vip-image, .page-promo__mobile-image {
    min-width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }
  .page-promo__vip-text, .page-promo__mobile-text {
    min-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-promo__hero-section {
    padding: 60px 15px;
  }
  .page-promo__hero-title {
    font-size: 2.5em;
  }
  .page-promo__hero-description {
    font-size: 1.1em;
  }
  .page-promo__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-promo__button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-promo__section {
    margin: 40px auto;
    padding: 0 15px;
  }
  .page-promo__section-title {
    font-size: 2em;
  }
  .page-promo__cards-grid {
    grid-template-columns: 1fr;
  }
  .page-promo__card-image {
    height: auto;
    max-width: 100%;
  }
  .page-promo__step-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }
  .page-promo__step-item::before {
    margin-bottom: 15px;
  }
  .page-promo__faq-question {
    font-size: 1.2em;
  }

  /* Critical: Ensure all content images are responsive on mobile */
  .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: 1em;
  }
  .page-promo__section-title {
    font-size: 1.8em;
  }
  .page-promo__button--large {
    font-size: 1em;
    padding: 15px 30px;
  }
  .page-promo__card-title {
    font-size: 1.4em;
  }
  .page-promo__step-title {
    font-size: 1.2em;
  }
}