/* style/index-review-go88.css */
:root {
  --primary-color: #007bff;
  --secondary-color: #ffc107;
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --background-dark: #0a0a0a;
  --card-background: #ffffff;
  --border-color: #e0e0e0;
}

.page-index-review-go88 {
  font-family: 'Arial', sans-serif;
  line-height: 1.7;
  color: var(--text-color-light); /* Body background is dark, so use light text */
  background-color: var(--background-dark);
  padding-top: 120px; /* Ensure content is not hidden by fixed header on desktop */
}

@media (max-width: 768px) {
  .page-index-review-go88 {
    padding-top: 100px !important; /* Adjust for mobile fixed header */
  }
}

.page-index-review-go88__hero-banner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: var(--background-dark);
  color: var(--text-color-light);
  overflow: hidden;
}

.page-index-review-go88__hero-content-wrapper {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-bottom: 30px;
}

.page-index-review-go88__hero-title {
  font-size: 3.2em;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--text-color-light);
}

.page-index-review-go88__hero-title .highlight {
  color: var(--secondary-color);
}

.page-index-review-go88__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-index-review-go88__hero-cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: linear-gradient(135deg, var(--secondary-color), #ff9800);
  color: var(--text-color-dark);
  text-decoration: none;
  border-radius: 10px;
  font-size: 1.2em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(255, 193, 7, 0.4);
}

.page-index-review-go88__hero-cta-button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(255, 193, 7, 0.6);
  background: linear-gradient(135deg, #ff9800, var(--secondary-color));
}

.page-index-review-go88__hero-image {
  width: 100%;
  max-width: 1200px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  margin-top: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Review Content Section */
.page-index-review-go88__review-content-section {
  padding: 60px 20px;
  background: #f1f3f5; /* Lighter background for review content */
  color: var(--text-color-dark);
}

.page-index-review-go88__review-content-container {
  max-width: 1000px; /* Appropriate width for reading */
  margin: 0 auto;
}

.page-index-review-go88__review-content-card {
  background: var(--card-background); /* White background for card */
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 40px;
}

.page-index-review-go88__section-title {
  font-size: 2.5em;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 30px;
  text-align: center;
  line-height: 1.3;
}

.page-index-review-go88__section-title .highlight {
  color: var(--secondary-color);
}

.page-index-review-go88__sub-title {
  font-size: 1.8em;
  font-weight: bold;
  color: var(--primary-color);
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--secondary-color);
  padding-bottom: 10px;
}

.page-index-review-go88__paragraph {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--text-color-dark);
}

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

.page-index-review-go88__paragraph a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.page-index-review-go88__content-image {
  width: 100%;
  height: auto;
  max-width: 800px;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.page-index-review-go88__cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
}

.page-index-review-go88__main-cta-button,
.page-index-review-go88__secondary-cta-button {
  display: inline-block;
  padding: 16px 35px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.page-index-review-go88__main-cta-button {
  background: var(--primary-color);
  color: var(--text-color-light);
  border: 2px solid var(--primary-color);
}

.page-index-review-go88__main-cta-button:hover {
  background: #0056b3;
  border-color: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.page-index-review-go88__secondary-cta-button {
  background: var(--card-background);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-index-review-go88__secondary-cta-button:hover {
  background: #e9ecef;
  color: #0056b3;
  border-color: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

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

.page-index-review-go88__faq-container {
  max-width: 900px;
  margin: 0 auto;
}

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

.page-index-review-go88__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  background: #1a1a1a; /* Darker background for FAQ items */
}

.page-index-review-go88__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  padding: 0 20px;
  opacity: 0;
  color: #cccccc;
}

.page-index-review-go88__faq-item.active .page-index-review-go88__faq-answer {
  max-height: 2000px !important;
  padding: 20px !important;
  opacity: 1;
  background: #2a2a2a;
  border-radius: 0 0 5px 5px;
}

.page-index-review-go88__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #1a1a1a;
  border: 1px solid #3a3a3a;
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-index-review-go88__faq-question:hover {
  background: #2a2a2a;
  border-color: #4a4a4a;
}

.page-index-review-go88__faq-question:active {
  background: #3a3a3a;
}

.page-index-review-go88__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 1.1em;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: var(--text-color-light);
}

.page-index-review-go88__faq-question h3 a {
  color: var(--secondary-color);
  text-decoration: none;
}

.page-index-review-go88__faq-question h3 a:hover {
  text-decoration: underline;
}

.page-index-review-go88__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: var(--secondary-color);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.page-index-review-go88__faq-item.active .page-index-review-go88__faq-toggle {
  color: var(--primary-color);
  transform: rotate(45deg); /* Change + to X or - */
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-index-review-go88__hero-title {
    font-size: 2.5em;
  }
  .page-index-review-go88__hero-subtitle {
    font-size: 1.2em;
  }
  .page-index-review-go88__section-title {
    font-size: 2em;
  }
  .page-index-review-go88__sub-title {
    font-size: 1.5em;
  }
  .page-index-review-go88__paragraph {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-index-review-go88 {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-index-review-go88__hero-banner {
    padding: 40px 15px;
  }
  .page-index-review-go88__hero-title {
    font-size: 2em;
  }
  .page-index-review-go88__hero-subtitle {
    font-size: 1em;
  }
  .page-index-review-go88__hero-cta-button {
    padding: 14px 30px;
    font-size: 1em;
  }
  .page-index-review-go88__review-content-section,
  .page-index-review-go88__faq-section {
    padding: 30px 15px;
  }
  .page-index-review-go88__review-content-card {
    padding: 25px;
  }
  .page-index-review-go88__section-title {
    font-size: 1.8em;
  }
  .page-index-review-go88__sub-title {
    font-size: 1.3em;
  }
  .page-index-review-go88__paragraph {
    font-size: 0.95em;
  }
  .page-index-review-go88__cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-review-go88__main-cta-button,
  .page-index-review-go88__secondary-cta-button {
    width: 100%;
    padding: 14px 25px;
    font-size: 1em;
  }
  .page-index-review-go88__faq-question {
    padding: 15px;
    flex-wrap: wrap;
  }
  .page-index-review-go88__faq-question h3 {
    font-size: 1em;
    width: calc(100% - 40px);
  }
  .page-index-review-go88__faq-toggle {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    font-size: 20px;
  }
  .page-index-review-go88__faq-answer {
    padding: 0 15px;
  }
  .page-index-review-go88__faq-item.active .page-index-review-go88__faq-answer {
    padding: 15px !important;
  }
  /* Ensure all images and containers are responsive */
  .page-index-review-go88 img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-index-review-go88__hero-banner,
  .page-index-review-go88__review-content-section,
  .page-index-review-go88__faq-section,
  .page-index-review-go88__review-content-container,
  .page-index-review-go88__review-content-card,
  .page-index-review-go88__faq-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}