.page-index-review-hi-88 {
  font-family: 'Arial', sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

.page-index-review-hi-88-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-index-review-hi-88-section {
  padding: 60px 0;
  border-bottom: 1px solid #eeeeee;
}

.page-index-review-hi-88-section:last-of-type {
  border-bottom: none;
}

.page-index-review-hi-88 h1,
.page-index-review-hi-88 h2 {
  color: #0A2463;
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-index-review-hi-88 h1 {
  font-size: 3em;
}

.page-index-review-hi-88 h2 {
  font-size: 2.5em;
}

.page-index-review-hi-88 h3 {
  color: #E34234;
  font-size: 1.8em;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-index-review-hi-88 p {
  margin-bottom: 15px;
  font-size: 1.1em;
}

.page-index-review-hi-88 ul,
.page-index-review-hi-88 ol {
  margin-bottom: 15px;
  padding-left: 25px;
}

.page-index-review-hi-88 ul li,
.page-index-review-hi-88 ol li {
  margin-bottom: 8px;
  font-size: 1.1em;
}

.page-index-review-hi-88 strong {
  color: #E34234;
}

/* Hero Section */
.page-index-review-hi-88-hero {
  background: linear-gradient(135deg, #0A2463, #33508F);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.page-index-review-hi-88-hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.page-index-review-hi-88-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-index-review-hi-88-hero h1 {
  color: #ffffff;
  font-size: 3.5em;
  margin-bottom: 20px;
}

.page-index-review-hi-88-hero p {
  font-size: 1.3em;
  margin-bottom: 30px;
}

.page-index-review-hi-88-hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* CTA Button */
.page-index-review-hi-88-cta-button {
  display: inline-block;
  background-color: #E34234;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-index-review-hi-88-cta-button:hover {
  background-color: #C22A1F;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-index-review-hi-88-center-button {
  text-align: center;
  margin-top: 40px;
}

/* Game Grid */
.page-index-review-hi-88-game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-review-hi-88-game-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-review-hi-88-game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-index-review-hi-88-game-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-index-review-hi-88-game-card h3 {
  color: #0A2463;
  font-size: 1.5em;
  margin: 20px 15px 10px;
}

.page-index-review-hi-88-game-card p {
  padding: 0 15px;
  font-size: 1em;
  color: #555555;
}

.page-index-review-hi-88-card-link {
  display: inline-block;
  background-color: #0A2463;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  margin: 15px 0 20px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-index-review-hi-88-card-link:hover {
  background-color: #1a3a7c;
}

/* Pros and Cons */
.page-index-review-hi-88-grid-2-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-review-hi-88-pros-cons .page-index-review-hi-88-card {
  padding: 30px;
}

.page-index-review-hi-88-pros-cons .page-index-review-hi-88-card h3 {
  text-align: center;
  margin-top: 0;
  margin-bottom: 20px;
}

.page-index-review-hi-88-pros-cons .page-index-review-hi-88-card ul {
  list-style-type: disc;
  padding-left: 20px;
}

/* FAQ Section */
.page-index-review-hi-88-faq {
  background-color: #f0f4f7;
}

.page-index-review-hi-88-faq h2 {
  color: #0A2463;
}

.faq-item {
  margin-bottom: 10px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background-color: #ffffff;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: #fff;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: #f5f5f5;
}

.faq-question h3 {
  margin: 0;
  color: #0A2463;
  font-size: 1.2em;
}

.faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #E34234;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: #0A2463;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 20px;
  background: #f9f9f9;
  border-radius: 0 0 8px 8px;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 15px 20px;
  border-top: 1px solid #e0e0e0;
}

.faq-answer p {
  margin: 0;
  color: #555555;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-review-hi-88 h1 {
    font-size: 2.8em;
  }
  .page-index-review-hi-88 h2 {
    font-size: 2em;
  }
  .page-index-review-hi-88 h3 {
    font-size: 1.5em;
  }
  .page-index-review-hi-88-hero h1 {
    font-size: 2.8em;
  }
  .page-index-review-hi-88-hero p {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-index-review-hi-88-section {
    padding: 40px 0;
  }
  .page-index-review-hi-88 h1 {
    font-size: 2.2em;
  }
  .page-index-review-hi-88 h2 {
    font-size: 1.8em;
  }
  .page-index-review-hi-88 h3 {
    font-size: 1.3em;
  }
  .page-index-review-hi-88 p,
  .page-index-review-hi-88 ul li,
  .page-index-review-hi-88 ol li {
    font-size: 1em;
  }
  .page-index-review-hi-88-hero {
    padding: 60px 0;
  }
  .page-index-review-hi-88-hero h1 {
    font-size: 2.2em;
  }
  .page-index-review-hi-88-hero p {
    font-size: 1em;
  }
  .page-index-review-hi-88-cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-index-review-hi-88-game-grid {
    grid-template-columns: 1fr;
  }
  .page-index-review-hi-88-grid-2-cols {
    grid-template-columns: 1fr;
  }
  .faq-question {
    padding: 12px 15px;
  }
  .faq-question h3 {
    font-size: 1.1em;
  }
  .faq-toggle {
    font-size: 20px;
  }
  .faq-answer {
    padding: 0 15px;
  }
  .faq-item.active .faq-answer {
    padding: 12px 15px;
  }
}