/* Desktop & Tablet Landscape */
@media (max-width: 1200px) {
    .hero-content {
        gap: 2rem;
    }
    
    h1 {
        font-size: 3.5rem;
    }
    
    .game-container {
        max-width: 95%;
    }
}

/* Tablet Portrait */
@media (max-width: 992px) {
    .section {
        padding: var(--space-tab) 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        margin-top: 2rem;
    }

    .hero-text p {
        margin: 0 auto 2rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }

    .ring-glow-wrapper {
        max-width: 350px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-brand p {
        margin: 1rem auto 0;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .section {
        padding: var(--space-mob) 0;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    /* Mobile Menu */
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--abyss-black);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: left 0.4s ease;
        z-index: 99;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 1.5rem 0;
    }

    .nav-links a {
        font-size: 1.5rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .game-container {
        border-radius: 12px;
        aspect-ratio: auto;
        height: 60vh;
    }
    
    .page-header {
        padding: 120px 0 60px;
    }
    
    .content-block {
        padding: 2rem 1.5rem;
    }
}