/* Стили для мобильной прокрутки */
@media screen and (max-width: 768px) {
    html {
        height: auto;
        min-height: 100vh;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }

    body {
        overflow-y: auto !important;
        overflow-x: hidden;
        height: auto;
        min-height: 100vh;
        background: linear-gradient(180deg, #0a0e27 0%, #1a1f3a 50%, #0f1419 100%);
        background-attachment: fixed;
        background-size: 100% 100%;
    }

    .content {
        position: relative;
        min-height: 100vh;
        padding-top: 15vh;
        padding-bottom: 30vh;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .tree-container {
        position: relative;
        margin-bottom: 40px;
        transform: none;
        top: auto;
        left: auto;
    }

    .lyrics-container {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        margin-top: 0;
        width: 90%;
        max-width: 400px;
        padding: 0 20px;
    }
}

@media screen and (max-width: 480px) {
    .content {
        padding-top: 12vh;
        padding-bottom: 25vh;
    }

    .tree-container {
        margin-bottom: 25px;
    }

    .lyrics-container {
        width: 95%;
        padding: 0 15px;
    }
}

@media screen and (orientation: landscape) and (max-height: 500px) {
    .content {
        padding-top: 8vh;
        padding-bottom: 20vh;
    }

    .tree-container {
        margin-bottom: 15px;
    }
}

