.page-index-promotions {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Text color for dark body background */
  background-color: #000000; /* Ensuring main content background matches body */
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
}

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

.page-index-promotions__hero-section {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
  padding: 80px 20px 60px; /* Adjusted padding to ensure content visibility */
}

.page-index-promotions__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-index-promotions__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

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

.page-index-promotions__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

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

.page-index-promotions__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;
  min-width: 180px; /* Ensure buttons are not too small */
  text-align: center;
}

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

.page-index-promotions__button--register:hover {
  background-color: transparent;
  color: #FFFFFF;
}

.page-index-promotions__button--login,
.page-index-promotions__button--claim,
.page-index-promotions__button--download,
.page-index-promotions__button--join-us,
.page-index-promotions__button--vip {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-index-promotions__button--login:hover,
.page-index-promotions__button--claim:hover,
.page-index-promotions__button--download:hover,
.page-index-promotions__button--join-us:hover,
.page-index-promotions__button--vip:hover {
  background-color: transparent;
  color: #FCBC45;
}

.page-index-promotions__section-title {
  font-size: 2.5em;
  color: #FCBC45;
  text-align: center;
  margin-bottom: 30px;
  margin-top: 60px;
}

.page-index-promotions__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
  color: #e0e0e0;
}

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

.page-index-promotions__promo-card {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly visible card background */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  color: #ffffff;
}

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

.page-index-promotions__promo-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  display: block; /* Ensure no extra space below image */
}

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

.page-index-promotions__card-title {
  font-size: 1.5em;
  color: #FCBC45;
  margin-bottom: 15px;
}

.page-index-promotions__card-description {
  font-size: 0.95em;
  color: #cccccc;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-index-promotions__card-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto; /* Push actions to the bottom */
}

.page-index-promotions__link-button {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-index-promotions__link-button:hover {
  color: #ffffff;
}

.page-index-promotions__button--claim {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-index-promotions__how-to-claim {
  background-color: rgba(255, 255, 255, 0.03);
  padding: 60px 0;
  margin-top: 60px;
}

.page-index-promotions__claim-steps {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-index-promotions__step-item {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-index-promotions__step-title {
  font-size: 1.8em;
  color: #FCBC45;
  margin-bottom: 10px;
}

.page-index-promotions__step-description {
  font-size: 1em;
  color: #e0e0e0;
}

.page-index-promotions__claim-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.page-index-promotions__terms-section {
  padding: 60px 0;
}

.page-index-promotions__terms-list {
  list-style: disc;
  margin-left: 20px;
  color: #e0e0e0;
  font-size: 1em;
}

.page-index-promotions__term-item {
  margin-bottom: 10px;
}

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

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

.page-index-promotions__call-to-action {
  text-align: center;
  margin-top: 30px;
  font-size: 1.1em;
  color: #f0f0f0;
}

.page-index-promotions__faq-section {
  background-color: rgba(255, 255, 255, 0.03);
  padding: 60px 0;
  margin-top: 60px;
}

.page-index-promotions__faq-list {
  margin-top: 40px;
}

.page-index-promotions__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 15px;
  color: #ffffff;
}

.page-index-promotions__faq-question {
  font-size: 1.4em;
  color: #FCBC45;
  margin-bottom: 10px;
}

.page-index-promotions__faq-answer {
  font-size: 1em;
  color: #e0e0e0;
}

.page-index-promotions__download-section {
  padding: 60px 0;
}

.page-index-promotions__download-content {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.page-index-promotions__app-image {
  max-width: 400px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-index-promotions__app-info {
  max-width: 600px;
  text-align: left;
}

.page-index-promotions__app-text {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #cccccc;
}

.page-index-promotions__why-choose-section {
  background-color: rgba(255, 255, 255, 0.03);
  padding: 60px 0;
  margin-top: 60px;
}

.page-index-promotions__features-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-index-promotions__feature-item {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  color: #ffffff;
  text-align: center;
}

.page-index-promotions__feature-title {
  font-size: 1.6em;
  color: #FCBC45;
  margin-bottom: 15px;
}

.page-index-promotions__feature-description {
  font-size: 0.95em;
  color: #cccccc;
}

.page-index-promotions__why-choose-actions {
  text-align: center;
  margin-top: 50px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-promotions__hero-title {
    font-size: 3em;
  }
  .page-index-promotions__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-index-promotions__hero-section {
    padding: 60px 15px 40px;
  }
  .page-index-promotions__hero-title {
    font-size: 2.5em;
  }
  .page-index-promotions__hero-description {
    font-size: 1em;
  }
  .page-index-promotions__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-promotions__button {
    width: 100%;
    max-width: 300px;
  }
  .page-index-promotions__container {
    padding: 0 15px;
  }
  .page-index-promotions__section-title {
    font-size: 1.8em;
    margin-top: 40px;
  }
  .page-index-promotions__section-intro {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-index-promotions__grid {
    grid-template-columns: 1fr;
  }
  .page-index-promotions__promo-image {
    height: 200px;
  }
  .page-index-promotions__promo-card {
    flex-direction: column;
  }
  .page-index-promotions__card-actions {
    flex-direction: column;
    gap: 10px;
  }
  .page-index-promotions__button--claim {
    width: 100%;
    max-width: none;
  }
  .page-index-promotions__link-button {
    margin-top: 10px;
  }
  .page-index-promotions__claim-steps {
    margin-top: 30px;
  }
  .page-index-promotions__step-item {
    padding: 20px;
  }
  .page-index-promotions__step-title {
    font-size: 1.5em;
  }
  .page-index-promotions__faq-question {
    font-size: 1.2em;
  }
  .page-index-promotions__download-content {
    flex-direction: column;
    gap: 30px;
  }
  .page-index-promotions__app-image {
    max-width: 300px;
  }
  .page-index-promotions__app-info {
    text-align: center;
  }
  .page-index-promotions__features-list {
    grid-template-columns: 1fr;
  }
  /* Mobile content area image constraint */
  .page-index-promotions img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-index-promotions__hero-title {
    font-size: 2em;
  }
  .page-index-promotions__button {
    padding: 12px 20px;
    font-size: 0.9em;
  }
  .page-index-promotions__section-title {
    font-size: 1.5em;
  }
  .page-index-promotions__card-title {
    font-size: 1.3em;
  }
  .page-index-promotions__step-title {
    font-size: 1.3em;
  }
  .page-index-promotions__faq-question {
    font-size: 1.1em;
  }
  .page-index-promotions__feature-title {
    font-size: 1.4em;
  }
}