/* MEDIA QUERIES FOR TABLET & DESKTOP (MOBILE-FIRST APPROACH) */

/* TABLET (768px and up) */
@media (min-width: 768px) {
    :root {
        --padding-x: 24px;
        --section-spacing: 80px;
    }

    h1 { font-size: 3.5rem; }
    h2 { font-size: 2.5rem; }

    /* Buttons */
    .hero-actions {
        flex-direction: row;
    }

    /* Hero Section */
    .hero-text-col p {
        font-size: 1.2rem;
    }

    /* Features Grid */
    .features-grid {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    .feature-card {
        width: calc(50% - 10px);
    }

    /* Footer */
    .footer-grid {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .footer-col {
        flex: 1;
        min-width: 200px;
    }
}

/* DESKTOP (1024px and up) */
@media (min-width: 1024px) {
    :root {
        --padding-x: 32px;
        --section-spacing: 120px;
    }

    h1 { font-size: 4.5rem; }

    /* Header Nav */
    .mobile-menu-btn { display: none; }
    .mobile-nav { display: none !important; }
    
    .nav-links {
        display: flex;
        gap: 30px;
        list-style: none;
    }
    .nav-links a {
        color: var(--text-secondary);
        font-weight: 500;
        position: relative;
        padding: 5px 0;
    }
    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: 0; left: 0;
        width: 0; height: 2px;
        background: var(--primary-gradient);
        transition: width 0.3s ease;
    }
    .nav-links a:hover::after, .nav-links a.active::after {
        width: 100%;
    }
    .nav-links a:hover, .nav-links a.active {
        color: var(--text-primary);
    }
    
    .nav-cta {
        display: block;
    }

    /* Hero Section Split Layout */
    .hero-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 60px;
    }
    .hero-text-col {
        flex: 1;
        text-align: left;
    }
    .hero-text-col p {
        margin: 0 0 30px 0;
    }
    .hero-actions {
        justify-content: flex-start;
    }
    .hero-visual-col {
        flex: 1;
        margin-top: 0;
    }

    /* Features Grid */
    .features-grid {
        flex-wrap: nowrap;
    }
    .feature-card {
        width: 33.333%;
    }
}

/* LARGE DESKTOP */
@media (min-width: 1400px) {
    .game-container {
        max-width: 1200px;
        margin: 0 auto;
    }
}