.page-index-review-one88 {
  --primary-color: #FFD700;
  --secondary-color: #8B0000;
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --background-light: #f5f5f5;
  --background-dark: #222222;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-color-dark);
}

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

.page-index-review-one88__section {
  padding: 60px 0;
  margin-bottom: 20px;
}

.page-index-review-one88__section:nth-of-type(even) {
  background-color: var(--background-light);
}

.page-index-review-one88 h1,
.page-index-review-one88 h2,
.page-index-review-one88 h3 {
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

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

.page-index-review-one88 h2 {
  font-size: 2.2em;
  color: var(--secondary-color);
}

.page-index-review-one88 h3 {
  font-size: 1.8em;
  color: var(--text-color-dark);
  text-align: left;
}

.page-index-review-one88 p {
  margin-bottom: 15px;
  font-size: 1.1em;
}

.page-index-review-one88 ul {
  list-style: disc inside;
  margin-bottom: 15px;
  padding-left: 20px;
}

.page-index-review-one88 ol {
  list-style: decimal inside;
  margin-bottom: 15px;
  padding-left: 20px;
}

.page-index-review-one88 li {
  margin-bottom: 8px;
}

.page-index-review-one88__hero-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #333333 100%);
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-index-review-one88__hero-image {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-index-review-one88__hero-content {
  position: relative;
  z-index: 2;
  color: var(--text-color-light);
  padding: 0 20px;
  max-width: 900px;
}

.page-index-review-one88__hero-content h1 {
  color: var(--primary-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-index-review-one88__hero-content p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.page-index-review-one88__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-color);
  color: var(--secondary-color);
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.2em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

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

.page-index-review-one88__game-item {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 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-item h3 {
  color: var(--secondary-color);
  font-size: 1.5em;
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: center;
}

.page-index-review-one88__game-image {
  width: 100%;
  max-height: 250px;
  object-fit: cover;
  border-radius: 8px;
}

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

.page-index-review-one88__promo-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-index-review-one88__promo-card h3 {
  color: var(--secondary-color);
  font-size: 1.6em;
  margin-bottom: 15px;
  flex-grow: 1;
  text-align: center;
}

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

.page-index-review-one88__button {
  display: inline-block;
  padding: 10px 25px;
  background: var(--primary-color);
  color: var(--secondary-color);
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1em;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.page-index-review-one88__button:hover {
  background: #FFC400;
  transform: translateY(-2px);
}

.page-index-review-one88__promo-note {
  text-align: center;
  margin-top: 30px;
  font-style: italic;
  color: #666;
}

.page-index-review-one88__flex-content {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-top: 40px;
}

.page-index-review-one88__flex-reverse {
  flex-direction: row-reverse;
}

.page-index-review-one88__text-content {
  flex: 1;
}

.page-index-review-one88__image-content {
  flex: 1;
  min-width: 300px;
}

.page-index-review-one88__side-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-index-review-one88__pros-cons .page-index-review-one88__grid-2-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.page-index-review-one88__card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.page-index-review-one88__card--pros h3 {
  color: green;
}

.page-index-review-one88__card--cons h3 {
  color: var(--secondary-color);
}

.page-index-review-one88__card ul {
  list-style: none;
  padding: 0;
}

.page-index-review-one88__card li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  font-size: 1.05em;
}

.page-index-review-one88__card--pros li::before {
  content: '✅';
  position: absolute;
  left: 0;
  color: green;
}

.page-index-review-one88__card--cons li::before {
  content: '❌';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
}

.page-index-review-one88__steps {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
  margin-top: 40px;
}

.page-index-review-one88__steps li {
  background: #ffffff;
  border-left: 5px solid var(--primary-color);
  padding: 20px 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  position: relative;
  counter-increment: step-counter;
}

.page-index-review-one88__steps li h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--secondary-color);
  text-align: left;
  font-size: 1.6em;
  padding-left: 40px;
}

.page-index-review-one88__steps li h3::before {
  content: counter(step-counter);
  position: absolute;
  left: 15px;
  top: 15px;
  background: var(--primary-color);
  color: var(--secondary-color);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2em;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-index-review-one88__faq-list {
  margin-top: 40px;
}

/* FAQ default state - answer hidden */
.faq-item {
  margin-bottom: 15px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 15px;
  background: var(--background-light);
  border-radius: 0 0 5px 5px;
}

/* FAQ expanded state */
.faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 15px;
  border: 1px solid #e0e0e0;
  border-top: none;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

/* Question style */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  color: var(--text-color-dark);
}

.faq-question:hover {
  background: #f5f5f5;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  text-align: left;
  color: var(--secondary-color);
}

/* Toggle icon */
.faq-toggle {
  font-size: 20px;
  font-weight: bold;
  transition: transform 0.3s ease;
  color: var(--primary-color);
}

.page-index-review-one88__conclusion h2 {
  color: var(--secondary-color);
}

.page-index-review-one88__conclusion p {
  text-align: center;
  font-size: 1.15em;
}

@media (max-width: 992px) {
  .page-index-review-one88 h1 {
    font-size: 2.2em;
  }
  .page-index-review-one88 h2 {
    font-size: 1.8em;
  }
  .page-index-review-one88 h3 {
    font-size: 1.5em;
  }
  .page-index-review-one88__flex-content {
    flex-direction: column;
    gap: 30px;
  }
  .page-index-review-one88__flex-reverse {
    flex-direction: column;
  }
  .page-index-review-one88__image-content {
    min-width: unset;
  }
  .page-index-review-one88__pros-cons .page-index-review-one88__grid-2-col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-index-review-one88__section {
    padding: 40px 0;
  }
  .page-index-review-one88__hero-banner {
    padding: 60px 0;
  }
  .page-index-review-one88__hero-content h1 {
    font-size: 1.8em;
  }
  .page-index-review-one88__hero-content p {
    font-size: 1em;
  }
  .page-index-review-one88__cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-index-review-one88__game-grid,
  .page-index-review-one88__promo-cards {
    grid-template-columns: 1fr;
  }
  .page-index-review-one88__game-item,
  .page-index-review-one88__promo-card,
  .page-index-review-one88__card {
    padding: 20px;
  }
  .page-index-review-one88__steps li h3 {
    font-size: 1.4em;
    padding-left: 35px;
  }
  .page-index-review-one88__steps li h3::before {
    width: 30px;
    height: 30px;
    font-size: 1em;
    top: 18px;
    left: 10px;
  }
  .faq-question {
    padding: 12px;
  }
  .faq-question h3 {
    font-size: 1.1em;
  }
  .faq-toggle {
    font-size: 18px;
  }
  .faq-item.active .faq-answer {
    padding: 12px;
  }
}