.page-index-review-one88 {
  color: #f0f0f0; /* Light text for dark body background */
  background-color: #0a0a0a; /* Ensure consistency with body background */
}

.page-index-review-one88__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 for fixed header */
  background: linear-gradient(135deg, #1A1A1A, #0a0a0a);
  color: #ffffff;
}

.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-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

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

.page-index-review-one88__hero-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #FFD700;
  line-height: 1.2;
}

.page-index-review-one88__hero-description {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #f0f0f0;
}

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

.page-index-review-one88__cta-button:hover {
  background: #FFA500;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Game Leaderboard Section */
.page-index-review-one88__game-leaderboard-section {
  padding: 60px 20px;
  background-color: #0a0a0a;
  color: #f0f0f0;
  text-align: center;
}

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

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

.page-index-review-one88__game-card {
  background: #ffffff;
  border-radius: 8px;
  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;
  color: #333333;
}

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

.page-index-review-one88__game-card-segment {
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.page-index-review-one88__game-card-segment:not(:first-child) {
  border-left: 1px solid #e4e4e4;
}

.page-index-review-one88__segment-1 {
  flex-shrink: 0;
  width: 120px;
  padding-left: 0;
  padding-right: 20px;
  border-left: none;
  position: relative;
}

.page-index-review-one88__rank-badge {
  position: absolute;
  top: -10px;
  left: 0px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6b35, #ff8c42); /* Default orange for 4+ */
  color: #ffffff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  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__game-icon {
  max-width: 100px;
  height: auto;
  display: block;
  margin-top: 15px; /* Adjust for badge */
  border-radius: 4px;
  object-fit: contain;
}

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

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

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

.page-index-review-one88__game-name-link:hover {
  color: #0066cc;
  text-decoration: underline;
}

.page-index-review-one88__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-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 {
  flex-shrink: 0;
  width: 150px;
}

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

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

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

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

.page-index-review-one88__promotion-link {
  color: #0066cc;
  text-decoration: none;
  margin-right: 5px;
  transition: color 0.3s ease;
}

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

.page-index-review-one88__hot-badge {
  background: #ff4d4d;
  color: #ffffff;
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
}

.page-index-review-one88__segment-4 {
  flex-shrink: 0;
  width: 180px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-index-review-one88__cta-button {
  display: block;
  width: 100%;
  padding: 12px 15px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(135deg, #ff6b35, #ff8c42);
  border: none;
  cursor: pointer;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
}

.page-index-review-one88__cta-button:hover {
  background: linear-gradient(135deg, #ff8c42, #ff6b35);
  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.page-index-review-one88__btn-download {
  background: linear-gradient(135deg, #FFD700, #FFA500); /* Gold for primary action */
  color: #1A1A1A;
}

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

.page-index-review-one88__btn-review {
  background: linear-gradient(135deg, #1A1A1A, #333333); /* Dark for secondary action */
  color: #ffffff;
}

.page-index-review-one88__btn-review:hover {
  background: linear-gradient(135deg, #333333, #1A1A1A);
}

/* Brand Review Content Section */
.page-index-review-one88__review-content-section {
  padding: 40px 20px;
  background: #0a0a0a; /* Dark background */
  color: #f0f0f0;
}

.page-index-review-one88__review-content-container {
  max-width: 1400px;
  margin: 0 auto;
}

.page-index-review-one88__review-content-card {
  background: #1a1a1a; /* Darker card background for contrast on dark body */
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 40px;
}

.page-index-review-one88__section-title {
  font-size: 32px;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 30px;
  text-align: center;
}

.page-index-review-one88__review-content-card h2 {
  font-size: 28px;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 24px;
  text-align: center;
}

.page-index-review-one88__review-content-card h3 {
  font-size: 22px;
  font-weight: bold; /* Tiểu đề in đậm */
  color: #f0f0f0;
  margin-top: 24px;
  margin-bottom: 12px;
}

.page-index-review-one88__review-body {
  color: #f0f0f0;
  line-height: 1.7;
}

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

/* Homepage Intro Section */
.page-index-review-one88__intro-section {
  padding: 60px 20px;
  background-color: #0a0a0a;
  color: #f0f0f0;
  text-align: center;
}

.page-index-review-one88__intro-container {
  max-width: 1000px;
  margin: 0 auto;
  background: #1a1a1a;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 40px;
}

.page-index-review-one88__intro-content p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-index-review-one88__intro-cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: #FFD700;
  color: #1A1A1A;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-index-review-one88__intro-cta-button:hover {
  background: #FFA500;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Core Games/Services Section */
.page-index-review-one88__games-section {
  padding: 60px 20px;
  background-color: #0a0a0a;
  color: #f0f0f0;
  text-align: center;
}

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

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

.page-index-review-one88__game-item {
  background: #1a1a1a;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-index-review-one88__game-image {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 15px;
  object-fit: cover;
  min-height: 200px; /* Enforce minimum size */
}

.page-index-review-one88__game-title {
  font-size: 22px;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-index-review-one88__game-description {
  font-size: 15px;
  line-height: 1.6;
  color: #f0f0f0;
  margin-bottom: 20px;
}

.page-index-review-one88__game-cta {
  display: inline-block;
  padding: 10px 25px;
  background: #FFD700;
  color: #1A1A1A;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-index-review-one88__game-cta:hover {
  background: #FFA500;
  transform: translateY(-2px);
}

/* Promotions Section */
.page-index-review-one88__promotions-section {
  padding: 60px 20px;
  background-color: #0a0a0a;
  color: #f0f0f0;
  text-align: center;
}

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

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

.page-index-review-one88__promotion-card {
  background: #1a1a1a;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-index-review-one88__promotion-image {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 15px;
  object-fit: cover;
  min-height: 200px; /* Enforce minimum size */
}

.page-index-review-one88__promotion-title {
  font-size: 22px;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-index-review-one88__promotion-description {
  font-size: 15px;
  line-height: 1.6;
  color: #f0f0f0;
  margin-bottom: 20px;
}

.page-index-review-one88__promotion-cta {
  display: inline-block;
  padding: 10px 25px;
  background: #FFD700;
  color: #1A1A1A;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-index-review-one88__promotion-cta:hover {
  background: #FFA500;
  transform: translateY(-2px);
}

/* Latest Blog Content Section */
.page-index-review-one88__blog-section {
  padding: 60px 20px;
  background-color: #0a0a0a;
  color: #f0f0f0;
  text-align: center;
}

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

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

.page-index-review-one88__blog-card {
  background: #1a1a1a;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.page-index-review-one88__blog-image {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 15px;
  object-fit: cover;
  min-height: 200px; /* Enforce minimum size */
}

.page-index-review-one88__blog-title {
  font-size: 20px;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 10px;
  line-height: 1.4;
  flex-grow: 1;
}

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

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

.page-index-review-one88__blog-summary {
  font-size: 15px;
  line-height: 1.6;
  color: #f0f0f0;
  margin-bottom: 15px;
}

.page-index-review-one88__blog-date {
  font-size: 14px;
  color: #aaaaaa;
  font-style: italic;
  margin-top: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-review-one88__hero-title {
    font-size: 40px;
  }

  .page-index-review-one88__hero-description {
    font-size: 18px;
  }

  .page-index-review-one88__page-title,
  .page-index-review-one88__section-title {
    font-size: 30px;
  }

  .page-index-review-one88__game-name {
    font-size: 20px;
  }

  .page-index-review-one88__review-content-card h2 {
    font-size: 26px;
  }

  .page-index-review-one88__review-content-card h3 {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .page-index-review-one88__hero-section {
    padding-top: 140px !important; /* Mobile: Adjust for fixed header */
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-index-review-one88__hero-title {
    font-size: 32px;
  }

  .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__intro-section,
  .page-index-review-one88__games-section,
  .page-index-review-one88__promotions-section,
  .page-index-review-one88__blog-section {
    padding: 30px 15px;
  }

  .page-index-review-one88__page-title,
  .page-index-review-one88__section-title {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .page-index-review-one88__game-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
    gap: 15px;
  }

  .page-index-review-one88__game-card-segment {
    width: 100%;
    padding: 0;
    border-left: none;
    align-items: center;
    text-align: center;
  }

  .page-index-review-one88__game-card-segment:not(:first-child) {
    border-top: 1px solid #e4e4e4;
    padding-top: 15px;
  }

  .page-index-review-one88__segment-1 {
    width: 100%;
    flex-direction: row;
    justify-content: center;
    position: relative;
  }

  .page-index-review-one88__rank-badge {
    position: static;
    margin-right: 15px;
    top: auto;
    left: auto;
  }

  .page-index-review-one88__game-icon {
    margin-top: 0;
    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__segment-3 {
    width: 100%;
    flex-direction: row;
    justify-content: space-around;
  }

  .page-index-review-one88__segment-4 {
    width: 100%;
    max-width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }

  .page-index-review-one88__cta-button {
    font-size: 13px;
    padding: 10px 12px;
  }

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

  .page-index-review-one88__review-content-card h2 {
    font-size: 22px;
  }

  .page-index-review-one88__review-content-card h3 {
    font-size: 18px;
  }

  .page-index-review-one88__review-body p {
    font-size: 15px;
  }

  .page-index-review-one88__intro-container {
    padding: 30px;
  }

  .page-index-review-one88__intro-content p {
    font-size: 15px;
  }

  .page-index-review-one88__intro-cta-button {
    font-size: 16px;
    padding: 12px 25px;
  }

  .page-index-review-one88__games-grid,
  .page-index-review-one88__promotions-grid,
  .page-index-review-one88__blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-index-review-one88__game-item,
  .page-index-review-one88__promotion-card,
  .page-index-review-one88__blog-card {
    padding: 20px;
  }

  .page-index-review-one88__game-title,
  .page-index-review-one88__promotion-title,
  .page-index-review-one88__blog-title {
    font-size: 20px;
  }

  .page-index-review-one88__game-description,
  .page-index-review-one88__promotion-description,
  .page-index-review-one88__blog-summary {
    font-size: 14px;
  }

  .page-index-review-one88 img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-index-review-one88__section,
  .page-index-review-one88__card,
  .page-index-review-one88__container,
  .page-index-review-one88__game-leaderboard-section,
  .page-index-review-one88__review-content-section,
  .page-index-review-one88__intro-section,
  .page-index-review-one88__games-section,
  .page-index-review-one88__promotions-section,
  .page-index-review-one88__blog-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}