/* === REVIEWS & GUIDES PAGE STYLES === */
/* (Add these styles to the bottom of your existing style.css) */

/* --- 2. Hero Section for Reviews Page --- */
#hero-reviews {
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('image/banner-guide.jpg') no-repeat center center/cover;
}

/* --- 3. Game Category Filter --- */
.filter-buttons {
    text-align: center;
    margin-bottom: 40px;
}
.filter-btn {
    padding: 10px 25px;
    margin: 5px;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}
.filter-btn:hover, .filter-btn.active {
    background: var(--primary-color);
    color: #fff;
}

/* --- 4. Featured Review --- */
.featured-review-card {
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
}
.featured-review-card img {
    flex: 1 1 40%;
    min-width: 300px;
    object-fit: cover;
}
.featured-review-content {
    flex: 1 1 60%;
    padding: 30px;
}
.review-pros-cons {
    display: flex;
    gap: 20px;
    margin: 20px 0;
}
.pros, .cons { flex: 1; }
.pros h4 { color: #2ecc71; }
.cons h4 { color: #e74c3c; }
.review-pros-cons ul {
    list-style-type: none;
    padding-left: 5px;
}
.final-score {
    margin-top: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-color);
}
.final-score strong { color: var(--accent-color); }

/* --- 5. Latest Guides --- */
.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.guide-card {
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.3s ease;
}
.guide-card:hover {
    transform: translateY(-8px);
}
.guide-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.guide-content {
    padding: 20px;
}
.guide-category {
    display: inline-block;
    padding: 5px 10px;
    background: var(--light-color);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}
.guide-content h4 {
    margin-bottom: 15px;
    color: var(--dark-color);
}
.read-more {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

/* --- 6. Walkthrough Spotlight --- */
.walkthrough-steps {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
}
.walkthrough-steps h3 {
    text-align: center;
    margin-bottom: 30px;
}
.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}
.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 1.2rem;
}
.step p { margin: 0; padding-top: 5px; }

/* --- 7. Quick Tips --- */
.tips-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}
.tips-list li {
    background: var(--light-color);
    padding: 15px;
    margin-bottom: 10px;
    border-radius: var(--border-radius);
    border-left: 5px solid var(--accent-color);
}
.tips-list i {
    color: #fdcb6e;
    margin-right: 10px;
}

/* --- 8. Game Battle --- */
.vs-battle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    text-align: center;
}
.vs-game img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #fff;
    box-shadow: var(--shadow);
}
.vs-game span { color: var(--text-color); }
.vs-separator {
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent-color);
}

/* --- 9. Reviewer Picks --- */
.reviewer-pick {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}
.reviewer-pick img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
}
.reviewer-pick blockquote {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 10px;
    color: var(--dark-color);
}
.reviewer-pick cite {
    font-weight: 600;
    color: var(--primary-color);
}

/* --- 10. Video Guides --- */
.video-guide-wrapper {
    max-width: 800px;
    margin: 0 auto;
}
.video-placeholder {
    position: relative;
    background: #333 ;
    height: 450px;
    border-radius: var(--border-radius);
    display: grid;
    place-items: center;
    color: #fff;
    cursor: pointer;
}
.video-placeholder i {
    font-size: 5rem;
    opacity: 0.8;
    transition: transform 0.3s ease;
}
.video-placeholder:hover i {
    transform: scale(1.1);
}
.video-placeholder span {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 1.5rem;
    font-weight: 600;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
}
iframe {
    width: 100%;
    height: 450px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: none;
    margin-bottom: 20px;
}

/* --- 11. Glossary --- */
.glossary-terms {
    max-width: 800px;
    margin: 0 auto;
}
.glossary-terms p {
    margin-bottom: 10px;
}

/* === UPGRADED FOOTER === */
.site-footer {
    background: var(--dark-color);
    color: #ccc;
    padding: 60px 5% 0;
}
.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}
.footer-about .footer-logo {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    text-decoration: none;
}
.footer-about p {
    font-size: 0.9rem;
    margin-bottom: 20px;
}
.footer-social a {
    color: #ccc;
    font-size: 1.4rem;
    margin-right: 15px;
    transition: color 0.3s ease;
}
.footer-social a:hover {
    color: var(--accent-color);
}
.footer-links h4 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 20px;
}
.footer-links ul {
    list-style: none;
}
.footer-links ul li {
    margin-bottom: 10px;
}
.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-links a:hover {
    color: #fff;
}
.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #444;
}

/* Make footer single-column on mobile */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
    iframe {
        height: 300px;
    }
    .vs-battle {
        flex-direction: column;
    }
}