.page-index-review-go88 {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0A1931;
  line-height: 1.6;
}

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

.page-index-review-go88-section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-index-review-go88-section:last-of-type {
  border-bottom: none;
}

.page-index-review-go88 h1,
.page-index-review-go88 h2,
.page-index-review-go88 h3 {
  color: #FFD700; /* Gold for headings */
  text-align: center;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-index-review-go88 h1 {
  font-size: 2.8em;
  color: #FFD700;
}

.page-index-review-go88 h2 {
  font-size: 2.2em;
  margin-top: 40px;
  color: #FFD700;
}

.page-index-review-go88 h3 {
  font-size: 1.6em;
  color: #FFD700;
}

.page-index-review-go88 p {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #CCCCCC;
}

.page-index-review-go88 strong {
  color: #FFD700;
}

/* 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, #0A1931 0%, #2a3d5b 100%); /* Subtle gradient */
}

.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;
}

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

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

.page-index-review-go88-hero-content h1 {
  font-size: 3.5em;
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-index-review-go88-hero-content p {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #F0F0F0;
}

.page-index-review-go88-cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: #FFD700;
  color: #0A1931;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.4em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}

.page-index-review-go88-cta-button:hover {
  background: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-index-review-go88-button-secondary {
  display: inline-block;
  padding: 12px 30px;
  background: transparent;
  border: 2px solid #FFD700;
  color: #FFD700;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
}

.page-index-review-go88-button-secondary:hover {
  background: #FFD700;
  color: #0A1931;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

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

.page-index-review-go88-game-card {
  background-color: #1A2B44;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-index-review-go88-game-card img {
  width: 100%;
  max-width: 400px;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-index-review-go88-game-card h3 {
  color: #FFD700;
  font-size: 1.4em;
  margin-bottom: 15px;
}

.page-index-review-go88-game-card p {
  color: #CCCCCC;
  font-size: 1em;
  margin-bottom: 20px;
}

.page-index-review-go88-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-index-review-go88-link:hover {
  color: #e6c200;
  text-decoration: underline;
}

/* Game List */
.page-index-review-go88-game-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}

.page-index-review-go88-game-item {
  background-color: #1A2B44;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-index-review-go88-game-item img {
  width: 100%;
  max-width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.page-index-review-go88-game-item h3 {
  font-size: 1.3em;
  margin-bottom: 10px;
}

.page-index-review-go88-game-item p {
  font-size: 0.95em;
  color: #CCCCCC;
  margin-bottom: 15px;
}

/* Promotions */
.page-index-review-go88-promo-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  list-style: none;
  padding: 0;
  text-align: center;
}

.page-index-review-go88-promo-list li {
  background-color: #1A2B44;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-index-review-go88-promo-list li img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 50%;
  background-color: rgba(255, 215, 0, 0.1);
  padding: 15px;
}

.page-index-review-go88-promo-list li h3 {
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-index-review-go88-promo-list li p {
  font-size: 1em;
  color: #CCCCCC;
}

/* Security & Support */
.page-index-review-go88-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-review-go88-feature-item {
  background-color: #1A2B44;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-index-review-go88-feature-item img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: brightness(1.2); /* Slight brightening for visibility, not color change */
}

.page-index-review-go88-feature-item h3 {
  font-size: 1.4em;
  margin-bottom: 15px;
}

.page-index-review-go88-feature-item p {
  font-size: 1em;
  color: #CCCCCC;
}

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

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

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #1A2B44;
  border: 1px solid #2a3d5b;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.faq-question:hover {
  background: #2a3d5b;
  border-color: #FFD700;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.25em;
  color: #FFD700;
  text-align: left;
}

.faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FFD700;
  transition: transform 0.3s ease;
  line-height: 1;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #1A2B44;
  border-radius: 0 0 8px 8px;
  border: 1px solid #2a3d5b;
  border-top: none;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 25px;
  border-color: #2a3d5b;
}

.faq-answer p {
  margin: 0;
  font-size: 1em;
  color: #CCCCCC;
  text-align: left;
}

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

.page-index-review-go88-blog-card {
  background-color: #1A2B44;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-review-go88-blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

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

.page-index-review-go88-blog-card h3 {
  font-size: 1.3em;
  text-align: left;
  margin-bottom: 10px;
}

.page-index-review-go88-blog-card h3 a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-index-review-go88-blog-card h3 a:hover {
  color: #e6c200;
  text-decoration: underline;
}

.page-index-review-go88-blog-card p {
  font-size: 0.95em;
  color: #CCCCCC;
  text-align: left;
  margin-bottom: 15px;
}

.page-index-review-go88-post-date {
  display: block;
  font-size: 0.85em;
  color: #888;
  text-align: left;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-review-go88-hero-content h1 {
    font-size: 2.8em;
  }
  .page-index-review-go88 h2 {
    font-size: 1.8em;
  }
  .page-index-review-go88 h3 {
    font-size: 1.4em;
  }
  .page-index-review-go88-cta-button {
    padding: 15px 35px;
    font-size: 1.2em;
  }
}

@media (max-width: 768px) {
  .page-index-review-go88-section {
    padding: 40px 0;
  }
  .page-index-review-go88-hero-content h1 {
    font-size: 2.2em;
  }
  .page-index-review-go88-hero-content p {
    font-size: 1.1em;
  }
  .page-index-review-go88 h2 {
    font-size: 1.6em;
  }
  .page-index-review-go88 h3 {
    font-size: 1.2em;
  }
  .page-index-review-go88 p {
    font-size: 1em;
  }
  .page-index-review-go88-game-grid, .page-index-review-go88-game-list, .page-index-review-go88-promo-list, .page-index-review-go88-feature-grid, .page-index-review-go88-blog-grid {
    grid-template-columns: 1fr;
  }
  .faq-question {
    padding: 15px 20px;
  }
  .faq-question h3 {
    font-size: 1.1em;
  }
  .faq-answer {
    padding: 0 20px;
  }
  .faq-item.active .faq-answer {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .page-index-review-go88-hero-content h1 {
    font-size: 1.8em;
  }
  .page-index-review-go88-hero-content p {
    font-size: 0.95em;
  }
  .page-index-review-go88-cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-index-review-go88 h2 {
    font-size: 1.4em;
  }
  .page-index-review-go88 h3 {
    font-size: 1.1em;
  }
  .page-index-review-go88-game-card img,
  .page-index-review-go88-game-item img,
  .page-index-review-go88-blog-card img {
    height: 180px;
  }
}