@media (max-width: 768px) {

    #smooth-wrapper {
        position: static !important;
        overflow: visible !important;
    }

    #smooth-content {
        transform: none !important;
        will-change: auto;
    }

    body {
        height: auto !important;
    }

    .header {
        padding: 14px 5vw;
    }

    .logo img {
        height: 34px;
    }

    .burger {
        font-size: 1.1rem;
        background: none;
        border: none;
        color: #fff;
        cursor: pointer;
        z-index: 20;
    }

    .nav {
        position: fixed;
        top: 64px;
        right: 5vw;
        background: rgba(0, 0, 0, 0.96);
        border: 1px solid rgba(255, 255, 255, .1);
        padding: 18px 22px;
        display: flex;
        flex-direction: column;
        gap: 18px;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: .3s;
        z-index: 15;
    }

    .nav.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav a,
    .nav-btn {
        margin: 0;
        font-size: .8rem;
        letter-spacing: .2em;
        padding: 10px 0;
    }

    .music-control {
        margin-left: 0;
    }

    .hero {
        height: 100svh;
    }

    .hero-content {
        padding: 0 6vw;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.25;
    }

    .game-section {
        padding: 90px 6vw;
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .game-info {
        max-width: 100%;
        text-align: left;
    }

    .game-info h2 {
        font-size: 2.4rem;
    }

    .game-info p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .game-poster {
        aspect-ratio: 3 / 4;
        height: auto;
        max-height: 70vh;
    }

    .game-poster img {
        object-position: center;
    }

    .feature-section {
        grid-template-columns: 1fr;
        padding: 80px 6vw;
        gap: 36px;

        opacity: 1;
        transform: none;
        transition: opacity .8s ease;
    }

    .feature-media {
        aspect-ratio: 16 / 9;
        max-height: 45vh;
        overflow: hidden;
    }

    .feature-media img {
        object-fit: cover;
        object-position: center;
    }

    .feature-info h2 {
        font-size: 1.9rem;
        line-height: 1.2;
    }

    .feature-info ul {
        margin-top: 22px;
    }

    .feature-info li {
        font-size: 1rem;
        line-height: 1.55;
        margin-bottom: 12px;
    }

    footer {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    .news-page {
        padding: 90px 4vw 60px;
    }

    .news-feed {
        gap: 20px;
    }

    .news-card {
        border-radius: 12px;
    }

    .news-content p {
        font-size: 0.95rem;
    }

}