/* style/index-review-one88.css */
:root {
  --primary-color: #0056B3;
  --secondary-color: #FFD700;
  --dark-text-color: #333333;
  --light-text-color: #ffffff;
  --background-light-grey: #f1f3f5;
  --border-color: #e4e4e4;
  --card-background: #ffffff;
  --hot-badge-color: #e74c3c;
}

.page-index-review-one88 {
  font-family: 'Arial', sans-serif;
  color: var(--dark-text-color);
  background: var(--background-light-grey); /* Assuming shared.css sets body to dark-bg-1, this section will have a light background */
  line-height: 1.6;
}

/* Top padding to clear fixed header */
.page-index-review-one88__hero-section {
  padding-top: 180px; /* Desktop */
}

@media (max-width: 768px) {
  .page-index-review-one88__hero-section {
    padding-top: 140px; /* Mobile */
  }
}

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

.page-index-review-one88__section-title {
  font-size: 36px;
  font-weight: bold;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 20px;
  text-transform: uppercase;
  line-height: 1.2;
}

.page-index-review-one88__section-description {
  font-size: 18px;
  color: var(--dark-text-color);
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-review-one88__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: var(--primary-color);
  color: var(--light-text-color);
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}

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

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

/* 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-bottom: 60px;
  background: linear-gradient(135deg, #0a1f44, #1a3a6e); /* Darker gradient for hero background */
  color: var(--light-text-color);
}

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

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

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

/* Game Leaderboard Section */
.page-index-review-one88__game-leaderboard-section {
  padding: 60px 20px;
  background: var(--background-light-grey);
}

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

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

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

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

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

.page-index-review-one88__segment-1 {
  flex-shrink: 0;
  width: 120px;
  padding-left: 0;
  align-items: flex-start;
  position: relative;
}

.page-index-review-one88__rank-badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6b35, #ff8c42);
  color: var(--light-text-color);
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  position: absolute;
  top: 0;
  left: 0;
  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;
  border-radius: 4px;
  margin-top: 30px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

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

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

.page-index-review-one88__game-name-link {
  text-decoration: none;
  color: inherit;
  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: #000000;
  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;
  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: 8px;
  font-size: 16px;
}

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

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

.page-index-review-one88__promotion-text {
  font-size: 14px;
  color: var(--primary-color);
  font-weight: bold;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.page-index-review-one88__promotion-link {
  color: #0066cc;
  text-decoration: none;
  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: 2px 6px;
  border-radius: 3px;
  font-weight: bold;
  text-transform: uppercase;
}

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

.page-index-review-one88__btn-download,
.page-index-review-one88__btn-review {
  width: 100%;
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 8px;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

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

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

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

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

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

.page-index-review-one88__review-content-container {
  max-width: 1400px;
  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;
}

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

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

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

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

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

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

/* Homepage Introduction Section */
.page-index-review-one88__intro-section {
  padding: 60px 20px;
  background: var(--primary-color);
  color: var(--light-text-color);
}

.page-index-review-one88__intro-section .page-index-review-one88__section-title,
.page-index-review-one88__intro-section .page-index-review-one88__section-description {
  color: var(--light-text-color);
}

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

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

.page-index-review-one88__intro-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.page-index-review-one88__intro-icon {
  max-width: 100px;
  height: auto;
  margin-bottom: 20px;
  filter: brightness(1.2); /* Slightly brighten icons for contrast on dark background */
}

.page-index-review-one88__intro-heading {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.page-index-review-one88__intro-text {
  font-size: 16px;
  color: #e0e0e0;
}

/* Core Games/Services Section */
.page-index-review-one88__games-section {
  padding: 60px 20px;
  background: var(--background-light-grey);
}

.page-index-review-one88__game-categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}

.page-index-review-one88__game-tab {
  background: var(--card-background);
  border: 1px solid var(--border-color);
  border-radius: 5px;
  padding: 12px 25px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--dark-text-color);
}

.page-index-review-one88__game-tab:hover {
  background: #f0f0f0;
  border-color: #d0d0d0;
}

.page-index-review-one88__game-tab.active {
  background: var(--primary-color);
  color: var(--light-text-color);
  border-color: var(--primary-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-index-review-one88__game-content {
  display: none;
}

.page-index-review-one88__game-content.active {
  display: block;
}

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

.page-index-review-one88__game-detail-card {
  background: var(--card-background);
  border-radius: 8px;
  box-shadow: 0 2px 8px 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-detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

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

.page-index-review-one88__game-detail-text {
  font-size: 16px;
  color: var(--dark-text-color);
  margin-bottom: 20px;
}

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

.page-index-review-one88__promotions-section .page-index-review-one88__section-title,
.page-index-review-one88__promotions-section .page-index-review-one88__section-description {
  color: var(--light-text-color);
}

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

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

.page-index-review-one88__promo-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

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

.page-index-review-one88__promo-title {
  font-size: 22px;
  font-weight: bold;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.page-index-review-one88__promo-text {
  font-size: 16px;
  color: #e0e0e0;
  margin-bottom: 20px;
}

/* Latest Blog Content Section */
.page-index-review-one88__blog-section {
  padding: 60px 20px;
  background: var(--background-light-grey);
}

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

.page-index-review-one88__blog-card {
  background: var(--card-background);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.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 {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

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

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

.page-index-review-one88__blog-title a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.page-index-review-one88__blog-title a:hover {
  color: #004085;
}

.page-index-review-one88__blog-excerpt {
  font-size: 15px;
  color: var(--dark-text-color);
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-index-review-one88__read-more {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
  margin-top: auto; /* Push to bottom */
}

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

.page-index-review-one88__blog-date {
  font-size: 13px;
  color: #777;
  margin-top: 10px;
}

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

/* 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-card {
    flex-wrap: wrap;
    justify-content: center;
    padding: 15px;
  }

  .page-index-review-one88__game-card-segment {
    width: 100%;
    padding: 10px 0;
    text-align: center;
  }

  .page-index-review-one88__game-card-segment:not(:first-child)::before {
    display: none;
  }

  .page-index-review-one88__segment-1 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding-top: 0;
    margin-bottom: 15px;
  }

  .page-index-review-one88__rank-badge {
    position: static;
    margin-right: 10px;
  }

  .page-index-review-one88__game-icon {
    margin-top: 0;
  }

  .page-index-review-one88__segment-2 {
    order: -1; /* Move game name/description to top */
    margin-bottom: 15px;
  }
  .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%;
    margin-bottom: 15px;
  }

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

  .page-index-review-one88__intro-grid,
  .page-index-review-one88__promo-grid,
  .page-index-review-one88__blog-grid,
  .page-index-review-one88__game-card-grid {
    grid-template-columns: 1fr;
  }

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

  .page-index-review-one88__intro-heading,
  .page-index-review-one88__promo-title,
  .page-index-review-one88__game-detail-title,
  .page-index-review-one88__blog-title {
    font-size: 20px;
  }

  .page-index-review-one88__intro-text,
  .page-index-review-one88__promo-text,
  .page-index-review-one88__game-detail-text,
  .page-index-review-one88__blog-excerpt {
    font-size: 15px;
  }

  .page-index-review-one88__review-content-card h2 {
    font-size: 24px;
  }
  .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__game-tab {
    font-size: 14px;
    padding: 10px 20px;
  }
}

@media (max-width: 768px) {
  .page-index-review-one88__hero-section {
    padding-bottom: 40px;
  }
  .page-index-review-one88__hero-title {
    font-size: 32px;
  }
  .page-index-review-one88__hero-description {
    font-size: 16px;
  }
  .page-index-review-one88__cta-button {
    font-size: 16px;
    padding: 12px 25px;
  }
  .page-index-review-one88__page-title,
  .page-index-review-one88__section-title {
    font-size: 28px;
  }
  .page-index-review-one88__section-description {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .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: 40px 15px;
  }
  .page-index-review-one88__review-content-card {
    padding: 25px;
  }
  .page-index-review-one88__intro-icon {
    max-width: 80px;
  }
  .page-index-review-one88__game-tab {
    font-size: 13px;
    padding: 8px 15px;
  }
  .page-index-review-one88__game-detail-image {
    height: 150px;
  }
  .page-index-review-one88__promo-image {
    height: 150px;
  }
  .page-index-review-one88__blog-image {
    height: 180px;
  }
}