/* style/index-review-go88.css */
:root {
  --page-primary-color: #FFD700;
  --page-secondary-color: #2F4F4F;
  --page-text-light: #ffffff;
  --page-text-dark: #333333;
  --page-background-light: #f5f5f5;
  --page-background-dark: #222222;
  --page-border-color: #e0e0e0;
  --page-button-hover: #e6c200;
}

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

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

.page-index-review-go88-section-title {
  font-size: 2.5em;
  color: var(--page-secondary-color);
  text-align: center;
  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(--page-primary-color);
  border-radius: 2px;
}

.page-index-review-go88-main-title {
  font-size: 3.5em;
  color: var(--page-primary-color);
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-review-go88-hero-subtitle {
  font-size: 1.5em;
  color: var(--page-text-light);
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

/* 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(--page-secondary-color);
  overflow: hidden;
}

.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 8px 16px rgba(0, 0, 0, 0.3);
}

.page-index-review-go88-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.4); /* Overlay for text readability */
  border-radius: 8px;
}

.page-index-review-go88-hero-ctas {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.page-index-review-go88-cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--page-primary-color);
  color: var(--page-text-dark);
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-index-review-go88-cta-button:hover {
  background: var(--page-button-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page-index-review-go88-cta-login {
  background: var(--page-secondary-color);
  color: var(--page-text-light);
  border: 1px solid var(--page-primary-color);
}

.page-index-review-go88-cta-login:hover {
  background: var(--page-primary-color);
  color: var(--page-text-dark);
}

/* Intro Section */
.page-index-review-go88-intro-section {
  background-color: var(--page-background-light);
  padding: 60px 0;
}

.page-index-review-go88-intro-section p {
  margin-bottom: 15px;
  font-size: 1.1em;
  text-align: justify;
}

/* Quick Access Section */
.page-index-review-go88-quick-access-section {
  background-color: var(--page-background-dark);
  padding: 60px 0;
  color: var(--page-text-light);
}

.page-index-review-go88-quick-access-section .page-index-review-go88-section-title {
  color: var(--page-primary-color);
}

.page-index-review-go88-access-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-index-review-go88-access-button {
  display: inline-block;
  padding: 12px 25px;
  background: var(--page-secondary-color);
  color: var(--page-text-light);
  text-decoration: none;
  border-radius: 5px;
  font-size: 1em;
  font-weight: bold;
  border: 1px solid var(--page-primary-color);
  transition: all 0.3s ease;
}

.page-index-review-go88-access-button:hover {
  background: var(--page-primary-color);
  color: var(--page-text-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Games Section */
.page-index-review-go88-games-section {
  background-color: var(--page-background-light);
  padding: 60px 0;
}

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

.page-index-review-go88-game-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-review-go88-game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-index-review-go88-game-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-index-review-go88-card-title {
  font-size: 1.4em;
  padding: 15px 20px 10px;
  color: var(--page-secondary-color);
}

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

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

.page-index-review-go88-game-card p {
  padding: 0 20px 20px;
  font-size: 0.95em;
  color: var(--page-text-dark);
  text-align: justify;
}

/* Promotions Section */
.page-index-review-go88-promotions-section {
  background-color: var(--page-background-dark);
  padding: 60px 0;
  color: var(--page-text-light);
}

.page-index-review-go88-promotions-section .page-index-review-go88-section-title {
  color: var(--page-primary-color);
}

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

.page-index-review-go88-promo-card {
  background: var(--page-secondary-color);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-review-go88-promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-index-review-go88-promo-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  margin-bottom: 15px;
}

.page-index-review-go88-promo-card .page-index-review-go88-card-title {
  color: var(--page-primary-color);
  font-size: 1.3em;
  padding: 0 15px 10px;
}

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

.page-index-review-go88-promo-card p {
  padding: 0 15px;
  font-size: 0.9em;
  color: var(--page-text-light);
  margin-bottom: 20px;
  text-align: justify;
}

.page-index-review-go88-promo-button {
  display: inline-block;
  padding: 10px 25px;
  background: var(--page-primary-color);
  color: var(--page-text-dark);
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.page-index-review-go88-promo-button:hover {
  background: var(--page-button-hover);
  transform: translateY(-2px);
}

/* Security Section */
.page-index-review-go88-security-section {
  background-color: var(--page-background-light);
  padding: 60px 0;
}

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

.page-index-review-go88-feature-item {
  background: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-index-review-go88-feature-item:hover {
  transform: translateY(-5px);
}

.page-index-review-go88-feature-item img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 15px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-index-review-go88-feature-item h3 {
  color: var(--page-secondary-color);
  font-size: 1.3em;
  margin-bottom: 10px;
}

.page-index-review-go88-feature-item p {
  font-size: 0.95em;
  color: var(--page-text-dark);
  text-align: justify;
}

.page-index-review-go88-contact-info {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1em;
}

.page-index-review-go88-contact-link {
  color: var(--page-primary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-index-review-go88-contact-link:hover {
  text-decoration: underline;
}

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

.page-index-review-go88-faq-section .page-index-review-go88-section-title {
  color: var(--page-primary-color);
}

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

.faq-item {
  margin-bottom: 15px;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: var(--page-secondary-color);
  border: 1px solid var(--page-primary-color);
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.faq-question:hover {
  background: #3a5a5a; /* Slightly lighter secondary for hover */
  border-color: var(--page-button-hover);
}

.faq-question h3 {
  margin: 0;
  color: var(--page-text-light);
  font-size: 1.1em;
}

.faq-toggle {
  font-size: 20px;
  font-weight: bold;
  color: var(--page-primary-color);
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 15px;
  background: #333333; /* Darker background for answer */
  color: var(--page-text-light);
  border-radius: 0 0 5px 5px;
}

.faq-answer p {
  padding: 15px 0;
  margin: 0;
  font-size: 0.95em;
  text-align: justify;
}

.faq-answer p a {
  color: var(--page-primary-color);
  text-decoration: none;
}

.faq-answer p a:hover {
  text-decoration: underline;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height for content */
  padding: 15px;
  border: 1px solid var(--page-primary-color);
  border-top: none;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--page-button-hover);
}

/* Blog Section */
.page-index-review-go88-blog-section {
  background-color: var(--page-background-light);
  padding: 60px 0;
}

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

.page-index-review-go88-blog-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-review-go88-blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-index-review-go88-blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-index-review-go88-blog-card .page-index-review-go88-card-title {
  font-size: 1.3em;
  padding: 15px 20px 10px;
  color: var(--page-secondary-color);
}

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

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

.page-index-review-go88-blog-card p {
  padding: 0 20px;
  font-size: 0.95em;
  color: var(--page-text-dark);
  text-align: justify;
}

.page-index-review-go88-blog-date {
  display: block;
  padding: 10px 20px 20px;
  font-size: 0.85em;
  color: #777;
}

.page-index-review-go88-view-all {
  text-align: center;
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-review-go88-main-title {
    font-size: 3em;
  }
  .page-index-review-go88-hero-subtitle {
    font-size: 1.3em;
  }
}

@media (max-width: 768px) {
  .page-index-review-go88-hero-section {
    padding: 40px 15px;
  }
  .page-index-review-go88-main-title {
    font-size: 2.5em;
  }
  .page-index-review-go88-hero-subtitle {
    font-size: 1.1em;
  }
  .page-index-review-go88-cta-button {
    padding: 12px 30px;
    font-size: 16px;
  }
  .page-index-review-go88-section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }
  .page-index-review-go88-access-links {
    flex-direction: column;
    align-items: center;
  }
  .page-index-review-go88-game-grid, .page-index-review-go88-promo-grid, .page-index-review-go88-security-features, .page-index-review-go88-blog-grid {
    grid-template-columns: 1fr;
  }
  .page-index-review-go88-feature-item img {
    width: 80px;
    height: 80px;
  }
  .faq-question {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px;
  }
  .faq-question h3 {
    margin-bottom: 8px;
  }
  .faq-toggle {
    align-self: flex-end;
    margin-top: -30px;
  }
  .faq-answer p {
    padding: 10px 0;
  }
}

@media (max-width: 480px) {
  .page-index-review-go88-main-title {
    font-size: 2em;
  }
  .page-index-review-go88-hero-subtitle {
    font-size: 1em;
  }
  .page-index-review-go88-hero-ctas {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-review-go88-section-title {
    font-size: 1.8em;
  }
  .page-index-review-go88-intro-section p, .page-index-review-go88-feature-item p, .page-index-review-go88-promo-card p, .page-index-review-go88-blog-card p {
    font-size: 0.9em;
  }
}