 :root {
            --bg: #07080c;
            --bg-soft: #0c0e14;
            --surface: #11141c;
            --surface-2: #171a24;
            --surface-hover: #1d2130;
            --text: #ffffff;
            --text-soft: #a8acb8;
            --border: rgba(255, 255, 255, 0.08);
            --border-bright: rgba(168, 85, 247, 0.34);
            --accent: #a855f7;
            --accent-2: #7c3aed;
            --accent-light: #c084fc;
            --danger: #f472b6;
            --container: 1270px;
            --radius: 18px;
            --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            min-width: 320px;
            color: var(--text);
            background:
                radial-gradient(circle at 50% -180px, rgba(124, 58, 237, 0.19), transparent 420px),
                var(--bg);
            font-family: Inter, Arial, Helvetica, sans-serif;
            line-height: 1.5;
        }

        body.menu-open {
            overflow: hidden;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        button,
        input {
            font: inherit;
        }

        button {
            color: inherit;
        }

        img {
            display: block;
            max-width: 100%;
        }

        .container {
            width: min(calc(100% - 40px), var(--container));
            margin-inline: auto;
        }

        .site-header {
            position: sticky;
            top: 0;
            z-index: 50;
            border-bottom: 1px solid var(--border);
            background: rgba(7, 8, 12, 0.88);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
        }

        .header-main {
            display: grid;
            grid-template-columns: auto minmax(280px, 1fr) auto;
            align-items: center;
            gap: 28px;
            min-height: 82px;
        }

        .logo {
            display: inline-flex;
            flex-direction: column;
            flex-shrink: 0;
            line-height: 1;
            width: 220px;
        }

        .logo__name {
            font-size: 25px;
            font-weight: 800;
            letter-spacing: -0.04em;
        }

        .logo__accent {
            color: var(--accent);
        }

        .logo__subtitle {
            margin-top: 8px;
            color: var(--text-soft);
            font-size: 12px;
            letter-spacing: 0.02em;
        }

        .header-search {
            position: relative;
            min-width: 0;
        }

        .header-search__input {
            width: 100%;
            height: 50px;
            padding: 0 66px 0 18px;
            color: var(--text);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 14px;
            outline: none;
            background: rgba(255, 255, 255, 0.055);
            transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
        }

        .header-search__input::placeholder {
            color: #7f8492;
        }

        .header-search__input:focus {
            border-color: var(--accent);
            background: rgba(255, 255, 255, 0.075);
            box-shadow: 0 0 0 4px rgba(168, 85, 247, 0.13);
        }

        .header-search__button {
            position: absolute;
            top: 5px;
            right: 5px;
            display: grid;
            width: 40px;
            height: 40px;
            place-items: center;
            border: 0;
            border-radius: 10px;
            cursor: pointer;
            background: linear-gradient(135deg, var(--accent), var(--accent-2));
            box-shadow: 0 8px 26px rgba(124, 58, 237, 0.28);
        }

        .header-search__button:hover {
            filter: brightness(1.08);
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .header-link,
        .login-button {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            min-height: 44px;
            padding: 0 13px;
            border: 1px solid transparent;
            border-radius: 11px;
            color: #ececf2;
            font-size: 14px;
            white-space: nowrap;
        }

        .header-link:hover {
            background: rgba(255, 255, 255, 0.055);
        }

        .login-button {
            border-color: rgba(168, 85, 247, 0.52);
            color: var(--accent-light);
        }

        .login-button:hover {
            background: rgba(168, 85, 247, 0.1);
        }

        .mobile-toggle {
            display: none;
            width: 44px;
            height: 44px;
            place-items: center;
            border: 1px solid var(--border);
            border-radius: 12px;
            cursor: pointer;
            background: var(--surface);
        }

        

        main {
            padding: 34px 0 70px;
        }

        .breadcrumbs {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 24px;
            color: #747988;
            font-size: 13px;
        }

        .breadcrumbs a:hover {
            color: var(--accent-light);
        }

        .song-heading {
            margin-bottom: 28px;
        }

        .song-title {
            margin: 0;
            font-size: clamp(34px, 4vw, 56px);
            line-height: 1.08;
            letter-spacing: -0.045em;
        }

        .song-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 14px 24px;
            align-items: center;
            margin-top: 18px;
            color: var(--text-soft);
            font-size: 15px;
        }

        .song-meta__item {
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .favorite-button {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            padding: 0;
            color: #e7e7ed;
            border: 0;
            cursor: pointer;
            background: transparent;
        }

        .favorite-button svg {
            transition: transform .2s ease, fill .2s ease, color .2s ease;
        }

        .favorite-button:hover svg {
            transform: scale(1.08);
        }

        .favorite-button.is-active {
            color: #f9a8d4;
        }

        .favorite-button.is-active svg {
            fill: currentColor;
        }

        .video-shell {
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: var(--radius);
            background: #000;
            box-shadow: var(--shadow);
        }

        .video-frame {
            position: relative;
            aspect-ratio: 16 / 9;
            background:
                linear-gradient(to bottom, rgba(0,0,0,.12), rgba(0,0,0,.65)),
                url("https://images.unsplash.com/photo-1501386761578-eac5c94b800a?auto=format&fit=crop&w=1800&q=85") center/cover;
        }

        .video-frame::after {
            position: absolute;
            inset: 0;
            content: "";
            background: radial-gradient(circle at center, transparent 10%, rgba(0, 0, 0, 0.24) 78%);
            pointer-events: none;
        }

        .video-brand {
            position: absolute;
            z-index: 2;
            top: 20px;
            right: 22px;
            font-size: 14px;
            font-weight: 800;
        }

        .video-brand span {
            color: var(--accent-light);
        }

        .lyrics {
            position: absolute;
            z-index: 2;
            top: 50%;
            left: 50%;
            width: min(86%, 900px);
            transform: translate(-50%, -50%);
            text-align: center;
            text-shadow: 0 4px 28px rgba(0, 0, 0, .9);
        }

        .lyrics__active,
        .lyrics__next {
            margin: 0;
            font-size: clamp(23px, 3.2vw, 42px);
            font-weight: 800;
            line-height: 1.3;
        }

        .lyrics__active {
            color: var(--accent-light);
        }

        .lyrics__next {
            margin-top: 12px;
            color: #fff;
        }

        .video-controls {
            position: absolute;
            z-index: 3;
            right: 20px;
            bottom: 18px;
            left: 20px;
        }

        .video-progress {
            position: relative;
            height: 4px;
            margin-bottom: 17px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.28);
        }

        .video-progress__active {
            width: 34%;
            height: 100%;
            border-radius: inherit;
            background: linear-gradient(90deg, var(--accent-2), var(--accent-light));
        }

        .video-progress__thumb {
            position: absolute;
            top: 50%;
            left: 34%;
            width: 14px;
            height: 14px;
            transform: translate(-50%, -50%);
            border-radius: 50%;
            background: var(--accent);
            box-shadow: 0 0 0 5px rgba(168, 85, 247, .15);
        }

        .video-controls__row {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .control-button {
            display: grid;
            width: 36px;
            height: 36px;
            padding: 0;
            place-items: center;
            color: white;
            border: 0;
            cursor: pointer;
            background: transparent;
        }

        .control-button:hover {
            color: var(--accent-light);
        }

        .video-time {
            margin-right: auto;
            color: white;
            font-size: 14px;
        }

        .artist-section {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
            margin-top: 30px;
        }

        .artist-card {
            display: flex;
            min-width: 280px;
            align-items: center;
            gap: 16px;
            padding: 15px 18px;
            border: 1px solid var(--border);
            border-radius: 16px;
            background: linear-gradient(145deg, rgba(255,255,255,.05), rgba(255,255,255,.025));
            transition: border-color .2s ease, transform .2s ease, background .2s ease;
        }

        .artist-card:hover {
            transform: translateY(-2px);
            border-color: var(--border-bright);
            background: rgba(168, 85, 247, 0.065);
        }

        .artist-card__photo {
            width: 74px;
            height: 74px;
            flex: 0 0 74px;
            overflow: hidden;
            border: 2px solid rgba(168, 85, 247, 0.38);
            border-radius: 50%;
            background: var(--surface-2);
        }

        .artist-card__photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .artist-card__name {
            margin: 0 0 5px;
            font-size: 20px;
            font-weight: 800;
        }

        .artist-card__link {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            color: var(--accent-light);
            font-size: 14px;
        }

        .artist-card__link:hover {
            color: #d8b4fe;
        }

        .description {
            max-width: 900px;
            margin-top: 42px;
        }

        .section-title {
            margin: 0 0 17px;
            font-size: 26px;
            line-height: 1.2;
            letter-spacing: -0.025em;
        }

        .description p {
            margin: 0;
            color: #bec1cb;
            font-size: 16px;
            line-height: 1.8;
        }

        .similar {
            margin-top: 48px;
        }

        .similar-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 14px;
        }

        .track-card {
            display: grid;
            grid-template-columns: 96px minmax(0, 1fr) auto;
            min-height: 96px;
            align-items: center;
            overflow: hidden;
            border: 1px solid var(--border);
            border-radius: 15px;
            background: linear-gradient(145deg, var(--surface), #0d1017);
            transition: transform .2s ease, border-color .2s ease, background .2s ease;
        }

        .track-card:hover {
            transform: translateY(-2px);
            border-color: var(--border-bright);
            background: var(--surface-hover);
        }

        .track-card__image {
            position: relative;
            width: 96px;
            height: 96px;
            overflow: hidden;
        }

        .track-card__image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .3s ease;
        }

        .track-card:hover .track-card__image img {
            transform: scale(1.05);
        }

        .track-card__play {
            position: absolute;
            top: 50%;
            left: 50%;
            display: grid;
            width: 38px;
            height: 38px;
            padding: 0;
            place-items: center;
            transform: translate(-50%, -50%);
            border: 1px solid rgba(255,255,255,.76);
            border-radius: 50%;
            cursor: pointer;
            background: rgba(0, 0, 0, .58);
            backdrop-filter: blur(4px);
        }

        .track-card__play:hover {
            background: var(--accent-2);
        }

        .track-card__content {
            min-width: 0;
            padding: 14px 18px;
        }

        .track-card__title {
            overflow: hidden;
            margin: 0;
            font-size: 16px;
            font-weight: 750;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .track-card__artist {
            overflow: hidden;
            margin-top: 5px;
            color: var(--text-soft);
            font-size: 14px;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .track-card__count {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding-right: 18px;
            color: #8f94a2;
            font-size: 13px;
            white-space: nowrap;
        }

        .site-footer {
            border-top: 1px solid var(--border);
            background: #0a0c11;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.25fr repeat(3, 1fr);
            gap: 60px;
            padding: 52px 0 42px;
        }

        .footer-about p {
            max-width: 300px;
            margin: 18px 0;
            color: var(--text-soft);
            font-size: 14px;
            line-height: 1.7;
        }

        .socials {
            display: flex;
            gap: 10px;
        }

        .socials a {
            display: grid;
            width: 36px;
            height: 36px;
            place-items: center;
            border: 1px solid var(--border);
            border-radius: 50%;
            background: var(--surface);
            font-size: 12px;
            font-weight: 800;
        }

        .socials a:hover {
            border-color: var(--accent);
            background: rgba(168, 85, 247, .12);
        }

        .footer-column h3 {
            margin: 0 0 18px;
            font-size: 15px;
        }

        .footer-column ul {
            display: grid;
            gap: 10px;
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .footer-column a {
            color: var(--text-soft);
            font-size: 14px;
        }

        .footer-column a:hover {
            color: var(--accent-light);
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            gap: 20px;
            padding: 22px 0 28px;
            color: #777c89;
            border-top: 1px solid var(--border);
            font-size: 13px;
        }

        .mobile-panel {
            display: none;
        }

        @media (max-width: 1080px) {
            .header-main {
                grid-template-columns: auto minmax(220px, 1fr) auto;
                gap: 16px;
            }

            .header-link span {
                display: none;
            }

            .header-link {
                padding-inline: 10px;
            }

            .footer-grid {
                gap: 35px;
            }
        }

        @media (max-width: 860px) {
            .container {
                width: min(calc(100% - 28px), var(--container));
            }

            .header-main {
                grid-template-columns: auto 1fr auto;
                min-height: 70px;
            }

            .header-search {
                grid-column: 1 / -1;
                grid-row: 2;
                margin-bottom: 14px;
            }

            .header-actions {
                display: none;
            }

            .mobile-toggle {
                display: grid;
            }

            .genre-nav {
                display: none;
            }

            .mobile-panel {
                position: fixed;
                z-index: 45;
                inset: 70px 0 0;
                display: block;
                padding: 20px;
                transform: translateX(100%);
                visibility: hidden;
                overflow-y: auto;
                background: rgba(7, 8, 12, 0.98);
                transition: transform .25s ease, visibility .25s ease;
            }

            .mobile-panel.is-open {
                transform: translateX(0);
                visibility: visible;
            }

            .mobile-panel__links {
                display: grid;
                gap: 8px;
            }

            .mobile-panel__links a {
                padding: 15px 16px;
                border: 1px solid var(--border);
                border-radius: 12px;
                background: var(--surface);
            }

            .mobile-panel__title {
                margin: 22px 0 10px;
                color: #747988;
                font-size: 12px;
                font-weight: 800;
                letter-spacing: .12em;
                text-transform: uppercase;
            }

            main {
                padding-top: 24px;
            }

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

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

        @media (max-width: 620px) {
            .container {
                width: min(calc(100% - 22px), var(--container));
            }

            .logo__name {
                font-size: 21px;
            }

            .logo__subtitle {
                display: none;
            }

            .header-main {
                gap: 12px;
            }

            .header-search__input {
                height: 48px;
                padding-left: 15px;
                font-size: 14px;
            }

            main {
                padding-bottom: 52px;
            }

            .breadcrumbs {
                margin-bottom: 18px;
            }

            .song-title {
                font-size: 34px;
            }

            .song-meta {
                align-items: flex-start;
                gap: 11px 18px;
                font-size: 14px;
            }

            .video-shell {
                margin-inline: -11px;
                border-right: 0;
                border-left: 0;
                border-radius: 0;
            }

            .lyrics {
                width: 92%;
            }

            .lyrics__active,
            .lyrics__next {
                font-size: clamp(17px, 5.2vw, 25px);
            }

            .video-brand {
                top: 12px;
                right: 13px;
                font-size: 11px;
            }

            .video-controls {
                right: 10px;
                bottom: 7px;
                left: 10px;
            }

            .video-progress {
                margin-bottom: 8px;
            }

            .video-controls__row {
                gap: 5px;
            }

            .control-button {
                width: 31px;
                height: 31px;
            }

            .video-time {
                font-size: 12px;
            }

            .artist-section {
                display: grid;
                grid-template-columns: 1fr;
                gap: 11px;
                margin-top: 24px;
            }

            .artist-card {
                min-width: 0;
                padding: 12px;
            }

            .artist-card__photo {
                width: 62px;
                height: 62px;
                flex-basis: 62px;
            }

            .artist-card__name {
                font-size: 18px;
            }

            .description,
            .similar {
                margin-top: 35px;
            }

            .section-title {
                font-size: 23px;
            }

            .description p {
                font-size: 15px;
                line-height: 1.75;
            }

            .track-card {
                grid-template-columns: 82px minmax(0, 1fr);
                min-height: 82px;
            }

            .track-card__image {
                width: 82px;
                height: 82px;
            }

            .track-card__content {
                padding: 11px 13px;
            }

            .track-card__count {
                display: none;
            }

            .track-card__title {
                font-size: 15px;
            }

            .track-card__artist {
                font-size: 13px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 34px;
                padding: 42px 0 34px;
            }

            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
        }