.page-index-exclusive-promotion {
  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-index-exclusive-promotion__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #000000; /* Dark background for hero content */
  color: #FFFFFF;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-index-exclusive-promotion__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  filter: brightness(0.6); /* Slightly darken image for text readability, not color change */
}

.page-index-exclusive-promotion__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
  padding: 80px 20px;
}

.page-index-exclusive-promotion__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FCBC45; /* Login button color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-index-exclusive-promotion__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #FFFFFF;
}

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

.page-index-exclusive-promotion__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
  font-size: 1.1em;
}

.page-index-exclusive-promotion__button--primary {
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Dark text for contrast */
  border: 2px solid #FCBC45;
}

.page-index-exclusive-promotion__button--primary:hover {
  background-color: #e0a03a;
  transform: translateY(-2px);
}

.page-index-exclusive-promotion__button--secondary {
  background-color: #FFFFFF; /* Register button color */
  color: #000000;
  border: 2px solid #FFFFFF;
}

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

.page-index-exclusive-promotion__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.page-index-exclusive-promotion__promotions-overview {
  background-color: #FFFFFF;
}

.page-index-exclusive-promotion__section-title {
  font-size: 2.8em;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
}

.page-index-exclusive-promotion__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: #555555;
}

.page-index-exclusive-promotion__sub-section-title {
  font-size: 2.2em;
  color: #000000;
  margin-top: 60px;
  margin-bottom: 30px;
  text-align: center;
}

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

.page-index-exclusive-promotion__promo-card {
  background-color: #f8f8f8;
  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;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-index-exclusive-promotion__promo-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

.page-index-exclusive-promotion__card-description {
  font-size: 1em;
  color: #666666;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-index-exclusive-promotion__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
  background-color: #FCBC45;
  color: #000000;
  border: none;
}

.page-index-exclusive-promotion__button--small:hover {
  background-color: #e0a03a;
}

.page-index-exclusive-promotion__button--large {
  padding: 18px 35px;
  font-size: 1.2em;
  background-color: #FCBC45;
  color: #000000;
  border: none;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-index-exclusive-promotion__button--large:hover {
  background-color: #e0a03a;
}

.page-index-exclusive-promotion__steps-list {
  list-style: decimal;
  max-width: 800px;
  margin: 40px auto;
  padding-left: 20px;
  font-size: 1.1em;
  color: #333333;
}

.page-index-exclusive-promotion__steps-list li {
  margin-bottom: 15px;
  line-height: 1.8;
}

.page-index-exclusive-promotion__steps-list strong {
  color: #000000;
}

.page-index-exclusive-promotion__paragraph {
  font-size: 1.1em;
  margin-bottom: 25px;
  color: #333333;
}

.page-index-exclusive-promotion__text-link {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

.page-index-exclusive-promotion__text-link:hover {
  text-decoration: underline;
}

.page-index-exclusive-promotion__feature-list {
  list-style: none;
  max-width: 800px;
  margin: 40px auto;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.page-index-exclusive-promotion__feature-list li {
  background-color: #f8f8f8;
  border-left: 4px solid #FCBC45;
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 1.05em;
  color: #333333;
}

.page-index-exclusive-promotion__app-download-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background-color: #000000;
  color: #FFFFFF;
  border-radius: 12px;
}

.page-index-exclusive-promotion__app-image {
  width: 400px;
  height: 300px;
  object-fit: contain;
  margin-bottom: 30px;
}

.page-index-exclusive-promotion__faq-item {
  background-color: #f8f8f8;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.page-index-exclusive-promotion__faq-answer {
  font-size: 1em;
  color: #555555;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-exclusive-promotion__hero-title {
    font-size: 3em;
  }
  .page-index-exclusive-promotion__section-title {
    font-size: 2.5em;
  }
  .page-index-exclusive-promotion__sub-section-title {
    font-size: 2em;
  }
  .page-index-exclusive-promotion__feature-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-index-exclusive-promotion__hero-title {
    font-size: 2.5em;
  }
  .page-index-exclusive-promotion__hero-description {
    font-size: 1em;
  }
  .page-index-exclusive-promotion__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-exclusive-promotion__button {
    width: 100%;
    max-width: 300px;
  }
  .page-index-exclusive-promotion__section-title {
    font-size: 2em;
  }
  .page-index-exclusive-promotion__sub-section-title {
    font-size: 1.8em;
  }
  .page-index-exclusive-promotion__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-index-exclusive-promotion__promo-image,
  .page-index-exclusive-promotion__app-image {
    max-width: 100%;
    height: auto; /* Allow images to scale down */
  }
  .page-index-exclusive-promotion__feature-list {
    grid-template-columns: 1fr;
  }
  .page-index-exclusive-promotion__app-download-section {
    padding: 20px;
  }
  /* Enforce image scaling for mobile to prevent overflow */
  .page-index-exclusive-promotion img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-index-exclusive-promotion__hero-title {
    font-size: 2em;
  }
  .page-index-exclusive-promotion__hero-content {
    padding: 60px 15px;
  }
  .page-index-exclusive-promotion__content-area {
    padding: 30px 15px;
  }
  .page-index-exclusive-promotion__button--large {
    font-size: 1.1em;
    padding: 15px 25px;
  }
  .page-index-exclusive-promotion__steps-list,
  .page-index-exclusive-promotion__feature-list {
    padding-left: 10px;
  }
}