/* style/index-review-one88.css */
:root {
  --primary-color: #001F3F;
  --secondary-color: #FFD700;
  --text-light: #ffffff;
  --text-dark: #333333;
  --background-dark: #0a0a0a;
  --card-bg-light: #ffffff;
  --border-light: #e0e0e0;
  --segment-border: #e4e4e4;
}

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

/* HERO Section */
.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, var(--primary-color), #003366);
  color: var(--text-light);
}

.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: 42px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--secondary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-index-review-one88__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color);
  color: var(--primary-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);
}

.page-index-review-one88__cta-button:hover {
  background: #e6c200;
  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: 40px 20px;
  background-color: var(--background-dark);
  color: var(--text-light);
}

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

.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: var(--card-bg-light);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 20px;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-dark); /* Dark text for light card background */
}

.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;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.page-index-review-one88__segment-1 {
  min-width: 120px;
  max-width: 150px;
  padding-left: 0;
  border-right: 1px solid var(--segment-border);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-index-review-one88__rank-badge {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: var(--text-light);
  font-size: 16px;
  background: linear-gradient(135deg, #ff6b35, #ff8c42); /* Default for 4+ */
  box-shadow: 0 2px 6px 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;
  border-radius: 4px;
  object-fit: contain;
  margin-top: 15px;
}

.page-index-review-one88__segment-2 {
  flex: 1;
  border-right: 1px solid var(--segment-border);
  padding-left: 20px;
  text-align: center;
}

.page-index-review-one88__game-name {
  font-size: 24px;
  font-weight: bold;
  color: var(--text-dark);
  margin: 0 0 10px 0;
  text-align: center;
}

.page-index-review-one88__game-name-link {
  color: var(--text-dark);
  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(--text-dark);
  font-weight: bold;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

.page-index-review-one88__segment-3 {
  min-width: 150px;
  max-width: 180px;
  border-right: 1px solid var(--segment-border);
  padding: 0 20px;
}

.page-index-review-one88__game-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
  font-size: 16px;
}

.page-index-review-one88__stars {
  color: var(--secondary-color);
  font-weight: bold;
}

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

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

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

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

.page-index-review-one88__hot-badge {
  background-color: #ff4d4f;
  color: var(--text-light);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
}

.page-index-review-one88__segment-4 {
  min-width: 180px;
  max-width: 200px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.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;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  border: none;
}

.page-index-review-one88__btn-download {
  background: var(--primary-color);
  color: var(--text-light);
}

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

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

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

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

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

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

.page-index-review-one88__review-content-title {
  font-size: 28px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 24px;
  text-align: center;
}

.page-index-review-one88__review-body h3 {
  font-size: 20px;
  font-weight: bold;
  color: var(--primary-color);
  margin-top: 24px;
  margin-bottom: 12px;
}

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

.page-index-review-one88__review-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 20px auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Introduction Section */
.page-index-review-one88__introduction-section {
  padding: 40px 20px;
  background-color: var(--background-dark);
  color: var(--text-light);
}

.page-index-review-one88__introduction-container {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--card-bg-light);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 40px;
  color: var(--text-dark);
  text-align: center;
}

.page-index-review-one88__introduction-title {
  font-size: 28px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 24px;
}

.page-index-review-one88__introduction-content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.page-index-review-one88__introduction-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 25px auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.page-index-review-one88__cta-button--small {
  margin-top: 20px;
  padding: 10px 30px;
  font-size: 16px;
}

/* Games & Services Section */
.page-index-review-one88__games-services-section {
  padding: 40px 20px;
  background-color: var(--background-dark);
  color: var(--text-light);
}

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

.page-index-review-one88__games-services-title {
  font-size: 28px;
  font-weight: bold;
  color: var(--secondary-color);
  margin-bottom: 30px;
}

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

.page-index-review-one88__game-card-small {
  background: var(--card-bg-light);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
  color: var(--text-dark);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-index-review-one88__game-card-image {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 15px;
  object-fit: cover;
}

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

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

.page-index-review-one88__btn-play {
  display: inline-block;
  padding: 10px 25px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 5px;
  font-size: 15px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.page-index-review-one88__btn-play:hover {
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Promotions Section */
.page-index-review-one88__promotions-section {
  padding: 40px 20px;
  background-color: var(--background-dark);
  color: var(--text-light);
}

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

.page-index-review-one88__promotions-title {
  font-size: 28px;
  font-weight: bold;
  color: var(--secondary-color);
  margin-bottom: 30px;
}

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

.page-index-review-one88__promotion-card {
  background: var(--card-bg-light);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
  color: var(--text-dark);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

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

.page-index-review-one88__btn-claim {
  display: inline-block;
  padding: 10px 25px;
  background: var(--primary-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 5px;
  font-size: 15px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.page-index-review-one88__btn-claim:hover {
  background: #003366;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Blog Section */
.page-index-review-one88__blog-section {
  padding: 40px 20px;
  background-color: var(--background-dark);
  color: var(--text-light);
}

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

.page-index-review-one88__blog-title {
  font-size: 28px;
  font-weight: bold;
  color: var(--secondary-color);
  margin-bottom: 30px;
}

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

.page-index-review-one88__blog-card {
  background: var(--card-bg-light);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: left;
  color: var(--text-dark);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

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

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

.page-index-review-one88__blog-card-excerpt {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.page-index-review-one88__btn-read-more {
  display: inline-block;
  padding: 10px 20px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 5px;
  font-size: 15px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.page-index-review-one88__btn-read-more:hover {
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

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

  .page-index-review-one88__game-card {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
  .page-index-review-one88__game-card-segment {
    width: 100%;
    border: none;
    padding: 10px 0;
  }
  .page-index-review-one88__segment-1,
  .page-index-review-one88__segment-3,
  .page-index-review-one88__segment-4 {
    min-width: unset;
    max-width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--segment-border);
  }
  .page-index-review-one88__segment-1 .page-index-review-one88__rank-badge {
    position: static;
    margin-bottom: 10px;
  }
  .page-index-review-one88__segment-2 {
    border-right: none;
    border-bottom: 1px solid var(--segment-border);
  }
  .page-index-review-one88__segment-4 {
    border-bottom: none;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
  .page-index-review-one88__btn-download,
  .page-index-review-one88__btn-review {
    width: calc(50% - 5px);
  }
}

@media (max-width: 768px) {
  .page-index-review-one88__hero-section {
    padding-top: 160px !important; /* Mobile: Adjust for fixed header */
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-index-review-one88__hero-title {
    font-size: 28px;
  }
  .page-index-review-one88__hero-description {
    font-size: 15px;
  }
  .page-index-review-one88__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    margin-top: 20px;
  }

  .page-index-review-one88__page-title,
  .page-index-review-one88__review-content-title,
  .page-index-review-one88__introduction-title,
  .page-index-review-one88__games-services-title,
  .page-index-review-one88__promotions-title,
  .page-index-review-one88__blog-title {
    font-size: 24px;
    margin-bottom: 25px;
  }

  .page-index-review-one88__game-leaderboard-section,
  .page-index-review-one88__review-content-section,
  .page-index-review-one88__introduction-section,
  .page-index-review-one88__games-services-section,
  .page-index-review-one88__promotions-section,
  .page-index-review-one88__blog-section {
    padding: 20px 15px;
  }

  .page-index-review-one88__review-content-card,
  .page-index-review-one88__introduction-container,
  .page-index-review-one88__game-card-small,
  .page-index-review-one88__promotion-card,
  .page-index-review-one88__blog-card {
    padding: 20px;
  }

  .page-index-review-one88__review-body h3,
  .page-index-review-one88__game-card-title,
  .page-index-review-one88__promotion-card-title,
  .page-index-review-one88__blog-card-title {
    font-size: 18px;
  }

  .page-index-review-one88__review-body p,
  .page-index-review-one88__game-card-description,
  .page-index-review-one88__promotion-card-description,
  .page-index-review-one88__blog-card-excerpt {
    font-size: 14px;
  }

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

  .page-index-review-one88__game-description {
    font-size: 13px;
  }

  .page-index-review-one88__segment-4 {
    flex-direction: column;
    gap: 8px;
  }

  .page-index-review-one88__btn-download,
  .page-index-review-one88__btn-review {
    width: 100%;
    font-size: 14px;
    padding: 10px 12px;
    white-space: normal;
    word-wrap: break-word;
    min-width: auto;
  }

  .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__hero-section,
  .page-index-review-one88__game-leaderboard-section,
  .page-index-review-one88__review-content-section,
  .page-index-review-one88__introduction-section,
  .page-index-review-one88__games-services-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;
  }

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