/* style/index-review-fa88.css */
:root {
    --primary-color: #007BFF;
    --secondary-color: #28A745;
    --dark-text-color: #333333;
    --light-text-color: #ffffff;
    --background-light: #f1f3f5;
    --card-background: #ffffff;
    --border-color: #e0e0e0;
    --shadow-color: rgba(0, 0, 0, 0.1);
}

/* Base styles for the page content, considering dark body background */
.page-index-review-fa88 {
    color: var(--light-text-color); /* Default text color for dark body background */
    background-color: var(--dark-bg-1); /* Inherited from shared.css, assumed dark */
    line-height: 1.6;
    font-family: 'Arial', sans-serif;
}

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

.page-index-review-fa88__section {
    padding: 60px 0;
    position: relative;
}

.page-index-review-fa88__section-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 40px;
    text-align: center;
    color: var(--primary-color);
}

.page-index-review-fa88__section-title--white {
    color: var(--light-text-color);
}

.page-index-review-fa88__text-block {
    font-size: 17px;
    margin-bottom: 20px;
    text-align: justify;
    color: var(--dark-text-color);
}

.page-index-review-fa88__text-block--white {
    color: var(--light-text-color);
}

.page-index-review-fa88__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: var(--primary-color);
    color: var(--light-text-color);
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    cursor: pointer;
}

.page-index-review-fa88__cta-button:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-index-review-fa88__cta-button--white {
    background: var(--light-text-color);
    color: var(--primary-color);
    border-color: var(--light-text-color);
}

.page-index-review-fa88__cta-button--white:hover {
    background: #e0e0e0;
    border-color: #e0e0e0;
    color: var(--primary-color);
}

.page-index-review-fa88__cta-button--outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.page-index-review-fa88__cta-button--outline:hover {
    background: var(--primary-color);
    color: var(--light-text-color);
}

.page-index-review-fa88__cta-button--outline-white {
    background: transparent;
    color: var(--light-text-color);
    border: 2px solid var(--light-text-color);
}

.page-index-review-fa88__cta-button--outline-white:hover {
    background: var(--light-text-color);
    color: var(--primary-color);
}

.page-index-review-fa88__button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* HERO Section */
.page-index-review-fa88__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 120px; /* Desktop: Adjust for fixed header */
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.page-index-review-fa88__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-fa88__hero-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    margin-bottom: 30px;
}

.page-index-review-fa88__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    color: var(--light-text-color);
}

.page-index-review-fa88__hero-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--light-text-color);
}

.page-index-review-fa88__hero-description {
    font-size: 20px;
    margin-bottom: 30px;
    color: var(--light-text-color);
}

/* General Section Styles */
.page-index-review-fa88__intro-section, 
.page-index-review-fa88__review-criteria-section,
.page-index-review-fa88__pros-cons-section,
.page-index-review-fa88__faq-section,
.page-index-review-fa88__conclusion-section {
    background: var(--background-light);
    color: var(--dark-text-color);
}

.page-index-review-fa88__dark-bg {
    background: linear-gradient(135deg, #007BFF, #28A745);
    color: var(--light-text-color);
}

.page-index-review-fa88__light-bg {
    background: var(--background-light);
    color: var(--dark-text-color);
}

/* Review Criteria Section */
.page-index-review-fa88__criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-index-review-fa88__criteria-card {
    background: var(--card-background);
    border-radius: 10px;
    box-shadow: 0 4px 15px var(--shadow-color);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--dark-text-color);
}

.page-index-review-fa88__criteria-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

.page-index-review-fa88__card-image {
    max-width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 5px;
}

.page-index-review-fa88__card-description {
    font-size: 16px;
    line-height: 1.7;
    text-align: justify;
}

/* Pros & Cons Section */
.page-index-review-fa88__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.page-index-review-fa88__card {
    background: var(--card-background);
    border-radius: 10px;
    box-shadow: 0 4px 15px var(--shadow-color);
    padding: 30px;
    color: var(--dark-text-color);
}

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

.page-index-review-fa88__list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
}

.page-index-review-fa88__list li::before {
    content: '✅'; /* Green checkmark */
    position: absolute;
    left: 0;
    top: 0;
}

.page-index-review-fa88__pros-cons-section .page-index-review-fa88__list li::before {
    content: '✅';
}

.page-index-review-fa88__pros-cons-section .page-index-review-fa88__card:nth-child(2) .page-index-review-fa88__list li::before {
    content: '❌'; /* Red cross for cons */
}

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

/* Registration Guide Section */
.page-index-review-fa88__registration-guide-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--light-text-color);
}

.page-index-review-fa88__ordered-list {
    list-style: decimal;
    padding-left: 30px;
    font-size: 17px;
}

.page-index-review-fa88__ordered-list--white li {
    color: var(--light-text-color);
    margin-bottom: 10px;
}

.page-index-review-fa88__ordered-list li strong {
    color: var(--light-text-color);
}

/* FAQ Section */
.page-index-review-fa88__faq-list {
    margin-top: 30px;
}

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

.page-index-review-fa88__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 15px;
    opacity: 0;
}

.page-index-review-fa88__faq-item.active .page-index-review-fa88__faq-answer {
    max-height: 2000px !important;
    padding: 20px 15px !important;
    opacity: 1;
    background: #f9f9f9;
    border-radius: 0 0 5px 5px;
    color: var(--dark-text-color);
}

.page-index-review-fa88__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.page-index-review-fa88__faq-question:hover {
    background: #f5f5f5;
    border-color: #d0d0d0;
}

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

.page-index-review-fa88__faq-question h3 {
    margin: 0;
    padding: 0;
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    pointer-events: none;
    color: var(--dark-text-color);
}

.page-index-review-fa88__faq-toggle {
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #666;
    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-fa88__faq-item.active .page-index-review-fa88__faq-toggle {
    color: var(--primary-color);
    transform: rotate(45deg);
}

/* Conclusion Section */
.page-index-review-fa88__conclusion-section .page-index-review-fa88__text-block {
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-index-review-fa88__hero-title {
        font-size: 40px;
    }
    .page-index-review-fa88__hero-description {
        font-size: 18px;
    }
    .page-index-review-fa88__section-title {
        font-size: 32px;
    }
    .page-index-review-fa88__card-title {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .page-index-review-fa88__hero-section {
        padding-top: 100px !important; /* Mobile: Adjust for fixed header */
        padding-bottom: 40px;
    }
    .page-index-review-fa88__hero-title {
        font-size: 32px;
    }
    .page-index-review-fa88__hero-description {
        font-size: 16px;
    }
    .page-index-review-fa88__section {
        padding: 40px 0;
    }
    .page-index-review-fa88__section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    .page-index-review-fa88__text-block {
        font-size: 15px;
    }
    .page-index-review-fa88__cta-button {
        padding: 12px 25px;
        font-size: 16px;
    }
    .page-index-review-fa88__button-group {
        flex-direction: column;
        gap: 15px;
    }
    .page-index-review-fa88__criteria-grid, .page-index-review-fa88__grid {
        grid-template-columns: 1fr;
    }
    .page-index-review-fa88__card-image {
        height: 150px;
    }
    .page-index-review-fa88__criteria-card, .page-index-review-fa88__card {
        padding: 25px;
    }

    /* Mobile specific image adaptation */
    .page-index-review-fa88 img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    
    .page-index-review-fa88__container,
    .page-index-review-fa88__section,
    .page-index-review-fa88__criteria-grid,
    .page-index-review-fa88__grid,
    .page-index-review-fa88__card {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-index-review-fa88__faq-question {
        padding: 15px;
        flex-wrap: wrap;
    }
    
    .page-index-review-fa88__faq-question h3 {
        font-size: 15px;
        margin-bottom: 0;
        width: calc(100% - 40px);
    }
    
    .page-index-review-fa88__faq-toggle {
        margin-left: 10px;
        width: 24px;
        height: 24px;
        font-size: 20px;
    }
    
    .page-index-review-fa88__faq-answer {
        padding: 0 15px;
    }
    
    .page-index-review-fa88__faq-item.active .page-index-review-fa88__faq-answer {
        padding: 15px !important;
    }
}