﻿/* ============================================
   LYRICS PAGES STYLES
   Стиль унифицирован с multilink.html
   ============================================ */

.lyrics-page {
    min-height: 100vh;
    color: #fff;
    padding: 2rem 1rem;
    font-family: var(--font-primary);
    position: relative;
    z-index: 1;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.5s;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.lyrics-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ── Header ─────────────────────────────── */
.lyrics-brand-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 3rem;
}

.lyrics-brand-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.lyrics-brand-link:hover { opacity: 0.8; }

.lyrics-brand-name {
    font-family: 'DrukTextWideCyr', sans-serif;
    font-size: clamp(2.4rem, 9.6vw, 3rem);
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #e0e0e0 0%, #888888 50%, #666666 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 5s ease infinite;
    background-size: 200% 200%;
    line-height: 1;
    margin: 0; padding: 0;
}

.lyrics-brand-sub {
    font-family: 'Affect', sans-serif;
    font-size: clamp(0.78rem, 2.4vw, 0.8rem);
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin: 0.3rem 0 0 0;
    padding: 0;
    line-height: 1.2;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50%       { background-position: 100% 50%; }
}

/* Back button — same style as .stream-btn on multilink */
.back-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Affect', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.08);
    line-height: 1.2;
}

.back-btn svg {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.back-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(136, 136, 136, 0.4);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(100, 100, 100, 0.2);
}

.back-btn:hover svg { transform: translateX(-3px); }

/* ── Content Layout ─────────────────────── */
.lyrics-content {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 3rem;
    align-items: start;
}

.lyrics-left-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* ── Sidebar card ───────────────────────── */
.lyrics-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    background: var(--dynamic-bg, rgba(255, 255, 255, 0.02)) !important;
    border-color: var(--dynamic-border, rgba(255, 255, 255, 0.06)) !important;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.36), inset 0 0 12px rgba(255, 255, 255, 0.03) !important;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.lyrics-sidebar:hover {
    border-color: rgba(255, 255, 255, 0.1) !important;
    transform: translateY(-2px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.44), inset 0 0 14px rgba(255, 255, 255, 0.05) !important;
}

/* Cover — same as .release-artwork */
.lyrics-cover {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lyrics-cover:hover {
    transform: translateY(-2px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
}

.lyrics-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lyrics-cover:hover img { transform: scale(1.05); }

.cover-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: -1;
}

.lyrics-cover:hover .cover-glow { opacity: 1; }

/* Title & artist — same as .release-track-title / .release-artist */
.lyrics-title {
    font-family: 'DrukTextWideCyr', sans-serif;
    font-size: clamp(1.38rem, 4.4vw, 1.56rem);
    font-weight: 900;
    line-height: 1.08;
    margin: 0;
    letter-spacing: 0.02em;
    color: #fff;
    text-align: center;
}

.lyrics-artist {
    font-family: 'Affect', sans-serif;
    font-size: clamp(0.95rem, 3vw, 1.05rem);
    color: rgba(255, 255, 255, 0.62);
    margin: 0;
    line-height: 1.15;
    font-weight: 400;
    text-align: center;
}

.lyrics-release {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
    font-style: italic;
    font-family: var(--font-primary);
    text-align: center;
}

/* Sidebar buttons */
.sidebar-buttons {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* "Слушать" toggle — same as .share-fab on multilink */
.listen-toggle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: none;
    border-radius: 50px;
    background: #c8c8c8;
    color: #0a0a0a;
    font-family: 'Affect', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.12);
    transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    margin-bottom: 0;
}

.listen-toggle-btn:hover {
    background: #d8d8d8;
    box-shadow: 0 6px 28px rgba(255, 255, 255, 0.18);
    transform: translateY(-1px);
}

.listen-toggle-btn:active { transform: translateY(0); }

.listen-toggle-btn[aria-expanded="true"] {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.listen-toggle-btn[aria-expanded="true"]:hover {
    background: rgba(255, 255, 255, 0.13);
    box-shadow: none;
}

.listen-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.listen-toggle-btn[aria-expanded="true"] .listen-icon { transform: rotate(90deg); }

/* Spoiler */
.listen-spoiler {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s ease;
    opacity: 0;
}

.listen-spoiler[aria-hidden="false"] {
    max-height: 600px;
    opacity: 1;
}

/* Platform links in spoiler — same as .stream-btn */
.lyrics-platform-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.lyrics-stream-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    color: #d0d0d0;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Affect', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.08);
    line-height: 1.2;
}

.lyrics-stream-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(136, 136, 136, 0.4);
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 10px 30px rgba(100, 100, 100, 0.2);
}

.lyrics-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.lyrics-btn-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    border-radius: 4px;
}

.lyrics-btn-text { white-space: nowrap; }

/* Genius button — same as .lyrics-btn on multilink */
.genius-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Affect', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    line-height: 1.2;
}

/* Когда споилер скрыт — добавляем отступ сверху у Genius */
.listen-spoiler[aria-hidden="true"] + .genius-btn {
    margin-top: 0.75rem;
}

.genius-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.08);
}

/* ── Description block ──────────────────── */
.lyrics-description-sidebar {
    animation: fadeInUp 0.8s ease forwards 0.9s;
    opacity: 0;
    padding: 1.5rem;
}

.lyrics-description-mobile { display: none; }

.lyrics-description-sidebar .lyrics-heading { margin: 0 0 1rem 0; }

/* Заголовок "О треке" — равные отступы сверху и снизу */
.lyrics-description .lyrics-heading {
    margin: 0 0 1rem 0;
}

/* ── Main content area ──────────────────── */
.lyrics-main {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: fadeInUp 0.8s ease forwards 0.7s;
    opacity: 0;
}

.lyrics-text-card {
    opacity: 1;
    background: var(--dynamic-bg, rgba(255, 255, 255, 0.02)) !important;
    border-color: var(--dynamic-border, rgba(255, 255, 255, 0.06)) !important;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.36), inset 0 0 12px rgba(255, 255, 255, 0.03) !important;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.lyrics-text-card:hover {
    border-color: rgba(255, 255, 255, 0.1) !important;
    transform: translateY(-2px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.44), inset 0 0 14px rgba(255, 255, 255, 0.05) !important;
}

/* Override glass-card default 2rem padding for lyrics pages — except text card */
.lyrics-page .glass-card { padding: 1rem; }
.lyrics-page .lyrics-text-card { padding: 2.5rem 2.5rem 3.5rem; }

/* Унифицируем hover для всех карточек на lyrics страницах — перебиваем glass-card из style.css */
.lyrics-page .glass-card:hover,
.lyrics-page .lyrics-text-card:hover,
.lyrics-page .lyrics-description:hover,
.lyrics-page .lyrics-sidebar:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.44), inset 0 0 14px rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    background: var(--dynamic-bg, rgba(255, 255, 255, 0.02)) !important;
}

.lyrics-heading {
    font-family: 'DrukTextWideCyr', sans-serif;
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 900;
    margin: 0 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
    color: #fff;
    background: none;
    -webkit-text-fill-color: #fff;
}

.lyrics-text-card .lyrics-heading {
    font-size: clamp(1.495rem, 3.45vw, 2.07rem);
    margin: 0 0 2.5rem 0;
}

.lyrics-text {
    font-family: var(--font-primary);
    font-size: clamp(0.8rem, 1.6vw, 0.88rem);
    line-height: 1.65;
    word-wrap: break-word;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 auto;
    padding: 0;
    background: none;
    border: none;
    text-align: center;
    max-width: 480px;
}

/* Semantic lyrics markup */
.lyrics-body { display: block; }

.lyrics-stanza {
    margin: 0 0 1.4em 0;
    padding: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
    text-align: center;
}

.lyrics-stanza:last-child { margin-bottom: 0; }

/* Section label: [Куплет 1], [Припев] */
.lyrics-section-label {
    font-family: 'DrukTextWideCyr', sans-serif;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 1);
    margin: 1.8em 0 0.5em 0;
    padding: 0;
    text-align: center;
}

.lyrics-section-label:first-child { margin-top: 0; }

/* Каждая строка — отдельный блок, без переносов внутри */
.lyrics-line {
    display: block;
}

.lyrics-empty {
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
    padding: 3rem 2rem;
    text-align: center;
    font-size: 1rem;
    font-family: var(--font-primary);
}

/* ── Track list (release page) ──────────── */
.track-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
    list-style: none;
    padding: 0;
}

.track-list li { list-style: none; }

.track-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.2rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 16px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.track-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(100, 100, 100, 0.15);
}

.track-number {
    font-family: 'DrukTextWideCyr', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.3);
    min-width: 3rem;
    text-align: center;
    transition: color 0.3s ease;
}

.track-item:hover .track-number { color: rgba(255, 255, 255, 0.6); }

.track-title {
    flex: 1;
    font-size: 1.05rem;
    font-weight: 600;
    font-family: var(--font-primary);
    letter-spacing: 0.01em;
}

.track-arrow {
    color: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.track-item:hover .track-arrow {
    color: rgba(255, 255, 255, 0.8);
    transform: translateX(4px);
}

/* ── Video ──────────────────────────────── */
.release-video {
    animation: fadeInUp 0.8s ease forwards 0.9s;
    opacity: 0;
    background: var(--dynamic-bg, rgba(255, 255, 255, 0.02)) !important;
    border-color: var(--dynamic-border, rgba(255, 255, 255, 0.06)) !important;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.36), inset 0 0 12px rgba(255, 255, 255, 0.03) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    background: #000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    margin-top: 1rem;
}

.video-wrapper iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: none;
}

/* ── Description content ────────────────── */
.lyrics-description {
    opacity: 1;
    font-size: clamp(0.8rem, 1.6vw, 0.88rem);
    line-height: 1.65;
    font-family: var(--font-primary);
    color: rgba(255, 255, 255, 0.7);
    background: var(--dynamic-bg, rgba(255, 255, 255, 0.02)) !important;
    border-color: var(--dynamic-border, rgba(255, 255, 255, 0.06)) !important;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.36), inset 0 0 12px rgba(255, 255, 255, 0.03) !important;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.lyrics-description:hover {
    border-color: rgba(255, 255, 255, 0.1) !important;
    transform: translateY(-2px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.44), inset 0 0 14px rgba(255, 255, 255, 0.05) !important;
}

.lyrics-description img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 1.5rem 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.lyrics-description p { margin: 1rem 0; font-size: inherit; line-height: inherit; }

.lyrics-description h1,
.lyrics-description h2,
.lyrics-description h3 {
    font-family: 'DrukTextWideCyr', sans-serif;
    margin: 0.5rem 0 0 0;
    color: #fff;
    letter-spacing: 0.02em;
}

.lyrics-description h1 {
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0; padding-bottom: 0;
}

.lyrics-description h1 + br { display: none; }
.lyrics-description h1 + * { margin-top: 0; }
.lyrics-description h2 { font-size: clamp(1rem, 2vw, 1.2rem); }
.lyrics-description h3 { font-size: clamp(0.85rem, 1.7vw, 0.95rem); }

.lyrics-description a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.lyrics-description a:hover { color: #fff; }

.lyrics-description .youtube-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin: 0;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.lyrics-description .youtube-embed iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: none; border-radius: 12px;
}

.lyrics-description .formatted-description { display: block; }

/* ── Back to Top — same as .share-fab ───── */
.back-to-top {
    position: relative;
    display: block;
    width: fit-content;
    margin: 4rem auto 2rem;
    padding: 0.9rem 1.5rem;
    background: #c8c8c8;
    color: #0a0a0a;
    border: none;
    border-radius: 50px;
    font-family: 'Affect', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.12);
}

.back-to-top:hover {
    background: #d8d8d8;
    box-shadow: 0 6px 28px rgba(255, 255, 255, 0.18);
    transform: translateY(-1px);
}

.back-to-top:active { transform: translateY(0); }

/* ── Mobile 768px ───────────────────────── */
@media (max-width: 768px) {
    .lyrics-page { padding: 2rem 1rem; }

    .lyrics-brand-header { margin-bottom: 2rem; gap: 0.5rem; }

    .back-btn { font-size: 0.82rem; padding: 0.7rem 1rem; }

    .lyrics-content { grid-template-columns: 1fr; gap: 1rem; }

    .lyrics-left-col { gap: 1rem; }

    .lyrics-description-sidebar { display: none; }
    .lyrics-description-mobile  { display: block; }

    .lyrics-page .glass-card { padding: 1rem; }
    .lyrics-page .lyrics-text-card { padding: 2rem 1.5rem; }
    .lyrics-page .lyrics-description { padding: 1.5rem 1.5rem 2rem; }

    .lyrics-heading { font-size: 1.25rem; margin: 0 0 1.5rem 0; }
    .lyrics-text-card .lyrics-heading { margin: 0 0 2rem 0; }
    .lyrics-description-mobile .lyrics-heading { font-size: 1.25rem; }
    .lyrics-text-card .lyrics-heading { font-size: 1.25rem; }

    .lyrics-sidebar { position: static; max-width: 400px; margin: 0 auto; width: 100%; }

    .lyrics-title { font-size: clamp(1.38rem, 5.5vw, 1.56rem); text-align: center; }

    .lyrics-artist, .lyrics-release { text-align: center; }

    .lyrics-text { font-size: 0.76rem; line-height: 1.7; }

    .track-item { padding: 1rem 1.2rem; gap: 1rem; }
    .track-number { font-size: 1.2rem; min-width: 2.5rem; }
    .track-title { font-size: 0.95rem; }

    .lyrics-description { font-size: 0.76rem; }
    .lyrics-description h1 { font-size: 0.9rem; }
    .lyrics-description h2 { font-size: 1rem; }
    .lyrics-description h3 { font-size: 0.85rem; }

    .back-to-top { margin: 3rem auto; padding: 0.8rem 1.2rem; font-size: 0.85rem; }
}

/* ── Mobile 480px ───────────────────────── */
@media (max-width: 480px) {
    .lyrics-page { padding: 2rem 1rem; }

    .lyrics-brand-header { gap: 0.5rem; margin-bottom: 1.5rem; }

    .back-btn { font-size: 0.78rem; padding: 0.65rem 0.9rem; gap: 0.4rem; }
    .back-btn svg { width: 14px; height: 14px; }

    .lyrics-page .glass-card { padding: 1rem; }
    .lyrics-page .lyrics-text-card { padding: 1.75rem 1.25rem; }
    .lyrics-page .lyrics-description { padding: 1.25rem 1.25rem 1.75rem; }

    .lyrics-heading { font-size: 1.1rem; margin: 0 0 1.25rem 0; }
    .lyrics-text-card .lyrics-heading { margin: 0 0 1.75rem 0; }
    .lyrics-description-mobile .lyrics-heading { font-size: 1.1rem; }
    .lyrics-text-card .lyrics-heading { font-size: 1.1rem; }

    .lyrics-title { font-size: clamp(1.2rem, 5.5vw, 1.4rem); }

    .lyrics-text { font-size: 0.72rem; line-height: 1.6; }

    .track-item { padding: 0.9rem 1rem; gap: 0.8rem; }
    .track-number { font-size: 1.1rem; min-width: 2rem; }
    .track-title { font-size: 0.9rem; }
    .track-arrow svg { width: 16px; height: 16px; }

    .lyrics-description h1 { font-size: 0.85rem; }
    .lyrics-description h2 { font-size: 0.95rem; }
    .lyrics-description h3 { font-size: 0.8rem; }

    .back-to-top { margin: 2.5rem auto; padding: 0.7rem 1rem; font-size: 0.82rem; }
}

