.page-promo {
  color: #333333; /* Dark text for light body background */
}

.page-promo__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  background-color: #000000; /* Dark background for hero section */
  overflow: hidden;
}

.page-promo__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  box-sizing: border-box;
}

.page-promo__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 30px;
  filter: brightness(0.7); /* Slightly darken image for text readability */
}

.page-promo__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  color: #FFFFFF;
  max-width: 80%;
}

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

.page-promo__hero-description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-promo__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-align: center;
}

.page-promo__button--register {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FFFFFF;
}

.page-promo__button--register:hover {
  background-color: #F0F0F0;
  transform: translateY(-2px);
}

.page-promo__button--login {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-promo__button--login:hover {
  background-color: #E0A83D;
  transform: translateY(-2px);
}

.page-promo__content-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
}

.page-promo__section-title {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000000;
}

.page-promo__section-description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-promo__offer-card {
  background-color: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promo__offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-promo__offer-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

.page-promo__card-text {
  font-size: 1em;
  line-height: 1.5;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-promo__button--claim {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
  padding: 12px 25px;
  font-size: 1em;
}

.page-promo__button--claim:hover {
  background-color: #E0A83D;
}

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

.page-promo__feature-item {
  background-color: #000000;
  color: #FFFFFF;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promo__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-promo__feature-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 15px;
}

.page-promo__feature-title {
  font-size: 1.4em;
  font-weight: 600;
  margin-bottom: 10px;
  color: #FCBC45;
}

.page-promo__feature-text {
  font-size: 0.95em;
  line-height: 1.5;
}

.page-promo__vip-action {
  margin-top: 30px;
}

.page-promo__button--learn-more {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
  padding: 15px 30px;
  font-size: 1.1em;
}

.page-promo__button--learn-more:hover {
  background-color: #333333;
  border-color: #333333;
}

.page-promo__faq-list {
  text-align: left;
  max-width: 900px;
  margin: 40px auto;
}

.page-promo__faq-item {
  background-color: #F8F8F8;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px 25px;
}

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

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

.page-promo__support-action {
  margin-top: 30px;
}

.page-promo__button--support {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
  padding: 15px 30px;
  font-size: 1.1em;
}

.page-promo__button--support:hover {
  background-color: #333333;
  border-color: #333333;
}

.page-promo__cta-section {
  background-color: #000000;
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-promo__cta-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
  filter: brightness(0.6);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.page-promo__cta-content {
  position: relative;
  z-index: 10;
  color: #FFFFFF;
  padding: 40px 20px;
}

.page-promo__cta-title {
  font-size: 2.8em;
  font-weight: 700;
  margin-bottom: 20px;
  color: #FCBC45;
}

.page-promo__cta-description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-promo__button--register-large {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FFFFFF;
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-promo__button--register-large:hover {
  background-color: #F0F0F0;
}

.page-promo__button--download-app {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-promo__button--download-app:hover {
  background-color: #E0A83D;
}

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

@media (max-width: 768px) {
  .page-promo__hero-section {
    padding: 30px 15px;
  }
  .page-promo__hero-content {
    max-width: 90%;
  }
  .page-promo__main-title {
    font-size: 2.2em;
  }
  .page-promo__hero-description,
  .page-promo__section-description,
  .page-promo__cta-description {
    font-size: 1em;
  }
  .page-promo__hero-actions, .page-promo__cta-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-promo__button {
    width: 80%;
    margin: 0 auto;
  }
  .page-promo__content-container {
    padding: 30px 15px;
  }
  .page-promo__section-title {
    font-size: 1.8em;
  }
  .page-promo__offer-grid, .page-promo__vip-features {
    grid-template-columns: 1fr;
  }
  .page-promo__offer-image, .page-promo__cta-image, .page-promo__feature-icon {
    max-width: 100%;
    height: auto;
  }
  .page-promo__cta-title {
    font-size: 2em;
  }
  /* Ensure no horizontal scroll for content area images */
  .page-promo img {
    max-width: 100%;
    height: auto;
  }
  .page-promo {
    overflow-x: hidden;
  }
}

@media (max-width: 480px) {
  .page-promo__main-title {
    font-size: 1.8em;
  }
  .page-promo__hero-description {
    font-size: 0.9em;
  }
  .page-promo__button {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-promo__section-title {
    font-size: 1.6em;
  }
  .page-promo__card-title {
    font-size: 1.3em;
  }
  .page-promo__faq-question {
    font-size: 1.1em;
  }
  .page-promo__cta-title {
    font-size: 1.8em;
  }
  .page-promo__button--register-large, .page-promo__button--download-app {
    padding: 15px 25px;
    font-size: 1.1em;
  }
}

/* Ensure no filter on images within .page-promo */
.page-promo__hero-image,
.page-promo__offer-image,
.page-promo__feature-icon,
.page-promo__cta-image {
  filter: none; /* Reset any default filter */
}

/* Special case for hero image to slightly darken it for text readability, not changing color */
.page-promo__hero-image {
  filter: brightness(0.7); /* Adjust brightness for text overlay */
}

.page-promo__cta-image {
  filter: brightness(0.6); /* Adjust brightness for text overlay */
}

/* Ensure content area images are not too small */
.page-promo__offer-image,
.page-promo__feature-icon {
  min-width: 200px;
  min-height: 200px;
}

@media (max-width: 768px) {
  .page-promo__offer-image,
  .page-promo__feature-icon {
    min-width: unset; /* Allow flexibility on mobile */
    min-height: unset;
  }
}