.page-index-review-go88 {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f4f7fa;
}

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

.page-index-review-go88-section {
  padding: 60px 0;
  margin-bottom: 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.page-index-review-go88 h1,
.page-index-review-go88 h2 {
  color: #3366FF;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  font-size: 2.5em;
}

.page-index-review-go88 h2 {
  font-size: 2em;
  margin-bottom: 30px;
}

.page-index-review-go88 h3 {
  color: #3366FF;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-index-review-go88 p {
  margin-bottom: 15px;
  color: #555;
}

/* 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: 80px 20px;
  background: linear-gradient(135deg, #3366FF, #2244CC);
  color: #ffffff;
  overflow: hidden;
}

.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;
  z-index: 2;
}

.page-index-review-go88-hero-image {
  width: 100%;
  max-width: 800px; /* Adjusted for better visual balance */
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

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

.page-index-review-go88-hero-content h1 {
  color: #FFCC00;
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-index-review-go88-hero-content p {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-index-review-go88-cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #FFCC00;
  color: #3366FF;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-index-review-go88-cta-button:hover {
  background: #EEDD00;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-index-review-go88-center-button {
  text-align: center;
  margin-top: 40px;
}

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

.page-index-review-go88-game-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.page-index-review-go88-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-index-review-go88-game-card h3 {
  padding: 15px 20px 0;
  margin-bottom: 10px;
  font-size: 1.3em;
}

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

.page-index-review-go88-game-card h3 a:hover {
  color: #FFCC00;
}

.page-index-review-go88-game-card p {
  padding: 0 20px 20px;
  color: #666;
  flex-grow: 1;
}

/* Promotion List */
.page-index-review-go88-promo-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-index-review-go88-promo-list li {
  background-color: #f0f8ff;
  border-left: 5px solid #3366FF;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  font-size: 1.1em;
  color: #333;
}

.page-index-review-go88-promo-list li strong {
  color: #2244CC;
}

/* Feature Grid (Security Section) */
.page-index-review-go88-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}

.page-index-review-go88-feature-item {
  background-color: #fefefe;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-index-review-go88-feature-item:hover {
  transform: translateY(-5px);
}

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

.page-index-review-go88-feature-item h3 {
  color: #3366FF;
  font-size: 1.4em;
  margin-bottom: 10px;
}

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

/* Registration Guide */
.page-index-review-go88-step-list {
  list-style: none;
  counter-reset: step-counter;
  padding: 0;
  margin-top: 30px;
}

.page-index-review-go88-step-list li {
  counter-increment: step-counter;
  margin-bottom: 20px;
  padding-left: 60px;
  position: relative;
  font-size: 1.1em;
}

.page-index-review-go88-step-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  background-color: #FFCC00;
  color: #3366FF;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2em;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-index-review-go88-step-list li strong {
  color: #3366FF;
}

/* FAQ Section */
.page-index-review-go88-faq-list {
  margin-top: 30px;
}

.faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  background-color: #fff;
}

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

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

.faq-question h3 {
  margin: 0;
  color: #3366FF;
  font-size: 1.2em;
}

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

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 20px;
  background: #fcfcfc;
  color: #555;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 15px 20px;
  border-top: 1px solid #eee;
}

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

.page-index-review-go88-article-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.page-index-review-go88-article-card h3 {
  padding: 15px 20px 0;
  margin-bottom: 10px;
  font-size: 1.25em;
}

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

.page-index-review-go88-article-card h3 a:hover {
  color: #FFCC00;
}

.page-index-review-go88-article-card p {
  padding: 0 20px;
  color: #666;
  flex-grow: 1;
}

.page-index-review-go88-read-more {
  display: inline-block;
  padding: 10px 20px;
  background-color: #FFCC00;
  color: #3366FF;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  margin: 20px;
  transition: background-color 0.3s ease;
  align-self: flex-start;
}

.page-index-review-go88-read-more:hover {
  background-color: #EEDD00;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-review-go88-hero-content h1 {
    font-size: 2.5em;
  }
  .page-index-review-go88-hero-content p {
    font-size: 1.1em;
  }
  .page-index-review-go88 h1,
  .page-index-review-go88 h2 {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-index-review-go88-section {
    padding: 40px 0;
  }
  .page-index-review-go88-hero-section {
    padding: 60px 15px;
  }
  .page-index-review-go88-hero-content h1 {
    font-size: 2em;
  }
  .page-index-review-go88-hero-content p {
    font-size: 1em;
  }
  .page-index-review-go88-cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-index-review-go88 h1,
  .page-index-review-go88 h2 {
    font-size: 1.8em;
    margin-bottom: 25px;
  }
  .page-index-review-go88 h3 {
    font-size: 1.3em;
  }
  .page-index-review-go88-game-grid,
  .page-index-review-go88-feature-grid,
  .page-index-review-go88-article-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-index-review-go88-step-list li {
    padding-left: 50px;
  }
  .page-index-review-go88-step-list li::before {
    width: 35px;
    height: 35px;
    font-size: 1.1em;
  }
  .faq-question h3 {
    font-size: 1.1em;
  }
  .faq-toggle {
    font-size: 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.9em;
  }
  .page-index-review-go88-cta-button {
    padding: 10px 25px;
    font-size: 0.9em;
  }
  .page-index-review-go88 h1,
  .page-index-review-go88 h2 {
    font-size: 1.5em;
  }
  .page-index-review-go88 h3 {
    font-size: 1.1em;
  }
  .page-index-review-go88-promo-list li {
    font-size: 1em;
    padding: 12px 15px;
  }
  .page-index-review-go88-feature-icon {
    width: 60px;
    height: 60px;
  }
  .page-index-review-go88-feature-item h3 {
    font-size: 1.2em;
  }
  .page-index-review-go88-read-more {
    font-size: 0.9em;
    padding: 8px 15px;
  }
}