/* style/index-review-fa88.css */
:root {
    --primary-color: #FFD700; /* Gold */
    --secondary-color: #8B0000; /* Deep Red */
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-light: #f9f9f9;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
}

.page-index-review-fa88 {
    font-family: 'Arial', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
}

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

.page-index-review-fa88-section {
    padding: 60px 0;
    margin-bottom: 20px;
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-index-review-fa88-section:nth-of-type(even) {
    background-color: var(--bg-light);
}

.page-index-review-fa88 h1,
.page-index-review-fa88 h2,
.page-index-review-fa88 h3 {
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 25px;
    font-weight: bold;
}

.page-index-review-fa88 h1 {
    font-size: 3em;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-index-review-fa88 h2 {
    font-size: 2.5em;
}

.page-index-review-fa88 h3 {
    font-size: 1.8em;
    color: var(--text-dark);
}

.page-index-review-fa88 p {
    margin-bottom: 15px;
    text-align: justify;
}

.page-index-review-fa88 ul {
    list-style: disc inside;
    margin-bottom: 20px;
    padding-left: 20px;
}

.page-index-review-fa88 ol {
    list-style: decimal inside;
    margin-bottom: 20px;
    padding-left: 20px;
}

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

/* 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: 80px 20px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #a80000 100%); /* Darker red gradient for background */
    color: var(--text-light);
    border-radius: 0 0 15px 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.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: 900px; /* Adjust max-width for the image */
    margin-bottom: 30px;
}

.page-index-review-fa88-hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-index-review-fa88-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 0 20px;
}

.page-index-review-fa88-hero-content h1 {
    color: var(--primary-color);
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-index-review-fa88-hero-content p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: rgba(255, 255, 255, 0.9);
}

.page-index-review-fa88-cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.3em;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--primary-color);
}

.page-index-review-fa88-cta-button:hover {
    background: var(--text-light);
    color: var(--secondary-color);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border-color: var(--secondary-color);
}

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

.page-index-review-fa88-game-card {
    background: var(--bg-white);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    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(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-index-review-fa88-game-card img {
    width: 100%;
    height: 220px; /* Ensure consistent image height */
    object-fit: cover;
    border-bottom: 1px solid var(--border-color);
}

.page-index-review-fa88-game-card h3 {
    font-size: 1.5em;
    margin: 20px 15px 10px;
    color: var(--secondary-color);
    text-align: center;
}

.page-index-review-fa88-game-card p {
    font-size: 0.95em;
    padding: 0 15px 20px;
    text-align: center;
    flex-grow: 1;
}

.page-index-review-fa88-button-small {
    display: inline-block;
    padding: 10px 25px;
    background: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 30px;
    font-size: 0.9em;
    font-weight: bold;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

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

/* Promotions Section */
.page-index-review-fa88-promo-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-index-review-fa88-promo-item {
    background: linear-gradient(145deg, var(--bg-white), #f0f0f0);
    border-left: 5px solid var(--primary-color);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.page-index-review-fa88-promo-item:hover {
    transform: translateY(-5px);
}

.page-index-review-fa88-promo-item h3 {
    color: var(--secondary-color);
    margin-top: 0;
    text-align: left;
}

/* Registration Steps */
.page-index-review-fa88-steps {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-index-review-fa88-steps li {
    background: var(--bg-white);
    border-left: 4px solid var(--primary-color);
    margin-bottom: 15px;
    padding: 20px 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    font-size: 1.1em;
    counter-increment: step-counter;
    position: relative;
    padding-left: 60px; /* Space for custom counter */
}

.page-index-review-fa88-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--secondary-color);
    color: var(--text-light);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
}

.page-index-review-fa88-steps li strong {
    color: var(--secondary-color);
}

/* FAQ Section */
.page-index-review-fa88-faq .faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: var(--bg-white);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-index-review-fa88-faq .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: linear-gradient(90deg, #fff, #fefefe);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.page-index-review-fa88-faq .faq-question h3 {
    margin: 0;
    color: var(--text-dark);
    font-size: 1.2em;
    text-align: left;
    flex-grow: 1;
}

.page-index-review-fa88-faq .faq-toggle {
    font-size: 2em;
    font-weight: bold;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    line-height: 1;
    margin-left: 15px;
}

.page-index-review-fa88-faq .faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: var(--secondary-color);
}

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

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

.page-index-review-fa88-faq .faq-answer p {
    margin-bottom: 0;
    font-size: 1em;
    color: var(--text-dark);
    text-align: left;
}

/* Conclusion Section */
.page-index-review-fa88-conclusion {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, #a88800 100%);
    color: var(--text-light);
    padding: 80px 20px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-index-review-fa88-conclusion h2 {
    color: var(--text-light);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.page-index-review-fa88-conclusion p {
    font-size: 1.15em;
    max-width: 900px;
    margin: 0 auto 30px auto;
    color: rgba(255, 255, 255, 0.95);
}

.page-index-review-fa88-conclusion .page-index-review-fa88-cta-button {
    background: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--secondary-color);
}

.page-index-review-fa88-conclusion .page-index-review-fa88-cta-button:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px) scale(1.02);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-index-review-fa88-hero-content h1 {
        font-size: 3em;
    }
    .page-index-review-fa88 h2 {
        font-size: 2em;
    }
    .page-index-review-fa88 h3 {
        font-size: 1.6em;
    }
    .page-index-review-fa88-game-grid,
    .page-index-review-fa88-promo-list {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .page-index-review-fa88-section {
        padding: 40px 0;
    }
    .page-index-review-fa88-container {
        padding: 15px;
    }
    .page-index-review-fa88-hero-section {
        padding: 60px 15px;
    }
    .page-index-review-fa88-hero-content h1 {
        font-size: 2.2em;
    }
    .page-index-review-fa88-hero-content p {
        font-size: 1em;
    }
    .page-index-review-fa88-cta-button {
        padding: 15px 35px;
        font-size: 1.1em;
    }
    .page-index-review-fa88 h2 {
        font-size: 1.8em;
    }
    .page-index-review-fa88 h3 {
        font-size: 1.4em;
    }
    .page-index-review-fa88-game-grid,
    .page-index-review-fa88-promo-list {
        grid-template-columns: 1fr;
    }
    .page-index-review-fa88-steps li {
        padding-left: 50px;
        font-size: 1em;
    }
    .page-index-review-fa88-steps li::before {
        width: 25px;
        height: 25px;
        font-size: 1em;
        left: 10px;
    }
    .page-index-review-fa88-faq .faq-question {
        padding: 15px 20px;
    }
    .page-index-review-fa88-faq .faq-question h3 {
        font-size: 1.1em;
    }
    .page-index-review-fa88-faq .faq-toggle {
        font-size: 1.8em;
    }
    .page-index-review-fa88-faq .faq-answer {
        padding: 15px 20px;
    }
    .page-index-review-fa88-conclusion {
        padding: 50px 15px;
    }
    .page-index-review-fa88-conclusion p {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-index-review-fa88-hero-content h1 {
        font-size: 1.8em;
    }
    .page-index-review-fa88-hero-content p {
        font-size: 0.9em;
    }
    .page-index-review-fa88-cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-index-review-fa88 h2 {
        font-size: 1.5em;
    }
    .page-index-review-fa88 h3 {
        font-size: 1.2em;
    }
    .page-index-review-fa88-game-card img {
        height: 180px;
    }
}