/* Lyrics Modal - Yandex Music Style with Split Layout */
.lyrics-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, #1A1A1F 0%, #111114 50%, #080809 100%);
    z-index: 1001;
    display: flex !important;
    overflow: hidden;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.lyrics-modal.hidden {
    transform: translateY(100%);
    pointer-events: none;
}

.lyrics-modal:not(.hidden) {
    transform: translateY(0);
    pointer-events: auto;
}

.lyrics-content {
    width: 100%;
    height: 100%;
    display: flex;
    position: relative;
}

/* Left Section - Cover and Info */
.lyrics-left {
    width: 45%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px;
    position: relative;
}

.lyrics-cover-container {
    position: relative;
    width: 400px;
    height: 400px;
    margin-bottom: 40px;
}

.lyrics-cover {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lyrics-cover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    opacity: 0;
    transition: all 0.3s ease;
}

.lyrics-cover-container:hover .lyrics-cover-overlay {
    background: rgba(0, 0, 0, 0.6);
    opacity: 1;
}

.lyrics-cover-overlay button {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #000;
    transition: all 0.2s ease;
}

.lyrics-cover-overlay button:hover {
    background: #fff;
    transform: scale(1.1);
}

.lyrics-cover-overlay .btn-play-big {
    width: 72px;
    height: 72px;
}

.lyrics-track-info {
    text-align: center;
    max-width: 400px;
}

.lyrics-track-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.lyrics-track-artist {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
}

/* Right Section - Lyrics Scroller */
.lyrics-right {
    width: 55%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.btn-close-lyrics {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    transition: background 0.2s ease;
    z-index: 10;
}

.btn-close-lyrics:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lyrics-scroller {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50vh 60px;
    scroll-behavior: smooth;
}

.lyrics-scroller::-webkit-scrollbar {
    width: 6px;
}

.lyrics-scroller::-webkit-scrollbar-track {
    background: transparent;
}

.lyrics-scroller::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.lyrics-scroller::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

.lyrics-line {
    font-size: 40px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
    padding: 16px 0;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: pre-wrap;
    word-wrap: break-word;
    width: 100%;
    max-width: 800px;
    font-weight: 600;
}

.lyrics-line:hover {
    color: rgba(255, 255, 255, 0.5);
}

.lyrics-line.active {
    color: #fff;
    font-size: 48px;
}

.lyrics-line.past {
    color: rgba(255, 255, 255, 0.2);
}

.lyrics-footer {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.lyrics-footer-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    margin: 4px 0;
}

/* Mobile */
@media (max-width: 768px) {
    .lyrics-content {
        flex-direction: column;
    }

    .lyrics-left {
        width: 100%;
        padding: 40px 20px 20px;
    }

    .lyrics-cover-container {
        width: 200px;
        height: 200px;
        margin-bottom: 20px;
    }

    .lyrics-track-title {
        font-size: 24px;
    }

    .lyrics-track-artist {
        font-size: 14px;
    }

    .lyrics-right {
        width: 100%;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .lyrics-scroller {
        padding: 30vh 20px;
    }

    .lyrics-line {
        font-size: 28px;
    }

    .lyrics-line.active {
        font-size: 32px;
    }
}
