.page-index-latest-promotions {
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-index-latest-promotions__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  min-height: 500px;
}

.page-index-latest-promotions__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.page-index-latest-promotions__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.page-index-latest-promotions__hero-content {
  background: rgba(0, 32, 96, 0.85); /* Dark blue with transparency */
  padding: 40px;
  border-radius: 10px;
  color: #ffffff;
  max-width: 800px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-index-latest-promotions__hero-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold accent */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-index-latest-promotions__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
}

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

.page-index-latest-promotions__hero-button {
  display: inline-block;
  background: #FFD700; /* Gold */
  color: #002060; /* Dark blue text */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FFD700;
}

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

.page-index-latest-promotions__hero-button--secondary {
  background: none;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-index-latest-promotions__hero-button--secondary:hover {
  background-color: rgba(255, 215, 0, 0.1);
}

.page-index-latest-promotions__promotions-grid {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.page-index-latest-promotions__grid-header {
  margin-bottom: 50px;
}

.page-index-latest-promotions__grid-title {
  font-size: 2.5em;
  color: #002060;
  margin-bottom: 15px;
}

.page-index-latest-promotions__grid-subtitle {
  font-size: 1.1em;
  color: #555555;
  max-width: 800px;
  margin: 0 auto;
}

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

.page-index-latest-promotions__promo-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-index-latest-promotions__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

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

.page-index-latest-promotions__promo-title {
  font-size: 1.5em;
  color: #002060;
  margin-bottom: 15px;
}

.page-index-latest-promotions__promo-title a {
  color: #002060;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-index-latest-promotions__promo-title a:hover {
  color: #FFD700;
}

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

.page-index-latest-promotions__promo-button {
  display: inline-block;
  background: #002060; /* Dark blue */
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  align-self: flex-start;
  border: 2px solid #002060;
}

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

.page-index-latest-promotions__how-to-claim {
  background: #f8f8f8;
  padding: 80px 20px;
  text-align: center;
}

.page-index-latest-promotions__how-to-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-index-latest-promotions__how-to-title {
  font-size: 2.2em;
  color: #002060;
  margin-bottom: 20px;
}

.page-index-latest-promotions__how-to-description {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 30px;
}

.page-index-latest-promotions__how-to-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
  text-align: left;
}

.page-index-latest-promotions__how-to-list li {
  background: #ffffff;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-size: 1em;
  color: #333333;
  counter-increment: step-counter;
  position: relative;
  padding-left: 50px;
}

.page-index-latest-promotions__how-to-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: #FFD700;
  color: #002060;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 1.1em;
}

.page-index-latest-promotions__how-to-list li strong {
  color: #002060;
}

.page-index-latest-promotions__how-to-final-note {
  font-size: 1em;
  color: #666666;
  margin-bottom: 30px;
}

.page-index-latest-promotions__how-to-button {
  display: inline-block;
  background: #FFD700;
  color: #002060;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FFD700;
}

.page-index-latest-promotions__how-to-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-index-latest-promotions__responsible-gaming {
  background: #002060;
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.page-index-latest-promotions__responsible-container {
  max-width: 800px;
  margin: 0 auto;
}

.page-index-latest-promotions__responsible-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-index-latest-promotions__responsible-description {
  font-size: 1.1em;
  margin-bottom: 30px;
}

.page-index-latest-promotions__responsible-button {
  display: inline-block;
  background: #FFD700;
  color: #002060;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FFD700;
}

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

.page-index-latest-promotions__faq {
  padding: 80px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.page-index-latest-promotions__faq-title {
  font-size: 2.2em;
  color: #002060;
  text-align: center;
  margin-bottom: 40px;
}

.page-index-latest-promotions__faq-item {
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-index-latest-promotions__faq-question {
  font-size: 1.3em;
  color: #002060;
  margin-bottom: 10px;
}

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

.page-index-latest-promotions__cta-section {
  background: linear-gradient(90deg, #002060, #003366);
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
}

.page-index-latest-promotions__cta-container {
  max-width: 900px;
  margin: 0 auto;
}

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

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

.page-index-latest-promotions__cta-button {
  display: inline-block;
  background: #FFD700;
  color: #002060;
  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;
  border: 2px solid #FFD700;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-latest-promotions__hero-title {
    font-size: 2.2em;
  }
  .page-index-latest-promotions__grid-container {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-index-latest-promotions__hero-section {
    padding-top: var(--header-offset, 90px);
    min-height: 400px;
  }
  .page-index-latest-promotions__hero-content {
    padding: 30px;
  }
  .page-index-latest-promotions__hero-title {
    font-size: 1.8em;
  }
  .page-index-latest-promotions__hero-description {
    font-size: 1em;
  }
  .page-index-latest-promotions__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-latest-promotions__hero-button {
    width: 100%;
    padding: 12px 20px;
  }
  .page-index-latest-promotions__grid-title,
  .page-index-latest-promotions__how-to-title,
  .page-index-latest-promotions__responsible-title,
  .page-index-latest-promotions__faq-title,
  .page-index-latest-promotions__cta-title {
    font-size: 1.8em;
  }
  .page-index-latest-promotions__promo-image {
    height: 200px;
  }
  .page-index-latest-promotions__how-to-list li {
    padding: 15px 15px 15px 45px;
  }
  .page-index-latest-promotions__how-to-list li::before {
    width: 25px;
    height: 25px;
    font-size: 1em;
    left: 10px;
  }

  /* Ensure content area images are responsive and do not overflow */
  .page-index-latest-promotions img {
    max-width: 100%;
    height: auto;
  }
  .page-index-latest-promotions__promotions-grid,
  .page-index-latest-promotions__how-to-claim,
  .page-index-latest-promotions__responsible-gaming,
  .page-index-latest-promotions__faq,
  .page-index-latest-promotions__cta-section {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-index-latest-promotions__hero-title {
    font-size: 1.5em;
  }
  .page-index-latest-promotions__hero-description {
    font-size: 0.9em;
  }
  .page-index-latest-promotions__grid-title,
  .page-index-latest-promotions__how-to-title,
  .page-index-latest-promotions__responsible-title,
  .page-index-latest-promotions__faq-title,
  .page-index-latest-promotions__cta-title {
    font-size: 1.5em;
  }
  .page-index-latest-promotions__promo-title {
    font-size: 1.2em;
  }
  .page-index-latest-promotions__promo-description {
    font-size: 0.85em;
  }
  .page-index-latest-promotions__cta-button {
    font-size: 1em;
    padding: 15px 25px;
  }
}