.page-index-review-hi88 {
  font-family: 'Arial', sans-serif;
  line-height: 1.7;
  color: #f0f0f0; /* Light text for dark body background */
  background-color: #121212; /* Inherited from body, but explicitly set for clarity */
  padding-top: 120px; /* Adjust for fixed header on desktop */
}

.page-index-review-hi88__section {
  padding: 60px 20px;
  margin-bottom: 20px;
  background-color: #1a1a1a; /* Slightly lighter dark background for sections */
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.page-index-review-hi88__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-index-review-hi88__section-title {
  font-size: 36px;
  font-weight: bold;
  color: #007bff; /* Brand primary color for titles */
  margin-bottom: 30px;
  text-align: center;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.page-index-review-hi88__text-block {
  font-size: 17px;
  margin-bottom: 20px;
  line-height: 1.8;
  color: #e0e0e0;
}

.page-index-review-hi88__highlight {
  color: #28a745; /* Brand secondary color for highlights */
  font-weight: bold;
}

.page-index-review-hi88__link {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-index-review-hi88__link:hover {
  color: #28a745;
  text-decoration: underline;
}

/* HERO Section */
.page-index-review-hi88__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 180px; /* Desktop: Adjust for fixed navigation bar */
  background: linear-gradient(135deg, #007bff, #0056b3); /* Darker blue gradient for hero background */
  color: #ffffff;
  margin-bottom: 20px;
  border-radius: 0;
  box-shadow: none;
}

.page-index-review-hi88__hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-index-review-hi88__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-index-review-hi88__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-index-review-hi88__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-index-review-hi88__main-title {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 15px;
  color: #ffffff;
  line-height: 1.2;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
}

.page-index-review-hi88__subtitle {
  font-size: 20px;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-index-review-hi88__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #28a745; /* Secondary brand color */
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px; /* More rounded for CTA */
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  border: none;
}

.page-index-review-hi88__cta-button:hover {
  background: #218838;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-index-review-hi88__cta-button--small {
  padding: 12px 30px;
  font-size: 16px;
  border-radius: 30px;
  margin-top: 15px;
}

.page-index-review-hi88__cta-button--center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
}

/* Features Grid */
.page-index-review-hi88__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-index-review-hi88__feature-card {
  background-color: #2a2a2a; /* Darker card background */
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid #3a3a3a;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-review-hi88__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-index-review-hi88__feature-title {
  font-size: 22px;
  font-weight: bold;
  color: #007bff;
  margin-bottom: 15px;
}

.page-index-review-hi88__feature-card p {
  font-size: 16px;
  color: #cccccc;
}

/* Advantages & Disadvantages Section */
.page-index-review-hi88__advantages-disadvantages-section {
  background-color: #1a1a1a;
}

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

.page-index-review-hi88__card {
  background-color: #2a2a2a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid #3a3a3a;
}

.page-index-review-hi88__card--advantage {
  border-left: 5px solid #28a745;
}

.page-index-review-hi88__card--disadvantage {
  border-left: 5px solid #dc3545;
}

.page-index-review-hi88__card-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}

.page-index-review-hi88__card-title--green {
  color: #28a745;
}

.page-index-review-hi88__card-title--red {
  color: #dc3545;
}

.page-index-review-hi88__list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.page-index-review-hi88__list li {
  margin-bottom: 12px;
  font-size: 16px;
  color: #cccccc;
  position: relative;
  padding-left: 25px;
}

.page-index-review-hi88__list li::before {
  content: '✔';
  color: #28a745;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-index-review-hi88__card--disadvantage .page-index-review-hi88__list li::before {
  content: '✖';
  color: #dc3545;
}

/* Game Section */
.page-index-review-hi88__game-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-review-hi88__game-card {
  background-color: #2a2a2a;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid #3a3a3a;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-review-hi88__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-index-review-hi88__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  max-width: 100%; /* Ensure responsiveness */
  display: block;
}

.page-index-review-hi88__game-title {
  font-size: 22px;
  font-weight: bold;
  color: #007bff;
  margin-bottom: 10px;
}

.page-index-review-hi88__game-description {
  font-size: 15px;
  color: #cccccc;
  margin-bottom: 15px;
}

/* Promotions Section */
.page-index-review-hi88__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-review-hi88__promo-card {
  background-color: #2a2a2a;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid #3a3a3a;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-review-hi88__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-index-review-hi88__promo-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  max-width: 100%; /* Ensure responsiveness */
  display: block;
}

.page-index-review-hi88__promo-title {
  font-size: 22px;
  font-weight: bold;
  color: #28a745;
  margin-bottom: 10px;
}

.page-index-review-hi88__promo-description {
  font-size: 15px;
  color: #cccccc;
  margin-bottom: 15px;
}

/* Registration Section */
.page-index-review-hi88__steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-review-hi88__step-card {
  background-color: #2a2a2a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid #3a3a3a;
  text-align: center;
  position: relative;
  min-height: 220px;
}

.page-index-review-hi88__step-number {
  width: 50px;
  height: 50px;
  background-color: #007bff;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  margin: -55px auto 20px auto; /* Position above card */
  border: 3px solid #1a1a1a;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.page-index-review-hi88__step-title {
  font-size: 22px;
  font-weight: bold;
  color: #007bff;
  margin-bottom: 15px;
}

.page-index-review-hi88__step-card p {
  font-size: 16px;
  color: #cccccc;
}

/* Transaction Section */
.page-index-review-hi88__transaction-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-review-hi88__method-card {
  background-color: #2a2a2a;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid #3a3a3a;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-review-hi88__method-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-index-review-hi88__method-image {
  width: 100%;
  height: 150px;
  object-fit: contain; /* Use contain for payment icons */
  border-radius: 8px;
  margin-bottom: 15px;
  max-width: 100%; /* Ensure responsiveness */
  display: block;
}

.page-index-review-hi88__method-title {
  font-size: 22px;
  font-weight: bold;
  color: #007bff;
  margin-bottom: 10px;
}

.page-index-review-hi88__method-card p {
  font-size: 16px;
  color: #cccccc;
}

/* Customer Service Section */
.page-index-review-hi88__service-channels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-review-hi88__channel-card {
  background-color: #2a2a2a;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid #3a3a3a;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-review-hi88__channel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-index-review-hi88__channel-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 15px;
  max-width: 100%; /* Ensure responsiveness */
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-index-review-hi88__channel-title {
  font-size: 22px;
  font-weight: bold;
  color: #007bff;
  margin-bottom: 10px;
}

.page-index-review-hi88__channel-card p {
  font-size: 16px;
  color: #cccccc;
}

/* Conclusion Section */
.page-index-review-hi88__conclusion-section {
  background-color: #1a1a1a;
}

/* FAQ Section */
.page-index-review-hi88__faq-section {
  background-color: #1a1a1a;
}

.page-index-review-hi88__faq-list {
  margin-top: 40px;
}

.page-index-review-hi88__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.page-index-review-hi88__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 15px;
  opacity: 0;
  background: #2a2a2a;
  color: #cccccc;
  font-size: 16px;
  line-height: 1.7;
}

.page-index-review-hi88__faq-item.active .page-index-review-hi88__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
  border-radius: 0 0 5px 5px;
}

.page-index-review-hi88__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #2a2a2a;
  border: 1px solid #3a3a3a;
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-index-review-hi88__faq-question:hover {
  background: #3a3a3a;
  border-color: #4a4a4a;
}

.page-index-review-hi88__faq-question:active {
  background: #4a4a4a;
}

.page-index-review-hi88__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: #f0f0f0;
}

.page-index-review-hi88__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #007bff;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.page-index-review-hi88__faq-item.active .page-index-review-hi88__faq-toggle {
  color: #28a745;
  transform: rotate(45deg); /* Change + to X for active */
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-review-hi88__section-title {
    font-size: 32px;
  }
  .page-index-review-hi88__main-title {
    font-size: 42px;
  }
  .page-index-review-hi88__subtitle {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .page-index-review-hi88 {
    padding-top: 140px !important; /* Adjust for fixed navigation bar on mobile */
    font-size: 16px;
    line-height: 1.6;
  }

  .page-index-review-hi88__section {
    padding: 30px 15px;
    margin-bottom: 15px;
  }

  .page-index-review-hi88__section-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .page-index-review-hi88__hero-section {
    padding-top: 140px !important; /* Mobile: Ensure hero content is below fixed header */
    padding-bottom: 30px;
  }

  .page-index-review-hi88__hero-image {
    margin-bottom: 20px;
  }

  .page-index-review-hi88__main-title {
    font-size: 36px;
  }

  .page-index-review-hi88__subtitle {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .page-index-review-hi88__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    margin-top: 15px;
  }

  .page-index-review-hi88__text-block {
    font-size: 15px;
  }

  .page-index-review-hi88__features-grid,
  .page-index-review-hi88__content-grid,
  .page-index-review-hi88__game-categories,
  .page-index-review-hi88__promo-grid,
  .page-index-review-hi88__steps-container,
  .page-index-review-hi88__transaction-methods,
  .page-index-review-hi88__service-channels {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-index-review-hi88__feature-title,
  .page-index-review-hi88__card-title,
  .page-index-review-hi88__game-title,
  .page-index-review-hi88__promo-title,
  .page-index-review-hi88__step-title,
  .page-index-review-hi88__method-title,
  .page-index-review-hi88__channel-title {
    font-size: 20px;
  }

  .page-index-review-hi88__list li,
  .page-index-review-hi88__feature-card p,
  .page-index-review-hi88__game-description,
  .page-index-review-hi88__promo-description,
  .page-index-review-hi88__step-card p,
  .page-index-review-hi88__method-card p,
  .page-index-review-hi88__channel-card p {
    font-size: 15px;
  }

  .page-index-review-hi88__step-number {
    margin-top: -45px;
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .page-index-review-hi88__faq-question {
    padding: 15px;
    flex-wrap: wrap;
  }
  
  .page-index-review-hi88__faq-question h3 {
    font-size: 16px;
    margin-bottom: 0;
    width: calc(100% - 40px);
  }
  
  .page-index-review-hi88__faq-toggle {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    font-size: 20px;
  }
  
  .page-index-review-hi88__faq-answer {
    padding: 0 15px;
  }
  
  .page-index-review-hi88__faq-item.active .page-index-review-hi88__faq-answer {
    padding: 15px !important;
  }

  /* Force images to adapt to screen width */
  .page-index-review-hi88 img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-index-review-hi88__section,
  .page-index-review-hi88__container,
  .page-index-review-hi88__card,
  .page-index-review-hi88__feature-card,
  .page-index-review-hi88__game-card,
  .page-index-review-hi88__promo-card,
  .page-index-review-hi88__step-card,
  .page-index-review-hi88__method-card,
  .page-index-review-hi88__channel-card,
  .page-index-review-hi88__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-index-review-hi88__hero-container {
    padding-left: 0;
    padding-right: 0;
  }
}