.page-index-review-tot88 {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #1E90FF; /* Royal Blue */
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-dark: #1a1a1a;
  --bg-light: #f5f5f5;
  --border-color: #e0e0e0;
  font-family: 'Arial', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
}

.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-child(even) {
  background-color: var(--bg-light);
}

.page-index-review-tot88__section-title {
  font-size: 3em;
  color: var(--secondary-color);
  margin-bottom: 30px;
  font-weight: bold;
  text-transform: uppercase;
}

.page-index-review-tot88__sub-title {
  font-size: 2em;
  color: var(--primary-color);
  margin-top: 40px;
  margin-bottom: 20px;
}

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

/* 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;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-index-review-tot88__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
}

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

.page-index-review-tot88__main-title {
  font-size: 4em;
  color: var(--primary-color);
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-index-review-tot88__cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: var(--secondary-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-index-review-tot88__cta-button:hover {
  background: var(--primary-color);
  color: var(--text-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-index-review-tot88__cta-button--large {
    padding: 20px 60px;
    font-size: 1.4em;
}

/* Feature Grid */
.page-index-review-tot88__feature-grid {
  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: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  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: 150px;
  height: 150px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-index-review-tot88__feature-item h3 {
  font-size: 1.8em;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.page-index-review-tot88__feature-item p {
  font-size: 1em;
  color: var(--text-dark);
}

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

.page-index-review-tot88__game-card {
  background: var(--bg-dark);
  color: var(--text-light);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-index-review-tot88__game-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 2px solid var(--primary-color);
}

.page-index-review-tot88__card-title {
  font-size: 1.8em;
  color: var(--primary-color);
  margin: 20px 15px 10px;
}

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

.page-index-review-tot88__card-title a:hover {
  color: var(--secondary-color);
}

.page-index-review-tot88__game-card p {
  font-size: 1em;
  color: #cccccc;
  padding: 0 15px 20px;
  flex-grow: 1;
}

.page-index-review-tot88__card-button {
  display: inline-block;
  padding: 12px 25px;
  background: var(--secondary-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 6px;
  font-size: 1em;
  font-weight: bold;
  margin-bottom: 20px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.page-index-review-tot88__card-button:hover {
  background: var(--primary-color);
  color: var(--text-dark);
  transform: translateY(-2px);
}

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

.page-index-review-tot88__promotions .page-index-review-tot88__section-title {
  color: var(--primary-color);
}

.page-index-review-tot88__promotions p {
    color: #cccccc;
}

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

.page-index-review-tot88__promo-item {
  background: #2a2a2a;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-review-tot88__promo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-index-review-tot88__promo-image {
  width: 200px;
  height: 200px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-index-review-tot88__promo-title {
  font-size: 1.8em;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.page-index-review-tot88__promo-item p {
  font-size: 1em;
  color: #bbbbbb;
  margin-bottom: 20px;
}

.page-index-review-tot88__promo-button {
  display: inline-block;
  padding: 12px 25px;
  background: var(--primary-color);
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 6px;
  font-size: 1em;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.3s ease;
}

.page-index-review-tot88__promo-button:hover {
  background: var(--secondary-color);
  color: var(--text-light);
  transform: translateY(-2px);
}

/* Guide Steps */
.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: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.page-index-review-tot88__step-image {
  width: 200px;
  height: 200px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-index-review-tot88__step-title {
  font-size: 1.8em;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.page-index-review-tot88__step-item p {
  font-size: 1em;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.page-index-review-tot88__step-button {
  display: inline-block;
  padding: 10px 20px;
  background: var(--primary-color);
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.95em;
  font-weight: bold;
  transition: background 0.3s ease;
}

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

/* Support */
.page-index-review-tot88__support-info {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 40px;
  border-radius: 12px;
  margin-top: 40px;
  text-align: left;
}

.page-index-review-tot88__support-info h3 {
  color: var(--primary-color);
  font-size: 2em;
  margin-bottom: 20px;
}

.page-index-review-tot88__support-info p,
.page-index-review-tot88__support-info ul {
  font-size: 1.1em;
  color: #cccccc;
  margin-bottom: 15px;
}

.page-index-review-tot88__support-info ul {
  list-style: disc inside;
  padding-left: 20px;
}

.page-index-review-tot88__support-info li {
  margin-bottom: 8px;
}

.page-index-review-tot88__support-info strong {
  color: var(--primary-color);
}

/* Security */
.page-index-review-tot88__security {
  background-color: var(--bg-light);
}

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

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

.page-index-review-tot88__security-icon {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-index-review-tot88__security-item h3 {
  font-size: 1.8em;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.page-index-review-tot88__security-item p {
  font-size: 1em;
  color: var(--text-dark);
}

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

.page-index-review-tot88__app .page-index-review-tot88__section-title {
  color: var(--primary-color);
}

.page-index-review-tot88__app p {
    color: #cccccc;
}

.page-index-review-tot88__app-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin-top: 40px;
  text-align: left;
}

.page-index-review-tot88__app-text {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.page-index-review-tot88__app-text h3 {
  color: var(--secondary-color);
  font-size: 2.2em;
  margin-bottom: 20px;
}

.page-index-review-tot88__app-text ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-index-review-tot88__app-text li {
  font-size: 1.1em;
  color: #cccccc;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page-index-review-tot88__app-text li::before {
  content: '✓';
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-index-review-tot88__app-image {
  flex: 1;
  min-width: 300px;
  max-width: 400px;
  text-align: center;
}

.page-index-review-tot88__app-mockup {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* FAQ Section */
.page-index-review-tot88__faq-list {
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.faq-question:hover {
  background: var(--bg-light);
  border-color: var(--secondary-color);
}

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

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

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #f9f9f9;
  border-radius: 0 0 8px 8px;
  text-align: left;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height for content */
  padding: 20px 25px;
  border: 1px solid var(--border-color);
  border-top: none;
}

.faq-item.active .faq-question {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background: var(--bg-light);
}

.faq-answer p {
  margin: 0;
  color: var(--text-dark);
}

/* Conclusion */
.page-index-review-tot88__conclusion {
  background: linear-gradient(135deg, var(--secondary-color), #0056b3);
  color: var(--text-light);
  padding: 80px 20px;
}

.page-index-review-tot88__conclusion .page-index-review-tot88__section-title {
  color: var(--primary-color);
}

.page-index-review-tot88__conclusion p {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 40px;
  color: var(--text-light);
}

/* Copyright */
.page-index-review-tot88__copyright {
  font-size: 0.9em;
  color: #cccccc;
  margin-top: 40px;
  padding: 20px 0;
  background-color: var(--bg-dark);
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-review-tot88__main-title {
    font-size: 3.5em;
  }
  .page-index-review-tot88__section-title {
    font-size: 2.5em;
  }
  .page-index-review-tot88__sub-title {
    font-size: 1.8em;
  }
  .page-index-review-tot88__hero-description {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-index-review-tot88__hero-section {
    padding: 60px 15px;
  }
  .page-index-review-tot88__main-title {
    font-size: 2.8em;
  }
  .page-index-review-tot88__section-title {
    font-size: 2em;
    margin-bottom: 20px;
  }
  .page-index-review-tot88__sub-title {
    font-size: 1.6em;
  }
  .page-index-review-tot88 p {
    font-size: 1em;
  }
  .page-index-review-tot88__cta-button {
    padding: 15px 30px;
    font-size: 1em;
  }
  .page-index-review-tot88__cta-button--large {
    padding: 18px 45px;
    font-size: 1.2em;
}
  .page-index-review-tot88__section {
    padding: 40px 0;
  }
  .page-index-review-tot88__feature-item h3,
  .page-index-review-tot88__game-card h3,
  .page-index-review-tot88__promo-title,
  .page-index-review-tot88__step-title,
  .page-index-review-tot88__security-item h3,
  .page-index-review-tot88__app-text h3 {
    font-size: 1.5em;
  }
  .page-index-review-tot88__game-image {
    height: 180px;
  }
  .page-index-review-tot88__app-content {
    flex-direction: column;
    gap: 30px;
  }
  .page-index-review-tot88__app-text {
    text-align: center;
  }
  .page-index-review-tot88__app-text ul {
      text-align: left;
  }
  .faq-question {
    padding: 15px 20px;
  }
  .faq-question h3 {
    font-size: 1.1em;
  }
  .faq-answer {
    padding: 0 20px;
  }
  .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-index-review-tot88__main-title {
    font-size: 2em;
  }
  .page-index-review-tot88__section-title {
    font-size: 1.8em;
  }
  .page-index-review-tot88__hero-description {
    font-size: 0.95em;
  }
  .page-index-review-tot88__cta-button {
    padding: 12px 25px;
    font-size: 0.9em;
  }
  .page-index-review-tot88__cta-button--large {
    padding: 15px 35px;
    font-size: 1em;
}
  .page-index-review-tot88__feature-icon,
  .page-index-review-tot88__promo-image,
  .page-index-review-tot88__step-image,
  .page-index-review-tot88__security-icon {
    width: 100px;
    height: 100px;
  }
  .page-index-review-tot88__feature-item h3,
  .page-index-review-tot88__game-card h3,
  .page-index-review-tot88__promo-title,
  .page-index-review-tot88__step-title,
  .page-index-review-tot88__security-item h3,
  .page-index-review-tot88__app-text h3 {
    font-size: 1.3em;
  }
  .page-index-review-tot88__game-image {
    height: 150px;
  }
  .page-index-review-tot88__support-info {
      padding: 25px;
  }
  .page-index-review-tot88__support-info h3 {
      font-size: 1.8em;
  }
  .page-index-review-tot88__app-text ul {
      padding-left: 15px;
  }
  .page-index-review-tot88__app-text li {
      padding-left: 20px;
  }
  .page-index-review-tot88__app-text li::before {
      left: 0;
  }
  .faq-question h3 {
    font-size: 1em;
  }
  .faq-toggle {
    font-size: 20px;
  }
  .page-index-review-tot88__conclusion p {
      font-size: 1em;
  }
}