/* style/index-exclusive-promotions.css */
.page-index-exclusive-promotions {
  font-family: 'Arial', sans-serif;
  color: #f0f0f0; /* Default text color for dark background */
  background-color: #0d1a33; /* Darker variant of primary color for body */
}

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

.page-index-exclusive-promotions__hero-section {
  background: linear-gradient(135deg, #1A2B5B, #0d1a33); /* Primary color to darker variant */
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-exclusive-promotions__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Secondary color for emphasis */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

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

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

.page-index-exclusive-promotions__btn--primary {
  background-color: #FFD700; /* Secondary color */
  color: #1A2B5B; /* Primary color */
  border: none;
}

.page-index-exclusive-promotions__btn--primary:hover {
  background-color: #e5c100; /* Slightly darker gold */
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-index-exclusive-promotions__btn--secondary {
  background-color: #1A2B5B; /* Primary color */
  color: #FFD700; /* Secondary color */
  border: 2px solid #FFD700;
}

.page-index-exclusive-promotions__btn--secondary:hover {
  background-color: #2a3d6e; /* Slightly lighter primary */
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

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

.page-index-exclusive-promotions__btn--outline:hover {
  background-color: #FFD700;
  color: #1A2B5B;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

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

.page-index-exclusive-promotions__btn--cta-xl {
  padding: 22px 45px;
  font-size: 1.5em;
  background-color: #FFD700;
  color: #1A2B5B;
  border: none;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-index-exclusive-promotions__btn--cta-xl:hover {
  background-color: #e5c100;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-index-exclusive-promotions__hero-image,
.page-index-exclusive-promotions__feature-image,
.page-index-exclusive-promotions__overview-image,
.page-index-exclusive-promotions__promo-image,
.page-index-exclusive-promotions__app-image,
.page-index-exclusive-promotions__final-cta-image {
  max-width: 100%;
  height: auto;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-index-exclusive-promotions__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
  position: relative;
}

.page-index-exclusive-promotions__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-index-exclusive-promotions__text {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #cccccc;
  text-align: justify;
}

.page-index-exclusive-promotions__why-choose-us,
.page-index-exclusive-promotions__promotions-overview,
.page-index-exclusive-promotions__detailed-promotions,
.page-index-exclusive-promotions__how-to-claim,
.page-index-exclusive-promotions__app-download,
.page-index-exclusive-promotions__responsible-gaming,
.page-index-exclusive-promotions__faq,
.page-index-exclusive-promotions__final-cta {
  padding: 60px 0;
  background-color: #132240; /* Slightly lighter than main body background */
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.page-index-exclusive-promotions__promotions-overview .page-index-exclusive-promotions__text,
.page-index-exclusive-promotions__how-to-claim .page-index-exclusive-promotions__text,
.page-index-exclusive-promotions__app-download .page-index-exclusive-promotions__text,
.page-index-exclusive-promotions__responsible-gaming .page-index-exclusive-promotions__text,
.page-index-exclusive-promotions__final-cta .page-index-exclusive-promotions__text {
  text-align: center;
}

.page-index-exclusive-promotions__promo-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-index-exclusive-promotions__promo-list li {
  background-color: #1A2B5B;
  padding: 20px;
  border-radius: 8px;
  flex: 1 1 calc(33% - 40px); /* 3 items per row on desktop */
  min-width: 280px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  color: #FFD700;
  font-weight: bold;
}

.page-index-exclusive-promotions__promo-card {
  background-color: #1A2B5B;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
}

.page-index-exclusive-promotions__promo-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-index-exclusive-promotions__promo-description {
  font-size: 1.05em;
  line-height: 1.7;
  color: #cccccc;
  margin-bottom: 25px;
  text-align: justify;
}

.page-index-exclusive-promotions__promo-details {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  text-align: left;
  color: #e0e0e0;
}

.page-index-exclusive-promotions__promo-details li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.page-index-exclusive-promotions__promo-details li::before {
  content: '✔️';
  position: absolute;
  left: 0;
  color: #FFD700;
}

.page-index-exclusive-promotions__steps-list {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
  margin-top: 30px;
}

.page-index-exclusive-promotions__steps-list li {
  background-color: #1A2B5B;
  padding: 25px;
  margin-bottom: 15px;
  border-radius: 10px;
  display: flex;
  align-items: flex-start;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  color: #e0e0e0;
  text-align: left;
}

.page-index-exclusive-promotions__steps-list li::before {
  counter-increment: step-counter;
  content: "Bước " counter(step-counter) ": ";
  font-weight: bold;
  color: #FFD700;
  font-size: 1.2em;
  margin-right: 15px;
  flex-shrink: 0;
}

.page-index-exclusive-promotions__app-download {
  text-align: center;
}

.page-index-exclusive-promotions__responsible-gaming {
  background-color: #0d1a33; /* Darker variant for contrast */
  border-radius: 0;
  box-shadow: none;
}

.page-index-exclusive-promotions__faq-item {
  background-color: #1A2B5B;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.page-index-exclusive-promotions__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

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

.page-index-exclusive-promotions__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-index-exclusive-promotions__faq-answer {
  font-size: 1.0em;
  color: #cccccc;
  line-height: 1.6;
  text-align: justify;
  display: none; /* Hidden by default, toggled by JS */
  padding-top: 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-exclusive-promotions__hero-title {
    font-size: 3em;
  }
  .page-index-exclusive-promotions__section-title {
    font-size: 2.2em;
  }
  .page-index-exclusive-promotions__promo-list li {
    flex: 1 1 calc(50% - 20px); /* 2 items per row on medium screens */
  }
}

@media (max-width: 768px) {
  .page-index-exclusive-promotions__hero-title {
    font-size: 2.5em;
  }

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

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

  .page-index-exclusive-promotions__promo-list li {
    flex: 1 1 calc(50% - 20px); /* 2 items per row on tablet */
  }

  .page-index-exclusive-promotions__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-index-exclusive-promotions__btn--cta-xl {
    padding: 18px 35px;
    font-size: 1.2em;
  }
  .page-index-exclusive-promotions__promo-card {
    padding: 20px;
  }
  .page-index-exclusive-promotions__steps-list li {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .page-index-exclusive-promotions__hero-title {
    font-size: 2em;
  }

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

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

  .page-index-exclusive-promotions__promo-list li {
    flex: 1 1 100%; /* 1 item per row on mobile */
  }

  .page-index-exclusive-promotions__btn {
    display: block;
    width: calc(100% - 20px);
    margin: 10px auto;
  }
  .page-index-exclusive-promotions__steps-list li {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .page-index-exclusive-promotions__steps-list li::before {
    margin-right: 0;
    margin-bottom: 10px;
  }
}