/* style/index-review-fa88.css */
:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #1A1A1A; /* Dark Grey/Black */
  --text-light: #FFFFFF;
  --text-dark: #333333;
  --background-light: #F8F8F8;
  --background-dark: #222222;
  --accent-color: #DC143C; /* Crimson for emphasis */
}

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

.page-index-review-fa88 h1, .page-index-review-fa88 h2, .page-index-review-fa88 h3 {
  color: var(--secondary-color);
  margin-bottom: 20px;
  font-weight: bold;
}

.page-index-review-fa88 h1 {
  font-size: 2.8em;
  color: var(--primary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-review-fa88 h2 {
  font-size: 2.2em;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 30px;
}

.page-index-review-fa88 h3 {
  font-size: 1.6em;
  color: var(--secondary-color);
}

.page-index-review-fa88 p {
  margin-bottom: 15px;
  font-size: 1.1em;
}

.page-index-review-fa88 a {
  color: var(--primary-color);
  text-decoration: none;
}

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

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

.page-index-review-fa88 .text-center {
  text-align: center;
}

/* HERO Section */
.page-index-review-fa88 .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(--secondary-color);
}

.page-index-review-fa88 .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-fa88 .hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-index-review-fa88 .hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-index-review-fa88 .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  color: var(--text-light);
}

.page-index-review-fa88 .hero-content h1 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-index-review-fa88 .hero-content p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: var(--text-light);
}

.page-index-review-fa88 .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-color);
  color: var(--secondary-color);
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-index-review-fa88 .cta-button:hover {
  background: var(--accent-color);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.page-index-review-fa88 .cta-small-button {
  display: inline-block;
  padding: 10px 25px;
  background: var(--primary-color);
  color: var(--secondary-color);
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.9em;
  font-weight: bold;
  margin-top: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-index-review-fa88 .cta-small-button:hover {
  background: var(--accent-color);
  color: var(--text-light);
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

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

.page-index-review-fa88 .quick-links {
  margin-top: 40px;
  padding: 30px;
  background-color: #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-index-review-fa88 .quick-links h3 {
  color: var(--secondary-color);
  margin-bottom: 20px;
  font-size: 1.8em;
  text-align: center;
}

.page-index-review-fa88 .quick-links ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.page-index-review-fa88 .quick-links li {
  background-color: var(--primary-color);
  border-radius: 5px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-index-review-fa88 .quick-links li a {
  display: block;
  padding: 12px 25px;
  color: var(--secondary-color);
  font-weight: bold;
  text-decoration: none;
  white-space: nowrap;
}

.page-index-review-fa88 .quick-links li:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.page-index-review-fa88 .games-section h2 {
  color: var(--primary-color);
}

.page-index-review-fa88 .games-section p {
  color: var(--text-light);
  text-align: center;
  margin-bottom: 40px;
}

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

.page-index-review-fa88 .game-card {
  background-color: #333333;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-index-review-fa88 .game-card h3 {
  color: var(--primary-color);
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-index-review-fa88 .game-card h3 a {
  color: var(--primary-color);
  text-decoration: none;
}

.page-index-review-fa88 .game-card h3 a:hover {
  text-decoration: underline;
  color: var(--accent-color);
}

.page-index-review-fa88 .game-card p {
  color: #cccccc;
  font-size: 0.95em;
  padding: 0 15px;
  margin-bottom: 20px;
  text-align: center;
}

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

.page-index-review-fa88 .promotions-section p {
  text-align: center;
  margin-bottom: 40px;
}

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

.page-index-review-fa88 .promo-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-review-fa88 .promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

.page-index-review-fa88 .promo-card h3 {
  color: var(--secondary-color);
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-index-review-fa88 .promo-card h3 a {
  color: var(--secondary-color);
  text-decoration: none;
}

.page-index-review-fa88 .promo-card h3 a:hover {
  text-decoration: underline;
  color: var(--primary-color);
}

.page-index-review-fa88 .promo-card p {
  color: var(--text-dark);
  font-size: 0.95em;
  padding: 0 15px;
  text-align: center;
}

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

.page-index-review-fa88 .security-section h2 {
  color: var(--primary-color);
}

.page-index-review-fa88 .security-section p {
  text-align: center;
  margin-bottom: 40px;
}

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

.page-index-review-fa88 .feature-item {
  background-color: #333333;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-review-fa88 .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.page-index-review-fa88 .feature-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: brightness(1.2); /* Make icons brighter on dark background */
}

.page-index-review-fa88 .feature-item h3 {
  color: var(--primary-color);
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-index-review-fa88 .feature-item p {
  color: #cccccc;
  font-size: 1em;
  text-align: center;
}

/* Guide Section */
.page-index-review-fa88 .guide-section {
  background-color: var(--background-light);
  padding: 60px 0;
}

.page-index-review-fa88 .guide-section p {
  text-align: center;
  margin-bottom: 40px;
}

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

.page-index-review-fa88 .step-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-review-fa88 .step-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-index-review-fa88 .step-icon {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-index-review-fa88 .step-item h3 {
  color: var(--secondary-color);
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-index-review-fa88 .step-item p {
  color: var(--text-dark);
  font-size: 1em;
  text-align: center;
}

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

.page-index-review-fa88 .faq-section h2 {
  color: var(--primary-color);
  margin-bottom: 40px;
}

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

.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #333333;
  color: var(--primary-color);
  border: 1px solid #444444;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.faq-question:hover {
  background: #444444;
  color: var(--text-light);
}

.faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: inherit; /* Inherit color from parent */
}

.faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  color: var(--primary-color);
  transition: transform 0.3s ease, color 0.3s ease;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #282828;
  color: #cccccc;
  border-radius: 0 0 8px 8px;
  font-size: 1.05em;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 20px 25px;
  border-top: 1px solid #444444;
}

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

.page-index-review-fa88 .blog-section p {
  text-align: center;
  margin-bottom: 40px;
}

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

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

.page-index-review-fa88 .article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

.page-index-review-fa88 .article-card h3 {
  padding: 15px 20px 0;
  font-size: 1.3em;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.page-index-review-fa88 .article-card h3 a {
  color: var(--secondary-color);
  text-decoration: none;
}

.page-index-review-fa88 .article-card h3 a:hover {
  text-decoration: underline;
  color: var(--primary-color);
}

.page-index-review-fa88 .article-card p {
  padding: 0 20px 15px;
  color: var(--text-dark);
  font-size: 0.95em;
  text-align: left;
}

.page-index-review-fa88 .article-date {
  display: block;
  padding: 0 20px 20px;
  font-size: 0.85em;
  color: #777777;
}

/* Conclusion Section */
.page-index-review-fa88 .conclusion-section {
  background-color: var(--background-dark);
  color: var(--text-light);
  padding: 60px 0;
  text-align: center;
}

.page-index-review-fa88 .conclusion-section h2 {
  color: var(--primary-color);
}

.page-index-review-fa88 .conclusion-section p {
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #cccccc;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-review-fa88 h1 {
    font-size: 2.4em;
  }
  .page-index-review-fa88 h2 {
    font-size: 1.8em;
  }
  .page-index-review-fa88 h3 {
    font-size: 1.4em;
  }
  .page-index-review-fa88 .quick-links ul {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .page-index-review-fa88 .hero-section {
    padding: 40px 15px;
  }
  .page-index-review-fa88 .hero-image img {
    border-radius: 4px;
  }
  .page-index-review-fa88 .hero-content h1 {
    font-size: 2em;
  }
  .page-index-review-fa88 .hero-content p {
    font-size: 1em;
  }
  .page-index-review-fa88 .cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-index-review-fa88 h2 {
    font-size: 1.6em;
  }
  .page-index-review-fa88 h3 {
    font-size: 1.2em;
  }
  .page-index-review-fa88 .quick-links ul {
    gap: 10px;
  }
  .page-index-review-fa88 .quick-links li a {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-index-review-fa88 .game-categories, .page-index-review-fa88 .promo-grid, .page-index-review-fa88 .security-features, .page-index-review-fa88 .guide-steps, .page-index-review-fa88 .article-grid {
    grid-template-columns: 1fr;
  }
  .faq-question {
    padding: 15px 20px;
  }
  .faq-question h3 {
    font-size: 1.1em;
  }
  .faq-toggle {
    font-size: 1.5em;
  }
  .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-index-review-fa88 h1 {
    font-size: 1.8em;
  }
  .page-index-review-fa88 h2 {
    font-size: 1.4em;
  }
  .page-index-review-fa88 h3 {
    font-size: 1.1em;
  }
  .page-index-review-fa88 .cta-button {
    padding: 10px 25px;
    font-size: 0.9em;
  }
  .page-index-review-fa88 .quick-links li a {
    font-size: 0.85em;
  }
  .page-index-review-fa88 .feature-icon, .page-index-review-fa88 .step-icon {
    width: 80px;
    height: 80px;
  }
}