.page-index-review-tot88 {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #8B0000; /* Dark Red */
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #f9f9f9;
  --bg-dark: #222222;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
}

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

.page-index-review-tot88-section {
  padding: 60px 0;
  text-align: center;
}

.page-index-review-tot88-section:nth-of-type(odd) {
  background-color: var(--bg-light);
}

.page-index-review-tot88-section h1,
.page-index-review-tot88-section h2 {
  color: var(--secondary-color);
  margin-bottom: 20px;
  font-size: 2.5em;
  font-weight: bold;
}

.page-index-review-tot88-section h3 {
  color: var(--text-dark);
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-index-review-tot88-section p {
  font-size: 1.1em;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-review-tot88-button {
  display: inline-block;
  padding: 15px 30px;
  background: var(--primary-color);
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-index-review-tot88-button:hover {
  background: #E5C100; /* Slightly darker gold */
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-index-review-tot88-button-secondary {
  background: var(--secondary-color);
  color: var(--text-light);
}

.page-index-review-tot88-button-secondary:hover {
  background: #A00000; /* Slightly darker red */
  color: var(--text-light);
}

/* HERO Section */
.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: 80px 20px;
  background: var(--bg-dark);
  color: var(--text-light);
}

.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: 12px;
  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-hero-content h1 {
  color: var(--primary-color);
  font-size: 3.5em;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-review-tot88-hero-content p {
  color: var(--text-light);
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-review-tot88-cta-button {
  padding: 18px 45px;
  font-size: 1.2em;
  background: var(--primary-color);
  color: var(--text-dark);
  border-radius: 10px;
  text-shadow: none;
}

.page-index-review-tot88-cta-button:hover {
  background: #E5C100;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Intro Section */
.page-index-review-tot88-intro {
  background-color: var(--bg-light);
}

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

.page-index-review-tot88-feature-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-index-review-tot88-feature-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-index-review-tot88-feature-item h3 {
  color: var(--secondary-color);
}

/* Quick Links Section */
.page-index-review-tot88-quick-links {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.page-index-review-tot88-quick-links h2 {
  color: var(--primary-color);
}

.page-index-review-tot88-quick-links p {
  color: var(--text-light);
}

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

.page-index-review-tot88-link-card {
  background: #333333;
  padding: 25px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--text-light);
  text-align: left;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-index-review-tot88-link-card:hover {
  transform: translateY(-5px);
  background-color: #444444;
}

.page-index-review-tot88-link-card h3 {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-size: 1.5em;
}

.page-index-review-tot88-link-card p {
  font-size: 0.95em;
  color: #cccccc;
  margin-bottom: 0;
}

/* Games Section */
.page-index-review-tot88-games {
  background-color: var(--bg-light);
}

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

.page-index-review-tot88-game-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-index-review-tot88-game-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-index-review-tot88-game-card h3 {
  padding: 20px 20px 10px;
  color: var(--secondary-color);
  font-size: 1.6em;
}

.page-index-review-tot88-game-card p {
  padding: 0 20px 20px;
  font-size: 1em;
  color: var(--text-dark);
  margin-bottom: 0;
}

.page-index-review-tot88-game-card .page-index-review-tot88-button {
  margin: 0 20px 20px;
  width: calc(100% - 40px);
  text-align: center;
  padding: 12px 20px;
  font-size: 1em;
}

/* Promotions Section */
.page-index-review-tot88-promotions {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.page-index-review-tot88-promotions h2 {
  color: var(--primary-color);
}

.page-index-review-tot88-promotions p {
  color: var(--text-light);
}

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

.page-index-review-tot88-promo-card {
  background: #333333;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-index-review-tot88-promo-card h3 {
  padding: 20px 20px 10px;
  color: var(--primary-color);
  font-size: 1.5em;
}

.page-index-review-tot88-promo-card p {
  padding: 0 20px 20px;
  font-size: 0.95em;
  color: #cccccc;
  margin-bottom: 0;
}

.page-index-review-tot88-promo-card .page-index-review-tot88-button {
  margin: 0 20px 20px;
  width: calc(100% - 40px);
  text-align: center;
  padding: 12px 20px;
  font-size: 1em;
  background: var(--secondary-color);
  color: var(--text-light);
}

.page-index-review-tot88-promo-card .page-index-review-tot88-button:hover {
  background: #A00000;
  color: var(--text-light);
}

/* Security & Support Section */
.page-index-review-tot88-security-support {
  background-color: var(--bg-light);
}

.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: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-index-review-tot88-info-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-index-review-tot88-info-item h3 {
  color: var(--secondary-color);
}

.page-index-review-tot88-contact-cta {
  margin-top: 50px;
  background: var(--secondary-color);
  color: var(--text-light);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.page-index-review-tot88-contact-cta p {
  font-size: 1.2em;
  margin-bottom: 25px;
  color: var(--text-light);
}

/* FAQ Section */
.page-index-review-tot88-faq {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.page-index-review-tot88-faq h2 {
  color: var(--primary-color);
}

.page-index-review-tot88-faq p {
  color: var(--text-light);
}

.page-index-review-tot88-faq-list {
  margin-top: 40px;
  text-align: left;
}

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

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #444444;
  color: var(--text-light);
  border: 1px solid #555555;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

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

.faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: var(--primary-color);
}

.faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  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: #333333;
  color: #cccccc;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 20px 25px;
  border-radius: 0 0 8px 8px;
}

.faq-item.active .faq-question {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

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

/* Blog Section */
.page-index-review-tot88-blog {
  background-color: var(--bg-light);
}

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

.page-index-review-tot88-blog-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-review-tot88-blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

.page-index-review-tot88-blog-content {
  padding: 20px;
}

.page-index-review-tot88-blog-content h3 {
  font-size: 1.4em;
  margin-bottom: 10px;
  line-height: 1.4;
}

.page-index-review-tot88-blog-content h3 a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-index-review-tot88-blog-content h3 a:hover {
  color: var(--primary-color);
}

.page-index-review-tot88-blog-content p {
  font-size: 0.95em;
  color: #666666;
  margin-bottom: 15px;
}

.page-index-review-tot88-blog-content span {
  font-size: 0.85em;
  color: #999999;
}

.page-index-review-tot88-view-all {
  margin-top: 50px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-review-tot88-hero-content h1 {
    font-size: 3em;
  }
  .page-index-review-tot88-hero-content p {
    font-size: 1.2em;
  }
  .page-index-review-tot88-section h2 {
    font-size: 2.2em;
  }
  .page-index-review-tot88-section h3 {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .page-index-review-tot88-hero-section {
    padding: 60px 15px;
  }
  .page-index-review-tot88-hero-image img {
    border-radius: 8px;
  }
  .page-index-review-tot88-hero-content h1 {
    font-size: 2.5em;
  }
  .page-index-review-tot88-hero-content p {
    font-size: 1.1em;
  }
  .page-index-review-tot88-cta-button {
    padding: 15px 35px;
    font-size: 1.1em;
  }
  .page-index-review-tot88-section {
    padding: 40px 0;
  }
  .page-index-review-tot88-section h2 {
    font-size: 2em;
  }
  .page-index-review-tot88-section h3 {
    font-size: 1.4em;
  }
  .page-index-review-tot88-section p {
    font-size: 1em;
  }
  .page-index-review-tot88-feature-item,
  .page-index-review-tot88-link-card,
  .page-index-review-tot88-game-card,
  .page-index-review-tot88-promo-card,
  .page-index-review-tot88-info-item,
  .page-index-review-tot88-blog-card {
    margin-bottom: 20px;
  }
  .page-index-review-tot88-links-grid,
  .page-index-review-tot88-game-categories,
  .page-index-review-tot88-promo-grid,
  .page-index-review-tot88-info-grid,
  .page-index-review-tot88-blog-grid {
    grid-template-columns: 1fr;
  }
  .faq-question {
    padding: 15px 20px;
  }
  .faq-question h3 {
    font-size: 1.1em;
  }
  .faq-toggle {
    font-size: 20px;
  }
  .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
  .page-index-review-tot88-game-image, .page-index-review-tot88-promo-image, .page-index-review-tot88-blog-image {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .page-index-review-tot88-hero-content h1 {
    font-size: 2em;
  }
  .page-index-review-tot88-hero-content p {
    font-size: 0.95em;
  }
  .page-index-review-tot88-cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-index-review-tot88-section h2 {
    font-size: 1.8em;
  }
  .page-index-review-tot88-section h3 {
    font-size: 1.3em;
  }
  .page-index-review-tot88-section p {
    font-size: 0.9em;
  }
  .page-index-review-tot88-feature-icon,
  .page-index-review-tot88-info-icon {
    width: 80px;
    height: 80px;
  }
  .page-index-review-tot88-contact-cta {
    padding: 20px;
  }
  .page-index-review-tot88-contact-cta p {
    font-size: 1em;
  }
}