:root {
  --primary-color: #0056B3; /* Dark Blue */
  --secondary-color: #FFD700; /* Gold */
  --text-dark: #1a1a1a;
  --text-light: #ffffff;
  --background-light: #f8f9fa;
  --background-dark-section: #004085; /* Slightly lighter blue for sections */
  --border-color: #e0e0e0;
}

.page-index-review-go88 {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: #ffffff; /* Default background */
}

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

.page-index-review-go88 h1,
.page-index-review-go88 h2,
.page-index-review-go88 h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
  line-height: 1.3;
}

.page-index-review-go88 h1 {
  font-size: 2.8em;
  text-align: center;
  color: var(--text-light); /* On hero section, will be white */
}

.page-index-review-go88 h2 {
  font-size: 2.2em;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 30px;
  position: relative;
}

.page-index-review-go88 h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--secondary-color);
  margin: 10px auto 0;
  border-radius: 2px;
}

.page-index-review-go88 h3 {
  font-size: 1.8em;
  color: var(--primary-color);
}

.page-index-review-go88 p {
  margin-bottom: 15px;
  font-size: 1.1em;
}

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

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

/* CTA Buttons */
.page-index-review-go88__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: var(--primary-color);
  color: var(--text-light);
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  margin-top: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid var(--primary-color);
}

.page-index-review-go88__cta-button:hover {
  background-color: var(--background-dark-section);
  border-color: var(--background-dark-section);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-index-review-go88__cta-button--secondary {
  background-color: var(--secondary-color);
  color: var(--text-dark); /* Gold is light, so dark text */
  border-color: var(--secondary-color);
}

.page-index-review-go88__cta-button--secondary:hover {
  background-color: #e6c200; /* Slightly darker gold */
  border-color: #e6c200;
  color: var(--text-dark);
}

.page-index-review-go88__cta-button--ios {
  background-color: #333; /* Darker for iOS button */
  border-color: #333;
  color: var(--text-light);
}

.page-index-review-go88__cta-button--ios:hover {
  background-color: #000;
  border-color: #000;
}


/* HERO Section */
.page-index-review-go88__hero {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: var(--primary-color); /* Fallback background for hero */
}

.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%;
  height: auto;
  max-height: 500px; /* Limit height for large images */
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 30px;
  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%;
  padding: 0 20px;
}

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

/* Introduction Section */
.page-index-review-go88__introduction {
  padding: 60px 0;
  background-color: var(--background-light);
}

.page-index-review-go88__introduction .page-index-review-go88__image-content {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Games Section */
.page-index-review-go88__games {
  padding: 60px 0;
  background-color: #ffffff;
}

.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: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
}

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

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

.page-index-review-go88__game-card h3 {
  font-size: 1.4em;
  margin: 20px 15px 10px;
  color: var(--primary-color);
}

.page-index-review-go88__game-card h3 a {
  color: inherit;
  font-weight: bold;
}

.page-index-review-go88__game-card p {
  font-size: 1em;
  padding: 0 15px 20px;
  color: #555;
}

/* Promotions Section */
.page-index-review-go88__promotions {
  padding: 60px 0;
  background-color: var(--background-light);
}

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

.page-index-review-go88__promo-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
}

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

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

.page-index-review-go88__promo-card h3 {
  font-size: 1.3em;
  margin: 20px 15px 10px;
  color: var(--primary-color);
}

.page-index-review-go88__promo-card h3 a {
  color: inherit;
  font-weight: bold;
}

.page-index-review-go88__promo-card p {
  font-size: 0.95em;
  padding: 0 15px 20px;
  color: #555;
}

/* Security and Support Section */
.page-index-review-go88__security-support {
  padding: 60px 0;
  background-color: #ffffff;
}

.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: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-review-go88__feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-index-review-go88__feature-item .page-index-review-go88__feature-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-index-review-go88__feature-item h3 {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-index-review-go88__feature-item p {
  font-size: 1em;
  color: #555;
}

/* Mobile Section */
.page-index-review-go88__mobile {
  padding: 60px 0;
  background-color: var(--background-light);
}

.page-index-review-go88__mobile-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-index-review-go88__mobile-text {
  flex: 1;
  min-width: 300px;
}

.page-index-review-go88__mobile-text h3 {
  font-size: 2em;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.page-index-review-go88__mobile-text p {
  font-size: 1.1em;
  margin-bottom: 20px;
}

.page-index-review-go88__mobile-image {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-index-review-go88__download-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 20px;
}

/* Pros & Cons Section */
.page-index-review-go88__pros-cons {
  padding: 60px 0;
  background-color: #ffffff;
}

.page-index-review-go88__grid-2-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.page-index-review-go88__pros,
.page-index-review-go88__cons {
  background-color: var(--background-light);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-color);
}

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

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

.page-index-review-go88__pros ul,
.page-index-review-go88__cons ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-index-review-go88__pros li,
.page-index-review-go88__cons li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.05em;
  color: #333;
}

.page-index-review-go88__pros li::before {
  content: '✓';
  color: #28a745;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2em;
}

.page-index-review-go88__cons li::before {
  content: '✕';
  color: #dc3545;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2em;
}

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

.page-index-review-go88__faq-list {
  margin-top: 40px;
}

.page-index-review-go88 .faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.page-index-review-go88 .faq-question:hover {
  background: #f0f0f0;
  border-color: var(--primary-color);
}

.page-index-review-go88 .faq-question h3 {
  margin: 0;
  font-size: 1.25em;
  color: var(--primary-color);
}

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

.page-index-review-go88 .faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--secondary-color);
}

.page-index-review-go88 .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-left: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  border-radius: 0 0 8px 8px;
}

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

.page-index-review-go88 .faq-answer p {
  margin-bottom: 10px;
  color: #444;
  font-size: 1.05em;
}

.page-index-review-go88 .faq-answer a {
  font-weight: bold;
}

/* Conclusion Section */
.page-index-review-go88__conclusion {
  padding: 60px 0;
  text-align: center;
  background-color: #ffffff;
}

.page-index-review-go88__conclusion p {
  max-width: 900px;
  margin: 0 auto 25px;
  font-size: 1.15em;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-review-go88 h1 {
    font-size: 2.5em;
  }
  .page-index-review-go88 h2 {
    font-size: 2em;
  }
  .page-index-review-go88 h3 {
    font-size: 1.6em;
  }
  .page-index-review-go88__hero-image {
    max-height: 400px;
  }
  .page-index-review-go88__mobile-content {
    flex-direction: column-reverse; /* Image above text on smaller screens */
  }
  .page-index-review-go88__mobile-image {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-index-review-go88__container {
    padding: 15px;
  }
  .page-index-review-go88 h1 {
    font-size: 2em;
  }
  .page-index-review-go88 h2 {
    font-size: 1.8em;
  }
  .page-index-review-go88 h3 {
    font-size: 1.4em;
  }
  .page-index-review-go88 p {
    font-size: 1em;
  }
  .page-index-review-go88__hero {
    padding: 40px 15px;
  }
  .page-index-review-go88__hero-image {
    margin-bottom: 20px;
  }
  .page-index-review-go88__hero-content p {
    font-size: 1.05em;
    margin-bottom: 20px;
  }
  .page-index-review-go88__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-index-review-go88__game-grid,
  .page-index-review-go88__promo-grid,
  .page-index-review-go88__feature-grid,
  .page-index-review-go88__grid-2-col {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-index-review-go88__game-card .page-index-review-go88__card-image,
  .page-index-review-go88__promo-card .page-index-review-go88__promo-image {
    height: 150px;
  }
  .page-index-review-go88__feature-item .page-index-review-go88__feature-icon {
    width: 80px;
    height: 80px;
  }
  .page-index-review-go88 .faq-question {
    padding: 15px 20px;
  }
  .page-index-review-go88 .faq-question h3 {
    font-size: 1.1em;
  }
  .page-index-review-go88 .faq-toggle {
    font-size: 20px;
  }
  .page-index-review-go88 .faq-answer {
    padding: 0 20px;
  }
  .page-index-review-go88 .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
  .page-index-review-go88__download-buttons {
    flex-direction: column;
    gap: 10px;
  }
}