:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #8B0000; /* Dark Red */
  --text-dark: #333333;
  --text-light: #ffffff;
  --background-light: #f8f8f8;
  --background-dark: #222222;
  --border-color: #e0e0e0;
}

.page-index-review-hi88 {
  font-family: 'Arial', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--background-light);
}

.page-index-review-hi88 h1,
.page-index-review-hi88 h2,
.page-index-review-hi88 h3 {
  color: var(--secondary-color);
  margin-bottom: 20px;
  font-weight: bold;
}

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

.page-index-review-hi88 h2 {
  font-size: 2.2em;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 30px;
}

.page-index-review-hi88 h3 {
  font-size: 1.8em;
  margin-top: 25px;
  margin-bottom: 15px;
}

.page-index-review-hi88 p {
  margin-bottom: 15px;
}

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

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

/* 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: 80px 20px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.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: 12px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.page-index-review-hi88-hero-content p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

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

.page-index-review-hi88-cta-button:hover {
  background: #FFC107; /* Slightly darker gold */
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

/* Quick Links Section */
.page-index-review-hi88-quick-links {
  background-color: #f0f0f0;
}

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

.page-index-review-hi88-link-card {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  text-decoration: none;
  color: var(--text-dark);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

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

.page-index-review-hi88-link-card img {
  width: 100px; /* Larger size for content images, not small icons */
  height: 100px;
  margin-bottom: 15px;
  object-fit: contain;
}

.page-index-review-hi88-link-card h3 {
  font-size: 1.4em;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.page-index-review-hi88-link-card p {
  font-size: 0.95em;
  color: #666;
}

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

.page-index-review-hi88-game-category {
  margin-bottom: 50px;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-index-review-hi88-game-category h3 {
  font-size: 2em;
  text-align: center;
  margin-bottom: 25px;
  color: var(--secondary-color);
}

.page-index-review-hi88-game-link {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-index-review-hi88-game-link:hover {
  color: var(--primary-color);
}

.page-index-review-hi88-game-content {
  display: flex;
  gap: 30px;
  align-items: center;
}

.page-index-review-hi88-game-content img {
  width: 400px; /* Larger image for content */
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-index-review-hi88-game-content p {
  flex: 1;
  font-size: 1.05em;
}

.page-index-review-hi88-game-category:nth-child(even) .page-index-review-hi88-game-content {
  flex-direction: row-reverse; /* Alternate image and text */
}

/* Promotions Section */
.page-index-review-hi88-promotions {
  background-color: #f0f0f0;
  text-align: center;
}

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

.page-index-review-hi88-promo-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.page-index-review-hi88-promo-card img {
  width: 250px; /* Larger image for promotion cards */
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

.page-index-review-hi88-promo-card p {
  font-size: 0.95em;
  color: #555;
  flex-grow: 1;
}

.page-index-review-hi88-cta-small {
  display: inline-block;
  padding: 10px 25px;
  background: var(--primary-color);
  color: var(--secondary-color);
  text-decoration: none;
  border-radius: 5px;
  font-size: 1em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.page-index-review-hi88-cta-small:hover {
  background: #FFC107;
  transform: translateY(-2px);
}

.page-index-review-hi88-promo-note {
  margin-top: 40px;
  font-style: italic;
  color: #777;
}

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

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

.page-index-review-hi88-feature-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.page-index-review-hi88-feature-item img {
  width: 120px; /* Larger image for features */
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-index-review-hi88-feature-item h3 {
  font-size: 1.5em;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.page-index-review-hi88-feature-item p {
  font-size: 0.95em;
  color: #666;
}

/* FAQ Section */
.page-index-review-hi88-faq {
  background-color: #f0f0f0;
}

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

.faq-item {
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #ffffff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

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

.faq-question h3 {
  margin: 0;
  font-size: 1.25em;
  color: var(--secondary-color);
}

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

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #f9f9f9;
  color: var(--text-dark);
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed to fit content */
  padding: 20px 25px;
  border-top: 1px solid var(--border-color);
}

.faq-item.active .faq-answer p {
  margin-bottom: 0;
}

/* Related News Section */
.page-index-review-hi88-related-news {
  background-color: var(--background-light);
}

.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-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-decoration: none;
  color: var(--text-dark);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.page-index-review-hi88-article-card img {
  width: 100%;
  height: 200px; /* Ensure images are large enough */
  object-fit: cover;
  border-bottom: 1px solid var(--border-color);
}

.page-index-review-hi88-article-card h3 {
  font-size: 1.4em;
  color: var(--secondary-color);
  padding: 15px 20px 10px;
  margin: 0;
}

.page-index-review-hi88-article-card p {
  font-size: 0.95em;
  color: #666;
  padding: 0 20px 15px;
  flex-grow: 1;
}

.page-index-review-hi88-article-date {
  font-size: 0.85em;
  color: #999;
  padding: 0 20px 15px;
  display: block;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-review-hi88 h1 {
    font-size: 2.2em;
  }
  .page-index-review-hi88 h2 {
    font-size: 1.8em;
  }
  .page-index-review-hi88 h3 {
    font-size: 1.5em;
  }
  .page-index-review-hi88-hero-section {
    padding: 60px 15px;
  }
  .page-index-review-hi88-game-content {
    flex-direction: column;
  }
  .page-index-review-hi88-game-content img {
    width: 100%;
    height: 250px;
  }
  .page-index-review-hi88-game-category:nth-child(even) .page-index-review-hi88-game-content {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-index-review-hi88-hero-section {
    padding: 40px 15px;
  }
  .page-index-review-hi88-hero-image img {
    border-radius: 8px;
  }
  .page-index-review-hi88-hero-content p {
    font-size: 1em;
  }
  .page-index-review-hi88-cta-button {
    padding: 15px 35px;
    font-size: 18px;
  }
  .page-index-review-hi88-section {
    padding: 40px 0;
  }
  .page-index-review-hi88-links-grid,
  .page-index-review-hi88-promo-grid,
  .page-index-review-hi88-security-features,
  .page-index-review-hi88-articles-grid {
    grid-template-columns: 1fr;
  }
  .page-index-review-hi88-link-card img,
  .page-index-review-hi88-feature-item img {
    width: 80px;
    height: 80px;
  }
  .page-index-review-hi88-promo-card img {
    width: 100%;
    height: 150px;
  }
  .faq-question {
    padding: 15px 20px;
  }
  .faq-question h3 {
    font-size: 1.1em;
  }
  .faq-toggle {
    font-size: 20px;
  }
  .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
}