.page-index-exclusive-bonuses {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

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

.page-index-exclusive-bonuses__hero-section {
  background: linear-gradient(135deg, #0A2342 0%, #304e7a 100%); /* Dark blue gradient */
  color: #fff;
  text-align: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.page-index-exclusive-bonuses__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[GALLERY:bg:abstract,geometric,pattern,dark_blue_gold]');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.page-index-exclusive-bonuses__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  position: relative;
  z-index: 1;
  color: #FFD700; /* Gold for title */
}

.page-index-exclusive-bonuses__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
  color: #e0e0e0;
}

.page-index-exclusive-bonuses__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1.1em;
  position: relative;
  z-index: 1;
}

.page-index-exclusive-bonuses__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #0A2342; /* Dark blue */
}

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

.page-index-exclusive-bonuses__btn--secondary {
  background-color: #0A2342; /* Dark blue */
  color: #FFD700; /* Gold */
  border: 2px solid #FFD700;
}

.page-index-exclusive-bonuses__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A2342;
  transform: translateY(-2px);
}

.page-index-exclusive-bonuses__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

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

.page-index-exclusive-bonuses__btn--huge {
  padding: 20px 40px;
  font-size: 1.5em;
  border-radius: 8px;
}

.page-index-exclusive-bonuses__section-title {
  font-size: 2.5em;
  color: #0A2342; /* Dark blue */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

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

.page-index-exclusive-bonuses__intro-section,
.page-index-exclusive-bonuses__bonuses-overview,
.page-index-exclusive-bonuses__how-to-claim,
.page-index-exclusive-bonuses__terms-conditions,
.page-index-exclusive-bonuses__why-choose,
.page-index-exclusive-bonuses__faq-section,
.page-index-exclusive-bonuses__final-cta {
  padding: 60px 0;
  background-color: #fff;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-index-exclusive-bonuses__intro-section p,
.page-index-exclusive-bonuses__bonuses-overview p,
.page-index-exclusive-bonuses__terms-conditions p,
.page-index-exclusive-bonuses__why-choose p,
.page-index-exclusive-bonuses__faq-item p {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 15px;
  text-align: justify;
}

.page-index-exclusive-bonuses__intro-section strong,
.page-index-exclusive-bonuses__bonuses-overview strong,
.page-index-exclusive-bonuses__terms-conditions strong,
.page-index-exclusive-bonuses__why-choose strong,
.page-index-exclusive-bonuses__faq-item strong {
  color: #0A2342;
}

.page-index-exclusive-bonuses__highlight {
  color: #FFD700;
}

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

.page-index-exclusive-bonuses__bonus-item {
  background-color: #f0f4f8;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-exclusive-bonuses__bonus-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-index-exclusive-bonuses__bonus-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-index-exclusive-bonuses__bonus-title {
  font-size: 1.6em;
  color: #0A2342;
  margin-bottom: 15px;
}

.page-index-exclusive-bonuses__bonus-item p {
  font-size: 1em;
  color: #666;
}

.page-index-exclusive-bonuses__note {
  text-align: center;
  font-style: italic;
  color: #777;
  margin-top: 30px;
}

.page-index-exclusive-bonuses__how-to-claim ol {
  counter-reset: step-counter;
  list-style: none;
  padding: 0;
}

.page-index-exclusive-bonuses__how-to-claim li {
  background-color: #f9f9f9;
  border-left: 5px solid #FFD700; /* Gold accent */
  padding: 25px 30px;
  margin-bottom: 25px;
  border-radius: 8px;
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-index-exclusive-bonuses__how-to-claim li::before {
  counter-increment: step-counter;
  content: "Bước " counter(step-counter);
  position: absolute;
  left: -20px; /* Adjust as needed */
  top: 20px;
  background-color: #0A2342; /* Dark blue */
  color: #fff;
  padding: 8px 15px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 0.9em;
}

.page-index-exclusive-bonuses__step-title {
  font-size: 1.8em;
  color: #0A2342;
  margin-bottom: 10px;
  padding-left: 60px;
}

.page-index-exclusive-bonuses__how-to-claim p {
  padding-left: 60px;
}

.page-index-exclusive-bonuses__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-index-exclusive-bonuses__call-to-action {
  text-align: center;
  font-size: 1.3em;
  margin-top: 40px;
  margin-bottom: 30px;
  color: #0A2342;
  font-weight: bold;
}

.page-index-exclusive-bonuses__terms-conditions ul {
  list-style: none;
  padding: 0;
}

.page-index-exclusive-bonuses__terms-conditions li {
  background-color: #f0f4f8;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid #0A2342; /* Dark blue accent */
  font-size: 1.1em;
  color: #444;
}

.page-index-exclusive-bonuses__terms-conditions li strong {
  color: #0A2342;
  display: block;
  margin-bottom: 5px;
  font-size: 1.2em;
}

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

.page-index-exclusive-bonuses__feature-item {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-exclusive-bonuses__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.page-index-exclusive-bonuses__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  object-fit: contain;
  filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.2));
}

.page-index-exclusive-bonuses__feature-title {
  font-size: 1.5em;
  color: #0A2342;
  margin-bottom: 15px;
}

.page-index-exclusive-bonuses__feature-item p {
  font-size: 1em;
  color: #666;
}

.page-index-exclusive-bonuses__faq-item {
  background-color: #f0f4f8;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px 30px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.page-index-exclusive-bonuses__faq-question {
  font-size: 1.4em;
  color: #0A2342;
  cursor: pointer;
  margin-bottom: 10px;
  position: relative;
  padding-right: 30px;
}

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

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

.page-index-exclusive-bonuses__faq-answer {
  font-size: 1.1em;
  color: #555;
  display: none;
  padding-top: 10px;
  border-top: 1px solid #e0e0e0;
  margin-top: 10px;
}

.page-index-exclusive-bonuses__faq-question.active + .page-index-exclusive-bonuses__faq-answer {
  display: block;
}

.page-index-exclusive-bonuses__final-cta {
  text-align: center;
  background: linear-gradient(135deg, #0A2342 0%, #304e7a 100%); /* Dark blue gradient */
  color: #fff;
  padding: 80px 0;
  border-radius: 8px;
  margin-bottom: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.page-index-exclusive-bonuses__final-cta .page-index-exclusive-bonuses__section-title {
  color: #FFD700;
}

.page-index-exclusive-bonuses__final-cta .page-index-exclusive-bonuses__section-title::after {
  background-color: #fff;
}

.page-index-exclusive-bonuses__final-cta p {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #e0e0e0;
}

.page-index-exclusive-bonuses__disclaimer {
  font-size: 0.9em;
  color: #ccc;
  margin-top: 30px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-index-exclusive-bonuses__hero-title {
    font-size: 2.5em;
  }

  .page-index-exclusive-bonuses__hero-subtitle {
    font-size: 1.2em;
  }

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

  .page-index-exclusive-bonuses__bonus-grid,
  .page-index-exclusive-bonuses__feature-grid {
    grid-template-columns: 1fr;
  }

  .page-index-exclusive-bonuses__how-to-claim li::before {
    position: static;
    display: block;
    margin-bottom: 10px;
    text-align: left;
    left: auto;
    top: auto;
    padding: 5px 10px;
  }

  .page-index-exclusive-bonuses__step-title,
  .page-index-exclusive-bonuses__how-to-claim p {
    padding-left: 0;
  }

  .page-index-exclusive-bonuses__intro-section,
  .page-index-exclusive-bonuses__bonuses-overview,
  .page-index-exclusive-bonuses__how-to-claim,
  .page-index-exclusive-bonuses__terms-conditions,
  .page-index-exclusive-bonuses__why-choose,
  .page-index-exclusive-bonuses__faq-section,
  .page-index-exclusive-bonuses__final-cta {
    padding: 40px 0;
  }
}

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

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

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

  .page-index-exclusive-bonuses__btn--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }

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

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

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