.page-index-review-fa88 {
  font-family: 'Arial', sans-serif;
  color: #f0f0f0; /* Dark body background #0a0a0a, so light text */
  line-height: 1.6;
}

/* HERO Section */
.page-index-review-fa88__hero-banner {
  position: relative;
  width: 100%;
  height: 60vh; /* Adjust height as needed */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 180px; /* Desktop: Adjust for fixed header */
  box-sizing: border-box;
}

.page-index-review-fa88__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-index-review-fa88__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
  z-index: 2;
}

.page-index-review-fa88__hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 0 20px;
}

.page-index-review-fa88__hero-title {
  font-size: 3.2em;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

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

.page-index-review-fa88__hero-cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: linear-gradient(135deg, var(--primary-color), #0056b3); /* Primary color gradient */
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 123, 255, 0.3);
}

.page-index-review-fa88__hero-cta-button:hover {
  background: linear-gradient(135deg, #0056b3, var(--primary-color));
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.4);
}

/* General Section Styling */
.page-index-review-fa88__section {
  padding: 60px 20px;
  position: relative;
}

.page-index-review-fa88__dark-bg {
  background-color: #0a0a0a; /* Body background */
  color: #f0f0f0;
}

.page-index-review-fa88__light-bg {
  background-color: #1a1a1a;
  color: #f0f0f0;
}

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

.page-index-review-fa88__section-title {
  font-size: 2.5em;
  color: var(--secondary-color); /* Use gold for titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-index-review-fa88__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.7;
  color: #f0f0f0;
  text-align: justify;
}

.page-index-review-fa88__text-block .highlight {
  color: var(--secondary-color);
  font-weight: bold;
}

.page-index-review-fa88__text-block a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
}

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

/* Review Criteria Section */
.page-index-review-fa88__review-criteria-section {
  background-color: #0d0d0d;
  padding: 80px 20px;
}

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

.page-index-review-fa88__card {
  background: #1a1a1a; /* Darker card background for contrast on body background */
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 193, 7, 0.2);
}

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

.page-index-review-fa88__card-image {
  max-width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover; /* Crop to fit, maintain aspect ratio */
  border-radius: 8px;
  margin-bottom: 25px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-index-review-fa88__card-title {
  font-size: 1.6em;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-index-review-fa88__card-text {
  font-size: 1em;
  color: #cccccc;
  line-height: 1.6;
}

/* Game Catalog Section */
.page-index-review-fa88__game-catalog-section {
  padding: 80px 20px;
}

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

.page-index-review-fa88__game-category-card {
  background: #1a1a1a;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 123, 255, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-index-review-fa88__game-category-image {
  max-width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-index-review-fa88__category-title {
  font-size: 1.8em;
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-index-review-fa88__category-description {
  font-size: 1em;
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

/* Guide Section */
.page-index-review-fa88__guide-section {
  background-color: #0d0d0d;
  padding: 80px 20px;
}

.page-index-review-fa88__card {
  padding: 40px;
}

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

.page-index-review-fa88__step {
  text-align: center;
  background: #1a1a1a;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  border: 1px solid rgba(255, 193, 7, 0.1);
}

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

.page-index-review-fa88__step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), #0056b3);
  color: #ffffff;
  font-size: 2.2em;
  font-weight: bold;
  border-radius: 50%;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.4);
}

.page-index-review-fa88__step-title {
  font-size: 1.5em;
  color: var(--secondary-color);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-index-review-fa88__step-description {
  font-size: 1em;
  color: #cccccc;
  line-height: 1.6;
}

.page-index-review-fa88__step-description a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
}

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

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

.page-index-review-fa88__cta-button {
  display: inline-block;
  padding: 15px 35px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  min-width: 200px;
}

.page-index-review-fa88__btn-primary {
  background: linear-gradient(135deg, var(--primary-color), #0056b3);
  color: #ffffff;
  border: 2px solid transparent;
}

.page-index-review-fa88__btn-primary:hover {
  background: linear-gradient(135deg, #0056b3, var(--primary-color));
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 123, 255, 0.4);
}

.page-index-review-fa88__btn-secondary {
  background: #1a1a1a;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.page-index-review-fa88__btn-secondary:hover {
  background: var(--secondary-color);
  color: #1a1a1a;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(255, 193, 7, 0.4);
}

/* Pros and Cons Section */
.page-index-review-fa88__pros-cons-section {
  background-color: #0a0a0a;
  padding: 80px 20px;
}

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

.page-index-review-fa88__pros-card, .page-index-review-fa88__cons-card {
  background: #1a1a1a;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  padding: 30px;
  text-align: left;
  border: 1px solid rgba(255, 193, 7, 0.2);
}

.page-index-review-fa88__pros-card .page-index-review-fa88__card-title {
  color: var(--primary-color);
}

.page-index-review-fa88__cons-card .page-index-review-fa88__card-title {
  color: var(--secondary-color);
}

.page-index-review-fa88__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-index-review-fa88__list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  font-size: 1.05em;
  color: #cccccc;
  line-height: 1.5;
}

.page-index-review-fa88__list-icon {
  font-size: 1.2em;
  margin-right: 10px;
  flex-shrink: 0;
}

.page-index-review-fa88__pros-card .page-index-review-fa88__list-icon {
  color: #28a745; /* Green for pros */
}

.page-index-review-fa88__cons-card .page-index-review-fa88__list-icon {
  color: #dc3545; /* Red for cons */
}

/* Conclusion Section */
.page-index-review-fa88__conclusion-section {
  background-color: #0d0d0d;
  padding: 80px 20px;
}

/* FAQ Section */
.page-index-review-fa88__faq-section {
  padding: 80px 20px;
  background-color: #0a0a0a;
}

.page-index-review-fa88__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

.page-index-review-fa88__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 193, 7, 0.1);
}

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

.page-index-review-fa88__faq-question:hover {
  background: #2a2a2a;
  border-color: var(--primary-color);
}

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

.page-index-review-fa88__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 1.15em;
  font-weight: 600;
  line-height: 1.5;
  color: #f0f0f0;
  pointer-events: none;
}

.page-index-review-fa88__faq-toggle {
  font-size: 2em;
  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: 32px;
  height: 32px;
}

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

.page-index-review-fa88__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 25px;
  opacity: 0;
  background: #121212;
  border-radius: 0 0 8px 8px;
}

.page-index-review-fa88__faq-item.active .page-index-review-fa88__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
}

.page-index-review-fa88__faq-answer p {
  margin: 0;
  font-size: 1em;
  color: #cccccc;
  line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-review-fa88__hero-title {
    font-size: 2.8em;
  }
  .page-index-review-fa88__hero-description {
    font-size: 1.1em;
  }
  .page-index-review-fa88__section-title {
    font-size: 2em;
  }
  .page-index-review-fa88__card-title {
    font-size: 1.4em;
  }
  .page-index-review-fa88__category-title {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .page-index-review-fa88 img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-index-review-fa88__section,
  .page-index-review-fa88__container,
  .page-index-review-fa88__card,
  .page-index-review-fa88__hero-banner,
  .page-index-review-fa88__hero-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  
  .page-index-review-fa88__hero-banner {
    padding-top: 160px !important; /* Mobile: Adjust for fixed header */
    height: auto;
    min-height: 50vh;
  }
  
  .page-index-review-fa88__hero-title {
    font-size: 2em;
    margin-bottom: 15px;
  }
  
  .page-index-review-fa88__hero-description {
    font-size: 1em;
    margin-bottom: 25px;
  }
  
  .page-index-review-fa88__hero-cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  
  .page-index-review-fa88__section {
    padding: 40px 15px;
  }
  
  .page-index-review-fa88__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  
  .page-index-review-fa88__grid-layout, .page-index-review-fa88__game-categories, .page-index-review-fa88__guide-steps, .page-index-review-fa88__pros-cons-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .page-index-review-fa88__card, .page-index-review-fa88__step {
    padding: 25px;
  }
  
  .page-index-review-fa88__card-image, .page-index-review-fa88__game-category-image {
    height: 180px;
    margin-bottom: 20px;
  }
  
  .page-index-review-fa88__card-title, .page-index-review-fa88__category-title, .page-index-review-fa88__step-title {
    font-size: 1.3em;
  }
  
  .page-index-review-fa88__text-block, .page-index-review-fa88__card-text, .page-index-review-fa88__category-description, .page-index-review-fa88__step-description, .page-index-review-fa88__list li, .page-index-review-fa88__faq-answer p {
    font-size: 0.95em;
  }
  
  .page-index-review-fa88__step-icon {
    width: 50px;
    height: 50px;
    font-size: 1.8em;
    margin-bottom: 15px;
  }
  
  .page-index-review-fa88__cta-group {
    flex-direction: column;
    gap: 15px;
  }
  
  .page-index-review-fa88__cta-button {
    width: 100%;
    max-width: 100%;
    font-size: 1em;
    padding: 12px 25px;
  }

  .page-index-review-fa88__faq-question {
    padding: 18px 20px;
  }
  
  .page-index-review-fa88__faq-question h3 {
    font-size: 1em;
  }
  
  .page-index-review-fa88__faq-toggle {
    font-size: 1.8em;
    width: 28px;
    height: 28px;
  }
  
  .page-index-review-fa88__faq-answer {
    padding: 0 20px;
  }
  
  .page-index-review-fa88__faq-item.active .page-index-review-fa88__faq-answer {
    padding: 15px 20px !important;
  }
}