.page-index-latest-promotions {
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #FFFFFF;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-index-latest-promotions__hero-section {
  position: relative;
  overflow: hidden;
  padding: 0;
  text-align: center;
}

.page-index-latest-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6); /* Slightly darken image for text readability */
}

.page-index-latest-promotions__hero-container {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
}

.page-index-latest-promotions__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  color: #FFFFFF;
  max-width: 900px;
  padding: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-index-latest-promotions__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFFFFF;
  font-weight: bold;
  line-height: 1.2;
}

.page-index-latest-promotions__hero-description {
  font-size: 1.4em;
  margin-bottom: 30px;
  color: #F0F0F0;
}

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

.page-index-latest-promotions__hero-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-index-latest-promotions__hero-button--register {
  background-color: #FFFFFF;
  color: #000000;
}

.page-index-latest-promotions__hero-button--register:hover {
  background-color: #F0F0F0;
  transform: translateY(-2px);
}

.page-index-latest-promotions__hero-button--login {
  background-color: #FCBC45;
  color: #000000;
}

.page-index-latest-promotions__hero-button--login:hover {
  background-color: #E6A839;
  transform: translateY(-2px);
}

.page-index-latest-promotions__promotions-grid,
.page-index-latest-promotions__how-to-claim,
.page-index-latest-promotions__terms-overview,
.page-index-latest-promotions__why-helpslot,
.page-index-latest-promotions__faq-section,
.page-index-latest-promotions__cta-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.page-index-latest-promotions__grid-header,
.page-index-latest-promotions__claim-content,
.page-index-latest-promotions__terms-content,
.page-index-latest-promotions__why-content,
.page-index-latest-promotions__faq-container,
.page-index-latest-promotions__cta-content {
  text-align: center;
  margin-bottom: 40px;
}

.page-index-latest-promotions__grid-title,
.page-index-latest-promotions__claim-title,
.page-index-latest-promotions__terms-title,
.page-index-latest-promotions__why-title,
.page-index-latest-promotions__faq-title,
.page-index-latest-promotions__cta-title {
  font-size: 2.5em;
  color: #000000;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-index-latest-promotions__grid-subtitle,
.page-index-latest-promotions__claim-subtitle,
.page-index-latest-promotions__terms-intro,
.page-index-latest-promotions__why-subtitle,
.page-index-latest-promotions__cta-description {
  font-size: 1.1em;
  color: #555555;
  line-height: 1.8;
}

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

.page-index-latest-promotions__promotion-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #EEEEEE;
}

.page-index-latest-promotions__promotion-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

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

.page-index-latest-promotions__card-content {
  padding: 25px;
  text-align: left;
}

.page-index-latest-promotions__card-title {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-index-latest-promotions__card-description {
  font-size: 0.95em;
  color: #666666;
  margin-bottom: 20px;
  line-height: 1.7;
}

.page-index-latest-promotions__card-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  transition: background-color 0.3s ease;
}

.page-index-latest-promotions__card-button:hover {
  background-color: #E6A839;
}

.page-index-latest-promotions__claim-steps {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-index-latest-promotions__claim-step {
  background-color: #F8F8F8;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-index-latest-promotions__step-number {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-color: #000000;
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
}

.page-index-latest-promotions__step-heading {
  font-size: 1.3em;
  color: #000000;
  margin-bottom: 10px;
}

.page-index-latest-promotions__step-description {
  font-size: 0.95em;
  color: #666666;
}

.page-index-latest-promotions__claim-button {
  margin-top: 40px;
  display: inline-block;
  background-color: #000000;
  color: #FFFFFF;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-index-latest-promotions__claim-button:hover {
  background-color: #333333;
}

.page-index-latest-promotions__terms-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
  text-align: left;
}

.page-index-latest-promotions__term-item {
  background-color: #F8F8F8;
  border-left: 5px solid #FCBC45;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-index-latest-promotions__term-heading {
  font-size: 1.2em;
  color: #000000;
  margin-bottom: 10px;
}

.page-index-latest-promotions__term-description {
  font-size: 0.9em;
  color: #666666;
}

.page-index-latest-promotions__terms-button {
  margin-top: 40px;
  display: inline-block;
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
  border-bottom: 2px solid #FCBC45;
  padding-bottom: 5px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.page-index-latest-promotions__terms-button:hover {
  color: #E6A839;
  border-color: #E6A839;
}

.page-index-latest-promotions__benefits-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-latest-promotions__benefit-item {
  background-color: #F8F8F8;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-index-latest-promotions__benefit-icon {
  width: 200px;
  height: 200px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-index-latest-promotions__benefit-heading {
  font-size: 1.3em;
  color: #000000;
  margin-bottom: 10px;
}

.page-index-latest-promotions__benefit-description {
  font-size: 0.95em;
  color: #666666;
}

.page-index-latest-promotions__faq-items {
  margin-top: 40px;
  text-align: left;
}

.page-index-latest-promotions__faq-item {
  background-color: #F8F8F8;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-index-latest-promotions__faq-question {
  display: block;
  padding: 20px;
  font-size: 1.1em;
  color: #000000;
  font-weight: bold;
  cursor: pointer;
  position: relative;
  user-select: none;
  transition: background-color 0.3s ease;
}

.page-index-latest-promotions__faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-index-latest-promotions__faq-item[open] .page-index-latest-promotions__faq-question::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-index-latest-promotions__faq-answer {
  padding: 0 20px 20px;
  font-size: 0.95em;
  color: #666666;
  line-height: 1.7;
}

.page-index-latest-promotions__cta-section {
  background-color: #000000;
  color: #FFFFFF;
  padding: 80px 20px;
  border-radius: 15px;
  margin-bottom: 60px;
}

.page-index-latest-promotions__cta-title {
  color: #FFFFFF;
  font-size: 2.8em;
  margin-bottom: 20px;
}

.page-index-latest-promotions__cta-description {
  color: #F0F0F0;
  font-size: 1.2em;
  margin-bottom: 40px;
}

.page-index-latest-promotions__cta-button {
  display: inline-block;
  padding: 18px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  margin: 0 10px;
}

.page-index-latest-promotions__cta-button--primary {
  background-color: #FCBC45;
  color: #000000;
}

.page-index-latest-promotions__cta-button--primary:hover {
  background-color: #E6A839;
  transform: translateY(-3px);
}

.page-index-latest-promotions__cta-button--secondary {
  background-color: #FFFFFF;
  color: #000000;
}

.page-index-latest-promotions__cta-button--secondary:hover {
  background-color: #F0F0F0;
  transform: translateY(-3px);
}

@media (max-width: 1024px) {
  .page-index-latest-promotions__hero-title {
    font-size: 2.8em;
  }
  .page-index-latest-promotions__hero-description {
    font-size: 1.2em;
  }
  .page-index-latest-promotions__grid-title,
  .page-index-latest-promotions__claim-title,
  .page-index-latest-promotions__terms-title,
  .page-index-latest-promotions__why-title,
  .page-index-latest-promotions__faq-title,
  .page-index-latest-promotions__cta-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-index-latest-promotions {
    padding-top: var(--header-offset, 80px); /* Adjust for smaller header on mobile */
  }
  .page-index-latest-promotions__hero-content {
    padding: 15px;
  }
  .page-index-latest-promotions__hero-title {
    font-size: 2em;
    margin-bottom: 15px;
  }
  .page-index-latest-promotions__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-index-latest-promotions__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-latest-promotions__hero-button {
    width: 80%;
    max-width: 300px;
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-index-latest-promotions__promotions-grid,
  .page-index-latest-promotions__how-to-claim,
  .page-index-latest-promotions__terms-overview,
  .page-index-latest-promotions__why-helpslot,
  .page-index-latest-promotions__faq-section,
  .page-index-latest-promotions__cta-section {
    margin: 40px auto;
    padding: 0 15px;
  }
  .page-index-latest-promotions__grid-title,
  .page-index-latest-promotions__claim-title,
  .page-index-latest-promotions__terms-title,
  .page-index-latest-promotions__why-title,
  .page-index-latest-promotions__faq-title,
  .page-index-latest-promotions__cta-title {
    font-size: 1.8em;
  }
  .page-index-latest-promotions__claim-steps,
  .page-index-latest-promotions__terms-points,
  .page-index-latest-promotions__benefits-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-index-latest-promotions__card-image,
  .page-index-latest-promotions__benefit-icon {
    max-width: 100%;
    height: auto;
  }
  .page-index-latest-promotions__cta-button {
    width: 100%;
    max-width: 300px;
    margin: 10px 0;
  }
  /* CRITICAL: Mobile content area image overflow prevention */
  .page-index-latest-promotions img {
    max-width: 100%;
    height: auto;
  }
  .page-index-latest-promotions__hero-image {
    height: 400px;
  }
}