:root {
  --primary-color: #FFD700;
  --secondary-color: #DC143C;
  --dark-background: #121212;
  --light-text-color: #ffffff;
  --dark-text-color: #333333;
  --card-background: #ffffff;
  --border-color: #e4e4e4;
  --shadow-color: rgba(0, 0, 0, 0.1);
  --hot-badge-color: #DC143C;
}

.page-index-review-one88 {
  font-family: 'Arial', sans-serif;
  color: var(--light-text-color); /* Default text color for sections directly on body background */
  background-color: var(--dark-background); /* Inherited from body in shared.css, but good to define for consistency */
}

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

/* Fixed header padding */
.page-index-review-one88__hero-section {
  padding-top: 180px; /* Adjust for fixed header */
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-bottom: 60px;
  background-color: #1a1a1a; /* A slightly lighter dark background for the hero */
}

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

.page-index-review-one88__hero-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-one88__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  color: var(--light-text-color);
}

.page-index-review-one88__hero-title {
  font-size: 42px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-review-one88__hero-description {
  font-size: 20px;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: var(--light-text-color);
}

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

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

/* Game Leaderboard Section */
.page-index-review-one88__game-leaderboard-section {
  background: #f1f3f5; /* Light background for leaderboard */
  padding: 60px 20px;
  color: var(--dark-text-color);
}

.page-index-review-one88__page-title {
  font-size: 36px;
  font-weight: bold;
  color: var(--dark-text-color);
  text-align: center;
  margin-bottom: 40px;
}

.page-index-review-one88__game-leaderboard {
  max-width: 1400px; /* Wider for better readability of 4 segments */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-index-review-one88__game-card {
  background: var(--card-background);
  border-radius: 8px;
  box-shadow: 0 2px 8px var(--shadow-color);
  padding: 20px;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-review-one88__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.page-index-review-one88__game-card-segment {
  padding: 0 20px;
  position: relative;
  height: 100%; /* Ensure segments take full height for vertical lines */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.page-index-review-one88__game-card-segment:not(:first-child)::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background-color: var(--border-color);
}

.page-index-review-one88__segment-1 {
  min-width: 120px;
  max-width: 150px;
  padding-left: 0;
  flex-shrink: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

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

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

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

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

.page-index-review-one88__rank-badge:not(.page-index-review-one88__rank-1):not(.page-index-review-one88__rank-2):not(.page-index-review-one88__rank-3) {
  background: linear-gradient(135deg, #ff6b35, #ff8c42); /* Orange for 4+ */
}

.page-index-review-one88__game-icon {
  max-width: 100px;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  margin-top: 15px; /* Adjust if badge position is absolute */
}

.page-index-review-one88__segment-2 {
  flex: 1;
  text-align: center;
}

.page-index-review-one88__game-name {
  font-size: 24px;
  font-weight: bold;
  color: var(--dark-text-color);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.page-index-review-one88__game-name-link {
  color: var(--dark-text-color);
  text-decoration: none;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.page-index-review-one88__game-name-link:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.page-index-review-one88__game-description {
  font-size: 14px;
  color: var(--dark-text-color);
  font-weight: bold;
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

.page-index-review-one88__segment-3 {
  min-width: 150px;
  text-align: center;
  flex-shrink: 0;
}

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

.page-index-review-one88__stars {
  color: var(--primary-color);
  font-size: 18px;
  margin-right: 5px;
  font-weight: bold;
}

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

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

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

.page-index-review-one88__promotion-link:hover {
  color: #004499;
  text-decoration: underline;
}

.page-index-review-one88__hot-badge {
  background: var(--hot-badge-color);
  color: var(--light-text-color);
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 3px;
  font-weight: bold;
  text-transform: uppercase;
}

.page-index-review-one88__segment-4 {
  min-width: 180px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
  align-items: stretch; /* Make buttons fill width */
}

.page-index-review-one88__btn-download,
.page-index-review-one88__btn-review {
  display: block;
  width: 100%;
  padding: 12px 15px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  color: var(--dark-text-color);
  background: var(--primary-color);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  border: none;
}

.page-index-review-one88__btn-review {
  background: #e0e0e0;
  color: var(--dark-text-color);
}

.page-index-review-one88__btn-download:hover {
  background: #e6b800;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
  transform: translateY(-1px);
}

.page-index-review-one88__btn-review:hover {
  background: #d0d0d0;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
  transform: translateY(-1px);
}

/* Brand Review Content Section */
.page-index-review-one88__review-content-section {
  padding: 60px 20px;
  background: var(--dark-background); /* Dark background for this section */
  color: var(--light-text-color);
}

.page-index-review-one88__review-content-container {
  max-width: 1400px; /* Wider for better reading flow */
  margin: 0 auto;
}

.page-index-review-one88__review-content-card {
  background: var(--card-background);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 40px;
  color: var(--dark-text-color);
}

.page-index-review-one88__review-title {
  font-size: 32px;
  font-weight: bold;
  color: var(--dark-text-color);
  margin-bottom: 24px;
  text-align: center;
  line-height: 1.3;
}

.page-index-review-one88__review-subtitle {
  font-size: 24px;
  font-weight: bold;
  color: var(--dark-text-color);
  margin-top: 30px;
  margin-bottom: 15px;
  line-height: 1.4;
}

.page-index-review-one88__review-body p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark-text-color);
}

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

.page-index-review-one88__review-body p a:hover {
  color: #004499;
  text-decoration: underline;
}

/* General Section Styles for Modules 2-5 */
.page-index-review-one88__introduction-section,
.page-index-review-one88__core-games-section,
.page-index-review-one88__promotions-section,
.page-index-review-one88__latest-blog-section {
  padding: 60px 20px;
}

.page-index-review-one88__section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: var(--light-text-color);
}

.page-index-review-one88__section-description {
  font-size: 18px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
  color: #cccccc;
}

/* Module 2: Introduction */
.page-index-review-one88__introduction-section {
  background: var(--dark-background);
  color: var(--light-text-color);
}

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

.page-index-review-one88__intro-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

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

.page-index-review-one88__intro-heading {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.page-index-review-one88__intro-text {
  font-size: 16px;
  line-height: 1.6;
  color: #f0f0f0;
}

.page-index-review-one88__intro-cta {
  margin-top: 40px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

/* Module 3: Core Games */
.page-index-review-one88__core-games-section {
  background: #1a1a1a;
  color: var(--light-text-color);
}

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

.page-index-review-one88__game-card-category {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  text-align: center;
  padding-bottom: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-index-review-one88__game-category-title {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 10px;
  padding: 0 20px;
}

.page-index-review-one88__game-category-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #f0f0f0;
  margin-bottom: 20px;
  padding: 0 20px;
}

.page-index-review-one88__game-category-cta {
  margin-top: 15px;
  padding: 10px 25px;
  font-size: 16px;
}

/* Module 4: Promotions */
.page-index-review-one88__promotions-section {
  background: var(--dark-background);
  color: var(--light-text-color);
}

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

.page-index-review-one88__promo-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  text-align: center;
  padding-bottom: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-index-review-one88__promo-title {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 10px;
  padding: 0 20px;
}

.page-index-review-one88__promo-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #f0f0f0;
  margin-bottom: 20px;
  padding: 0 20px;
}

.page-index-review-one88__promo-cta {
  margin-top: 15px;
  padding: 10px 25px;
  font-size: 16px;
}

/* Module 5: Latest Blog Content */
.page-index-review-one88__latest-blog-section {
  background: #1a1a1a;
  color: var(--light-text-color);
}

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

.page-index-review-one88__blog-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  padding-bottom: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-index-review-one88__blog-title {
  font-size: 22px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 10px;
  padding: 0 20px;
}

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

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

.page-index-review-one88__blog-excerpt {
  font-size: 16px;
  line-height: 1.6;
  color: #f0f0f0;
  margin-bottom: 15px;
  padding: 0 20px;
}

.page-index-review-one88__blog-date {
  font-size: 14px;
  color: #aaaaaa;
  display: block;
  padding: 0 20px;
}

.page-index-review-one88__view-all-button-container {
  text-align: center;
  margin-top: 50px;
}

.page-index-review-one88__view-all-button {
  padding: 12px 30px;
  font-size: 16px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-review-one88__hero-title {
    font-size: 36px;
  }
  .page-index-review-one88__hero-description {
    font-size: 18px;
  }
  .page-index-review-one88__page-title {
    font-size: 32px;
  }
  .page-index-review-one88__review-title {
    font-size: 28px;
  }
  .page-index-review-one88__review-subtitle {
    font-size: 22px;
  }
  .page-index-review-one88__section-title {
    font-size: 32px;
  }
  .page-index-review-one88__section-description {
    font-size: 17px;
  }
  .page-index-review-one88__game-card {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
  .page-index-review-one88__game-card-segment {
    padding: 10px;
    width: 100%;
    border-left: none !important;
  }
  .page-index-review-one88__game-card-segment:not(:first-child)::before {
    display: none;
  }
  .page-index-review-one88__segment-1,
  .page-index-review-one88__segment-3,
  .page-index-review-one88__segment-4 {
    min-width: unset;
    max-width: 100%;
  }
  .page-index-review-one88__segment-1 {
    flex-direction: row;
    gap: 15px;
    justify-content: center;
  }
  .page-index-review-one88__rank-badge {
    position: static;
  }
  .page-index-review-one88__game-icon {
    margin-top: 0;
  }
  .page-index-review-one88__game-rating,
  .page-index-review-one88__promotion-text {
    justify-content: center;
  }
  .page-index-review-one88__segment-4 {
    margin-top: 15px;
  }
}

@media (max-width: 768px) {
  .page-index-review-one88__hero-section {
    padding-top: 140px;
    padding-bottom: 40px;
  }
  .page-index-review-one88__hero-title {
    font-size: 28px;
  }
  .page-index-review-one88__hero-description {
    font-size: 16px;
  }
  .page-index-review-one88__cta-button {
    padding: 12px 30px;
    font-size: 16px;
  }
  .page-index-review-one88__game-leaderboard-section,
  .page-index-review-one88__review-content-section,
  .page-index-review-one88__introduction-section,
  .page-index-review-one88__core-games-section,
  .page-index-review-one88__promotions-section,
  .page-index-review-one88__latest-blog-section {
    padding: 40px 15px;
  }
  .page-index-review-one88__page-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .page-index-review-one88__review-content-card {
    padding: 25px;
  }
  .page-index-review-one88__review-title {
    font-size: 24px;
  }
  .page-index-review-one88__review-subtitle {
    font-size: 20px;
  }
  .page-index-review-one88__review-body p {
    font-size: 15px;
  }
  .page-index-review-one88__section-title {
    font-size: 28px;
  }
  .page-index-review-one88__section-description {
    font-size: 16px;
  }
  .page-index-review-one88__intro-grid,
  .page-index-review-one88__game-categories,
  .page-index-review-one88__promo-grid,
  .page-index-review-one88__blog-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-index-review-one88__intro-item,
  .page-index-review-one88__game-card-category,
  .page-index-review-one88__promo-card,
  .page-index-review-one88__blog-card {
    padding-bottom: 20px;
  }
  .page-index-review-one88__intro-icon {
    width: 100px;
  }
  .page-index-review-one88__intro-heading,
  .page-index-review-one88__game-category-title,
  .page-index-review-one88__promo-title,
  .page-index-review-one88__blog-title {
    font-size: 20px;
  }
  .page-index-review-one88__intro-text,
  .page-index-review-one88__game-category-desc,
  .page-index-review-one88__promo-desc,
  .page-index-review-one88__blog-excerpt {
    font-size: 15px;
  }
  .page-index-review-one88__game-icon {
    max-width: 80px;
  }
  .page-index-review-one88__game-name {
    font-size: 20px;
  }
  .page-index-review-one88__game-description {
    font-size: 13px;
  }
  .page-index-review-one88__btn-download,
  .page-index-review-one88__btn-review {
    font-size: 14px;
    padding: 10px 12px;
    white-space: normal;
    word-wrap: break-word;
  }
  .page-index-review-one88__segment-4 {
    max-width: 100%;
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }
}