.page-index-review-tot88 {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Màu chữ nhạt trên nền tối */
  background-color: #1A1A1A; /* Nền tối chính */
  line-height: 1.6;
}

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

.page-index-review-tot88-section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-index-review-tot88-section:last-child {
  border-bottom: none;
}

.page-index-review-tot88 h1,
.page-index-review-tot88 h2 {
  color: #FFD700; /* Màu vàng kim cho tiêu đề chính */
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-index-review-tot88 h3 {
  color: #FFD700; /* Màu vàng kim cho tiêu đề phụ */
  margin-top: 20px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-index-review-tot88 p {
  margin-bottom: 15px;
  color: #E0E0E0; /* Màu chữ nhạt */
}

.page-index-review-tot88 b {
  color: #FFD700;
}

/* Hero Section */
.page-index-review-tot88-hero {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background-color: #1A1A1A;
}

.page-index-review-tot88-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-tot88-hero-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 30px;
}

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

.page-index-review-tot88-hero h1 {
  font-size: 3em;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-index-review-tot88-hero p {
  font-size: 1.2em;
  color: #F0F0F0;
  margin-bottom: 30px;
}

.page-index-review-tot88-cta-button,
.page-index-review-tot88-button {
  display: inline-block;
  padding: 15px 40px;
  background: #FFD700; /* Màu vàng kim cho nút CTA */
  color: #1A1A1A; /* Màu chữ tối trên nền vàng kim */
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-index-review-tot88-cta-button:hover,
.page-index-review-tot88-button:hover {
  background: #E6C200; /* Màu vàng kim đậm hơn khi hover */
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* Content Grid */
.page-index-review-tot88-content-grid {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}

.page-index-review-tot88-content-grid.page-index-review-tot88-reverse {
  flex-direction: row-reverse;
}

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

.page-index-review-tot88-image-content {
  flex: 1;
  text-align: center;
}

.page-index-review-tot88-image-content .page-index-review-tot88-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

.page-index-review-tot88-game-item {
  background-color: #2A2A2A; /* Nền card game */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-index-review-tot88-game-item img {
  max-width: 100%;
  height: 200px; /* Chiều cao cố định cho hình ảnh game */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.page-index-review-tot88-game-item h3 {
  color: #FFD700;
  font-size: 1.4em;
  margin-top: 10px;
}

.page-index-review-tot88-game-item p {
  color: #B0B0B0;
  font-size: 0.95em;
}

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

.page-index-review-tot88-promo-item {
  background-color: #2A2A2A;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-index-review-tot88-promo-item img {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.page-index-review-tot88-promo-item h3 {
  color: #FFD700;
  font-size: 1.4em;
  margin-top: 10px;
}

.page-index-review-tot88-promo-item p {
  color: #B0B0B0;
  font-size: 0.95em;
}

.page-index-review-tot88-button-wrapper {
  text-align: center;
  margin-top: 40px;
}

/* Security & Support */
.page-index-review-tot88-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-review-tot88-info-item {
  background-color: #2A2A2A;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-index-review-tot88-info-item img {
  max-width: 100%;
  height: 200px;
  object-fit: contain;
  margin-bottom: 15px;
}

.page-index-review-tot88-info-item h3 {
  color: #FFD700;
  font-size: 1.4em;
  margin-top: 10px;
}

.page-index-review-tot88-info-item p {
  color: #B0B0B0;
  font-size: 0.95em;
}

/* Pros & Cons */
.page-index-review-tot88-grid-2-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.page-index-review-tot88-pros,
.page-index-review-tot88-cons {
  background-color: #2A2A2A;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-index-review-tot88-pros h3 {
  color: #32CD32; /* Màu xanh lá cho điểm mạnh */
  text-align: center;
}

.page-index-review-tot88-cons h3 {
  color: #DC143C; /* Màu đỏ cho điểm yếu */
  text-align: center;
}

.page-index-review-tot88-pros ul,
.page-index-review-tot88-cons ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-index-review-tot88-pros li,
.page-index-review-tot88-cons li {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  color: #E0E0E0;
}

.page-index-review-tot88-pros li p,
.page-index-review-tot88-cons li p {
  margin: 0;
  padding-left: 10px;
}

/* FAQ Section */
.page-index-review-tot88-faq-list {
  margin-top: 40px;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #2A2A2A; /* Nền câu hỏi */
  border: 1px solid #3A3A3A;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: #3A3A3A;
}

.faq-question h3 {
  margin: 0;
  color: #FFD700; /* Màu vàng kim cho câu hỏi */
  font-size: 1.15em;
}

.faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #1A1A1A; /* Nền câu trả lời */
  color: #E0E0E0;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Đủ lớn để chứa nội dung */
  padding: 15px 25px;
  border-top: 1px solid #3A3A3A;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: #E0E0E0; /* Màu trắng khi mở */
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-review-tot88-content-grid,
  .page-index-review-tot88-grid-2-col {
    flex-direction: column;
    gap: 30px;
  }

  .page-index-review-tot88-content-grid.page-index-review-tot88-reverse {
    flex-direction: column;
  }

  .page-index-review-tot88-hero h1 {
    font-size: 2.5em;
  }

  .page-index-review-tot88-hero p {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-index-review-tot88-section {
    padding: 40px 0;
  }

  .page-index-review-tot88 h1 {
    font-size: 2em;
    margin-bottom: 20px;
  }

  .page-index-review-tot88 h2 {
    font-size: 1.8em;
    margin-bottom: 25px;
  }

  .page-index-review-tot88 h3 {
    font-size: 1.3em;
  }

  .page-index-review-tot88-hero-content {
    padding: 0 10px;
  }

  .page-index-review-tot88-hero-image {
    margin-bottom: 20px;
  }

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

  .page-index-review-tot88-game-grid,
  .page-index-review-tot88-promo-grid,
  .page-index-review-tot88-info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .faq-question {
    padding: 15px 20px;
  }

  .faq-question h3 {
    font-size: 1em;
  }

  .faq-toggle {
    font-size: 20px;
  }

  .faq-item.active .faq-answer {
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .page-index-review-tot88-hero h1 {
    font-size: 1.8em;
  }

  .page-index-review-tot88-hero p {
    font-size: 1em;
  }
}