:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #1E90FF; /* Dodger Blue */
  --dark-bg-1: #0d0d0d; /* Assuming a dark body background from shared.css */
  --text-light: #ffffff;
  --text-dark: #333333;
  --border-light: #e0e0e0;
}

.page-index-review-hi88 {
  font-family: 'Arial', sans-serif;
  color: var(--text-light); /* Default text color for dark body background */
  background-color: var(--dark-bg-1);
}

/* 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 based on fixed nav height */
  background-color: var(--dark-bg-1);
  color: var(--text-light);
}

.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;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  border-radius: 12px;
  overflow: hidden;
}

.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: 42px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-index-review-hi88__subtitle {
  font-size: 20px;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-review-hi88__cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: linear-gradient(135deg, var(--primary-color), #FFC107);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
}

.page-index-review-hi88__cta-button:hover {
  background: linear-gradient(135deg, #FFC107, #FFA500);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Review Content Section */
.page-index-review-hi88__review-content-section {
  padding: 60px 20px;
  background-color: var(--dark-bg-1);
}

.page-index-review-hi88__review-content-container {
  max-width: 1000px; /* A bit narrower for focused review reading */
  margin: 0 auto;
}

.page-index-review-hi88__review-content-card {
  background: #1a1a1a; /* Slightly lighter dark background for card */
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  padding: 40px;
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-index-review-hi88__section-title {
  font-size: 32px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 30px;
  text-align: center;
  line-height: 1.3;
}

.page-index-review-hi88__sub-section-title {
  font-size: 24px;
  font-weight: bold;
  color: var(--secondary-color);
  margin-top: 35px;
  margin-bottom: 15px;
  line-height: 1.4;
}

.page-index-review-hi88__review-body {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 17px;
}

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

.page-index-review-hi88__review-body strong {
  color: var(--primary-color);
}

.page-index-review-hi88__review-body a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-index-review-hi88__review-body a:hover {
  color: #87CEEB; /* Lighter blue on hover */
  text-decoration: underline;
}

/* FAQ Section */
.page-index-review-hi88__faq-section {
  padding: 60px 20px;
  background-color: var(--dark-bg-1);
}

.page-index-review-hi88__faq-container {
  max-width: 1000px;
  margin: 0 auto;
}

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

.page-index-review-hi88__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-index-review-hi88__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background: #2a2a2a; /* Darker background for question */
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
  color: var(--text-light);
}

.page-index-review-hi88__faq-question:hover {
  background: #3a3a3a;
  border-color: rgba(255, 255, 255, 0.25);
}

.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: var(--primary-color);
}

.page-index-review-hi88__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: var(--secondary-color);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 20px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.page-index-review-hi88__faq-item.active .page-index-review-hi88__faq-toggle {
  color: var(--text-light);
  transform: rotate(45deg);
}

.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;
  padding: 0 25px;
  opacity: 0;
  background: #1a1a1a; /* Card background */
  color: var(--text-light);
}

.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 8px 8px;
}

/* Related Articles Section */
.page-index-review-hi88__related-articles-section {
  padding: 60px 20px;
  background-color: var(--dark-bg-1);
}

.page-index-review-hi88__related-articles-container {
  max-width: 1200px;
  margin: 0 auto;
}

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

.page-index-review-hi88__article-card {
  background: #1a1a1a;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.page-index-review-hi88__article-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-index-review-hi88__article-title {
  font-size: 20px;
  font-weight: bold;
  color: var(--primary-color);
  padding: 20px 20px 10px;
  line-height: 1.4;
}

.page-index-review-hi88__article-link {
  color: var(--primary-color);
  text-decoration: none;
}

.page-index-review-hi88__article-link:hover {
  text-decoration: underline;
  color: #FFC107;
}

.page-index-review-hi88__article-summary {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  padding: 0 20px 20px;
  line-height: 1.6;
}

/* Global image responsiveness */
.page-index-review-hi88 img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

  .page-index-review-hi88__subtitle {
    font-size: 18px;
  }

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

  .page-index-review-hi88__sub-section-title {
    font-size: 22px;
  }

  .page-index-review-hi88__review-body p {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .page-index-review-hi88__hero-section {
    padding-top: 160px !important; /* Mobile: Adjust based on fixed nav height */
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }

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

  .page-index-review-hi88__hero-image img {
    border-radius: 8px;
  }

  .page-index-review-hi88__main-title {
    font-size: 32px;
    margin-bottom: 15px;
  }

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

  .page-index-review-hi88__cta-button {
    padding: 15px 35px;
    font-size: 18px;
    margin-top: 20px;
  }

  .page-index-review-hi88__review-content-section,
  .page-index-review-hi88__faq-section,
  .page-index-review-hi88__related-articles-section {
    padding: 30px 15px;
  }

  .page-index-review-hi88__review-content-card {
    padding: 25px;
  }

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

  .page-index-review-hi88__sub-section-title {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 10px;
  }

  .page-index-review-hi88__review-body p {
    font-size: 14px;
    line-height: 1.6;
  }

  .page-index-review-hi88__faq-question {
    padding: 15px 20px;
  }

  .page-index-review-hi88__faq-question h3 {
    font-size: 16px;
  }

  .page-index-review-hi88__faq-toggle {
    font-size: 24px;
    width: 26px;
    height: 26px;
    margin-left: 15px;
  }

  .page-index-review-hi88__faq-item.active .page-index-review-hi88__faq-answer {
    padding: 15px 20px !important;
  }

  .page-index-review-hi88__articles-grid {
    gap: 20px;
  }

  .page-index-review-hi88__article-title {
    font-size: 18px;
    padding: 15px 15px 8px;
  }

  .page-index-review-hi88__article-summary {
    font-size: 13px;
    padding: 0 15px 15px;
  }

  /* Mobile image forcing */
  .page-index-review-hi88 img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-index-review-hi88__hero-section,
  .page-index-review-hi88__hero-container,
  .page-index-review-hi88__hero-image,
  .page-index-review-hi88__hero-content,
  .page-index-review-hi88__review-content-section,
  .page-index-review-hi88__review-content-container,
  .page-index-review-hi88__review-content-card,
  .page-index-review-hi88__faq-section,
  .page-index-review-hi88__faq-container,
  .page-index-review-hi88__related-articles-section,
  .page-index-review-hi88__related-articles-container,
  .page-index-review-hi88__articles-grid,
  .page-index-review-hi88__article-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}