.page-index-latest-promotions {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light text on dark background */
  background-color: #0A2239; /* Main background */
  line-height: 1.6;
}

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

.page-index-latest-promotions__section {
  padding: 60px 0;
  text-align: center;
}

.page-index-latest-promotions__section:nth-of-type(even) {
  background-color: #1a3a5a; /* Slightly lighter dark blue for contrast */
}

.page-index-latest-promotions__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for titles */
  margin-bottom: 30px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.page-index-latest-promotions__section-subtitle {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 25px;
  font-weight: 600;
}

.page-index-latest-promotions__hero {
  background: linear-gradient(135deg, #0A2239 0%, #1a3a5a 100%);
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  position: relative;
  overflow: hidden;
}

.page-index-latest-promotions__hero-content {
  max-width: 600px;
  margin-right: 40px;
  text-align: left;
  z-index: 1;
}

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

.page-index-latest-promotions__hero-subtitle {
  font-size: 1.3em;
  color: #E0E0E0;
  margin-bottom: 40px;
  opacity: 0.9;
}

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

.page-index-latest-promotions__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1.1em;
}

.page-index-latest-promotions__btn--primary {
  background-color: #FFD700;
  color: #0A2239;
  border: 2px solid #FFD700;
}

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

.page-index-latest-promotions__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-index-latest-promotions__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A2239;
  transform: translateY(-2px);
}

.page-index-latest-promotions__btn--small {
  padding: 10px 20px;
  font-size: 0.95em;
}

.page-index-latest-promotions__btn--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-index-latest-promotions__hero-image-wrapper {
  flex-shrink: 0;
  width: 500px;
  height: 400px;
  position: relative;
  z-index: 1;
}

.page-index-latest-promotions__hero-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
}

.page-index-latest-promotions__introduction p {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 20px auto;
  color: #CCCCCC;
}

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

.page-index-latest-promotions__card {
  background-color: #0A2239;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

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

.page-index-latest-promotions__card-image {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-index-latest-promotions__card-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: 700;
}

.page-index-latest-promotions__card-description {
  font-size: 1em;
  color: #E0E0E0;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-index-latest-promotions__how-to-claim ol {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
  max-width: 900px;
  margin: 0 auto 40px auto;
  text-align: left;
}

.page-index-latest-promotions__how-to-claim li {
  counter-increment: step-counter;
  margin-bottom: 30px;
  position: relative;
  padding-left: 70px;
}

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

.page-index-latest-promotions__step-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-index-latest-promotions__how-to-claim p {
  font-size: 1.05em;
  color: #E0E0E0;
}

.page-index-latest-promotions__how-to-claim p a {
  color: #FFD700;
  text-decoration: underline;
}

.page-index-latest-promotions__center-cta {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-index-latest-promotions__terms-conditions p {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 20px auto;
  color: #CCCCCC;
}

.page-index-latest-promotions__list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 20px auto 0 auto;
  text-align: left;
}

.page-index-latest-promotions__list li {
  background-color: #0A2239;
  border: 1px solid rgba(255, 215, 0, 0.2);
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  color: #E0E0E0;
  font-size: 1.05em;
  display: flex;
  align-items: center;
}

.page-index-latest-promotions__list li strong {
  color: #FFD700;
  margin-right: 10px;
}

.page-index-latest-promotions__list li::before {
  content: '✓';
  color: #FFD700;
  font-weight: bold;
  margin-right: 10px;
  font-size: 1.2em;
}

.page-index-latest-promotions__why-choose {
  background-color: #1a3a5a;
}

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

.page-index-latest-promotions__feature-item {
  background-color: #0A2239;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.15);
}

.page-index-latest-promotions__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
}

.page-index-latest-promotions__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-index-latest-promotions__feature-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
  font-weight: 700;
}

.page-index-latest-promotions__feature-item p {
  font-size: 1em;
  color: #E0E0E0;
}

.page-index-latest-promotions__call-to-action p {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 30px auto;
  color: #CCCCCC;
}

.page-index-latest-promotions__call-to-action p a {
  color: #FFD700;
  text-decoration: underline;
  font-weight: bold;
}

.page-index-latest-promotions__responsible-gambling {
  background-color: #0A2239;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
  padding-top: 40px;
  padding-bottom: 40px;
}

.page-index-latest-promotions__responsible-gambling p {
  font-size: 0.95em;
  color: #999;
  max-width: 700px;
  margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-latest-promotions__hero-title {
    font-size: 3em;
  }
  .page-index-latest-promotions__hero-image-wrapper {
    width: 400px;
    height: 320px;
  }
  .page-index-latest-promotions__section-title {
    font-size: 2.4em;
  }
}

@media (max-width: 768px) {
  .page-index-latest-promotions__hero {
    flex-direction: column;
    text-align: center;
    padding: 80px 0 40px 0;
    min-height: auto;
  }
  .page-index-latest-promotions__hero-content {
    margin-right: 0;
    margin-bottom: 40px;
    text-align: center;
  }
  .page-index-latest-promotions__hero-actions {
    justify-content: center;
    flex-wrap: wrap;
  }
  .page-index-latest-promotions__hero-title {
    font-size: 2.5em;
  }
  .page-index-latest-promotions__hero-subtitle {
    font-size: 1.1em;
  }
  .page-index-latest-promotions__hero-image-wrapper {
    width: 80%;
    height: auto;
    max-width: 400px;
  }
  .page-index-latest-promotions__section {
    padding: 40px 0;
  }
  .page-index-latest-promotions__section-title {
    font-size: 2em;
  }
  .page-index-latest-promotions__card {
    padding: 20px;
  }
  .page-index-latest-promotions__card-title {
    font-size: 1.5em;
  }
  .page-index-latest-promotions__how-to-claim li {
    padding-left: 60px;
  }
  .page-index-latest-promotions__how-to-claim li::before {
    width: 40px;
    height: 40px;
    font-size: 1.5em;
  }
  .page-index-latest-promotions__step-title {
    font-size: 1.4em;
  }
  .page-index-latest-promotions__features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-index-latest-promotions__hero-title {
    font-size: 2em;
  }
  .page-index-latest-promotions__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-index-latest-promotions__btn--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-index-latest-promotions__section-title {
    font-size: 1.8em;
  }
  .page-index-latest-promotions__card-title {
    font-size: 1.3em;
  }
  .page-index-latest-promotions__hero-actions {
    flex-direction: column;
  }
  .page-index-latest-promotions__center-cta {
    flex-direction: column;
  }
}