/* style/index-review-hi-88.css */
:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #1A1A1A; /* Dark Gray */
  --text-light: #F0F0F0;
  --text-dark: #333333;
  --background-light: #FFFFFF;
  --background-dark: #2C2C2C;
  --card-background: #FFFFFF;
  --border-color: #E0E0E0;
  --hover-gold: #E6C200;
}

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

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

.page-index-review-hi-88__section-title {
  font-size: 2.5em;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 40px;
  padding-top: 20px;
  font-weight: bold;
  position: relative;
}

.page-index-review-hi-88__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
  margin: 10px auto 0;
  border-radius: 2px;
}

.page-index-review-hi-88__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-index-review-hi-88__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-color);
  color: var(--secondary-color);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  border: none;
  cursor: pointer;
}

.page-index-review-hi-88__cta-button:hover {
  background: var(--hover-gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.page-index-review-hi-88__cta-button--small {
    padding: 12px 30px;
    font-size: 1em;
    margin-top: 15px;
}

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

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

.page-index-review-hi-88 .hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

.page-index-review-hi-88__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: var(--primary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-review-hi-88__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-light);
}

/* Introduction Section */
.page-index-review-hi-88 .introduction-section {
  padding: 60px 0;
  background-color: var(--background-light);
}

/* Quick Access Section */
.page-index-review-hi-88 .quick-access-section {
  padding: 60px 0;
  background-color: #F8F8F8;
}

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

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

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

.page-index-review-hi-88__card-icon {
  width: 120px; /* Increased size */
  height: 120px; /* Increased size */
  margin-bottom: 20px;
  object-fit: contain;
}

.page-index-review-hi-88__card-title {
  font-size: 1.5em;
  color: var(--secondary-color);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-index-review-hi-88__card-description {
  font-size: 1em;
  color: #666;
}

/* Games Section */
.page-index-review-hi-88 .games-section {
  padding: 60px 0;
  background-color: var(--background-dark);
  color: var(--text-light);
}

.page-index-review-hi-88 .games-section .page-index-review-hi-88__section-title {
  color: var(--primary-color);
}

.page-index-review-hi-88 .games-section .page-index-review-hi-88__text-content {
  color: var(--text-light);
}

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

.page-index-review-hi-88__game-card {
  background: var(--secondary-color);
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  color: var(--text-light);
}

.page-index-review-hi-88__game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-index-review-hi-88__game-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.page-index-review-hi-88__game-title {
  font-size: 1.8em;
  color: var(--primary-color);
  margin: 25px 15px 10px;
  font-weight: bold;
}

.page-index-review-hi-88__game-description {
  font-size: 1em;
  color: var(--text-light);
  padding: 0 20px 20px;
  flex-grow: 1;
}

/* Promotions Section */
.page-index-review-hi-88 .promotions-section {
  padding: 60px 0;
  background-color: var(--background-light);
}

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

.page-index-review-hi-88__promo-card {
  background: var(--card-background);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 20px;
}

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

.page-index-review-hi-88__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-index-review-hi-88__promo-title {
  font-size: 1.5em;
  color: var(--secondary-color);
  margin-bottom: 10px;
  font-weight: bold;
  padding: 0 15px;
}

.page-index-review-hi-88__promo-description {
  font-size: 0.95em;
  color: #666;
  padding: 0 20px;
  flex-grow: 1;
  margin-bottom: 20px;
}

/* Security & Customer Service Section */
.page-index-review-hi-88 .security-customer-service-section {
  padding: 60px 0;
  background-color: #F8F8F8;
}

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

.page-index-review-hi-88__feature-item {
  background: var(--card-background);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-index-review-hi-88__feature-icon {
  width: 100px; /* Increased size */
  height: 100px; /* Increased size */
  margin-bottom: 20px;
  object-fit: contain;
}

.page-index-review-hi-88__feature-title {
  font-size: 1.5em;
  color: var(--secondary-color);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-index-review-hi-88__feature-description {
  font-size: 1em;
  color: #666;
}

/* FAQ Section */
.page-index-review-hi-88 .faq-section {
  padding: 60px 0;
  background-color: var(--background-light);
}

.page-index-review-hi-88__faq-list {
  margin-top: 40px;
}

.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 20px;
  background: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

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

.faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  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 20px;
  background: #f9f9f9;
  color: #555;
}

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

.faq-answer p {
  margin: 0;
  font-size: 1em;
}

/* Latest Blog Section */
.page-index-review-hi-88 .latest-blog-section {
  padding: 60px 0;
  background-color: #F0F0F0;
}

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

.page-index-review-hi-88__blog-card {
  background: var(--card-background);
  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-hi-88__blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-index-review-hi-88__blog-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.page-index-review-hi-88__blog-title {
  font-size: 1.4em;
  color: var(--secondary-color);
  margin: 20px 20px 10px;
  font-weight: bold;
}

.page-index-review-hi-88__blog-summary {
  font-size: 0.95em;
  color: #666;
  padding: 0 20px;
  flex-grow: 1;
}

.page-index-review-hi-88__blog-date {
  font-size: 0.85em;
  color: #999;
  padding: 15px 20px 20px;
  display: block;
  text-align: right;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-review-hi-88__section-title {
    font-size: 2em;
  }
  .page-index-review-hi-88__main-title {
    font-size: 2.8em;
  }
  .page-index-review-hi-88__hero-description {
    font-size: 1.1em;
  }
  .page-index-review-hi-88__cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-index-review-hi-88__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-index-review-hi-88__main-title {
    font-size: 2.2em;
  }
  .page-index-review-hi-88__hero-description {
    font-size: 1em;
  }
  .page-index-review-hi-88__text-content {
    font-size: 0.95em;
  }
  .page-index-review-hi-88 .hero-section {
    padding: 40px 15px;
  }
  .page-index-review-hi-88 .hero-image img {
    border-radius: 8px;
  }
  .page-index-review-hi-88__links-grid,
  .page-index-review-hi-88__game-categories,
  .page-index-review-hi-88__promo-grid,
  .page-index-review-hi-88__features-grid,
  .page-index-review-hi-88__blog-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-index-review-hi-88__access-card,
  .page-index-review-hi-88__game-card,
  .page-index-review-hi-88__promo-card,
  .page-index-review-hi-88__feature-item,
  .page-index-review-hi-88__blog-card {
    padding: 20px;
  }
  .page-index-review-hi-88__card-icon,
  .page-index-review-hi-88__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
  }
  .page-index-review-hi-88__card-title,
  .page-index-review-hi-88__game-title,
  .page-index-review-hi-88__promo-title,
  .page-index-review-hi-88__feature-title,
  .page-index-review-hi-88__blog-title {
    font-size: 1.3em;
  }
  .faq-question {
    padding: 15px;
  }
  .faq-question h3 {
    font-size: 1.1em;
  }
  .faq-toggle {
    font-size: 20px;
  }
  .faq-answer {
    padding: 0 15px;
  }
  .faq-item.active .faq-answer {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .page-index-review-hi-88__section-title {
    font-size: 1.5em;
  }
  .page-index-review-hi-88__main-title {
    font-size: 1.8em;
  }
  .page-index-review-hi-88__hero-description {
    font-size: 0.9em;
  }
  .page-index-review-hi-88__cta-button {
    padding: 10px 25px;
    font-size: 0.9em;
  }
  .page-index-review-hi-88__card-icon,
  .page-index-review-hi-88__feature-icon {
    width: 60px;
    height: 60px;
  }
  .page-index-review-hi-88__game-image,
  .page-index-review-hi-88__promo-image,
  .page-index-review-hi-88__blog-image {
    height: 180px;
  }
}