.page-index-review-tot88 {
  color: #f0f0f0; /* Mặc định chữ nhạt trên nền tối của body */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: #000; /* Nền body tối */
}

.page-index-review-tot88__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-index-review-tot88__section-heading {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 25px;
  color: #E3B505; /* Màu vàng phụ đạo cho tiêu đề chính */
}

.page-index-review-tot88__section-description {
  font-size: 18px;
  text-align: center;
  margin-bottom: 40px;
  color: #f0f0f0;
}

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

.page-index-review-tot88__btn-primary {
  background: linear-gradient(135deg, #E3B505, #FFA500);
  color: #0A2463;
  border: none;
}

.page-index-review-tot88__btn-primary:hover {
  background: linear-gradient(135deg, #FFA500, #E3B505);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-index-review-tot88__btn-secondary {
  background: #0A2463;
  color: #E3B505;
  border: 2px solid #E3B505;
}

.page-index-review-tot88__btn-secondary:hover {
  background: #1a3d82;
  color: #FFC107;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-index-review-tot88__cta-wrapper {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-index-review-tot88__text-link {
  color: #E3B505;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

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

/* Intro Section */
.page-index-review-tot88__intro-section {
  padding-top: 120px; /* Adjust for fixed header */
  padding-bottom: 60px;
  background: linear-gradient(135deg, #0A2463, #1a3d82);
  color: #ffffff;
}

.page-index-review-tot88__page-title {
  font-size: 40px;
  text-align: center;
  margin-bottom: 25px;
  color: #E3B505;
  line-height: 1.2;
}

.page-index-review-tot88__intro-text {
  font-size: 19px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #f0f0f0;
}

/* Review Content Section */
.page-index-review-tot88__review-content-section {
  padding: 60px 0;
  background: #f1f3f5; /* Nền sáng cho phần review chính */
  color: #333333; /* Chữ tối trên nền sáng */
}

.page-index-review-tot88__review-content-container {
  max-width: 1000px; /* Rộng hơn một chút để đọc dễ hơn */
  margin: 0 auto;
  padding: 0 20px;
}

.page-index-review-tot88__review-content-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 40px;
}

.page-index-review-tot88__section-heading {
  color: #0A2463;
  margin-bottom: 30px;
}

.page-index-review-tot88__review-body p {
  margin-bottom: 18px;
  font-size: 17px;
  line-height: 1.7;
  color: #333333;
}

.page-index-review-tot88__sub-heading {
  font-size: 24px;
  font-weight: bold;
  color: #0A2463;
  margin-top: 35px;
  margin-bottom: 15px;
  border-left: 5px solid #E3B505;
  padding-left: 15px;
}

.page-index-review-tot88__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Games Section */
.page-index-review-tot88__games-section {
  padding: 60px 0;
  background: #0A2463;
  color: #ffffff;
}

.page-index-review-tot88__games-section .page-index-review-tot88__section-heading {
  color: #E3B505;
}

.page-index-review-tot88__games-section .page-index-review-tot88__section-description {
  color: #f0f0f0;
}

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

.page-index-review-tot88__game-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  padding: 25px;
  text-align: center;
  color: #333333;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-review-tot88__game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

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

.page-index-review-tot88__game-category-title {
  font-size: 22px;
  font-weight: bold;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-index-review-tot88__game-category-description {
  font-size: 15px;
  color: #555555;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Promotions Section */
.page-index-review-tot88__promotions-section {
  padding: 60px 0;
  background: #f1f3f5;
  color: #333333;
}

.page-index-review-tot88__promotions-section .page-index-review-tot88__section-heading {
  color: #0A2463;
}

.page-index-review-tot88__promotions-section .page-index-review-tot88__section-description {
  color: #555555;
}

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

.page-index-review-tot88__promotion-item {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: 25px;
  display: flex;
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-index-review-tot88__promotion-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  margin-right: 20px;
  background: #E3B505;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-index-review-tot88__icon-image {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

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

.page-index-review-tot88__promotion-title {
  font-size: 20px;
  font-weight: bold;
  color: #0A2463;
  margin-bottom: 10px;
}

.page-index-review-tot88__promotion-description {
  font-size: 15px;
  color: #555555;
}

/* FAQ Section */
.page-index-review-tot88__faq-section {
  padding: 60px 0;
  background: #0A2463;
  color: #ffffff;
}

.page-index-review-tot88__faq-section .page-index-review-tot88__section-heading {
  color: #E3B505;
}

.page-index-review-tot88__faq-section .page-index-review-tot88__section-description {
  color: #f0f0f0;
}

.page-index-review-tot88__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

.page-index-review-tot88__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-index-review-tot88__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
  color: #333333;
}

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

.page-index-review-tot88__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: #0A2463;
}

.page-index-review-tot88__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #666;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #f0f0f0;
}

.page-index-review-tot88__faq-item.active .page-index-review-tot88__faq-toggle {
  color: #0A2463;
  transform: rotate(45deg);
  background-color: #E3B505;
}

.page-index-review-tot88__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 25px;
  opacity: 0;
  background: #f9f9f9;
  color: #555555;
  border-radius: 0 0 8px 8px;
  font-size: 16px;
  line-height: 1.6;
}

.page-index-review-tot88__faq-item.active .page-index-review-tot88__faq-answer {
  max-height: 2000px !important; /* Đảm bảo đủ cao cho mọi nội dung */
  padding: 20px 25px !important;
  opacity: 1;
}

/* News Section */
.page-index-review-tot88__news-section {
  padding: 60px 0;
  background: #f1f3f5;
  color: #333333;
}

.page-index-review-tot88__news-section .page-index-review-tot88__section-heading {
  color: #0A2463;
}

.page-index-review-tot88__news-section .page-index-review-tot88__section-description {
  color: #555555;
}

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

.page-index-review-tot88__news-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-index-review-tot88__news-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

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

.page-index-review-tot88__news-title {
  font-size: 20px;
  font-weight: bold;
  color: #0A2463;
  margin-bottom: 10px;
}

.page-index-review-tot88__news-title a {
  color: #0A2463;
  text-decoration: none;
}

.page-index-review-tot88__news-title a:hover {
  color: #E3B505;
  text-decoration: underline;
}

.page-index-review-tot88__news-excerpt {
  font-size: 15px;
  color: #555555;
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-index-review-tot88__news-date {
  font-size: 13px;
  color: #888888;
  text-align: right;
}

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

  .page-index-review-tot88__section-heading {
    font-size: 28px;
  }

  .page-index-review-tot88__sub-heading {
    font-size: 22px;
  }

  .page-index-review-tot88__game-categories {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .page-index-review-tot88__promotion-list,
  .page-index-review-tot88__news-list {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-index-review-tot88 {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-index-review-tot88__intro-section {
    padding-top: 100px !important; /* Mobile fixed header adjustment */
    padding-bottom: 40px;
  }

  .page-index-review-tot88__container {
    padding: 0 15px;
  }

  .page-index-review-tot88__page-title {
    font-size: 30px;
    margin-bottom: 20px;
  }

  .page-index-review-tot88__intro-text {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .page-index-review-tot88__section-heading {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .page-index-review-tot88__section-description {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .page-index-review-tot88__cta-button {
    padding: 12px 25px;
    font-size: 16px;
  }

  .page-index-review-tot88__review-content-section,
  .page-index-review-tot88__games-section,
  .page-index-review-tot88__promotions-section,
  .page-index-review-tot88__faq-section,
  .page-index-review-tot88__news-section {
    padding: 40px 0;
  }

  .page-index-review-tot88__review-content-container,
  .page-index-review-tot88__game-categories,
  .page-index-review-tot88__promotion-list,
  .page-index-review-tot88__faq-list,
  .page-index-review-tot88__news-list {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-index-review-tot88__review-content-card {
    padding: 25px;
  }

  .page-index-review-tot88__review-body p {
    font-size: 15px;
  }

  .page-index-review-tot88__sub-heading {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 10px;
    padding-left: 10px;
  }

  .page-index-review-tot88__game-card-image,
  .page-index-review-tot88__promotion-icon-image,
  .page-index-review-tot88__news-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-index-review-tot88__game-category-image {
    height: 180px;
  }

  .page-index-review-tot88__promotion-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .page-index-review-tot88__promotion-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .page-index-review-tot88__promotion-title {
    font-size: 18px;
  }

  .page-index-review-tot88__promotion-description {
    font-size: 14px;
  }

  .page-index-review-tot88__faq-question {
    padding: 15px 20px;
  }

  .page-index-review-tot88__faq-question h3 {
    font-size: 16px;
  }

  .page-index-review-tot88__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
  }

  .page-index-review-tot88__faq-answer {
    padding: 0 20px;
  }

  .page-index-review-tot88__faq-item.active .page-index-review-tot88__faq-answer {
    padding: 15px 20px !important;
  }

  .page-index-review-tot88__news-image {
    height: 180px;
  }

  .page-index-review-tot88__news-title {
    font-size: 18px;
  }

  .page-index-review-tot88__news-excerpt {
    font-size: 14px;
  }
}