:root {
  --primary-color: #1A202C; /* Dark background */
  --secondary-color: #FFD700; /* Gold accent */
  --text-light: #f0f0f0;
  --text-dark: #1A202C;
  --background-dark: #1A202C;
  --background-light: #ffffff;
  --border-color: #333;
  --button-hover-bg: #e6c200;
}

.page-index-review-tot88 {
  font-family: 'Arial', sans-serif;
  color: var(--text-light);
  background-color: var(--background-dark);
  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;
  margin-bottom: 20px;
  background-color: var(--background-dark);
  border-bottom: 1px solid var(--border-color);
}

.page-index-review-tot88__section:last-of-type {
  border-bottom: none;
}

.page-index-review-tot88 h1,
.page-index-review-tot88 h2,
.page-index-review-tot88 h3 {
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.3;
}

.page-index-review-tot88 h1 {
  font-size: 2.8em;
  color: var(--text-light);
}

.page-index-review-tot88 h2 {
  font-size: 2.2em;
}

.page-index-review-tot88 h3 {
  font-size: 1.6em;
  color: var(--text-light);
}

.page-index-review-tot88 p {
  margin-bottom: 15px;
  text-align: justify;
}

.page-index-review-tot88 ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-index-review-tot88 li {
  margin-bottom: 10px;
}

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

.page-index-review-tot88 a:hover {
  color: var(--button-hover-bg);
  text-decoration: underline;
}

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

.page-index-review-tot88__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color);
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.page-index-review-tot88__cta-button:hover {
  background: var(--button-hover-bg);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.page-index-review-tot88__small-cta-button {
  display: inline-block;
  padding: 10px 25px;
  background: var(--secondary-color);
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  margin-top: 15px;
  transition: all 0.3s ease;
}

.page-index-review-tot88__small-cta-button:hover {
  background: var(--button-hover-bg);
  transform: translateY(-1px);
}

/* 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: 60px 20px;
  background: linear-gradient(135deg, var(--primary-color) 0%, rgba(26, 32, 44, 0.8) 100%);
  overflow: hidden;
}

.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 25px rgba(0, 0, 0, 0.5);
}

.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(--text-light);
  margin-bottom: 20px;
}

.page-index-review-tot88__hero-content p {
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-index-review-tot88__advantage-item {
  background-color: #2a3344;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-index-review-tot88__advantage-item:hover {
  transform: translateY(-10px);
  background-color: #3a455a;
}

.page-index-review-tot88__advantage-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
  filter: drop-shadow(0 0 5px var(--secondary-color));
}

.page-index-review-tot88__advantage-item h3 {
  color: var(--secondary-color);
  margin-top: 0;
  margin-bottom: 15px;
}

.page-index-review-tot88__advantage-item p {
  font-size: 0.95em;
  color: #ccc;
  text-align: center;
}

/* Games Section */
.page-index-review-tot88__games {
  background-color: #2a3344;
}

.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-card {
  background-color: var(--background-dark);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-index-review-tot88__game-card:hover {
  transform: translateY(-8px);
}

.page-index-review-tot88__game-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid var(--border-color);
}

.page-index-review-tot88__game-card h3 {
  font-size: 1.4em;
  padding: 15px;
  margin-bottom: 0;
  text-align: left;
}

.page-index-review-tot88__game-card h3 a {
  color: var(--secondary-color);
}

.page-index-review-tot88__game-card p {
  font-size: 0.9em;
  color: #ccc;
  padding: 0 15px 15px;
  text-align: left;
}

/* Promotions Section */
.page-index-review-tot88__promotions {
  background-color: var(--background-dark);
}

.page-index-review-tot88__promo-list {
  list-style: none;
  padding-left: 0;
  margin-top: 30px;
}

.page-index-review-tot88__promo-list li {
  background-color: #2a3344;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  font-size: 1.05em;
  color: #ccc;
  position: relative;
  padding-left: 40px;
}

.page-index-review-tot88__promo-list li::before {
  content: '⚡'; /* Unicode lightning bolt */
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--secondary-color);
  font-size: 1.2em;
}

.page-index-review-tot88__promo-list li strong {
  color: var(--secondary-color);
}

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

.page-index-review-tot88__step-item {
  background-color: #2a3344;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.page-index-review-tot88__step-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
  filter: drop-shadow(0 0 5px var(--secondary-color));
}

.page-index-review-tot88__step-item h3 {
  color: var(--secondary-color);
  margin-top: 0;
  margin-bottom: 20px;
}

.page-index-review-tot88__step-item ol {
  text-align: left;
  padding-left: 20px;
  color: #ccc;
}

.page-index-review-tot88__step-item ol li {
  margin-bottom: 10px;
}

/* Security & Support Section */
.page-index-review-tot88__security-support {
  background-color: #1A202C;
}

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

.page-index-review-tot88__security-item {
  background-color: #2a3344;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-index-review-tot88__icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
  filter: drop-shadow(0 0 5px var(--secondary-color));
}

.page-index-review-tot88__security-item h3 {
  color: var(--secondary-color);
  margin-top: 0;
  margin-bottom: 15px;
}

.page-index-review-tot88__security-item p {
  font-size: 0.95em;
  color: #ccc;
  text-align: center;
}

/* FAQ Section */
.page-index-review-tot88__faq {
  background-color: #2a3344;
}

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

.faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

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

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

.faq-question h3 {
  margin: 0;
  font-size: 1.1em;
  color: var(--text-dark);
  text-align: left;
  flex-grow: 1;
}

.faq-toggle {
  font-size: 20px;
  font-weight: bold;
  transition: transform 0.3s ease;
  color: var(--text-dark);
}

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

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

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

/* Blog Section */
.page-index-review-tot88__blog {
  background-color: var(--background-dark);
}

.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-color: #2a3344;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-index-review-tot88__blog-card:hover {
  transform: translateY(-8px);
}

.page-index-review-tot88__blog-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid var(--border-color);
}

.page-index-review-tot88__blog-card h3 {
  font-size: 1.4em;
  padding: 15px;
  margin-bottom: 0;
  text-align: left;
}

.page-index-review-tot88__blog-card h3 a {
  color: var(--secondary-color);
}

.page-index-review-tot88__blog-card p {
  font-size: 0.9em;
  color: #ccc;
  padding: 0 15px;
  text-align: left;
}

.page-index-review-tot88__blog-date {
  display: block;
  font-size: 0.8em;
  color: #999;
  padding: 0 15px 15px;
  text-align: left;
}

/* Conclusion Section */
.page-index-review-tot88__conclusion {
  background-color: #2a3344;
  text-align: center;
}

.page-index-review-tot88__conclusion p {
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #ccc;
}

.page-index-review-tot88__final-cta {
  font-size: 20px;
  padding: 18px 50px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-review-tot88 h1 {
    font-size: 2.4em;
  }
  .page-index-review-tot88 h2 {
    font-size: 2em;
  }
  .page-index-review-tot88__advantage-grid,
  .page-index-review-tot88__game-grid,
  .page-index-review-tot88__guide-steps,
  .page-index-review-tot88__security-grid,
  .page-index-review-tot88__blog-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-index-review-tot88__section {
    padding: 40px 0;
  }
  .page-index-review-tot88 h1 {
    font-size: 2em;
  }
  .page-index-review-tot88 h2 {
    font-size: 1.8em;
  }
  .page-index-review-tot88 h3 {
    font-size: 1.4em;
  }
  .page-index-review-tot88__hero-content p {
    font-size: 1em;
  }
  .page-index-review-tot88__cta-button {
    padding: 12px 30px;
    font-size: 16px;
  }
  .page-index-review-tot88__advantage-item,
  .page-index-review-tot88__game-card,
  .page-index-review-tot88__step-item,
  .page-index-review-tot88__security-item,
  .page-index-review-tot88__blog-card {
    padding: 20px;
  }
  .faq-question {
    padding: 12px;
  }
  .faq-question h3 {
    font-size: 1em;
  }
  .faq-answer {
    padding: 10px 15px;
  }
  .page-index-review-tot88__promo-list li {
    padding-left: 30px;
    font-size: 1em;
  }
  .page-index-review-tot88__promo-list li::before {
    left: 10px;
  }
}

@media (max-width: 480px) {
  .page-index-review-tot88__container {
    padding: 15px;
  }
  .page-index-review-tot88 h1 {
    font-size: 1.8em;
  }
  .page-index-review-tot88 h2 {
    font-size: 1.6em;
  }
  .page-index-review-tot88 h3 {
    font-size: 1.2em;
  }
  .page-index-review-tot88__advantage-grid,
  .page-index-review-tot88__game-grid,
  .page-index-review-tot88__guide-steps,
  .page-index-review-tot88__security-grid,
  .page-index-review-tot88__blog-grid {
    grid-template-columns: 1fr;
  }
  .page-index-review-tot88__hero-image img {
    border-radius: 4px;
  }
  .page-index-review-tot88__cta-button {
    font-size: 15px;
    padding: 10px 25px;
  }
  .page-index-review-tot88__final-cta {
    font-size: 16px;
    padding: 12px 30px;
  }
}