.page-index-review-go88 {
  --primary-color: #FFD700; /* Vàng kim */
  --secondary-color: #000080; /* Xanh đậm */
  --text-dark: #2c3e50; /* Gần đen, dễ đọc trên nền sáng */
  --text-light: #ffffff; /* Trắng, dễ đọc trên nền tối */
  --background-light: #f8f8f8;
  --background-dark: #1a1a2e;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
}

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

/* 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(--secondary-color) 0%, var(--primary-color) 100%);
}

.page-index-review-go88 .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-go88 .hero-image {
  width: 100%;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  overflow: hidden;
}

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

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

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

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

.page-index-review-go88 .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-color);
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  border: 2px solid var(--primary-color);
}

.page-index-review-go88 .cta-button:hover {
  background: darken(var(--primary-color), 10%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  color: var(--secondary-color);
}

.page-index-review-go88 .cta-button-small {
  display: inline-block;
  padding: 10px 25px;
  background: var(--primary-color);
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 5px;
  font-size: 1em;
  font-weight: bold;
  margin-top: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--primary-color);
}

.page-index-review-go88 .cta-button-small:hover {
  background: darken(var(--primary-color), 10%);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  color: var(--secondary-color);
}

/* General Section Styling */
.page-index-review-go88 section {
  padding: 80px 0;
  background-color: var(--background-light);
}

.page-index-review-go88 section:nth-of-type(even) {
  background-color: #e9ecef;
}

.page-index-review-go88 .section-title {
  font-size: 2.5em;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-index-review-go88 .section-description {
  font-size: 1.1em;
  color: var(--text-dark);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

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

.page-index-review-go88 .intro-item {
  background: var(--text-light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-review-go88 .intro-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-index-review-go88 .intro-icon {
  width: 120px;
  height: 120px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-index-review-go88 .intro-heading {
  font-size: 1.5em;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.page-index-review-go88 .intro-text {
  font-size: 1em;
  color: var(--text-dark);
}

/* Quick Access Links */
.page-index-review-go88 .access-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.page-index-review-go88 .access-link-item {
  display: block;
  background: var(--secondary-color);
  color: var(--text-light);
  padding: 25px;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.page-index-review-go88 .access-link-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  background-color: lighten(var(--secondary-color), 10%);
}

.page-index-review-go88 .link-title {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.page-index-review-go88 .link-description {
  font-size: 0.95em;
  color: var(--text-light);
  opacity: 0.9;
}

/* Games Section */
.page-index-review-go88 .game-category {
  background: var(--text-light);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
}

.page-index-review-go88 .category-title {
  font-size: 2em;
  color: var(--secondary-color);
  margin-bottom: 20px;
  text-align: center;
}

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

.page-index-review-go88 .category-description {
  font-size: 1.1em;
  color: var(--text-dark);
  margin-bottom: 20px;
  text-align: justify;
}

.page-index-review-go88 .game-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.page-index-review-go88 .game-list li {
  background: #f0f0f0;
  margin-bottom: 10px;
  padding: 12px 20px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  font-size: 1em;
  color: var(--text-dark);
}

.page-index-review-go88 .game-list li a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-index-review-go88 .game-list li a:hover {
  color: var(--primary-color);
}

/* Promotions Section */
.page-index-review-go88 .promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-index-review-go88 .promo-item {
  background: var(--text-light);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-review-go88 .promo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

.page-index-review-go88 .promo-heading {
  font-size: 1.4em;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.page-index-review-go88 .promo-text {
  font-size: 0.95em;
  color: var(--text-dark);
  margin-bottom: 20px;
}

/* Security & Support Section */
.page-index-review-go88 .security-support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-index-review-go88 .info-item {
  background: var(--text-light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-review-go88 .info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-index-review-go88 .info-heading {
  font-size: 1.5em;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.page-index-review-go88 .info-text {
  font-size: 1em;
  color: var(--text-dark);
}

/* FAQ Section */
.page-index-review-go88 .faq-list {
  max-width: 900px;
  margin: 0 auto;
}

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

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: var(--text-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);
}

.page-index-review-go88 .faq-heading {
  font-size: 1.1em;
  color: var(--text-dark);
  margin: 0;
}

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

.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 15px;
  background: var(--background-light);
  border-radius: 0 0 5px 5px;
  border: 1px solid #e0e0e0;
  border-top: none;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 15px;
}

.faq-item.active .faq-question {
  border-radius: 5px 5px 0 0;
}

/* Blog Section */
.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 {
  display: flex;
  flex-direction: column;
  background: var(--text-light);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  color: var(--text-dark);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

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

.page-index-review-go88 .blog-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}

.page-index-review-go88 .blog-content {
  padding: 20px;
  flex-grow: 1;
}

.page-index-review-go88 .blog-title {
  font-size: 1.3em;
  color: var(--secondary-color);
  margin-bottom: 10px;
  line-height: 1.4;
}

.page-index-review-go88 .blog-summary {
  font-size: 0.95em;
  color: var(--text-dark);
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-index-review-go88 .blog-date {
  font-size: 0.85em;
  color: #777;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-review-go88 .hero-title {
    font-size: 3em;
  }
  .page-index-review-go88 .hero-description {
    font-size: 1.2em;
  }
  .page-index-review-go88 .section-title {
    font-size: 2em;
  }
  .page-index-review-go88 .game-category {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .page-index-review-go88 .hero-section {
    padding: 40px 15px;
  }
  .page-index-review-go88 .hero-title {
    font-size: 2.2em;
  }
  .page-index-review-go88 .hero-description {
    font-size: 1em;
  }
  .page-index-review-go88 .cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-index-review-go88 section {
    padding: 50px 0;
  }
  .page-index-review-go88 .section-title {
    font-size: 1.8em;
  }
  .page-index-review-go88 .section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-index-review-go88 .intro-grid, .page-index-review-go88 .access-links-grid, .page-index-review-go88 .promo-grid, .page-index-review-go88 .security-support-grid, .page-index-review-go88 .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-index-review-go88 .intro-icon {
    width: 80px;
    height: 80px;
  }
  .page-index-review-go88 .category-title {
    font-size: 1.5em;
  }
  .page-index-review-go88 .category-image {
    height: 200px;
  }
  .faq-question {
    padding: 12px;
    flex-direction: column;
    align-items: flex-start;
  }
  .page-index-review-go88 .faq-heading {
    margin-bottom: 8px;
  }
  .faq-toggle {
    align-self: flex-end;
    margin-top: -30px;
  }
  .faq-item.active .faq-answer {
    padding: 12px;
  }
  .page-index-review-go88 .blog-image {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .page-index-review-go88 .hero-title {
    font-size: 1.8em;
  }
  .page-index-review-go88 .hero-description {
    font-size: 0.9em;
  }
  .page-index-review-go88 .cta-button {
    padding: 10px 25px;
    font-size: 0.9em;
  }
  .page-index-review-go88 .section-title {
    font-size: 1.5em;
  }
  .page-index-review-go88 .game-category {
    padding: 20px;
  }
  .page-index-review-go88 .category-image {
    height: 150px;
  }
  .page-index-review-go88 .promo-image {
    height: 150px;
  }
}