:root {
  --primary-color: #007BFF;
  --secondary-color: #FFC107;
  --dark-bg-1: #0d0d0d;
  --text-light: #ffffff;
  --text-dark: #333333;
  --gray-light: #f1f3f5;
  --border-color: #e4e4e4;
}

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

.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;
  padding-top: 180px; /* Desktop: Adjust based on fixed header height */
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--text-light);
}

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

.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: 42px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--text-light);
  line-height: 1.2;
}

.page-index-review-fa88__hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.6;
  color: var(--text-light);
}

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

.page-index-review-fa88__cta-button:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-index-review-fa88__game-leaderboard-section {
  padding: 60px 20px;
  background: var(--gray-light);
  text-align: center;
}

.page-index-review-fa88__page-title {
  font-size: 36px;
  font-weight: bold;
  color: var(--text-dark);
  margin-bottom: 40px;
  line-height: 1.3;
}

.page-index-review-fa88__game-leaderboard {
  display: flex;
  flex-direction: column;
  gap: 25px;
  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.08);
  padding: 25px;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-dark);
}

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

.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: 100%;
  position: relative;
}

.page-index-review-fa88__game-card-segment + .page-index-review-fa88__game-card-segment::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  bottom: 15%;
  width: 1px;
  background-color: var(--border-color);
}

.page-index-review-fa88__segment-1 {
  width: 140px;
  flex-shrink: 0;
  padding-left: 0;
}

.page-index-review-fa88__rank-badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
  color: #ffffff;
  position: absolute;
  top: 5px;
  left: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-index-review-fa88__rank-1 {
  background: linear-gradient(135deg, #FFD700, #FFA500);
}

.page-index-review-fa88__rank-2 {
  background: linear-gradient(135deg, #C0C0C0, #A0A0A0);
}

.page-index-review-fa88__rank-3 {
  background: linear-gradient(135deg, #CD7F32, #B87333);
}

.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: 100px;
  height: auto;
  display: block;
  border-radius: 8px;
  margin-top: 10px; /* Space for rank badge */
}

.page-index-review-fa88__segment-2 {
  flex: 1;
}

.page-index-review-fa88__game-name {
  font-size: 24px;
  font-weight: bold;
  color: #000000;
  margin-bottom: 8px;
  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: var(--primary-color);
  text-decoration: underline;
}

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

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

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

.page-index-review-fa88__segment-3 {
  width: 180px;
  flex-shrink: 0;
}

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

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

.page-index-review-fa88__rating-number {
  font-size: 18px;
  font-weight: bold;
  color: var(--text-dark);
}

.page-index-review-fa88__promotion-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.page-index-review-fa88__promotion-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.page-index-review-fa88__promotion-link:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.page-index-review-fa88__hot-badge {
  background: #dc3545;
  color: #ffffff;
  font-size: 12px;
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: bold;
}

.page-index-review-fa88__segment-4 {
  width: 220px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-right: 0;
}

.page-index-review-fa88__cta-button {
  display: block;
  width: 100%;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: none;
}

.page-index-review-fa88__btn-download {
  background: linear-gradient(135deg, #007BFF, #0056b3);
  color: #ffffff;
}

.page-index-review-fa88__btn-download:hover {
  background: linear-gradient(135deg, #0056b3, #007BFF);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-index-review-fa88__btn-review {
  background: linear-gradient(135deg, #FFC107, #e0a800);
  color: var(--text-dark);
}

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

/* Brand Review Content Section */
.page-index-review-fa88__review-content-section {
  padding: 40px 20px;
  background: var(--gray-light);
}

.page-index-review-fa88__review-content-container {
  max-width: 1400px; /* Wider than leaderboard */
  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;
}

.page-index-review-fa88__review-content-card h2 {
  font-size: 28px;
  font-weight: bold;
  color: var(--text-dark);
  margin-bottom: 24px;
  text-align: center;
}

.page-index-review-fa88__review-content-card h3 {
  font-size: 20px;
  font-weight: bold;
  color: var(--text-dark);
  margin-top: 24px;
  margin-bottom: 12px;
}

.page-index-review-fa88__review-body {
  color: var(--text-dark);
  line-height: 1.7;
}

.page-index-review-fa88__review-body p {
  margin-bottom: 16px;
  font-size: 16px;
}

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

.page-index-review-fa88__review-body a:hover {
  text-decoration: underline;
}

/* Homepage Introduction Section (Module 2) */
.page-index-review-fa88__introduction-section {
  padding: 60px 20px;
  background: #f8f8f8;
  color: var(--text-dark);
  text-align: center;
}

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

.page-index-review-fa88__introduction-section h2 {
  font-size: 32px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 30px;
}

.page-index-review-fa88__intro-content {
  text-align: left;
  line-height: 1.6;
  font-size: 16px;
}

.page-index-review-fa88__intro-content h3 {
  font-size: 22px;
  font-weight: bold;
  color: var(--text-dark);
  margin-top: 25px;
  margin-bottom: 15px;
}

.page-index-review-fa88__intro-content p,
.page-index-review-fa88__intro-content ul {
  margin-bottom: 15px;
}

.page-index-review-fa88__intro-content ul {
  list-style: disc inside;
  padding-left: 20px;
}

.page-index-review-fa88__intro-content li {
  margin-bottom: 8px;
}

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

.page-index-review-fa88__intro-content a:hover {
  text-decoration: underline;
}

/* Core Games/Services Section (Module 3) */
.page-index-review-fa88__core-games-section {
  padding: 60px 20px;
  background: var(--primary-color); /* Darker background */
  color: var(--text-light);
  text-align: center;
}

.page-index-review-fa88__core-games-container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-index-review-fa88__core-games-section h2 {
  font-size: 32px;
  font-weight: bold;
  color: var(--text-light);
  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.page-index-review-fa88__light-bg {
  background: #ffffff;
  color: var(--text-dark);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-index-review-fa88__game-card.page-index-review-fa88__light-bg h3 {
  font-size: 22px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.page-index-review-fa88__game-card.page-index-review-fa88__light-bg p {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.page-index-review-fa88__game-category-link {
  color: var(--primary-color);
  text-decoration: none;
}

.page-index-review-fa88__game-category-link:hover {
  text-decoration: underline;
}

.page-index-review-fa88__btn-primary {
  background: var(--primary-color);
  color: #ffffff;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
}

.page-index-review-fa88__btn-primary:hover {
  background: var(--secondary-color);
}

/* Promotions Section (Module 4) */
.page-index-review-fa88__promotions-section {
  padding: 60px 20px;
  background: var(--gray-light);
  color: var(--text-dark);
  text-align: center;
}

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

.page-index-review-fa88__promotions-section h2 {
  font-size: 32px;
  font-weight: bold;
  color: var(--text-dark);
  margin-bottom: 40px;
}

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

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

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

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

.page-index-review-fa88__promo-item h3 {
  font-size: 22px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.page-index-review-fa88__promo-item p {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.page-index-review-fa88__btn-secondary {
  background: var(--secondary-color);
  color: var(--text-dark);
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
}

.page-index-review-fa88__btn-secondary:hover {
  background: var(--primary-color);
  color: var(--text-light);
}

/* Latest Blog Content Section (Module 5) */
.page-index-review-fa88__blog-section {
  padding: 60px 20px;
  background: var(--primary-color); /* Darker background */
  color: var(--text-light);
  text-align: center;
}

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

.page-index-review-fa88__blog-section h2 {
  font-size: 32px;
  font-weight: bold;
  color: var(--text-light);
  margin-bottom: 40px;
}

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

.page-index-review-fa88__blog-post.page-index-review-fa88__light-bg {
  background: #ffffff;
  color: var(--text-dark);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.page-index-review-fa88__blog-post.page-index-review-fa88__light-bg:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

.page-index-review-fa88__blog-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-index-review-fa88__blog-content h3 {
  font-size: 20px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 10px;
}

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

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

.page-index-review-fa88__blog-content p {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-index-review-fa88__blog-date {
  font-size: 13px;
  color: #666666;
  margin-top: auto;
}

.page-index-review-fa88__copyright {
  text-align: center;
  padding: 20px;
  font-size: 14px;
  color: var(--text-dark);
  background-color: #ffffff;
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-review-fa88__hero-content h1 {
    font-size: 36px;
  }
  .page-index-review-fa88__hero-content p {
    font-size: 16px;
  }
  .page-index-review-fa88__page-title {
    font-size: 30px;
  }
  .page-index-review-fa88__game-name {
    font-size: 20px;
  }
  .page-index-review-fa88__game-description {
    font-size: 13px;
  }
  .page-index-review-fa88__game-icon {
    max-width: 80px;
  }
  .page-index-review-fa88__segment-1 {
    width: 120px;
  }
  .page-index-review-fa88__segment-3 {
    width: 150px;
  }
  .page-index-review-fa88__segment-4 {
    width: 180px;
  }
  .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__introduction-section h2,
  .page-index-review-fa88__core-games-section h2,
  .page-index-review-fa88__promotions-section h2,
  .page-index-review-fa88__blog-section h2 {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .page-index-review-fa88__hero-section {
    padding-top: 160px !important; /* Mobile: Adjust based on fixed header height */
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-index-review-fa88__hero-image img {
    border-radius: 4px;
  }
  .page-index-review-fa88__hero-content h1 {
    font-size: 28px;
  }
  .page-index-review-fa88__hero-content p {
    font-size: 15px;
  }
  .page-index-review-fa88__cta-button {
    padding: 12px 30px;
    font-size: 16px;
  }

  .page-index-review-fa88__page-title {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .page-index-review-fa88__game-card {
    flex-direction: column;
    align-items: stretch;
    padding: 15px;
  }
  .page-index-fa88__game-card-segment {
    padding: 10px 0;
    width: 100% !important;
    border-left: none !important;
    border-bottom: 1px solid var(--border-color);
  }
  .page-index-review-fa88__game-card-segment:last-child {
    border-bottom: none;
  }
  .page-index-review-fa88__game-card-segment + .page-index-review-fa88__game-card-segment::before {
    display: none;
  }
  .page-index-review-fa88__segment-1 {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding-left: 10px;
    padding-right: 10px;
    position: relative;
  }
  .page-index-review-fa88__rank-badge {
    position: static;
    margin-right: 10px;
  }
  .page-index-review-fa88__game-icon {
    max-width: 80px;
    margin-top: 0;
  }
  .page-index-review-fa88__segment-2,
  .page-index-review-fa88__segment-3,
  .page-index-review-fa88__segment-4 {
    padding-left: 10px;
    padding-right: 10px;
  }
  .page-index-review-fa88__game-name {
    font-size: 20px;
  }
  .page-index-review-fa88__game-description {
    font-size: 13px;
    line-height: 1.3;
  }
  .page-index-review-fa88__game-rating {
    justify-content: center;
  }
  .page-index-review-fa88__promotion-text {
    justify-content: center;
  }
  .page-index-review-fa88__segment-4 {
    gap: 8px;
  }
  .page-index-review-fa88__btn-download,
  .page-index-review-fa88__btn-review {
    font-size: 14px;
    padding: 10px 15px;
    white-space: normal;
    word-wrap: break-word;
    min-width: auto;
  }

  .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: 24px;
  }
  .page-index-review-fa88__review-content-card h3 {
    font-size: 18px;
  }
  .page-index-review-fa88__review-body p {
    font-size: 15px;
  }

  .page-index-review-fa88__introduction-section,
  .page-index-review-fa88__core-games-section,
  .page-index-review-fa88__promotions-section,
  .page-index-review-fa88__blog-section {
    padding: 40px 15px;
  }
  .page-index-review-fa88__introduction-section h2,
  .page-index-review-fa88__core-games-section h2,
  .page-index-review-fa88__promotions-section h2,
  .page-index-review-fa88__blog-section h2 {
    font-size: 26px;
    margin-bottom: 25px;
  }
  .page-index-review-fa88__intro-content h3 {
    font-size: 20px;
  }
  .page-index-review-fa88__intro-content p,
  .page-index-review-fa88__intro-content li {
    font-size: 15px;
  }
  .page-index-review-fa88__game-categories,
  .page-index-review-fa88__promo-list,
  .page-index-review-fa88__blog-list {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-index-review-fa88__game-category-image,
  .page-index-review-fa88__promo-image,
  .page-index-review-fa88__blog-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-index-review-fa88__blog-post.page-index-review-fa88__light-bg {
    padding-bottom: 20px; /* Ensure space for date */
  }
  .page-index-review-fa88__blog-image {
    height: 180px;
  }

  /* Ensure all containers with images are responsive */
  .page-index-review-fa88__hero-container,
  .page-index-review-fa88__game-leaderboard-section,
  .page-index-review-fa88__review-content-container,
  .page-index-review-fa88__introduction-container,
  .page-index-review-fa88__core-games-container,
  .page-index-review-fa88__promotions-container,
  .page-index-review-fa88__blog-container,
  .page-index-review-fa88__game-card,
  .page-index-review-fa88__promo-item,
  .page-index-review-fa88__blog-post.page-index-review-fa88__light-bg {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-index-review-fa88__game-leaderboard-section,
  .page-index-review-fa88__introduction-section,
  .page-index-review-fa88__core-games-section,
  .page-index-review-fa88__promotions-section,
  .page-index-review-fa88__blog-section {
    padding-left: 0;
    padding-right: 0;
  }
}