.page-index-hb88-affiliate-program {
  font-family: 'Arial', sans-serif;
  color: #F8F8F8; /* Light gray for general text on dark background */
  background-color: #0A192F; /* Midnight Blue */
  line-height: 1.6;
  overflow-x: hidden;
}

.page-index-hb88-affiliate-program__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-index-hb88-affiliate-program__hero-section {
  background: linear-gradient(135deg, #0A192F 0%, #1A2F4F 100%); /* Darker gradient for hero */
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  text-align: center;
}

.page-index-hb88-affiliate-program__hero-content {
  max-width: 600px;
  z-index: 1;
}

.page-index-hb88-affiliate-program__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold accent for main title */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-index-hb88-affiliate-program__hero-description {
  font-size: 1.2em;
  color: #E0E0E0;
  margin-bottom: 30px;
}

.page-index-hb88-affiliate-program__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold for CTA */
  color: #0A192F; /* Midnight Blue text on gold */
  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: none;
  cursor: pointer;
}

.page-index-hb88-affiliate-program__cta-button:hover {
  background-color: #E6B800; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

.page-index-hb88-affiliate-program__hero-image-wrapper {
  max-width: 500px;
  text-align: center;
}

.page-index-hb88-affiliate-program__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-index-hb88-affiliate-program__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 50px;
  font-weight: bold;
  position: relative;
  padding-bottom: 15px;
}

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

.page-index-hb88-affiliate-program__introduction-section,
.page-index-hb88-affiliate-program__benefits-section,
.page-index-hb88-affiliate-program__how-to-join-section,
.page-index-hb88-affiliate-program__faq-section,
.page-index-hb88-affiliate-program__call-to-action-section {
  padding: 80px 0;
  background-color: #0A192F;
}

.page-index-hb88-affiliate-program__text-content {
  font-size: 1.1em;
  text-align: justify;
  margin-bottom: 40px;
  color: #E0E0E0;
}

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

.page-index-hb88-affiliate-program__feature-item {
  background-color: #1A2F4F; /* Slightly lighter dark blue */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-index-hb88-affiliate-program__feature-item:hover {
  transform: translateY(-10px);
}

.page-index-hb88-affiliate-program__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-index-hb88-affiliate-program__feature-item h3 {
  color: #FFD700;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-index-hb88-affiliate-program__feature-item p {
  color: #C0C0C0;
  font-size: 1em;
}

.page-index-hb88-affiliate-program__benefits-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.page-index-hb88-affiliate-program__benefit-item {
  background-color: #1A2F4F;
  padding: 35px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-index-hb88-affiliate-program__benefit-image {
  width: 90px;
  height: 90px;
  margin-bottom: 25px;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}

.page-index-hb88-affiliate-program__benefit-item h3 {
  color: #FFD700;
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-index-hb88-affiliate-program__benefit-item p {
  color: #C0C0C0;
  font-size: 1.05em;
}

.page-index-hb88-affiliate-program__how-to-join-section {
  background-color: #0A192F;
}

.page-index-hb88-affiliate-program__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.page-index-hb88-affiliate-program__steps-list li {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  background-color: #1A2F4F;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-index-hb88-affiliate-program__step-number {
  background-color: #FFD700;
  color: #0A192F;
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  flex-shrink: 0;
}

.page-index-hb88-affiliate-program__steps-list h3 {
  color: #FFD700;
  font-size: 1.5em;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-index-hb88-affiliate-program__steps-list p {
  color: #C0C0C0;
  font-size: 1.05em;
}

.page-index-hb88-affiliate-program__cta-button--bottom {
  margin-top: 60px;
  text-align: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.page-index-hb88-affiliate-program__faq-section {
  background-color: #0A192F;
}

.page-index-hb88-affiliate-program__faq-item {
  background-color: #1A2F4F;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.page-index-hb88-affiliate-program__faq-item h3 {
  color: #FFD700;
  font-size: 1.3em;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-index-hb88-affiliate-program__faq-item p {
  color: #C0C0C0;
  font-size: 1em;
  line-height: 1.7;
}

.page-index-hb88-affiliate-program__call-to-action-section {
  background: linear-gradient(45deg, #0A192F, #1A2F4F);
  padding: 100px 0;
  text-align: center;
}

.page-index-hb88-affiliate-program__call-to-action-content {
  max-width: 800px;
}

.page-index-hb88-affiliate-program__call-to-action-section .page-index-hb88-affiliate-program__section-title {
  margin-bottom: 30px;
}

.page-index-hb88-affiliate-program__call-to-action-section .page-index-hb88-affiliate-program__text-content {
  font-size: 1.2em;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-index-hb88-affiliate-program__hero-section {
    flex-direction: column;
    text-align: center;
  }

  .page-index-hb88-affiliate-program__hero-content,
  .page-index-hb88-affiliate-program__hero-image-wrapper {
    max-width: 100%;
  }

  .page-index-hb88-affiliate-program__hero-title {
    font-size: 3em;
  }

  .page-index-hb88-affiliate-program__section-title {
    font-size: 2em;
  }
}

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

  .page-index-hb88-affiliate-program__hero-description {
    font-size: 1.1em;
  }

  .page-index-hb88-affiliate-program__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-index-hb88-affiliate-program__section-title {
    font-size: 1.8em;
    margin-bottom: 40px;
  }

  .page-index-hb88-affiliate-program__introduction-section,
  .page-index-hb88-affiliate-program__benefits-section,
  .page-index-hb88-affiliate-program__how-to-join-section,
  .page-index-hb88-affiliate-program__faq-section,
  .page-index-hb88-affiliate-program__call-to-action-section {
    padding: 60px 0;
  }

  .page-index-hb88-affiliate-program__features-grid,
  .page-index-hb88-affiliate-program__benefits-layout {
    grid-template-columns: 1fr;
  }

  .page-index-hb88-affiliate-program__steps-list li {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .page-index-hb88-affiliate-program__step-number {
    margin-bottom: 15px;
  }

  .page-index-hb88-affiliate-program__call-to-action-section .page-index-hb88-affiliate-program__text-content {
    font-size: 1.1em;
  }
}

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

  .page-index-hb88-affiliate-program__hero-description {
    font-size: 1em;
  }

  .page-index-hb88-affiliate-program__section-title {
    font-size: 1.5em;
  }

  .page-index-hb88-affiliate-program__hero-section,
  .page-index-hb88-affiliate-program__introduction-section,
  .page-index-hb88-affiliate-program__benefits-section,
  .page-index-hb88-affiliate-program__how-to-join-section,
  .page-index-hb88-affiliate-program__faq-section,
  .page-index-hb88-affiliate-program__call-to-action-section {
    padding: 40px 0;
  }

  .page-index-hb88-affiliate-program__container {
    padding: 0 15px;
  }
}