/* style/index-latest-exclusive-promos.css */
.page-index-latest-exclusive-promos {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

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

/* Hero Section */
.page-index-latest-exclusive-promos__hero-section {
  background: linear-gradient(135deg, #003366 0%, #001a33 100%); /* Darker blue gradient */
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-latest-exclusive-promos__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFCC00; /* Golden yellow for highlight */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  font-weight: 700;
}

.page-index-latest-exclusive-promos__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-index-latest-exclusive-promos__hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

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

.page-index-latest-exclusive-promos__button--primary {
  background-color: #FFCC00; /* Golden yellow */
  color: #003366; /* Deep sea blue */
  box-shadow: 0 4px 15px rgba(255, 204, 0, 0.4);
}

.page-index-latest-exclusive-promos__button--primary:hover {
  background-color: #e6b800; /* Slightly darker yellow */
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 204, 0, 0.6);
}

.page-index-latest-exclusive-promos__button--secondary {
  background-color: #003366; /* Deep sea blue */
  color: #FFCC00; /* Golden yellow */
  border: 2px solid #FFCC00;
  box-shadow: 0 4px 15px rgba(0, 51, 102, 0.4);
}

.page-index-latest-exclusive-promos__button--secondary:hover {
  background-color: #001a33; /* Darker blue */
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 51, 102, 0.6);
}

.page-index-latest-exclusive-promos__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 5px;
}

.page-index-latest-exclusive-promos__button--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

/* Content Section */
.page-index-latest-exclusive-promos__content-section {
  padding: 60px 0;
  background-color: #fff;
}

.page-index-latest-exclusive-promos__section-title {
  font-size: 2.5em;
  color: #003366; /* Deep sea blue */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-index-latest-exclusive-promos__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFCC00;
  border-radius: 2px;
}

.page-index-latest-exclusive-promos__sub-section-title {
  font-size: 1.8em;
  color: #003366;
  margin-top: 50px;
  margin-bottom: 25px;
  border-left: 5px solid #FFCC00;
  padding-left: 15px;
}

.page-index-latest-exclusive-promos__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #555;
}

.page-index-latest-exclusive-promos__list,
.page-index-latest-exclusive-promos__steps-list,
.page-index-latest-exclusive-promos__game-promo-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-index-latest-exclusive-promos__list li,
.page-index-latest-exclusive-promos__game-promo-list li {
  background-color: #e6f0f8; /* Light blue */
  margin-bottom: 10px;
  padding: 15px 20px;
  border-left: 5px solid #003366;
  border-radius: 5px;
  font-size: 1.05em;
  color: #222;
}

.page-index-latest-exclusive-promos__list li strong {
  color: #003366;
}

.page-index-latest-exclusive-promos__steps-list {
  counter-reset: step-counter;
}

.page-index-latest-exclusive-promos__steps-list li {
  counter-increment: step-counter;
  margin-bottom: 25px;
  padding: 20px 25px;
  background-color: #f0f8ff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  font-size: 1.1em;
  color: #333;
  border-left: 6px solid #FFCC00;
}

.page-index-latest-exclusive-promos__steps-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #003366;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-index-latest-exclusive-promos__steps-list li a {
  color: #003366;
  font-weight: bold;
  text-decoration: underline;
}

.page-index-latest-exclusive-promos__steps-list li a:hover {
  color: #FFCC00;
}

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

.page-index-latest-exclusive-promos__promo-card {
  background-color: #fefefe;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-latest-exclusive-promos__promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-index-latest-exclusive-promos__promo-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-index-latest-exclusive-promos__promo-card-title {
  font-size: 1.5em;
  color: #003366;
  margin-bottom: 15px;
  padding: 0 20px;
}

.page-index-latest-exclusive-promos__promo-card-description {
  font-size: 1em;
  color: #666;
  margin-bottom: 25px;
  padding: 0 20px;
}

.page-index-latest-exclusive-promos__game-promo-list li {
  background-color: #f8f8f8;
  border-left-color: #FFCC00;
}

/* Image Styling */
.page-index-latest-exclusive-promos__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-index-latest-exclusive-promos__image--full-width {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
}

.page-index-latest-exclusive-promos__image--medium {
  max-width: 80%;
  max-height: 350px;
  object-fit: contain;
}

/* FAQ Section */
.page-index-latest-exclusive-promos__faq-container {
  margin-top: 40px;
}

.page-index-latest-exclusive-promos__faq-item {
  background-color: #fefefe;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.page-index-latest-exclusive-promos__faq-question {
  font-size: 1.3em;
  color: #003366;
  margin-top: 0;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-index-latest-exclusive-promos__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  font-weight: bold;
  color: #FFCC00;
  transition: transform 0.3s ease;
}

.page-index-latest-exclusive-promos__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-index-latest-exclusive-promos__faq-answer {
  font-size: 1em;
  color: #555;
  margin-top: 0;
  padding-top: 10px;
  border-top: 1px solid #eee;
  display: none; /* Hidden by default */
}

.page-index-latest-exclusive-promos__faq-question.active + .page-index-latest-exclusive-promos__faq-answer {
  display: block; /* Show when active */
}

.page-index-latest-exclusive-promos__faq-answer a {
  color: #003366;
  font-weight: bold;
  text-decoration: underline;
}

.page-index-latest-exclusive-promos__faq-answer a:hover {
  color: #FFCC00;
}

/* CTA Section */
.page-index-latest-exclusive-promos__cta-section {
  background-color: #003366; /* Deep sea blue */
  color: #fff;
  padding: 80px 0;
  text-align: center;
  margin-top: 60px;
}

.page-index-latest-exclusive-promos__cta-title {
  font-size: 3em;
  color: #FFCC00; /* Golden yellow */
  margin-bottom: 20px;
}

.page-index-latest-exclusive-promos__cta-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-latest-exclusive-promos__hero-title {
    font-size: 2.8em;
  }

  .page-index-latest-exclusive-promos__hero-subtitle {
    font-size: 1.1em;
  }

  .page-index-latest-exclusive-promos__section-title {
    font-size: 2em;
  }

  .page-index-latest-exclusive-promos__sub-section-title {
    font-size: 1.6em;
  }

  .page-index-latest-exclusive-promos__promo-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-index-latest-exclusive-promos__hero-section {
    padding: 80px 0;
  }

  .page-index-latest-exclusive-promos__hero-title {
    font-size: 2.2em;
  }

  .page-index-latest-exclusive-promos__hero-subtitle {
    font-size: 1em;
  }

  .page-index-latest-exclusive-promos__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-index-latest-exclusive-promos__button {
    width: 80%;
    margin: 0 auto;
  }

  .page-index-latest-exclusive-promos__section-title {
    font-size: 1.8em;
  }

  .page-index-latest-exclusive-promos__sub-section-title {
    font-size: 1.4em;
  }

  .page-index-latest-exclusive-promos__list li,
  .page-index-latest-exclusive-promos__steps-list li,
  .page-index-latest-exclusive-promos__game-promo-list li {
    padding: 12px 15px;
    font-size: 1em;
  }

  .page-index-latest-exclusive-promos__steps-list li::before {
    width: 35px;
    height: 35px;
    font-size: 1.1em;
    left: -12px;
  }

  .page-index-latest-exclusive-promos__cta-title {
    font-size: 2.5em;
  }

  .page-index-latest-exclusive-promos__cta-description {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-index-latest-exclusive-promos__hero-section {
    padding: 60px 0;
  }

  .page-index-latest-exclusive-promos__hero-title {
    font-size: 1.8em;
  }

  .page-index-latest-exclusive-promos__hero-subtitle {
    font-size: 0.9em;
  }

  .page-index-latest-exclusive-promos__button {
    width: 90%;
  }

  .page-index-latest-exclusive-promos__section-title {
    font-size: 1.5em;
  }

  .page-index-latest-exclusive-promos__sub-section-title {
    font-size: 1.2em;
  }

  .page-index-latest-exclusive-promos__promo-grid {
    grid-template-columns: 1fr;
  }

  .page-index-latest-exclusive-promos__cta-title {
    font-size: 2em;
  }

  .page-index-latest-exclusive-promos__cta-description {
    font-size: 1em;
  }
}