.page-index-latest-promotions {
  color: #ffffff; /* Light text for dark body background */
}

.page-index-latest-promotions__hero-section {
  position: relative;
  overflow: hidden;
  padding-top: var(--header-offset, 120px);
  background-color: #000000;
}

.page-index-latest-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.6;
  filter: brightness(0.7); /* Slightly darken image for text readability, but not changing color */
}

.page-index-latest-promotions__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 900px;
  width: 90%;
  z-index: 10;
  padding: 20px;
  box-sizing: border-box;
}

.page-index-latest-promotions__hero-title {
  font-size: 3.5em;
  font-weight: bold;
  margin-bottom: 20px;
  color: #FFFFFF;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.page-index-latest-promotions__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #E0E0E0;
  line-height: 1.6;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.page-index-latest-promotions__hero-cta-button,
.page-index-latest-promotions__cta-button {
  display: inline-block;
  background-color: #FCBC45; /* Login button color for CTA */
  color: #000000; /* Dark text for light button */
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-index-latest-promotions__hero-cta-button:hover,
.page-index-latest-promotions__cta-button:hover {
  background-color: #FFD700;
  transform: translateY(-3px);
}

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

.page-index-latest-promotions__section-title {
  font-size: 2.5em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: #FCBC45;
}

.page-index-latest-promotions__section-subtitle {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: #E0E0E0;
}

.page-index-latest-promotions__text-content {
  font-size: 1.05em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #F0F0F0;
}

.page-index-latest-promotions__promo-grid-section {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 60px 0;
}

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

.page-index-latest-promotions__promo-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-index-latest-promotions__promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-index-latest-promotions__promo-card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

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

.page-index-latest-promotions__promo-card-title {
  font-size: 1.6em;
  font-weight: bold;
  margin-bottom: 15px;
  color: #FCBC45;
  line-height: 1.3;
}

.page-index-latest-promotions__promo-card-description {
  font-size: 0.95em;
  color: #D0D0D0;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-index-latest-promotions__promo-card-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 10px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-align: center;
  margin-top: auto;
  border: none;
  cursor: pointer;
}

.page-index-latest-promotions__promo-card-button:hover {
  background-color: #FFD700;
  transform: translateY(-2px);
}

.page-index-latest-promotions__how-to-claim-section {
  padding: 60px 0;
}

.page-index-latest-promotions__claim-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.page-index-latest-promotions__claim-step {
  background-color: rgba(255, 255, 255, 0.08);
  border-left: 5px solid #FCBC45;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-index-latest-promotions__claim-step-title {
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 10px;
  color: #FCBC45;
}

.page-index-latest-promotions__claim-step-description {
  font-size: 1em;
  line-height: 1.7;
  color: #D0D0D0;
}

.page-index-latest-promotions__terms-section {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 60px 0;
}

.page-index-latest-promotions__terms-content {
  font-size: 1em;
  line-height: 1.7;
  color: #E0E0E0;
}

.page-index-latest-promotions__terms-content ul {
  list-style: disc;
  margin-left: 25px;
  margin-top: 20px;
}

.page-index-latest-promotions__terms-content li {
  margin-bottom: 10px;
}

.page-index-latest-promotions__terms-content strong {
  color: #FCBC45;
}

.page-index-latest-promotions__learn-more-link {
  display: inline-block;
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
  transition: color 0.3s ease;
}

.page-index-latest-promotions__learn-more-link:hover {
  color: #FFD700;
  text-decoration: underline;
}

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

.page-index-latest-promotions__faq-list {
  display: grid;
  gap: 20px;
}

.page-index-latest-promotions__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-index-latest-promotions__faq-answer {
  font-size: 1em;
  line-height: 1.7;
  color: #D0D0D0;
}

.page-index-latest-promotions__view-all-faq-link {
  display: block;
  text-align: center;
  margin-top: 40px;
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: color 0.3s ease;
}

.page-index-latest-promotions__view-all-faq-link:hover {
  color: #FFD700;
  text-decoration: underline;
}

.page-index-latest-promotions__join-us-section {
  background-color: rgba(255, 255, 255, 0.03);
  padding: 80px 0;
  text-align: center;
}

.page-index-latest-promotions__cta-button--large {
  padding: 20px 50px;
  font-size: 1.3em;
  border-radius: 10px;
}

/* Responsive adjustments */
@media (min-width: 769px) {
  .page-index-latest-promotions__claim-steps {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }
}

@media (max-width: 1024px) {
  .page-index-latest-promotions__hero-title {
    font-size: 3em;
  }
  .page-index-latest-promotions__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-index-latest-promotions__hero-section {
    padding-top: var(--header-offset, 120px); /* Ensure mobile header offset */
  }
  .page-index-latest-promotions__hero-title {
    font-size: 2.5em;
  }
  .page-index-latest-promotions__hero-description {
    font-size: 1em;
  }
  .page-index-latest-promotions__hero-cta-button,
  .page-index-latest-promotions__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-index-latest-promotions__section-title {
    font-size: 2em;
  }
  .page-index-latest-promotions__promo-cards-grid {
    grid-template-columns: 1fr;
  }
  .page-index-latest-promotions__claim-step-title {
    font-size: 1.5em;
  }
  .page-index-latest-promotions__faq-question {
    font-size: 1.2em;
  }
  .page-index-latest-promotions__container {
    padding: 20px 15px;
  }
  /* Mobile content image constraint */
  .page-index-latest-promotions__promo-card-image,
  .page-index-latest-promotions__hero-image {
    max-width: 100%;
    height: auto;
  }
  .page-index-latest-promotions__text-content img, 
  .page-index-latest-promotions__promo-card img, 
  .page-index-latest-promotions__faq-item img {
    max-width: 100%; 
    height: auto; 
    min-width: 200px; 
    min-height: 200px; /* Enforce minimum size for content images */
  }
  .page-index-latest-promotions__hero-image {
    min-width: 200px; 
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .page-index-latest-promotions__hero-title {
    font-size: 2em;
  }
  .page-index-latest-promotions__hero-description {
    font-size: 0.9em;
  }
  .page-index-latest-promotions__section-title {
    font-size: 1.8em;
  }
  .page-index-latest-promotions__promo-card-title {
    font-size: 1.4em;
  }
  .page-index-latest-promotions__claim-step-title {
    font-size: 1.3em;
  }
  .page-index-latest-promotions__faq-question {
    font-size: 1.1em;
  }
}