.page-index-review-hi88 {
  --primary-color: #1A2B42;
  --secondary-color: #FFD700;
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --background-light: #f4f7f6;
  --background-dark: #1A2B42;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-color-dark);
}

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

.page-index-review-hi88-section {
  padding: 60px 0;
  margin-bottom: 20px;
}

.page-index-review-hi88-section:nth-of-type(even) {
  background-color: var(--background-light);
}

.page-index-review-hi88 h1,
.page-index-review-hi88 h2,
.page-index-review-hi88 h3 {
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-index-review-hi88 h1 {
  font-size: 3em;
  color: var(--text-color-light);
}

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

.page-index-review-hi88 h3 {
  font-size: 1.8em;
  color: var(--primary-color);
}

.page-index-review-hi88 p {
  margin-bottom: 15px;
  font-size: 1.1em;
  text-align: justify;
}

.page-index-review-hi88-center-text {
  text-align: center;
}

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

.page-index-review-hi88 a:hover {
  text-decoration: underline;
}

/* Hero Section */
.page-index-review-hi88-hero {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: var(--background-dark);
  color: var(--text-color-light);
}

.page-index-review-hi88-hero .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 .hero-image {
  width: 100%;
  margin-bottom: 30px;
}

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

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

.page-index-review-hi88-hero p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: var(--text-color-light);
}

.page-index-review-hi88-hero strong {
  color: var(--secondary-color);
}

.page-index-review-hi88-cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-index-review-hi88-cta-button:hover {
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  color: var(--primary-color);
  text-decoration: none;
}

/* Quick Links */
.page-index-review-hi88-quick-links {
  background-color: var(--background-light);
  padding: 30px;
  border-radius: 8px;
  margin-top: 40px;
  text-align: center;
}

.page-index-review-hi88-quick-links h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-size: 1.6em;
}

.page-index-review-hi88-quick-links ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-index-review-hi88-quick-links li {
  margin: 0;
}

.page-index-review-hi88-quick-links li a {
  display: block;
  padding: 12px 25px;
  background: var(--primary-color);
  color: var(--text-color-light);
  border-radius: 5px;
  transition: background-color 0.3s ease;
  font-weight: bold;
}

.page-index-review-hi88-quick-links li a:hover {
  background-color: #0d1a2b;
  text-decoration: none;
}

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

.page-index-review-hi88-game-card {
  background-color: var(--text-color-light);
  border-radius: 10px;
  box-shadow: 0 4px 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-hi88-game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

.page-index-review-hi88-game-card h3 {
  margin: 20px 15px 10px;
  font-size: 1.5em;
  color: var(--primary-color);
}

.page-index-review-hi88-game-card h3 a {
  color: var(--primary-color);
  text-decoration: none;
}

.page-index-review-hi88-game-card h3 a:hover {
  text-decoration: underline;
}

.page-index-review-hi88-game-card p {
  padding: 0 15px 15px;
  font-size: 1em;
  color: var(--text-color-dark);
  text-align: center;
}

.page-index-review-hi88-card-button {
  display: inline-block;
  padding: 10px 25px;
  background: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 5px;
  font-weight: bold;
  margin-bottom: 20px;
  transition: background-color 0.3s ease;
}

.page-index-review-hi88-card-button:hover {
  background-color: #e6c200;
  text-decoration: none;
}

/* Promotions Section */
.page-index-review-hi88-promotions {
  background-color: var(--background-dark);
  color: var(--text-color-light);
}

.page-index-review-hi88-promotions h2 {
  color: var(--secondary-color);
}

.page-index-review-hi88-promotions p {
  color: var(--text-color-light);
  text-align: center;
}

.page-index-review-hi88-promo-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.page-index-review-hi88-promo-item {
  background-color: var(--text-color-light);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: calc(33% - 20px);
  min-width: 300px;
  text-align: center;
}

.page-index-review-hi88-promo-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-index-review-hi88-promo-item h3 {
  color: var(--primary-color);
  margin: 20px 15px 10px;
  font-size: 1.4em;
}

.page-index-review-hi88-promo-item h3 a {
  color: var(--primary-color);
  text-decoration: none;
}

.page-index-review-hi88-promo-item h3 a:hover {
  text-decoration: underline;
}

.page-index-review-hi88-promo-item p {
  color: var(--text-color-dark);
  padding: 0 15px 20px;
  text-align: center;
}

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

.page-index-review-hi88-step {
  background-color: var(--text-color-light);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.page-index-review-hi88-step h3 {
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-size: 1.6em;
}

.page-index-review-hi88-step p {
  color: var(--text-color-dark);
  margin-bottom: 15px;
  text-align: center;
}

.page-index-review-hi88-step img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  margin-top: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-index-review-hi88-guide-button {
  display: inline-block;
  padding: 10px 20px;
  background: var(--primary-color);
  color: var(--text-color-light);
  border-radius: 5px;
  font-weight: bold;
  margin-top: 15px;
  transition: background-color 0.3s ease;
}

.page-index-review-hi88-guide-button:hover {
  background-color: #0d1a2b;
  text-decoration: none;
}

/* Security Section */
.page-index-review-hi88-security {
  background-color: var(--background-light);
}

.page-index-review-hi88-security ul {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-index-review-hi88-security li {
  background-color: var(--text-color-light);
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  font-size: 1.1em;
  color: var(--text-color-dark);
  display: flex;
  align-items: flex-start;
}

.page-index-review-hi88-security li strong {
  color: var(--primary-color);
  min-width: 120px;
  display: inline-block;
}

/* Pros and Cons */
.page-index-review-hi88-flex-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.page-index-review-hi88-pros,
.page-index-review-hi88-cons {
  flex: 1;
  min-width: 300px;
  background-color: var(--text-color-light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-index-review-hi88-pros h3 {
  color: #28a745; /* Green for pros */
  margin-bottom: 20px;
}

.page-index-review-hi88-cons h3 {
  color: #dc3545; /* Red for cons */
  margin-bottom: 20px;
}

.page-index-review-hi88-pros ul,
.page-index-review-hi88-cons ul {
  list-style: none;
  padding: 0;
}

.page-index-review-hi88-pros li,
.page-index-review-hi88-cons li {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: var(--text-color-dark);
  position: relative;
  padding-left: 30px;
}

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

.page-index-review-hi88-cons li::before {
  content: '✘';
  color: #dc3545;
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* FAQ Section */
.faq-list {
  margin-top: 40px;
}

.faq-item {
  margin-bottom: 15px;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: var(--text-color-light);
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-question:hover {
  background: #f5f5f5;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: var(--primary-color);
  text-align: left;
}

.faq-toggle {
  font-size: 20px;
  font-weight: bold;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 15px;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
}

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

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

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

.page-index-review-hi88-blog-card {
  background-color: var(--text-color-light);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-index-review-hi88-blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-index-review-hi88-blog-card h3 {
  margin: 20px 15px 10px;
  font-size: 1.4em;
  color: var(--primary-color);
  text-align: left;
}

.page-index-review-hi88-blog-card h3 a {
  color: var(--primary-color);
  text-decoration: none;
}

.page-index-review-hi88-blog-card h3 a:hover {
  text-decoration: underline;
}

.page-index-review-hi88-blog-card p {
  padding: 0 15px;
  font-size: 1em;
  color: var(--text-color-dark);
  text-align: left;
}

.page-index-review-hi88-post-date {
  display: block;
  font-size: 0.9em;
  color: #666;
  padding: 0 15px 20px;
  text-align: left;
}

/* Conclusion Section */
.page-index-review-hi88-conclusion {
  background-color: var(--background-dark);
  color: var(--text-color-light);
  text-align: center;
}

.page-index-review-hi88-conclusion h2 {
  color: var(--secondary-color);
}

.page-index-review-hi88-conclusion p {
  color: var(--text-color-light);
  font-size: 1.2em;
  margin-bottom: 25px;
}

.page-index-review-hi88-conclusion a {
  color: var(--secondary-color);
}

.page-index-review-hi88-conclusion .page-index-review-hi88-cta-button {
  margin-top: 30px;
}

/* Floating Buttons */
.page-index-review-hi88-floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.page-index-review-hi88-floating-button {
  display: inline-block;
  padding: 12px 25px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  text-align: center;
}

.page-index-review-hi88-floating-button:hover {
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  color: var(--primary-color);
  text-decoration: none;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-review-hi88 h1 {
    font-size: 2.5em;
  }
  .page-index-review-hi88 h2 {
    font-size: 2em;
  }
  .page-index-review-hi88 h3 {
    font-size: 1.5em;
  }
  .page-index-review-hi88-game-grid,
  .page-index-review-hi88-promo-list,
  .page-index-review-hi88-step-by-step,
  .page-index-review-hi88-blog-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-index-review-hi88-promo-item {
    width: calc(50% - 15px);
  }
  .page-index-review-hi88-flex-container {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-index-review-hi88-section {
    padding: 40px 0;
  }
  .page-index-review-hi88 h1 {
    font-size: 2em;
  }
  .page-index-review-hi88 h2 {
    font-size: 1.8em;
  }
  .page-index-review-hi88 p {
    font-size: 1em;
  }
  .page-index-review-hi88-quick-links ul {
    flex-direction: column;
    gap: 10px;
  }
  .page-index-review-hi88-promo-item {
    width: 100%;
  }
  .faq-question {
    padding: 12px;
  }
  .faq-question h3 {
    font-size: 1.1em;
  }
  .faq-toggle {
    font-size: 18px;
  }
  .page-index-review-hi88-floating-buttons {
    bottom: 15px;
    right: 15px;
  }
  .page-index-review-hi88-floating-button {
    padding: 10px 20px;
    font-size: 14px;
  }
}