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

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

/* Fixed navigation bar spacing */
.page-index-review-fa88__hero-section {
  padding-top: 180px; /* Adjust for fixed header */
}

@media (max-width: 768px) {
  .page-index-review-fa88__hero-section {
    padding-top: 140px; /* Adjust for mobile fixed header */
  }
}

/* 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-bottom: 60px;
  background-color: #0A2463; /* Main brand color for hero background */
  color: #ffffff;
}

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

.page-index-review-fa88__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-index-review-fa88__hero-content h1 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.page-index-review-fa88__hero-content p {
  font-size: 20px;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-index-review-fa88__cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: linear-gradient(135deg, #FFD700, #FFA500); /* Auxiliary color gradient */
  color: #0A2463; /* Text color contrasting with gold */
  text-decoration: none;
  border-radius: 10px;
  font-size: 20px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  border: none;
}

.page-index-review-fa88__cta-button:hover {
  background: linear-gradient(135deg, #FFA500, #FFD700);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .page-index-review-fa88__hero-section {
    padding-bottom: 40px;
  }
  .page-index-review-fa88__hero-content h1 {
    font-size: 32px;
  }
  .page-index-review-fa88__hero-content p {
    font-size: 16px;
  }
  .page-index-review-fa88__cta-button {
    padding: 15px 30px;
    font-size: 18px;
  }
  .page-index-review-fa88__hero-image img {
    border-radius: 4px;
  }
}

/* Game Leaderboard Section */
.page-index-review-fa88__game-leaderboard-section {
  background-color: #f1f3f5; /* Light background for contrast */
  padding: 60px 20px;
}

.page-index-review-fa88__page-title {
  font-size: 36px;
  font-weight: bold;
  color: #0A2463; /* Dark text for light background */
  text-align: center;
  margin-bottom: 40px;
}

.page-index-review-fa88__game-leaderboard {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-index-review-fa88__game-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 20px;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-index-review-fa88__game-card-segment {
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100px; /* Fixed height for visual alignment */
}

.page-index-review-fa88__segment-1 {
  flex-basis: 150px; /* Fixed width for icon and badge */
  min-width: 150px;
  border-right: 1px solid #e4e4e4;
  padding-left: 0;
  padding-right: 20px;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

.page-index-review-fa88__segment-2 {
  flex: 2; /* Main content column, takes more space */
  border-right: 1px solid #e4e4e4;
}

.page-index-review-fa88__segment-3 {
  flex-basis: 180px; /* Fixed width for rating and promo text */
  min-width: 180px;
  border-right: 1px solid #e4e4e4;
}

.page-index-review-fa88__segment-4 {
  flex-basis: 220px; /* Fixed width for buttons */
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-right: 0;
}

.page-index-review-fa88__rank-badge {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: bold;
  font-size: 18px;
  margin-right: 15px;
  flex-shrink: 0;
}

.page-index-review-fa88__rank-1 {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
}

.page-index-review-fa88__rank-2 {
  background: linear-gradient(135deg, #C0C0C0, #A0A0A0);
  box-shadow: 0 2px 8px rgba(192, 192, 192, 0.4);
}

.page-index-review-fa88__rank-3 {
  background: linear-gradient(135deg, #CD7F32, #B87333);
  box-shadow: 0 2px 8px rgba(205, 127, 50, 0.4);
}

.page-index-review-fa88__rank-badge:not(.page-index-review-fa88__rank-1):not(.page-index-review-fa88__rank-2):not(.page-index-review-fa88__rank-3) {
  background: linear-gradient(135deg, #ff6b35, #ff8c42);
}

.page-index-review-fa88__game-icon {
  max-width: 80px;
  height: auto;
  border-radius: 8px;
  object-fit: contain;
  flex-shrink: 0;
}

.page-index-review-fa88__game-name {
  font-size: 24px;
  font-weight: bold;
  color: #000000;
  margin: 0 0 8px 0;
  text-transform: uppercase;
  text-align: center;
}

.page-index-review-fa88__game-name-link {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.page-index-review-fa88__game-name-link:hover {
  color: #0A2463; /* Main brand color on hover */
  text-decoration: underline;
}

.page-index-review-fa88__game-description {
  font-size: 14px;
  color: #000000;
  font-weight: bold;
  margin: 0;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.page-index-review-fa88__game-description a {
  color: #0066cc;
  font-weight: bold;
  text-decoration: none;
}

.page-index-review-fa88__game-description a:hover {
  color: #004499;
  text-decoration: underline;
}

.page-index-review-fa88__game-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.page-index-review-fa88__stars {
  color: #FFD700;
  font-size: 18px;
  margin-right: 5px;
  font-weight: bold;
}

.page-index-review-fa88__rating-number {
  font-size: 16px;
  font-weight: bold;
  color: #333333;
}

.page-index-review-fa88__promotion-text {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.page-index-review-fa88__promotion-link {
  color: #0066cc;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-index-review-fa88__promotion-link:hover {
  color: #004499;
}

.page-index-review-fa88__hot-badge {
  background: #dc3545;
  color: #ffffff;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 4px;
  margin-left: 8px;
  font-weight: bold;
  text-transform: uppercase;
}

.page-index-review-fa88__cta-button {
  display: block;
  width: 100%;
  padding: 12px 15px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  border: none;
  white-space: normal;
  word-wrap: break-word;
  min-width: auto;
}

.page-index-review-fa88__btn-download {
  background: linear-gradient(135deg, #0A2463, #1e3a70); /* Darker shade of primary */
  color: #ffffff;
}

.page-index-review-fa88__btn-download:hover {
  background: linear-gradient(135deg, #1e3a70, #0A2463);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-index-review-fa88__btn-review {
  background: linear-gradient(135deg, #FFD700, #FFA500); /* Auxiliary color gradient */
  color: #0A2463; /* Text color contrasting with gold */
}

.page-index-review-fa88__btn-review:hover {
  background: linear-gradient(135deg, #FFA500, #FFD700);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 992px) {
  .page-index-review-fa88__game-card {
    flex-wrap: wrap;
    padding: 15px;
  }
  .page-index-review-fa88__game-card-segment {
    width: 100%;
    border-right: none;
    padding: 10px 0;
    height: auto;
  }
  .page-index-review-fa88__segment-1 {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border-right: none;
    border-bottom: 1px solid #e4e4e4;
    padding-bottom: 15px;
    margin-bottom: 15px;
    width: 100%;
    min-width: unset;
    flex-basis: auto;
  }
  .page-index-review-fa88__game-icon {
    max-width: 60px;
    margin-left: 10px;
  }
  .page-index-review-fa88__rank-badge {
    margin-right: 10px;
  }
  .page-index-review-fa88__segment-2,
  .page-index-review-fa88__segment-3,
  .page-index-review-fa88__segment-4 {
    border-right: none;
    width: 100%;
    flex-basis: auto;
    min-width: unset;
  }
  .page-index-review-fa88__segment-2 {
    border-bottom: 1px solid #e4e4e4;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  .page-index-review-fa88__segment-3 {
    border-bottom: 1px solid #e4e4e4;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  .page-index-review-fa88__segment-4 {
    max-width: 100%;
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }
  .page-index-review-fa88__btn-download,
  .page-index-review-fa88__btn-review {
    max-width: 100%;
    width: 100%;
    font-size: 12px;
    padding: 8px 12px;
    white-space: normal;
    word-wrap: break-word;
    min-width: auto;
  }
  .page-index-review-fa88__game-name {
    font-size: 20px;
  }
  .page-index-review-fa88__game-description {
    font-size: 13px;
  }
  .page-index-review-fa88__page-title {
    font-size: 28px;
  }
}

/* Brand Review Content Section */
.page-index-review-fa88__review-content-section {
  padding: 40px 20px;
  background: #f1f3f5; /* Light background for contrast */
}

.page-index-review-fa88__review-content-container {
  max-width: 1400px; /* Wider than leaderboard for better readability */
  margin: 0 auto;
}

.page-index-review-fa88__review-content-card {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 40px;
  color: #333333; /* Dark text for light background */
}

.page-index-review-fa88__review-content-card h2 {
  font-size: 32px;
  font-weight: bold;
  color: #0A2463;
  margin-bottom: 24px;
  text-align: center;
}

.page-index-review-fa88__review-content-card h3 {
  font-size: 22px;
  font-weight: bold;
  color: #0A2463;
  margin-top: 24px;
  margin-bottom: 12px;
}

.page-index-review-fa88__review-body p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.7;
  color: #333333;
}

.page-index-review-fa88__review-body strong {
  color: #0A2463;
}

@media (max-width: 768px) {
  .page-index-review-fa88__review-content-section {
    padding: 20px 15px;
  }
  .page-index-review-fa88__review-content-card {
    padding: 24px 20px;
  }
  .page-index-review-fa88__review-content-card h2 {
    font-size: 26px;
  }
  .page-index-review-fa88__review-content-card h3 {
    font-size: 19px;
  }
  .page-index-review-fa88__review-body p {
    font-size: 15px;
  }
}

/* Homepage Intro Section */
.page-index-review-fa88__intro-section {
  padding: 60px 0;
  text-align: center;
  background-color: #f1f3f5; /* Light background */
  color: #333333; /* Dark text for light background */
}

.page-index-review-fa88__intro-section h2 {
  font-size: 36px;
  font-weight: bold;
  color: #0A2463;
  margin-bottom: 20px;
}

.page-index-review-fa88__intro-section p {
  font-size: 18px;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #555555;
}

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

.page-index-review-fa88__feature-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-review-fa88__feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-index-review-fa88__feature-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-index-review-fa88__feature-item h3 {
  font-size: 22px;
  font-weight: bold;
  color: #0A2463;
  margin-bottom: 10px;
}

.page-index-review-fa88__feature-item p {
  font-size: 15px;
  color: #666666;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .page-index-review-fa88__intro-section h2 {
    font-size: 28px;
  }
  .page-index-review-fa88__intro-section p {
    font-size: 16px;
  }
  .page-index-review-fa88__intro-features {
    grid-template-columns: 1fr;
  }
}

/* Core Games/Services Section */
.page-index-review-fa88__games-section {
  padding: 60px 0;
  text-align: center;
  background-color: #0A2463; /* Dark background */
  color: #ffffff; /* Light text for dark background */
}

.page-index-review-fa88__games-section h2 {
  font-size: 36px;
  font-weight: bold;
  color: #FFD700; /* Auxiliary color for contrast */
  margin-bottom: 20px;
}

.page-index-review-fa88__games-section p {
  font-size: 18px;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #e0e0e0;
}

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

.page-index-review-fa88__game-item {
  background: #1e3a70; /* Slightly lighter dark background */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-index-review-fa88__game-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-index-review-fa88__game-item h3 {
  font-size: 24px;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-index-review-fa88__game-item p {
  font-size: 16px;
  color: #c0c0c0;
  margin-bottom: 20px;
}

.page-index-review-fa88__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  background: #FFD700;
  color: #0A2463;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
}

.page-index-review-fa88__btn-secondary:hover {
  background: #FFA500;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .page-index-review-fa88__games-section h2 {
    font-size: 28px;
  }
  .page-index-review-fa88__games-section p {
    font-size: 16px;
  }
  .page-index-review-fa88__games-grid {
    grid-template-columns: 1fr;
  }
  .page-index-review-fa88__game-img {
    height: 180px;
  }
}

/* Promotions Section */
.page-index-review-fa88__promotions-section {
  padding: 60px 0;
  text-align: center;
  background-color: #f1f3f5; /* Light background */
  color: #333333; /* Dark text for light background */
}

.page-index-review-fa88__promotions-section h2 {
  font-size: 36px;
  font-weight: bold;
  color: #0A2463;
  margin-bottom: 20px;
}

.page-index-review-fa88__promotions-section p {
  font-size: 18px;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #555555;
}

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

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

.page-index-review-fa88__promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-index-review-fa88__promo-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-index-review-fa88__promo-card h3 {
  font-size: 22px;
  font-weight: bold;
  color: #0A2463;
  margin-bottom: 10px;
}

.page-index-review-fa88__promo-card p {
  font-size: 15px;
  color: #666666;
  margin-bottom: 20px;
}

.page-index-review-fa88__btn-primary {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(135deg, #0A2463, #1e3a70);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
}

.page-index-review-fa88__btn-primary:hover {
  background: linear-gradient(135deg, #1e3a70, #0A2463);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .page-index-review-fa88__promotions-section h2 {
    font-size: 28px;
  }
  .page-index-review-fa88__promotions-section p {
    font-size: 16px;
  }
  .page-index-review-fa88__promotions-grid {
    grid-template-columns: 1fr;
  }
  .page-index-review-fa88__promo-img {
    height: 150px;
  }
}

/* Blog Section */
.page-index-review-fa88__blog-section {
  padding: 60px 0;
  text-align: center;
  background-color: #0A2463; /* Dark background */
  color: #ffffff; /* Light text for dark background */
}

.page-index-review-fa88__blog-section h2 {
  font-size: 36px;
  font-weight: bold;
  color: #FFD700; /* Auxiliary color for contrast */
  margin-bottom: 20px;
}

.page-index-review-fa88__blog-section p {
  font-size: 18px;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #e0e0e0;
}

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

.page-index-review-fa88__blog-card {
  background: #1e3a70; /* Slightly lighter dark background */
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

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

.page-index-review-fa88__blog-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.page-index-review-fa88__blog-content {
  padding: 25px;
}

.page-index-review-fa88__blog-content h3 {
  font-size: 20px;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-index-review-fa88__blog-title-link {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-index-review-fa88__blog-title-link:hover {
  color: #FFA500;
  text-decoration: underline;
}

.page-index-review-fa88__blog-content p {
  font-size: 15px;
  color: #c0c0c0;
  margin-bottom: 15px;
}

.page-index-review-fa88__read-more {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-index-review-fa88__read-more:hover {
  color: #FFA500;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .page-index-review-fa88__blog-section h2 {
    font-size: 28px;
  }
  .page-index-review-fa88__blog-section p {
    font-size: 16px;
  }
  .page-index-review-fa88__blog-grid {
    grid-template-columns: 1fr;
  }
  .page-index-review-fa88__blog-img {
    height: 180px;
  }
  .page-index-review-fa88__blog-content h3 {
    font-size: 18px;
  }
  .page-index-review-fa88__blog-content p {
    font-size: 14px;
  }
}