:root {
  --primary-color: #0A192F;
  --secondary-color: #FFD700;
  --text-light: #F0F2F5;
  --text-dark: #1A202C;
  --background-dark: #0A192F;
  --background-light: #ffffff;
  --accent-color-darker: #CCA300; /* Darker gold for hover/active */
}

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

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

/* 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;
  background-color: var(--background-dark);
  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;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-index-review-one88 .hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.page-index-review-one88 .hero-image img:hover {
  transform: scale(1.02);
}

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

.page-index-review-one88 .hero-content h1 {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: var(--secondary-color);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-review-one88 .hero-content p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: var(--text-light);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-review-one88 .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color);
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-index-review-one88 .cta-button:hover {
  background: var(--accent-color-darker);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* General Section Styling */
.page-index-review-one88 section {
  padding: 60px 0;
  margin-bottom: 20px;
}

.page-index-review-one88 .section-title {
  font-size: 2.2em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-index-review-one88 .section-title::after {
  content: '';
  width: 80px;
  height: 4px;
  background: var(--secondary-color);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -15px;
  border-radius: 2px;
}

/* Section Intro */
.page-index-review-one88 .section-intro {
  background-color: var(--background-light);
}

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

.page-index-review-one88 .intro-item {
  background: #f8f8f8;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-index-review-one88 .intro-item h3 {
  color: var(--primary-color);
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-index-review-one88 .intro-item p {
  color: var(--text-dark);
}

/* Quick Access */
.page-index-review-one88 .section-quick-access {
  background-color: #f0f4f8; /* Light blue-gray for contrast */
}

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

.page-index-review-one88 .access-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--background-light);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  color: var(--text-dark);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-review-one88 .access-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-index-review-one88 .access-item img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 15px;
  border-radius: 8px; /* Slightly rounded for images */
}

.page-index-review-one88 .access-item h3 {
  color: var(--primary-color);
  font-size: 1.3em;
  margin-bottom: 10px;
}

.page-index-review-one88 .access-item p {
  font-size: 0.95em;
  color: #555;
}

/* Games Carousel (using flexbox for simplicity, can be a real carousel with JS) */
.page-index-review-one88 .section-games {
  background-color: var(--background-dark);
  color: var(--text-light);
}

.page-index-review-one88 .section-games .section-title {
  color: var(--secondary-color);
}

.page-index-review-one88 .section-games .section-title::after {
  background: var(--text-light);
}

.page-index-review-one88 .games-carousel {
  display: flex;
  overflow-x: auto;
  gap: 30px;
  padding-bottom: 20px;
  -webkit-overflow-scrolling: touch; /* for smooth scrolling on iOS */
  scrollbar-width: thin;
  scrollbar-color: var(--secondary-color) var(--primary-color);
}

.page-index-review-one88 .games-carousel::-webkit-scrollbar {
  height: 8px;
}

.page-index-review-one88 .games-carousel::-webkit-scrollbar-track {
  background: var(--primary-color);
  border-radius: 10px;
}

.page-index-review-one88 .games-carousel::-webkit-scrollbar-thumb {
  background-color: var(--secondary-color);
  border-radius: 10px;
  border: 2px solid var(--primary-color);
}

.page-index-review-one88 .game-card {
  flex: 0 0 300px;
  background: #1A2A40; /* Slightly lighter dark blue */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-review-one88 .game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.page-index-review-one88 .game-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
}

.page-index-review-one88 .game-card h3 {
  color: var(--secondary-color);
  font-size: 1.4em;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-index-review-one88 .game-card p {
  color: var(--text-light);
  font-size: 0.95em;
  padding: 0 15px;
  margin-bottom: 20px;
}