/* style/index-review-tot88.css */

:root {
    --primary-color: #FF4500; /* OrangeRed */
    --secondary-color: #00CED1; /* DarkTurquoise */
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-light: #f8f9fa;
    --card-bg: #ffffff;
    --border-color: #e0e0e0;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.15);
}

/* Ensure content is not hidden by fixed header */
.page-index-review-tot88 {
    padding-top: 120px; /* Desktop: Adjust based on actual header height */
    background: var(--bg-light); /* Assuming light body background from shared.css */
    color: var(--text-dark); /* Default text color for light background */
}

/* Hero Banner */
.page-index-review-tot88__hero-banner {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 80px 20px;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
    padding-top: 200px; /* Specific padding for hero banner on desktop */
}

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

.page-index-review-tot88__main-title {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--text-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-index-review-tot88__subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    color: var(--text-light);
    line-height: 1.5;
}

.page-index-review-tot88__subtitle a {
    color: var(--text-light);
    text-decoration: underline;
    font-weight: bold;
}

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


.page-index-review-tot88__hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-index-review-tot88__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px var(--shadow-medium);
}

.page-index-review-tot88__btn--primary {
    background: var(--primary-color);
    color: var(--text-light);
    border: 2px solid var(--primary-color);
}

.page-index-review-tot88__btn--primary:hover {
    background: #e63900; /* Darken primary color */
    border-color: #e63900;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px var(--shadow-medium);
}

.page-index-review-tot88__btn--secondary {
    background: var(--text-light);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.page-index-review-tot88__btn--secondary:hover {
    background: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px var(--shadow-medium);
}

/* General Card Style */
.page-index-review-tot88__card {
    background: var(--card-bg);
    border-radius: 10px;
    box-shadow: 0 4px 15px var(--shadow-light);
    padding: 40px;
    margin-bottom: 30px;
    line-height: 1.7;
    color: var(--text-dark);
}

.page-index-review-tot88__section-title {
    font-size: 32px;
    font-weight: bold;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.3;
}

/* Introduction Section */
.page-index-review-tot88__introduction-section {
    padding: 20px 0;
}

.page-index-review-tot88__introduction-section p {
    font-size: 17px;
    margin-bottom: 15px;
}

.page-index-review-tot88__introduction-section p a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

.page-index-review-tot88__introduction-section p a:hover {
    text-decoration: underline;
}

/* Review Sections */
.page-index-review-tot88__review-sections {
    padding: 20px 0;
    display: grid;
    gap: 30px;
}

.page-index-review-tot88__review-card {
    background: var(--card-bg);
    border-radius: 10px;
    box-shadow: 0 4px 15px var(--shadow-light);
    padding: 30px;
    line-height: 1.7;
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

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

.page-index-review-tot88__card-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 20px;
    border-radius: 8px;
    object-fit: cover;
    min-width: 200px; /* Minimum size requirement */
    min-height: 200px; /* Minimum size requirement */
}

.page-index-review-tot88__review-card p {
    font-size: 16px;
    margin-bottom: 10px;
}

.page-index-review-tot88__review-card p a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

.page-index-review-tot88__review-card p a:hover {
    text-decoration: underline;
}

/* How to Join Section */
.page-index-review-tot88__how-to-join-section {
    padding: 20px 0;
}

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

.page-index-review-tot88__step-item {
    background: var(--bg-light);
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    text-align: center;
}

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

.page-index-review-tot88__step-item p a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

.page-index-review-tot88__step-item p a:hover {
    text-decoration: underline;
}

.page-index-review-tot88__cta-bottom {
    text-align: center;
    margin-top: 30px;
}

/* Pros Cons Section */
.page-index-review-tot88__pros-cons-section {
    padding: 20px 0;
}

.page-index-review-tot88__pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.page-index-review-tot88__sub-section-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

.page-index-review-tot88__text--green {
    color: #28a745; /* Green for Pros */
}

.page-index-review-tot88__text--red {
    color: #dc3545; /* Red for Cons */
}

.page-index-review-tot88__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-index-review-tot88__list li {
    background: var(--bg-light);
    margin-bottom: 10px;
    padding: 15px 20px;
    border-radius: 5px;
    display: flex;
    align-items: flex-start;
    font-size: 16px;
    line-height: 1.6;
}

.page-index-review-tot88__list li::before {
    content: '✅'; /* For Pros */
    margin-right: 10px;
    font-size: 18px;
    line-height: 1.6;
}

.page-index-review-tot88__cons-column .page-index-review-tot88__list li::before {
    content: '❌'; /* For Cons */
}

.page-index-review-tot88__text--bold {
    font-weight: bold;
}

.page-index-review-tot88__list li a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

.page-index-review-tot88__list li a:hover {
    text-decoration: underline;
}

/* Comparison Section */
.page-index-review-tot88__comparison-section {
    padding: 20px 0;
}

.page-index-review-tot88__comparison-section p {
    font-size: 17px;
    margin-bottom: 15px;
}

.page-index-review-tot88__comparison-section p a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

.page-index-review-tot88__comparison-section p a:hover {
    text-decoration: underline;
}

/* Conclusion Section */
.page-index-review-tot88__conclusion-section {
    padding: 20px 0;
}

.page-index-review-tot88__conclusion-section p {
    font-size: 17px;
    margin-bottom: 15px;
}

.page-index-review-tot88__conclusion-section p a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

.page-index-review-tot88__conclusion-section p a:hover {
    text-decoration: underline;
}

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

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

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

.page-index-review-tot88__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.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;
  padding: 0 15px;
  opacity: 0;
}

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

.page-index-review-tot88__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  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: #f5f5f5;
  border-color: #d0d0d0;
}

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

.page-index-review-tot88__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px; /* Increased for better readability */
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: var(--text-dark);
}

.page-index-review-tot88__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: var(--primary-color); /* Use primary color for toggle */
  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: 28px;
  height: 28px;
}

.page-index-review-tot88__faq-item.active .page-index-review-tot88__faq-toggle {
  color: var(--secondary-color); /* Change color when active */
  transform: rotate(45deg); /* Rotate for minus sign effect */
}

.page-index-review-tot88__faq-answer p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
}

.page-index-review-tot88__faq-answer p a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

.page-index-review-tot88__faq-answer p a:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-index-review-tot88__container {
        padding: 0 15px;
    }
    .page-index-review-tot88__main-title {
        font-size: 36px;
    }
    .page-index-review-tot88__subtitle {
        font-size: 18px;
    }
    .page-index-review-tot88__section-title {
        font-size: 28px;
    }
    .page-index-review-tot88__card {
        padding: 30px;
    }
    .page-index-review-tot88__review-card {
        padding: 25px;
    }
    .page-index-review-tot88__card-title {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .page-index-review-tot88 {
        padding-top: 100px !important; /* Mobile: Adjust for smaller header */
        font-size: 16px;
        line-height: 1.6;
    }
    .page-index-review-tot88__hero-banner {
        padding: 60px 15px;
        padding-top: 160px; /* Mobile specific padding for hero banner */
    }
    .page-index-review-tot88__main-title {
        font-size: 28px;
        margin-bottom: 15px;
    }
    .page-index-review-tot88__subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
    .page-index-review-tot88__hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    .page-index-review-tot88__btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 16px;
    }
    .page-index-review-tot88__section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    .page-index-review-tot88__card {
        padding: 20px;
        margin-bottom: 20px;
    }
    .page-index-review-tot88__introduction-section p,
    .page-index-review-tot88__review-card p,
    .page-index-review-tot88__comparison-section p,
    .page-index-review-tot88__conclusion-section p {
        font-size: 15px;
        margin-bottom: 10px;
    }
    .page-index-review-tot88__review-card {
        padding: 20px;
    }
    .page-index-review-tot88__card-title {
        font-size: 20px;
        margin-bottom: 15px;
    }
    .page-index-review-tot88__card-image {
        min-width: unset; /* Allow smaller images on mobile if needed but still >200px */
        min-height: unset;
        width: 100%;
        height: auto;
    }
    .page-index-review-tot88__steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-index-review-tot88__step-item {
        padding: 20px;
    }
    .page-index-review-tot88__step-title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .page-index-review-tot88__pros-cons-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-index-review-tot88__sub-section-title {
        font-size: 20px;
        margin-bottom: 15px;
    }
    .page-index-review-tot88__list li {
        padding: 12px 15px;
        font-size: 15px;
    }
    .page-index-review-tot88__faq-question {
        padding: 15px;
        flex-wrap: wrap;
    }
    .page-index-review-tot88__faq-question h3 {
        font-size: 15px;
        margin-bottom: 0;
        width: calc(100% - 40px);
    }
    .page-index-review-tot88__faq-toggle {
        margin-left: 10px;
        width: 24px;
        height: 24px;
        font-size: 20px;
    }
    .page-index-review-tot88__faq-answer {
        padding: 0 15px;
    }
    .page-index-review-tot88__faq-item.active .page-index-review-tot88__faq-answer {
        padding: 15px !important;
    }

    /* Mobile image adaptation */
    .page-index-review-tot88 img {
      max-width: 100% !important;
      width: 100% !important;
      height: auto !important;
    }
    
    .page-index-review-tot88__hero-banner,
    .page-index-review-tot88__introduction-section,
    .page-index-review-tot88__review-sections,
    .page-index-review-tot88__how-to-join-section,
    .page-index-review-tot88__pros-cons-section,
    .page-index-review-tot88__comparison-section,
    .page-index-review-tot88__conclusion-section,
    .page-index-review-tot88__faq-section,
    .page-index-review-tot88__container,
    .page-index-review-tot88__card,
    .page-index-review-tot88__review-card,
    .page-index-review-tot88__step-item,
    .page-index-review-tot88__pros-column,
    .page-index-review-tot88__cons-column {
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
      padding-left: 15px;
      padding-right: 15px;
    }
}

/* Ensure text contrast for links in dark background */
.page-index-review-tot88__hero-banner a {
    color: var(--text-light); /* Ensure links are visible on dark hero background */
}
.page-index-review-tot88__hero-banner a:hover {
    color: var(--secondary-color); /* Hover effect for links on dark background */
}

/* Contrast fix for general text on light background */
.page-index-review-tot88 p,
.page-index-review-tot88 li {
  color: var(--text-dark); /* Ensure dark text on light background */
}
.page-index-review-tot88__card {
  background: var(--card-bg); /* Explicitly white for cards */
  color: var(--text-dark);
}