.page-index-review-tot88 {
  color: #f0f0f0; /* Body background is dark, so text is light */
  background-color: #121212; /* Inherited from body, but explicitly set for clarity */
  padding-top: 120px; /* Fixed header spacing for desktop */
}

@media (max-width: 768px) {
  .page-index-review-tot88 {
    padding-top: 100px; /* Fixed header spacing for mobile */
  }
}

.page-index-review-tot88__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #2a2a2a, #1a1a1a); /* Dark gradient for hero section */
  border-bottom: 2px solid var(--primary-color);
}

.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%;
  margin-bottom: 30px;
}

.page-index-review-tot88__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

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

.page-index-review-tot88__main-title {
  font-size: 42px;
  font-weight: bold;
  color: var(--primary-color); /* Gold color for main title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-review-tot88__hero-description {
  font-size: 18px;
  color: #e0e0e0;
  margin-bottom: 30px;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-review-tot88__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(135deg, var(--primary-color), #FFC107); /* Gold gradient */
  color: #121212;
  text-decoration: none;
  border-radius: 50px;
  font-size: 20px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
  text-transform: uppercase;
}

.page-index-review-tot88__cta-button:hover {
  background: linear-gradient(135deg, #FFC107, var(--primary-color));
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

/* Review Content Section */
.page-index-review-tot88__review-content-section {
  padding: 60px 20px;
  background: #1a1a1a; /* Dark background for sections */
}

.page-index-review-tot88__review-content-container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-index-review-tot88__review-content-card {
  background: #2a2a2a; /* Slightly lighter dark background for cards */
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  padding: 40px;
  color: #f0f0f0;
}

.page-index-review-tot88__section-title {
  font-size: 36px;
  font-weight: bold;
  color: var(--primary-color); /* Gold color for section titles */
  margin-bottom: 30px;
  text-align: center;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-index-review-tot88__sub-title {
  font-size: 24px;
  font-weight: bold;
  color: var(--secondary-color); /* Red color for sub-titles */
  margin-top: 35px;
  margin-bottom: 15px;
  border-left: 5px solid var(--primary-color);
  padding-left: 15px;
}

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

.page-index-review-tot88__review-body strong {
  color: var(--primary-color);
}

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

.page-index-review-tot88__review-body a:hover {
  color: #FFC107;
  text-decoration: underline;
}

.page-index-review-tot88__image-gallery {
  display: flex;
  gap: 20px;
  margin: 30px 0;
  flex-wrap: wrap;
  justify-content: center;
}

.page-index-review-tot88__image-gallery img {
  max-width: 100%;
  width: 48%; /* Adjust for two images per row */
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  object-fit: cover;
  min-width: 280px; /* Ensure images are not too small */
}

/* Promotions Section */
.page-index-review-tot88__promotions-section {
  padding: 60px 20px;
  background: #121212;
}

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

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

.page-index-review-tot88__promotion-card {
  background: #2a2a2a;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-index-review-tot88__promotion-card img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-height: 200px;
}

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

.page-index-review-tot88__promotion-card p {
  font-size: 16px;
  color: #e0e0e0;
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-index-review-tot88__btn-primary {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(135deg, var(--secondary-color), #FF6B35); /* Red gradient */
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(220, 20, 60, 0.4);
  text-transform: uppercase;
}

.page-index-review-tot88__btn-primary:hover {
  background: linear-gradient(135deg, #FF6B35, var(--secondary-color));
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(220, 20, 60, 0.6);
}

/* Blog Section */
.page-index-review-tot88__blog-section {
  padding: 60px 20px;
  background: #1a1a1a;
}

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

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

.page-index-review-tot88__blog-card {
  background: #2a2a2a;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-index-review-tot88__blog-card img {
  width: 100%;
  height: 220px; /* Fixed height for blog images */
  object-fit: cover;
}

.page-index-review-tot88__blog-card .page-index-review-tot88__card-title {
  padding: 20px 25px 0;
  text-align: left;
  font-size: 20px;
  margin-bottom: 10px;
}

.page-index-review-tot88__blog-card .page-index-review-tot88__card-title a {
  color: var(--primary-color);
  text-decoration: none;
}

.page-index-review-tot88__blog-card .page-index-review-tot88__card-title a:hover {
  text-decoration: underline;
}

.page-index-review-tot88__blog-excerpt {
  padding: 0 25px;
  font-size: 15px;
  color: #b0b0b0;
  line-height: 1.6;
  flex-grow: 1;
}

.page-index-review-tot88__read-more {
  display: inline-block;
  margin: 20px 25px 25px;
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-index-review-tot88__read-more:hover {
  color: #FF6B35;
  text-decoration: underline;
}

/* FAQ Section */
.page-index-review-tot88__faq-section {
  padding: 60px 20px;
  background: #121212;
}

.page-index-review-tot88__faq-container {
  max-width: 1000px;
  margin: 0 auto;
}

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

.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 20px;
  opacity: 0;
  background: #222222;
  color: #e0e0e0;
}

.page-index-review-tot88__faq-item.active .page-index-review-tot88__faq-answer {
  max-height: 2000px !important;
  padding: 20px !important;
  opacity: 1;
  background: #222222;
  border-radius: 0 0 8px 8px;
}

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

.page-index-review-tot88__faq-question:hover {
  background: #3a3a3a;
  border-color: var(--primary-color);
}

.page-index-review-tot88__faq-question:active {
  background: #4a4a4a;
}

.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: var(--primary-color);
}

.page-index-review-tot88__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: var(--secondary-color);
  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: 2px solid var(--secondary-color);
  border-radius: 50%;
}

.page-index-review-tot88__faq-item.active .page-index-review-tot88__faq-toggle {
  color: var(--primary-color);
  border-color: var(--primary-color);
  transform: rotate(45deg);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-review-tot88__main-title {
    font-size: 38px;
  }
  .page-index-review-tot88__section-title {
    font-size: 32px;
  }
  .page-index-review-tot88__sub-title {
    font-size: 22px;
  }
  .page-index-review-tot88__review-body p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .page-index-review-tot88__hero-section {
    padding: 40px 15px;
  }
  .page-index-review-tot88__main-title {
    font-size: 32px;
  }
  .page-index-review-tot88__hero-description {
    font-size: 16px;
  }
  .page-index-review-tot88__cta-button {
    padding: 12px 30px;
    font-size: 18px;
  }
  .page-index-review-tot88__review-content-section,
  .page-index-review-tot88__promotions-section,
  .page-index-review-tot88__blog-section,
  .page-index-review-tot88__faq-section {
    padding: 40px 15px;
  }
  .page-index-review-tot88__review-content-card {
    padding: 25px;
  }
  .page-index-review-tot88__section-title {
    font-size: 28px;
    margin-bottom: 25px;
  }
  .page-index-review-tot88__sub-title {
    font-size: 20px;
  }
  .page-index-review-tot88__image-gallery {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-review-tot88__image-gallery img {
    width: 100%;
  }
  .page-index-review-tot88__promotion-card,
  .page-index-review-tot88__blog-card {
    padding: 20px;
  }
  .page-index-review-tot88__card-title {
    font-size: 18px;
  }
  .page-index-review-tot88__promotion-card p,
  .page-index-review-tot88__blog-excerpt {
    font-size: 14px;
  }
  .page-index-review-tot88__btn-primary {
    padding: 10px 20px;
    font-size: 15px;
  }
  .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 {
    width: 28px;
    height: 28px;
    font-size: 24px;
  }
  .page-index-review-tot88__faq-item.active .page-index-review-tot88__faq-answer {
    padding: 15px !important;
  }
}

@media (max-width: 480px) {
  .page-index-review-tot88__main-title {
    font-size: 28px;
  }
  .page-index-review-tot88__hero-description {
    font-size: 15px;
  }
  .page-index-review-tot88__cta-button {
    font-size: 16px;
    padding: 10px 25px;
  }
  .page-index-review-tot88__section-title {
    font-size: 24px;
  }
  .page-index-review-tot88__sub-title {
    font-size: 18px;
  }
  .page-index-review-tot88__review-body p {
    font-size: 15px;
  }
  .page-index-review-tot88__promotion-card img {
    max-width: 250px;
  }
  .page-index-review-tot88__blog-card img {
    height: 180px;
  }
  .page-index-review-tot88__faq-question h3 {
    font-size: 15px;
  }
  .page-index-review-tot88__faq-toggle {
    width: 24px;
    height: 24px;
    font-size: 20px;
  }
}