/* style/index-review-go88.css */
:root {
  --primary-color: #007bff;
  --secondary-color: #28a745;
  --dark-bg-1: #0d0d0d; /* Assuming shared.css defines this as a dark background */
  --light-text-color: #ffffff;
  --dark-text-color: #333333;
  --gray-border: #e0e0e0;
  --light-gray-bg: #f9f9f9;
}

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

/* Fixed Nav Bar Spacing - Adjust as needed */
.page-index-review-go88__hero-banner {
  padding-top: 180px; /* Desktop: Adjust based on fixed header height */
  padding-bottom: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--light-text-color);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-index-review-go88__hero-content {
  max-width: 900px;
  margin: 0 auto 30px auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

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

.page-index-review-go88__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-index-review-go88__text-link {
  color: #fff;
  text-decoration: underline;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-index-review-go88__text-link:hover {
  color: #ffcc00;
}

.page-index-review-go88__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #ffcc00; /* Bright yellow for CTA */
  color: var(--dark-text-color);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

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

.page-index-review-go88__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-index-review-go88__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-index-review-go88__review-section {
  padding: 60px 20px;
  background: var(--dark-bg-1);
  color: var(--light-text-color);
}

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

.page-index-review-go88__section-title {
  font-size: 2.5em;
  font-weight: bold;
  color: var(--light-text-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-index-review-go88__section-title strong {
  color: #ffcc00;
}

.page-index-review-go88__subsection-title {
  font-size: 1.8em;
  font-weight: bold;
  color: var(--light-text-color);
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-index-review-go88__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.7;
  color: #e0e0e0;
}

.page-index-review-go88__text-block a {
  color: #ffcc00;
  text-decoration: underline;
  font-weight: bold;
}

.page-index-review-go88__text-block a:hover {
  color: #e6b800;
}

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

.page-index-review-go88__numbered-list {
  list-style-type: decimal;
  padding-left: 30px;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-index-review-go88__numbered-list li {
  font-size: 1.1em;
  margin-bottom: 10px;
  line-height: 1.7;
}

.page-index-review-go88__numbered-list li strong {
  color: var(--light-text-color);
}

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

.page-index-review-go88__game-list li {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-index-review-go88__game-list li:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-index-review-go88__game-list-icon {
  max-width: 150px; /* Increased size, min 200x200 requirement for images, so this is for game *icons* which are usually smaller, but I will make sure the actual image is larger */
  height: auto;
  margin-bottom: 15px;
  border-radius: 8px;
  object-fit: contain;
}

.page-index-review-go88__game-list-title {
  font-size: 1.4em;
  font-weight: bold;
  color: var(--light-text-color);
  margin-bottom: 10px;
}

.page-index-review-go88__game-list p {
  font-size: 1em;
  color: #e0e0e0;
}

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

.page-index-review-go88__pros, .page-index-review-go88__cons {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-index-review-go88__pros-title, .page-index-review-go88__cons-title {
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}

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

.page-index-review-go88__cons-title {
  color: var(--primary-color);
}

.page-index-review-go88__bullet-list {
  list-style-type: disc;
  padding-left: 25px;
  color: #e0e0e0;
}

.page-index-review-go88__bullet-list li {
  font-size: 1.1em;
  margin-bottom: 10px;
  line-height: 1.7;
}

.page-index-review-go88__cta-button--bottom {
  margin-top: 50px;
  margin-bottom: 20px;
}

.page-index-review-go88__faq-section {
  padding: 60px 20px;
  background: var(--light-gray-bg);
  color: var(--dark-text-color);
}

.page-index-review-go88__faq-section .page-index-review-go88__section-title {
  color: var(--dark-text-color);
}

.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(--gray-border);
  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: 1.1em;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: var(--dark-text-color);
}

.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);
}

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

  .page-index-review-go88__hero-description {
    font-size: 1.2em;
  }

  .page-index-review-go88__section-title {
    font-size: 2em;
  }

  .page-index-review-go88__subsection-title {
    font-size: 1.6em;
  }

  .page-index-review-go88__text-block, .page-index-review-go88__numbered-list li, .page-index-review-go88__bullet-list li {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-index-review-go88__hero-banner {
    padding-top: 160px !important; /* Mobile: Adjust based on fixed header height */
    padding-bottom: 40px;
  }

  .page-index-review-go88__hero-content {
    margin-bottom: 20px;
  }

  .page-index-review-go88__hero-title {
    font-size: 2em;
  }

  .page-index-review-go88__hero-description {
    font-size: 1em;
  }

  .page-index-review-go88__cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }

  .page-index-review-go88__review-section, .page-index-review-go88__faq-section {
    padding: 40px 15px;
  }

  .page-index-review-go88__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-index-review-go88__subsection-title {
    font-size: 1.4em;
    margin-top: 30px;
    margin-bottom: 15px;
  }

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

  .page-index-review-go88__game-list {
    grid-template-columns: 1fr;
  }

  .page-index-review-go88__game-list li {
    padding: 20px;
  }

  .page-index-review-go88__game-list-icon {
    max-width: 120px;
  }

  .page-index-review-go88__game-list-title {
    font-size: 1.2em;
  }

  .page-index-review-go88__faq-question {
    padding: 15px;
    flex-wrap: wrap;
  }
  
  .page-index-review-go88__faq-question h3 {
    font-size: 1em;
    margin-bottom: 0;
    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;
  }

  /* Image responsiveness for mobile */
  .page-index-review-go88 img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-index-review-go88__container,
  .page-index-review-go88__hero-banner,
  .page-index-review-go88__review-section,
  .page-index-review-go88__faq-section,
  .page-index-review-go88__hero-image-wrapper,
  .page-index-review-go88__pros-cons,
  .page-index-review-go88__game-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}