:root {
    --primary-color: #FFD700; /* Gold */
    --secondary-color: #2F4F4F; /* Dark Slate Gray */
    --text-light: #ffffff;
    --text-dark: #333333;
    --background-light: #f5f5f5;
    --background-dark: #1a1a1a;
    --border-color: #e0e0e0;
    --accent-color: #FF4500; /* Orange Red for emphasis */
}

/* Base styles for the page content */
.page-index-review-fa88 {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
}

.page-index-review-fa88 h1,
.page-index-review-fa88 h2,
.page-index-review-fa88 h3,
.page-index-review-fa88 h4,
.page-index-review-fa88 h5,
.page-index-review-fa88 h6 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-index-review-fa88 h1 { font-size: 2.8em; color: var(--primary-color); text-shadow: 1px 1px 3px rgba(0,0,0,0.3); }
.page-index-review-fa88 h2 { font-size: 2.2em; color: var(--secondary-color); border-bottom: 2px solid var(--primary-color); padding-bottom: 10px; margin-top: 40px;}
.page-index-review-fa88 h3 { font-size: 1.8em; color: var(--secondary-color); }
.page-index-review-fa88 p {
    margin-bottom: 1em;
    font-size: 1.1em;
}

.page-index-review-fa88 a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-index-review-fa88 a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

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

.page-index-review-fa88 .text-center {
    text-align: center;
}

.page-index-review-fa88 .cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-color);
    color: var(--text-dark); /* Ensure contrast */
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--primary-color);
}

.page-index-review-fa88 .cta-button:hover {
    background: var(--accent-color);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-index-review-fa88 .btn-secondary {
    display: inline-block;
    padding: 10px 25px;
    background: var(--secondary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 5px;
    font-size: 1em;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.page-index-review-fa88 .btn-secondary:hover {
    background: var(--primary-color);
    color: var(--text-dark);
    transform: translateY(-1px);
}

/* 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;
    background-color: var(--background-dark); /* Dark background for hero */
}

.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%;
    margin-bottom: 30px;
}

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

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

.page-index-review-fa88 .hero-content h1 {
    color: var(--primary-color);
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

.page-index-review-fa88 .hero-content p {
    color: var(--text-light);
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 30px auto;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
}

.page-index-review-fa88 .hero-content p a {
    color: var(--primary-color);
    font-weight: bold;
}

.page-index-review-fa88 .hero-content p a:hover {
    color: var(--accent-color);
}

/* Section Intro */
.page-index-review-fa88 .section-intro {
    background-color: var(--background-light);
    padding: 60px 0;
}

.page-index-review-fa88 .section-intro h3 {
    margin-top: 30px;
    color: var(--secondary-color);
}

.page-index-review-fa88 .section-image {
    width: 100%;
    height: auto;
    max-width: 800px;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Quick Access Section */
.page-index-review-fa88 .section-quick-access {
    background-color: var(--secondary-color);
    padding: 60px 0;
    color: var(--text-light);
}

.page-index-review-fa88 .section-quick-access h2 {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.page-index-review-fa88 .section-quick-access p {
    color: var(--text-light);
}

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

.page-index-review-fa88 .access-link-item {
    background-color: #3a5f5f; /* Slightly lighter than secondary */
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    color: var(--text-light); /* Ensure text is visible */
}

.page-index-review-fa88 .access-link-item:hover {
    transform: translateY(-5px);
    background-color: #4a7f7f;
}

.page-index-review-fa88 .access-link-item .link-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 15px;
    border-radius: 5px; /* Added for image consistency */
}

.page-index-review-fa88 .access-link-item h3 {
    color: var(--primary-color);
    font-size: 1.4em;
    margin-bottom: 10px;
}

.page-index-review-fa88 .access-link-item p {
    font-size: 0.95em;
    color: #cccccc;
}

/* Games Section */
.page-index-review-fa88 .section-games {
    background-color: var(--background-light);
    padding: 60px 0;
}

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

.page-index-review-fa88 .game-category-item {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease;
}

.page-index-review-fa88 .game-category-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.page-index-review-fa88 .game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 20px;
}

.page-index-review-fa88 .game-category-item h3 {
    color: var(--secondary-color);
    font-size: 1.6em;
    margin-bottom: 10px;
}

.page-index-review-fa88 .game-category-item p {
    font-size: 1em;
    color: #555555;
    margin-bottom: 20px;
}

/* Promotions Section */
.page-index-review-fa88 .section-promotions {
    background-color: #f0f8ff; /* Light blueish background */
    padding: 60px 0;
}

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

.page-index-review-fa88 .promotion-item {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease;
}

.page-index-review-fa88 .promotion-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.page-index-review-fa88 .promotion-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 20px;
}

.page-index-review-fa88 .promotion-item h3 {
    color: var(--secondary-color);
    font-size: 1.5em;
    margin-bottom: 10px;
}

.page-index-review-fa88 .promotion-item p {
    font-size: 0.95em;
    color: #555555;
}

/* Security & Support Section */
.page-index-review-fa88 .section-security-support {
    background-color: var(--background-dark);
    padding: 60px 0;
    color: var(--text-light);
}

.page-index-review-fa88 .section-security-support h2 {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.page-index-review-fa88 .section-security-support p {
    color: #cccccc;
}

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

.page-index-review-fa88 .security-support-item {
    background-color: #3a5f5f; /* Slightly lighter than secondary */
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-index-review-fa88 .security-support-item:hover {
    transform: translateY(-5px);
    background-color: #4a7f7f;
}

.page-index-review-fa88 .security-support-item .feature-image {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 15px;
    border-radius: 5px;
}

.page-index-review-fa88 .security-support-item h3 {
    color: var(--primary-color);
    font-size: 1.4em;
    margin-bottom: 10px;
}

.page-index-review-fa88 .security-support-item p {
    font-size: 0.95em;
    color: #cccccc;
}

/* FAQ Section */
.page-index-review-fa88 .section-faq {
    background-color: var(--background-light);
    padding: 60px 0;
}

.page-index-review-fa88 .faq-container {
    margin-top: 40px;
}

.page-index-review-fa88 .faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    overflow: hidden;
}

.page-index-review-fa88 .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    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;
    color: var(--secondary-color);
    font-size: 1.2em;
}}