/* style/index-review-go88.css */
:root {
  --primary-color: #0056B3;
  --secondary-color: #FFC107;
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --background-light: #f1f3f5;
  --card-background: #ffffff;
  --border-color: #e0e0e0;
}

.page-index-review-go88 {
  font-family: 'Arial', sans-serif;
  color: var(--text-color-light); /* Default text color for main content on potentially dark body background */
  background-color: transparent; /* Main content background will be handled by sections/cards */
}

.page-index-review-go88__hero-intro-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 180px; /* Desktop: Adjust based on fixed header height */
  background: linear-gradient(135deg, var(--primary-color), #003F80);
  color: var(--text-color-light);
  box-sizing: border-box;
}

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

.page-index-review-go88__main-title {
  font-size: 42px;
  font-weight: bold;
  color: var(--secondary-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-index-review-go88__intro-text {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 25px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-review-go88__intro-text strong {
  color: var(--secondary-color);
}

.page-index-review-go88__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color);
  color: var(--text-color-dark);
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-index-review-go88__cta-button:hover {
  background: #FFD54F;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-index-review-go88__section {
  padding: 60px 20px;
  background: var(--background-light);
  color: var(--text-color-dark);
  box-sizing: border-box;
}

.page-index-review-go88__section:nth-of-type(even) {
  background: #e9ecef;
}

.page-index-review-go88__card {
  background: var(--card-background);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 40px;
  color: var(--text-color-dark);
}

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

.page-index-review-go88__content-wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.page-index-review-go88__content-wrapper--reversed {
  flex-direction: row-reverse;
}

.page-index-review-go88__text-content {
  flex: 1;
  line-height: 1.8;
  font-size: 16px;
}

.page-index-review-go88__text-content p {
  margin-bottom: 15px;
}

.page-index-review-go88__text-content strong {
  color: var(--primary-color);
}

.page-index-review-go88__image-wrapper {
  flex-shrink: 0;
  width: 45%;
  max-width: 500px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.page-index-review-go88__image {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-index-review-go88__sub-title {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  margin-top: 25px;
  margin-bottom: 15px;
}

.page-index-review-go88__pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.page-index-review-go88__pros, .page-index-review-go88__cons {
  background: #f9f9f9;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.page-index-review-go88__pros h3 {
  color: #28a745; /* Green for pros */
}

.page-index-review-go88__cons h3 {
  color: #dc3545; /* Red for cons */
}

.page-index-review-go88__list {
  list-style: disc inside;
  padding-left: 0;
  margin-top: 15px;
}

.page-index-review-go88__list li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.page-index-review-go88__conclusion-text {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: center;
}

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

.page-index-review-go88__link:hover {
  color: #007bff;
  text-decoration: underline;
}

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

.page-index-review-go88__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.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, opacity 0.4s ease;
  padding: 0 15px;
  opacity: 0;
}

.page-index-review-go88__faq-item.active .page-index-review-go88__faq-answer {
  max-height: 2000px !important;
  padding: 20px 15px !important;
  opacity: 1;
  background: #f9f9f9;
  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: #fff;
  border: 1px solid var(--border-color);
  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: #f5f5f5;
  border-color: #d0d0d0;
}

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

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

.page-index-review-go88__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #666;
  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 rotate */
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-review-go88__main-title {
    font-size: 36px;
  }

  .page-index-review-go88__section-title {
    font-size: 28px;
  }
}