/* style/index-review-fa88.css */
/* Biến CSS */
:root {
    --primary-color: #007bff; /* Xanh dương */
    --secondary-color: #28a745; /* Xanh lá cây */
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #343a40;
    --accent-gold: #FFD700; /* Vàng đồng */
    --accent-silver: #C0C0C0; /* Bạc */
    --border-color: #e0e0e0;
}

/* Các kiểu dáng chung cho trang */
.page-index-review-fa88 {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

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

.page-index-review-fa88 h1,
.page-index-review-fa88 h2,
.page-index-review-fa88 h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-index-review-fa88 h1 {
    font-size: 2.8em;
    text-align: center;
    color: var(--text-light); /* H1 trong hero section */
}

.page-index-review-fa88 h2 {
    font-size: 2.2em;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 30px;
}

.page-index-review-fa88 h3 {
    font-size: 1.6em;
    margin-bottom: 15px;
}

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

.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(--secondary-color);
}

.page-index-review-fa88 .cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--secondary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    margin-top: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

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

.page-index-review-fa88 .cta-small-button:hover {
    background: var(--secondary-color);
    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: 80px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%); /* Nền gradient cho hero */
    color: var(--text-light);
}

.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: 800px; /* Kích thước tối đa cho ảnh */
    margin-bottom: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    overflow: hidden;
}

.page-index-review-fa88 .hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

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

.page-index-review-fa88 .hero-content h1 a {
    color: var(--accent-gold); /* Màu vàng cho link trong H1 */
}

.page-index-review-fa88 .hero-content p {
    font-size: 1.2em;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

.page-index-review-fa88 .intro-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

/* Module 2: Quick Access Links */
.page-index-review-fa88 .section-quick-access {
    padding: 60px 0;
    background-color: #f0f8ff; /* Nền xanh nhạt */
}

.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 {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--text-dark);
}

.page-index-review-fa88 .access-link-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-index-review-fa88 .access-link-item img {
    width: 100px; /* Kích thước lớn hơn cho hình ảnh */
    height: 100px;
    margin-bottom: 15px;
    object-fit: contain;
}

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

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

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

.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;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-index-review-fa88 .game-category-item img {
    width: 100%;
    max-width: 300px; /* Đảm bảo hình ảnh lớn */
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

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

.page-index-review-fa88 .game-category-item p {
    font-size: 0.95em;
    color: #555;
}

/* Module 4: Promotions */
.page-index-review-fa88 .section-promotions {
    padding: 60px 0;
    background-color: #e6f7ff; /* Nền xanh nhạt hơn */
}