/* style/index-review-tot88.css */
:root {
    --primary-color: #007BFF;
    --secondary-color: #FFD700;
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #0d0d0d; /* Assuming dark-bg-1 from shared.css is dark */
    --border-color: #e0e0e0;
}

.page-index-review-tot88 {
    font-family: 'Arial', sans-serif;
    line-height: 1.7;
    color: var(--text-light); /* Default text color for potentially dark body background */
    background-color: var(--bg-dark); /* Ensure content background is distinct from body if needed */
}

.page-index-review-tot88__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Fixed Nav Bar Padding for desktop */
.page-index-review-tot88__intro-section {
    padding-top: 180px; /* Desktop: Adjust based on fixed header height */
    padding-bottom: 60px;
    background: linear-gradient(135deg, var(--primary-color), #0056b3); /* Darker gradient for intro */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-index-review-tot88__main-heading {
    font-size: 3.2em;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
}

.page-index-review-tot88__intro-text {
    font-size: 1.2em;
    color: rgba(255, 255, 255, 0.9);
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.page-index-review-tot88__intro-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.page-index-review-tot88__intro-image-wrapper {
    width: 100%;
    max-width: 800px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

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

.page-index-review-tot88__intro-cta-box {
    background: #ffffff; /* Light background for CTA box */
    color: var(--text-dark); /* Dark text on light background */
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    max-width: 550px;
    width: 100%;
    margin-top: 20px;
}

.page-index-review-tot88__cta-heading {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-index-review-tot88__cta-description {
    font-size: 1.1em;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.page-index-review-tot88__cta-button {
    display: inline-block;
    background: linear-gradient(45deg, var(--secondary-color), #FFC107);
    color: var(--text-dark); /* Dark text on bright yellow/gold button */
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
}

.page-index-review-tot88__cta-button:hover {
    background: linear-gradient(45deg, #FFC107, var(--secondary-color));
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-index-review-tot88__rating-summary {
    margin-top: 20px;
    font-size: 1.1em;
    color: var(--text-dark);
}

.page-index-review-tot88__stars {
    color: var(--secondary-color);
    font-size: 1.2em;
    font-weight: bold;
}

.page-index-review-tot88__section {
    padding: 60px 0;
    background-color: var(--bg-dark); /* Ensure consistency for sections */
    color: var(--text-light);
}

.page-index-review-tot88__section--overview,
.page-index-review-tot88__section--guide,
.page-index-review-tot88__section--conclusion {
    background-color: #1a1a1a; /* Slightly lighter dark background for content sections */
    border-top: 1px solid rgba(255,255,255,0.1);
}

.page-index-review-tot88__section-heading {
    font-size: 2.5em;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-index-review-tot88__paragraph {
    font-size: 1.1em;
    margin-bottom: 1.5em;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

.page-index-review-tot88__keyword {
    color: var(--secondary-color);
    font-weight: bold;
}

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

.page-index-review-tot88__review-item {
    background: #2a2a2a; /* Darker card background */
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
}

.page-index-review-tot88__review-title {
    font-size: 1.6em;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: bold;
}

.page-index-review-tot88__review-image-wrapper {
    width: 100%;
    max-width: 400px; /* Ensure images are not too large in cards */
    margin: 0 auto 20px auto;
    border-radius: 8px;
    overflow: hidden;
}

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

.page-index-review-tot88__review-item .page-index-review-tot88__paragraph {
    font-size: 1em;
    color: rgba(255, 255, 255, 0.75);
}

.page-index-review-tot88__guide-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-index-review-tot88__guide-item {
    background: #2a2a2a;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255,255,255,0.1);
}

.page-index-review-tot88__guide-title {
    font-size: 1.5em;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-index-review-tot88__guide-item p {
    font-size: 1.05em;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.page-index-review-tot88__btn-action {
    display: inline-block;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    border: none;
}

.page-index-review-tot88__btn-action:hover {
    background-color: #0056b3;
    transform: translateY(-1px);
}

.page-index-review-tot88__tips-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.page-index-review-tot88__tips-item {
    background: #2a2a2a;
    padding: 20px;
    border-radius: 10px;
    border-left: 5px solid var(--secondary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05em;
}

.page-index-review-tot88__tips-item strong {
    color: var(--secondary-color);
}

.page-index-review-tot88__conclusion-cta {
    text-align: center;
    margin-top: 50px;
}

.page-index-review-tot88__cta-button--large {
    padding: 18px 45px;
    font-size: 1.3em;
    border-radius: 10px;
}

.page-index-review-tot88__link-in-text {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-index-review-tot88__link-in-text:hover {
    color: #FFC107;
    text-decoration: underline;
}

/* FAQ Section Styles */
.page-index-review-tot88__section--faq {
    background-color: #1a1a1a;
    padding-bottom: 80px;
}

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

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

.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 25px;
  opacity: 0;
  background: #2a2a2a;
  color: rgba(255, 255, 255, 0.75);
  border-top: 1px solid rgba(255,255,255,0.05);
}

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

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

.page-index-review-tot88__faq-question:hover {
  background: #4a4a4a;
  border-color: rgba(255,255,255,0.2);
}

.page-index-review-tot88__faq-question:active {
  background: #5a5a5a;
}

.page-index-review-tot88__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 1.15em;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text-light);
  pointer-events: none;
}

.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: 20px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.page-index-review-tot88__faq-item.active .page-index-review-tot88__faq-toggle {
  color: #FFC107;
  transform: rotate(45deg); /* Change '+' to 'x' visually */
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-index-review-tot88__main-heading {
        font-size: 2.8em;
    }
    .page-index-review-tot88__section-heading {
        font-size: 2em;
    }
    .page-index-review-tot88__intro-cta-box {
        padding: 30px;
    }
    .page-index-review-tot88__cta-button {
        padding: 14px 35px;
        font-size: 1.1em;
    }
    .page-index-review-tot88__review-item {
        padding: 25px;
    }
    .page-index-review-tot88__review-title {
        font-size: 1.4em;
    }
    .page-index-review-tot88__guide-item {
        padding: 25px;
    }
    .page-index-review-tot88__guide-title {
        font-size: 1.3em;
    }
}

@media (max-width: 768px) {
    .page-index-review-tot88__intro-section {
        padding-top: 160px !important; /* Mobile: Adjust based on fixed header height */
        padding-bottom: 40px;
    }
    .page-index-review-tot88__container {
        padding: 0 15px;
    }
    .page-index-review-tot88__main-heading {
        font-size: 2em;
        margin-bottom: 15px;
    }
    .page-index-review-tot88__intro-text {
        font-size: 1em;
        margin-bottom: 30px;
    }
    .page-index-review-tot88__intro-content {
        gap: 30px;
    }
    .page-index-review-tot88__intro-cta-box {
        padding: 25px;
        margin-top: 10px;
    }
    .page-index-review-tot88__cta-heading {
        font-size: 1.5em;
        margin-bottom: 10px;
    }
    .page-index-review-tot88__cta-description {
        font-size: 1em;
        margin-bottom: 20px;
    }
    .page-index-review-tot88__cta-button {
        padding: 12px 30px;
        font-size: 1em;
    }
    .page-index-review-tot88__section {
        padding: 40px 0;
    }
    .page-index-review-tot88__section-heading {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-index-review-tot88__paragraph {
        font-size: 1em;
    }
    .page-index-review-tot88__review-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .page-index-review-tot88__review-item {
        padding: 20px;
    }
    .page-index-review-tot88__review-title {
        font-size: 1.3em;
        margin-bottom: 15px;
    }
    .page-index-review-tot88__guide-item {
        padding: 20px;
    }
    .page-index-review-tot88__guide-title {
        font-size: 1.2em;
    }
    .page-index-review-tot88__btn-action {
        padding: 10px 20px;
        font-size: 0.95em;
    }
    .page-index-review-tot88__tips-item {
        padding: 18px;
        font-size: 1em;
    }
    .page-index-review-tot88__cta-button--large {
        padding: 15px 35px;
        font-size: 1.1em;
    }

    /* FAQ Mobile */
    .page-index-review-tot88__faq-question {
        padding: 15px 20px;
    }
    .page-index-review-tot88__faq-question h3 {
        font-size: 1em;
    }
    .page-index-review-tot88__faq-toggle {
        font-size: 24px;
        width: 28px;
        height: 28px;
        margin-left: 15px;
    }
    .page-index-review-tot88__faq-answer {
        padding: 0 20px;
    }
    .page-index-review-tot88__faq-item.active .page-index-review-tot88__faq-answer {
        padding: 15px 20px !important;
    }

    /* Image responsiveness for mobile */
    .page-index-review-tot88 img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-index-review-tot88__section,
    .page-index-review-tot88__card,
    .page-index-review-tot88__container,
    .page-index-review-tot88__review-item,
    .page-index-review-tot88__intro-cta-box,
    .page-index-review-tot88__guide-item,
    .page-index-review-tot88__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
}