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

/* General styles for the page content */
.page-index-review-fa88 {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark grey for text */
    background-color: #f8f8f8;
}

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

.page-index-review-fa88__section {
    padding: 60px 0;
    margin-bottom: 20px;
}

.page-index-review-fa88__section:nth-of-type(even) {
    background-color: #f2f2f2;
}

.page-index-review-fa88__section-title {
    font-size: 38px;
    color: #3366FF; /* Primary color */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    line-height: 1.2;
}

.page-index-review-fa88__sub-title {
    font-size: 28px;
    color: #3366FF; /* Primary color */
    margin-top: 30px;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-index-review-fa88__section-description {
    font-size: 18px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #555555;
}

.page-index-review-fa88 p {
    margin-bottom: 15px;
    font-size: 17px;
    color: #333333;
}

.page-index-review-fa88__list {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    font-size: 17px;
    color: #333333;
}

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

/* Hero Banner */
.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; /* Adjust padding as needed */
    background-color: #1a3a80; /* Dark background for text contrast */
}

.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%;
    height: auto;
    max-height: 500px; /* Limit height for better presentation */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 30px; /* Space between image and content */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    min-width: 200px; /* Min size requirement */
    min-height: 200px; /* Min size requirement */
}

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

.page-index-review-fa88__main-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FFCC00; /* Secondary color for main title */
}

.page-index-review-fa88__subtitle {
    font-size: 22px;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-index-review-fa88__cta-button {
    display: inline-block;
    background-color: #FFCC00; /* Secondary color */
    color: #333333; /* Dark text for contrast */
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-index-review-fa88__cta-button:hover {
    background-color: #E0B000; /* Slightly darker secondary color */
    transform: translateY(-3px);
    color: #ffffff; /* Lighter text on hover for better contrast */
}

.page-index-review-fa88__cta-button--secondary {
    background-color: #ffffff;
    color: #3366FF;
    margin-left: 20px;
}

.page-index-review-fa88__cta-button--secondary:hover {
    background-color: #e0e0e0;
    color: #2244CC;
}

/* Content Layouts */
.page-index-review-fa88__content-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 30px;
    margin-top: 30px;
}

.page-index-review-fa88__content-wrapper p,
.page-index-review-fa88__content-wrapper h3 {
    flex: 1;
    min-width: 300px; /* Ensure content wraps nicely */
}

.page-index-review-fa88__image-left,
.page-index-review-fa88__image-right {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    margin-bottom: 20px;
}

.page-index-review-fa88__image-left {
    order: -1; /* Place image on left for default flex direction */
}

.page-index-review-fa88__image-right {
    order: 1; /* Place image on right for default flex direction */
}

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

.page-index-review-fa88__game-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    padding: 25px;
    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-fa88__game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.page-index-review-fa88__card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px; /* Ensure minimum size */
}

.page-index-review-fa88__card-title {
    font-size: 24px;
    color: #3366FF; /* Primary color */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-index-review-fa88__card-text {
    font-size: 16px;
    color: #555555;
    flex-grow: 1;
    margin-bottom: 20px;
}

.page-index-review-fa88__card-link {
    display: inline-block;
    background-color: #FFCC00; /* Secondary color */
    color: #333333; /* Dark text for contrast */
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-index-review-fa88__card-link:hover {
    background-color: #E0B000; /* Slightly darker secondary color */
    color: #ffffff;
}

/* Promotion List */
.page-index-review-fa88__promo-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-index-review-fa88__promo-item {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
    padding: 30px;
    margin-bottom: 25px;
    transition: box-shadow 0.3s ease;
}

.page-index-review-fa88__promo-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-index-review-fa88__promo-title {
    font-size: 26px;
    color: #3366FF; /* Primary color */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-index-review-fa88__promo-item p {
    font-size: 17px;
    color: #333333;
    margin-bottom: 20px;
}

.page-index-review-fa88__button {
    display: inline-block;
    background-color: #FFCC00; /* Secondary color */
    color: #333333; /* Dark text for contrast */
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.page-index-review-fa88__button:hover {
    background-color: #E0B000; /* Slightly darker secondary color */
    color: #ffffff;
}

.page-index-review-fa88__button--small {
    padding: 8px 15px;
    font-size: 14px;
}

/* Pros and Cons */
.page-index-review-fa88__grid-2-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-index-review-fa88__card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
}

.page-index-review-fa88__card--pros .page-index-review-fa88__sub-title {
    color: #28a745; /* Green for pros */
}

.page-index-review-fa88__card--cons .page-index-review-fa88__sub-title {
    color: #dc3545; /* Red for cons */
}

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

.page-index-review-fa88 .faq-item { /* No page prefix for faq-item, as per instruction in prompt */
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.page-index-review-fa88 .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: #ffffff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.page-index-review-fa88 .faq-question:hover {
    background: #f5f5f5;
}

.page-index-review-fa88 .faq-question h3 {
    margin: 0;
    font-size: 19px;
    color: #333333;
    font-weight: 600;
}

.page-index-review-fa88 .faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: #3366FF; /* Primary color */
    transition: transform 0.3s ease;
}

.page-index-review-fa88 .faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: #FFCC00; /* Secondary color when active */
}

.page-index-review-fa88 .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 25px;
    background: #f9f9f9;
}

.page-index-review-fa88 .faq-item.active .faq-answer {
    max-height: 500px; /* Sufficient height for content */
    padding: 20px 25px;
    border-top: 1px solid #eee;
}

.page-index-review-fa88 .faq-answer p {
    font-size: 16px;
    color: #555555;
    margin-bottom: 10px;
}

/* Conclusion CTA */
.page-index-review-fa88__cta-bottom {
    text-align: center;
    margin-top: 50px;
}

/* Images */
.page-index-review-fa88 img {
    max-width: 100%;
    height: auto;
    display: block;
    /* Ensure no filter properties are used to change image colors */
    /* filter: none; */
}


/* Responsive Design */
@media (max-width: 1024px) {
    .page-index-review-fa88__main-title {
        font-size: 42px;
    }
    .page-index-review-fa88__section-title {
        font-size: 34px;
    }
    .page-index-review-fa88__sub-title {
        font-size: 24px;
    }
    .page-index-review-fa88__game-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-index-review-fa88__section {
        padding: 40px 0;
    }
    .page-index-review-fa88__main-title {
        font-size: 36px;
    }
    .page-index-review-fa88__subtitle {
        font-size: 18px;
    }
    .page-index-review-fa88__cta-button {
        padding: 15px 30px;
        font-size: 18px;
        margin-left: 0;
        margin-bottom: 15px;
    }
    .page-index-review-fa88__cta-button--secondary {
        margin-left: 0;
    }
    .page-index-review-fa88__section-title {
        font-size: 30px;
        margin-bottom: 30px;
    }
    .page-index-review-fa88__sub-title {
        font-size: 22px;
    }
    .page-index-review-fa88__content-wrapper {
        flex-direction: column;
        align-items: center;
    }
    .page-index-review-fa88__image-left,
    .page-index-review-fa88__image-right {
        max-width: 100%;
        order: unset; /* Reset order for mobile */
    }
    .page-index-review-fa88__game-grid {
        grid-template-columns: 1fr;
    }
    .page-index-review-fa88__game-card {
        padding: 20px;
    }
    .page-index-review-fa88__card-image {
        height: 180px;
    }
    .page-index-review-fa88__promo-item {
        padding: 25px;
    }
    .page-index-review-fa88__promo-title {
        font-size: 22px;
    }
    .page-index-review-fa88__grid-2-col {
        grid-template-columns: 1fr;
    }
    .page-index-review-fa88 .faq-question {
        padding: 15px 20px;
    }
    .page-index-review-fa88 .faq-question h3 {
        font-size: 17px;
    }
    .page-index-review-fa88 .faq-toggle {
        font-size: 20px;
    }
    .page-index-review-fa88 .faq-answer {
        padding: 0 20px;
    }
    .page-index-review-fa88 .faq-item.active .faq-answer {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-index-review-fa88__main-title {
        font-size: 30px;
    }
    .page-index-review-fa88__subtitle {
        font-size: 16px;
    }
    .page-index-review-fa88__cta-button {
        padding: 12px 25px;
        font-size: 16px;
    }
    .page-index-review-fa88__section-title {
        font-size: 26px;
    }
    .page-index-review-fa88__sub-title {
        font-size: 20px;
    }
    .page-index-review-fa88 p,
    .page-index-review-fa88__list li,
    .page-index-review-fa88__section-description {
        font-size: 16px;
    }
    .page-index-review-fa88__hero-banner {
        padding: 80px 15px;
    }
    .page-index-review-fa88__container {
        padding: 15px;
    }
}