:root {
  --primary-color: #FF4500; /* OrangeRed */
  --secondary-color: #FFD700; /* Gold */
  --dark-bg: #0d0d0d; /* Assuming this from shared.css */
  --light-text: #ffffff;
  --dark-text: #333333;
  --card-bg: #ffffff;
  --border-color: #e0e0e0;
}

.page-index-review-one88 {
  font-family: 'Arial', sans-serif;
  color: var(--light-text); /* Default text color for the main content area if body is dark */
  background-color: var(--dark-bg); /* Inherit from body or set explicitly if needed */
}

.page-index-review-one88__main-content-wrapper {
  padding-top: 120px; /* Desktop: Adjust for fixed header */
  background-color: var(--dark-bg); /* Ensure consistent dark background */
  color: var(--light-text);
}

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

.page-index-review-one88__review-article,
.page-index-review-one88__game-overview-section,
.page-index-review-one88__promotions-section,
.page-index-review-one88__latest-news-section,
.page-index-review-one88__faq-section {
  background-color: var(--card-bg);
  color: var(--dark-text);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 40px;
  margin-bottom: 40px;
}

.page-index-review-one88__main-title {
  font-size: 36px;
  font-weight: bold;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.3;
}

.page-index-review-one88__section-title {
  font-size: 28px;
  font-weight: bold;
  color: var(--primary-color);
  margin-top: 40px;
  margin-bottom: 20px;
  line-height: 1.4;
}

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

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

.page-index-review-one88__hero-image,
.page-index-review-one88__content-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-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-index-review-one88__cta-button {
  display: inline-block;
  padding: 15px 35px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: none;
}

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

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

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

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

.page-index-review-one88__link-cta {
  color: var(--primary-color);
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-index-review-one88__link-cta:hover {
  color: #e63900;
  text-decoration: underline;
}

/* Game Overview Section */
.page-index-review-one88__game-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-index-review-one88__game-card {
  background-color: var(--card-bg);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: 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.12);
}

.page-index-review-one88__game-card-image {
  max-width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 20px;
}

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

.page-index-review-one88__game-card-description {
  font-size: 15px;
  color: var(--dark-text);
  line-height: 1.6;
  margin-bottom: 20px;
}

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

.page-index-review-one88__promotion-card {
  background-color: var(--card-bg);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  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 6px 16px rgba(0, 0, 0, 0.12);
}

.page-index-review-one88__promotion-card-image {
  max-width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 20px;
}

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

.page-index-review-one88__promotion-card-description {
  font-size: 15px;
  color: var(--dark-text);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Latest News Section */
.page-index-review-one88__news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-index-review-one88__news-card {
  background-color: var(--card-bg);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-index-review-one88__news-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-index-review-one88__news-card-title {
  font-size: 20px;
  font-weight: bold;
  color: var(--primary-color);
  padding: 15px 20px 0;
  line-height: 1.4;
}

.page-index-review-one88__news-link {
  color: var(--primary-color);
  text-decoration: none;
}

.page-index-review-one88__news-link:hover {
  text-decoration: underline;
}

.page-index-review-one88__news-card-excerpt {
  font-size: 15px;
  color: var(--dark-text);
  padding: 0 20px;
  margin-bottom: 10px;
  line-height: 1.6;
}

.page-index-review-one88__news-date {
  font-size: 13px;
  color: #888;
  padding: 0 20px 15px;
  display: block;
}

/* FAQ Section */
.page-index-review-one88__faq-list {
  margin-top: 30px;
}

.page-index-review-one88__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.page-index-review-one88__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 15px;
  opacity: 0;
}

.page-index-review-one88__faq-item.active .page-index-review-one88__faq-answer {
  max-height: 2000px !important;
  padding: 20px 15px !important;
  opacity: 1;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
}

.page-index-review-one88__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-index-review-one88__faq-question:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
}

.page-index-review-one88__faq-question:active {
  background: #eeeeee;
}

.page-index-review-one88__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: var(--dark-text);
}