.page-index-review-go88 {
  --primary-color: #007bff;
  --secondary-color: #ffc107;
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --bg-light: #f8f9fa;
  --bg-dark: #0056b3;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-color-dark);
}

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

.page-index-review-go88__section-title {
  font-size: 2.5em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  position: relative;
  padding-bottom: 15px;
}

.page-index-review-go88__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--secondary-color);
  border-radius: 2px;
}

.page-index-review-go88__main-title {
  font-size: 3em;
  color: var(--text-color-light);
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-review-go88__intro-text {
  font-size: 1.2em;
  color: var(--text-color-light);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

/* HERO Section */
.page-index-review-go88 .hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%); /* Slightly darker gradient for depth */
  overflow: hidden;
}

.page-index-review-go88 .hero-container {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.page-index-review-go88 .hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-index-review-go88 .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-go88 .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

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

.page-index-review-go88__cta-button:hover {
  background: #ffdb58; /* Slightly lighter gold */
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Intro Module */
.page-index-review-go88 .intro-module {
  padding: 60px 0;
  background-color: var(--bg-light);
}

.page-index-review-go88 .intro-module p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: var(--text-color-dark);
  text-align: justify;
}

/* Quick Access Module */
.page-index-review-go88 .quick-access-module {
  padding: 60px 0;
  background-color: #e9ecef;
  text-align: center;
}

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

.page-index-review-go88__link-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 25px;
  background-color: var(--text-color-light);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: var(--primary-color);
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  min-height: 180px; /* Ensure sufficient size */
}

.page-index-review-go88__link-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  background-color: var(--primary-color);
  color: var(--text-color-light);
}

.page-index-review-go88__link-icon {
  width: 80px; /* Larger icon size */
  height: 80px; /* Larger icon size */
  margin-bottom: 15px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.page-index-review-go88__link-item:hover .page-index-review-go88__link-icon {
  transform: scale(1.1);
}

.page-index-review-go88__link-text {
  font-size: 1.1em;
}

/* Games Module */
.page-index-review-go88 .games-module {
  padding: 60px 0;
  background-color: var(--text-color-light);
}

.page-index-review-go88__game-category {
  margin-bottom: 50px;
  padding: 30px;
  border-radius: 10px;
  background-color: var(--bg-light);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-index-review-go88__game-category:nth-child(even) {
  background-color: #f1f3f5;
}

.page-index-review-go88__game-title {
  font-size: 2em;
  color: var(--primary-color);
  margin-bottom: 20px;
  text-align: center;
  font-weight: 600;
}

.page-index-review-go88__game-image {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-index-review-go88__game-category p {
  font-size: 1.05em;
  color: var(--text-color-dark);
  text-align: justify;
}

/* Promotions Module */
.page-index-review-go88 .promotions-module {
  padding: 60px 0;
  background-color: var(--bg-dark);
  color: var(--text-color-light);
}

.page-index-review-go88 .promotions-module .page-index-review-go88__section-title {
  color: var(--secondary-color);
}

.page-index-review-go88 .promotions-module .page-index-review-go88__section-title::after {
  background-color: var(--text-color-light);
}

.page-index-review-go88 .promotions-module p {
  color: var(--text-color-light);
  text-align: center;
  margin-bottom: 30px;
}

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

.page-index-review-go88__promo-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-index-review-go88__promo-card:hover {
  transform: translateY(-8px);
  background-color: rgba(255, 255, 255, 0.15);
}

.page-index-review-go88__promo-image {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-index-review-go88__promo-title {
  font-size: 1.6em;
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-index-review-go88__promo-card p {
  font-size: 1em;
  color: var(--text-color-light);
  margin-bottom: 20px;
}

.page-index-review-go88__promo-button {
  display: inline-block;
  padding: 12px 25px;
  background-color: var(--secondary-color);
  color: var(--text-color-dark);
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-index-review-go88__promo-button:hover {
  background-color: #ffdb58;
  transform: translateY(-2px);
}

.page-index-review-go88__promo-note {
  margin-top: 40px;
  font-style: italic;
  opacity: 0.8;
}

/* Security & Support Module */
.page-index-review-go88 .security-support-module {
  padding: 60px 0;
  background-color: var(--bg-light);
}

.page-index-review-go88__security-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
  padding: 20px;
  border-radius: 10px;
  background-color: var(--text-color-light);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-index-review-go88__security-icon {
  width: 100px; /* Larger icon size */
  height: 100px; /* Larger icon size */
  margin-bottom: 20px;
  object-fit: contain;
}

.page-index-review-go88__security-title {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-index-review-go88__security-item p {
  font-size: 1.05em;
  color: var(--text-color-dark);
  max-width: 700px;
  margin: 0 auto;
}

/* FAQ Module */
.page-index-review-go88 .faq-module {
  padding: 60px 0;
  background-color: #e9ecef;
}

.page-index-review-go88__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

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

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

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

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #fdfdfd;
  border-top: none;
  border-left: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  border-radius: 0 0 8px 8px;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height for content */
  padding: 20px 25px;
}

.faq-answer p {
  margin: 0;
  font-size: 1.05em;
  color: var(--text-color-dark);
  text-align: justify;
}

/* Blog Module */
.page-index-review-go88 .blog-module {
  padding: 60px 0;
  background-color: var(--text-color-light);
}

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

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

.page-index-review-go88__blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

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

.page-index-review-go88__blog-content {
  padding: 20px;
}

.page-index-review-go88__blog-title {
  font-size: 1.5em;
  margin-bottom: 10px;
}

.page-index-review-go88__blog-title a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.page-index-review-go88__blog-title a:hover {
  color: var(--secondary-color);
}

.page-index-review-go88__blog-excerpt {
  font-size: 0.95em;
  color: #666;
  margin-bottom: 15px;
  text-align: justify;
}

.page-index-review-go88__blog-date {
  font-size: 0.85em;
  color: #999;
  display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-review-go88__main-title {
    font-size: 2.5em;
  }
  .page-index-review-go88__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-index-review-go88 .hero-section {
    padding: 40px 15px;
  }
  .page-index-review-go88__main-title {
    font-size: 2em;
  }
  .page-index-review-go88__intro-text {
    font-size: 1em;
  }
  .page-index-review-go88__cta-button {
    padding: 15px 35px;
    font-size: 18px;
  }
  .page-index-review-go88__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-index-review-go88__links-grid {
    grid-template-columns: 1fr;
  }
  .page-index-review-go88__game-title {
    font-size: 1.8em;
  }
  .page-index-review-go88__promo-grid {
    grid-template-columns: 1fr;
  }
  .faq-question {
    padding: 15px 20px;
  }
  .faq-question h3 {
    font-size: 1.1em;
  }
  .faq-answer {
    padding: 15px 20px;
  }
  .page-index-review-go88__blog-grid {
    grid-template-columns: 1fr;
  }
  .page-index-review-go88__blog-title {
    font-size: 1.3em;
  }
  .page-index-review-go88__security-icon {
    width: 80px;
    height: 80px;
  }
  .page-index-review-go88__security-title {
    font-size: 1.5em;
  }
}

@media (max-width: 480px) {
  .page-index-review-go88__main-title {
    font-size: 1.7em;
  }
  .page-index-review-go88__intro-text {
    font-size: 0.95em;
  }
  .page-index-review-go88__cta-button {
    padding: 12px 25px;
    font-size: 16px;
  }
  .page-index-review-go88__section-title {
    font-size: 1.5em;
  }
  .page-index-review-go88__link-icon {
    width: 60px;
    height: 60px;
  }
  .page-index-review-go88__link-text {
    font-size: 1em;
  }
  .page-index-review-go88__game-title {
    font-size: 1.5em;
  }
  .page-index-review-go88__promo-title {
    font-size: 1.4em;
  }
  .faq-question h3 {
    font-size: 1em;
  }
  .faq-toggle {
    font-size: 20px;
  }
  .page-index-review-go88__blog-title {
    font-size: 1.2em;
  }
}