.page-index-review-go88 {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #000080; /* Dark Blue */
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --background-light: #f5f5f5;
  --background-dark: #1a1a2e;
  --border-color: #e0e0e0;
  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: 0 20px;
}

.page-index-review-go88__section {
  padding: 60px 0;
  text-align: center;
}

.page-index-review-go88__section:nth-of-type(even) {
  background-color: var(--background-light);
}

.page-index-review-go88__section-title {
  font-size: 3em;
  color: var(--secondary-color);
  margin-bottom: 40px;
  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(--primary-color);
  border-radius: 2px;
}

.page-index-review-go88 p {
  font-size: 1.1em;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-review-go88 a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.page-index-review-go88__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-color);
  color: var(--text-color-light);
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-index-review-go88__cta-button:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-index-review-go88__cta-button--large {
  padding: 20px 50px;
  font-size: 1.4em;
}

.page-index-review-go88__text-center {
  text-align: center;
}

/* 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-color: var(--background-dark);
  color: var(--text-color-light);
}

.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 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__hero-content h1 {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.page-index-review-go88__hero-content p {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: var(--text-color-light);
}

/* Introduction Section */
.page-index-review-go88__introduction p {
  text-align: left;
}

/* Game Library Section */
.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: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-index-review-go88__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

.page-index-review-go88__game-card h3 {
  font-size: 1.8em;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.page-index-review-go88__game-card h3 a {
  color: var(--secondary-color);
}

.page-index-review-go88__game-card p {
  font-size: 1em;
  color: var(--text-color-dark);
  margin-bottom: 0;
  text-align: left;
}

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

.page-index-review-go88__promo-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 400px; /* Ensure consistent card height */
}

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

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

.page-index-review-go88__promo-item h3 a {
  color: var(--secondary-color);
}

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

.page-index-review-go88__button {
  display: inline-block;
  padding: 10px 25px;
  background: var(--primary-color);
  color: var(--text-color-light);
  text-decoration: none;
  border-radius: 5px;
  font-size: 1em;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-index-review-go88__button:hover {
  background: var(--secondary-color);
  transform: translateY(-1px);
}

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

.page-index-review-go88__method-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-review-go88__method-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-index-review-go88__method-card img {
  width: 100%;
  max-width: 250px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 15px;
}

.page-index-review-go88__method-card h3 {
  font-size: 1.6em;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.page-index-review-go88__method-card h3 a {
  color: var(--secondary-color);
}

.page-index-review-go88__method-card p {
  font-size: 1em;
  color: var(--text-color-dark);
  margin-bottom: 0;
}

/* Customer Service Section */
.page-index-review-go88__customer-service p {
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-review-go88__contact-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-index-review-go88__contact-list li {
  margin-bottom: 10px;
}

.page-index-review-go88__contact-link {
  display: inline-block;
  background-color: var(--secondary-color);
  color: var(--text-color-light);
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-index-review-go88__contact-link:hover {
  background-color: var(--primary-color);
}

/* Registration Guide Section */
.page-index-review-go88__registration-guide p {
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-index-review-go88__step-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-index-review-go88__step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-index-review-go88__step-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-index-review-go88__step-card h3 {
  font-size: 1.8em;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.page-index-review-go88__step-card p {
  font-size: 1em;
  color: var(--text-color-dark);
  margin-bottom: 20px;
  flex-grow: 1;
  text-align: center;
}

.page-index-review-go88__note {
  background-color: #fff3cd;
  color: #856404;
  border: 1px solid #ffeeba;
  border-radius: 5px;
  padding: 15px;
  margin-top: 30px;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Reliability Section */
.page-index-review-go88__reliability p {
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-review-go88__reliability-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-review-go88__reliability-list li {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-review-go88__reliability-list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-index-review-go88__reliability-list li img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 15px;
}

.page-index-review-go88__reliability-list li h3 {
  font-size: 1.5em;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.page-index-review-go88__reliability-list li p {
  font-size: 0.95em;
  color: var(--text-color-dark);
  margin-bottom: 0;
  text-align: center;
}

/* Pros and Cons Section */
.page-index-review-go88__pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}

.page-index-review-go88__pros-card, .page-index-review-go88__cons-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.page-index-review-go88__pros-card h3 {
  color: #28a745; /* Green for pros */
  font-size: 2em;
  margin-bottom: 20px;
}

.page-index-review-go88__cons-card h3 {
  color: #dc3545; /* Red for cons */
  font-size: 2em;
  margin-bottom: 20px;
}

.page-index-review-go88__list-check, .page-index-review-go88__list-cross {
  list-style: none;
  padding: 0;
}

.page-index-review-go88__list-check li, .page-index-review-go88__list-cross li {
  font-size: 1.1em;
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
}

.page-index-review-go88__list-check li::before {
  content: '✅';
  position: absolute;
  left: 0;
  color: #28a745;
}

.page-index-review-go88__list-cross li::before {
  content: '❌';
  position: absolute;
  left: 0;
  color: #dc3545;
}

/* Conclusion Section */
.page-index-review-go88__conclusion p {
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* FAQ Section */
.page-index-review-go88__faq-section {
  background-color: var(--background-light);
}

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

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

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

.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 25px;
  background: #f9f9f9;
  color: var(--text-color-dark);
}

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

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

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-review-go88__section-title {
    font-size: 2.5em;
  }
  .page-index-review-go88__hero-content h1 {
    font-size: 2.8em;
  }
  .page-index-review-go88__hero-content p {
    font-size: 1.1em;
  }
  .page-index-review-go88__pros-cons-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-index-review-go88__section {
    padding: 40px 0;
  }
  .page-index-review-go88__section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }
  .page-index-review-go88__hero-content h1 {
    font-size: 2.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__cta-button--large {
    padding: 15px 35px;
    font-size: 1.1em;
  }
  .page-index-review-go88__game-grid, .page-index-review-go88__promo-list, .page-index-review-go88__payment-methods, .page-index-review-go88__steps-grid, .page-index-review-go88__reliability-list {
    grid-template-columns: 1fr;
  }
  .page-index-review-go88__promo-item, .page-index-review-go88__step-card {
    min-height: auto;
  }
  .page-index-review-go88__contact-list {
    flex-direction: column;
    gap: 10px;
  }
  .faq-question {
    padding: 15px 20px;
  }
  .faq-question h3 {
    font-size: 1.1em;
  }
  .faq-toggle {
    font-size: 20px;
  }
  .faq-answer {
    padding: 0 20px;
  }
  .faq-item.active .faq-answer {
    padding: 15px 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__section-title {
    font-size: 1.8em;
  }
  .page-index-review-go88__game-card h3, .page-index-review-go88__promo-item h3, .page-index-review-go88__method-card h3, .page-index-review-go88__step-card h3 {
    font-size: 1.4em;
  }
  .page-index-review-go88__pros-card h3, .page-index-review-go88__cons-card h3 {
    font-size: 1.6em;
  }
}