@font-face {
    font-family: 'Astrella';
    src: url('../fonts/Astrella.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Garet';
    src: url('../fonts/Garet.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'UniversCnRg';
    src: url('resources/UniversCnRg.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
:root {
    --theme-color: #1f56b4;
    --theme-color-rgb: 31, 86, 180;
    --theme-font-color: #07398f;
    --theme-font-color-rgb: 7, 57, 143;
    --theme-surface-rgb: 245, 248, 255;
    --theme-progress-rgb: 31, 86, 180;
    --theme-shadow: rgba(7, 57, 143, 0.34);
    --theme-font-muted: rgba(7, 57, 143, 0.66);
    --theme-on-color: #fff;
    --club-blue: var(--theme-color);
    --club-blue-strong: var(--theme-font-color);
    --club-blue-deep: #11479f;
    --club-blue-night: #08205e;
    --club-blue-bright: #236bd0;
    --club-blue-soft: #5f8bd9;
    --club-blue-mist: #d7e2fb;
    --club-blue-ice: #eef4ff;
    --club-blue-deep-rgb: 17, 71, 159;
    --club-blue-night-rgb: 8, 32, 94;
    --club-blue-bright-rgb: 35, 107, 208;
    --club-blue-soft-rgb: 95, 139, 217;
    --club-blue-rgb: var(--theme-color-rgb);
    --club-blue-strong-rgb: var(--theme-font-color-rgb);
    --club-blue-surface-rgb: var(--theme-surface-rgb);
    --club-blue-progress-rgb: var(--theme-progress-rgb);
    --club-blue-shadow: var(--theme-shadow);
    --club-blue-muted: var(--theme-font-muted);
    --button-resting-ledge: 0 -2px 0 rgba(var(--club-blue-night-rgb), 0);
    --button-pressed-ledge: 0 -2px 0 rgba(var(--club-blue-night-rgb), 0.9);
    --button-outset-shadow:
        var(--button-resting-ledge),
        inset 0 1px 0 rgba(255, 255, 255, 0.36),
        inset 0 -2px 0 rgba(var(--club-blue-night-rgb), 0.38),
        inset 0 -1px 0 rgba(255, 255, 255, 0),
        0 3px 0 rgba(var(--club-blue-night-rgb), 0.42),
        0 8px 16px rgba(var(--club-blue-night-rgb), 0.18);
    --button-inset-shadow:
        var(--button-pressed-ledge),
        inset 0 2px 0 rgba(var(--club-blue-night-rgb), 0.76),
        inset 0 2px 4px rgba(var(--club-blue-night-rgb), 0.58),
        inset 0 -1px 0 rgba(255, 255, 255, 0.16),
        0 1px 0 rgba(255, 255, 255, 0.18),
        0 8px 16px rgba(var(--club-blue-night-rgb), 0);
    --button-light-outset-shadow:
        var(--button-resting-ledge),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -2px 0 rgba(var(--club-blue-rgb), 0.24),
        inset 0 -1px 0 rgba(255, 255, 255, 0),
        0 3px 0 rgba(var(--club-blue-rgb), 0.16),
        0 7px 14px rgba(var(--club-blue-rgb), 0.12);
    --button-press-transform: translateY(2px);
}
body {
    font-family: 'Garet', Arial, sans-serif;
    letter-spacing: -0.5px;
    background-color: var(--club-blue-strong);
    color: var(--club-blue-strong);
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: stretch;
    -webkit-text-size-adjust: 100%;
    overflow: hidden;
    height: 100vh;
    position: relative;
    isolation: isolate;
}
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    /* background:
        radial-gradient(circle at 18% 18%, rgba(var(--club-blue-bright-rgb), 0.36), transparent 34%),
        linear-gradient(135deg, rgba(var(--club-blue-night-rgb), 0.58), rgba(var(--club-blue-rgb), 0.42) 52%, rgba(var(--club-blue-deep-rgb), 0.5)); */
    pointer-events: none;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}
.album-listening-shell {
    width: min(100vw, 760px);
    height: 100vh;
    min-height: 100vh;
    display: flex;
    justify-content: end;
    align-items: center;
    padding: 20px 60px 20px 10px;
}
.player-cover {
    flex: 0 0 33.333%;
    width: 33.333%;
    align-self: flex-start;
    aspect-ratio: 1 / 1;
    min-height: 0;
    background: rgba(var(--club-blue-night-rgb), 0.18);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.34),
        0 10px 26px rgba(var(--club-blue-night-rgb), 0.16);
}
.player-cover img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: contain;
}
.app-container {
    max-width: 700px;
    width: 100%;
    height: calc(100vh - 40px);
    max-height: 760px;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 0;
    position: relative;
    isolation: isolate;
}
.app-container.telemetry-expanded {
    max-width: none;
    max-height: none;
    padding: 0;
}
.album-listening-shell:has(.app-container.telemetry-expanded) {
    width: 100vw;
    align-items: stretch;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 10px;
}
.album-listening-shell:has(.app-container.telemetry-expanded) .app-container {
    height: calc(100vh - 20px);
}
@supports (height: 100dvh) {
    .album-listening-shell {
        height: 100dvh;
        min-height: 100dvh;
    }
    .app-container {
        height: calc(100dvh - 40px);
    }
    .album-listening-shell:has(.app-container.telemetry-expanded) .app-container {
        height: calc(100dvh - 20px);
    }
}
body.has-audio-revealed .album-listening-shell {
    animation: player-site-reveal 0.92s cubic-bezier(0.2, 0.85, 0.25, 1) both;
}
@keyframes player-site-reveal {
    0% {
        opacity: 0;
        transform: translate3d(0, 18px, 0) scale(0.985);
        filter: blur(9px);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
        filter: blur(0);
    }
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    width: 100%;
    position: relative;
    flex-shrink: 0;
}
header .title-container {
    background: transparent;
    font-size: 40px;
    margin: 10px 0px;
    filter: drop-shadow(0 8px 18px rgba(var(--club-blue-rgb), 0.22));
}
span#album-title {
    font-weight: 100;
    color: #fff;
    font-family: 'UniversCnRg', Arial, Helvetica, sans-serif;
    display: inline-flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    margin-left: 10px;
    vertical-align: middle;
    text-shadow: 0 8px 24px rgba(var(--club-blue-rgb), 0.32);
}
.album-title-line {
    display: block;
    line-height: 0.92;
    white-space: nowrap;
}
.album-title-line--en {
    font-size: 26px;
    font-weight: 400;
    letter-spacing: 0;
}
.album-title-line--mk {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0;
    opacity: 0.92;
}
span#album-band {
    color: #fff;
    font-family: 'Astrella', cursive;
    text-transform: uppercase;
    line-height: 22px;
    display: inline-block !important;
    text-shadow: 0 8px 24px rgba(var(--club-blue-rgb), 0.36);
}
header img {
    height: 100%;
    width: auto;
    max-width: 80px;
    padding: 0;
    margin: 0;
    object-fit: cover;
    object-position: left;
    mask-image: linear-gradient(to right, rgba(var(--club-blue-strong-rgb), 1) 50%, rgba(var(--club-blue-strong-rgb), 0) 100%);
    -webkit-mask-image: linear-gradient(to right, rgba(var(--club-blue-strong-rgb), 1) 50%, rgba(var(--club-blue-strong-rgb), 0) 100%);
}

/* ── Tab Navigation ── */
.tab-nav {
    display: flex;
    width: 100%;
    flex-shrink: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.03) 46%, rgba(var(--club-blue-night-rgb), 0.16)),
        linear-gradient(135deg, var(--club-blue-deep) 0%, var(--club-blue) 48%, var(--club-blue-night) 100%);
    box-shadow: var(--button-outset-shadow);
    position: relative;
    overflow: hidden;
    /* border-bottom: 2px solid #000;
    border-top: 2px solid #000;  */
    /* border: 2px solid #000; */
}
.tab-nav::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 9px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0) 42%);
    opacity: 0.24;
    pointer-events: none;
    mix-blend-mode: screen;
}
.tab-btn {
    flex: 1;
    padding: 8px 12px;
    background: transparent;
    color: #fff;
    border: none;
    cursor: pointer;
    font-family: 'Garet', Arial, sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.28s ease, color 0.28s ease, transform 0.28s ease, filter 0.28s ease;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    box-shadow: none;
    transform: translateY(0);
}
.tab-btn + .tab-btn {
    border-left: 1px solid rgba(255, 255, 255, 0.18);
}
.tab-btn > * {
    position: relative;
    z-index: 2;
}
.tab-icon {
    font-size: 12px;
    line-height: 1;
    opacity: 0.92;
}
.tab-label {
    line-height: 1;
}
.tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(var(--club-blue-surface-rgb), 0.18) 40%,
        rgba(var(--club-blue-surface-rgb), 0.32) 50%,
        rgba(var(--club-blue-surface-rgb), 0.18) 60%,
        transparent 100%);
    transition: left 0s ease;
    pointer-events: none;
    filter: blur(8px);
}
.tab-btn:hover::before {
    left: 100%;
    transition: left 0.3s ease;
}
.tab-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    filter: saturate(1.08);
    transform: translateY(0);
}
.tab-btn:active {
    background:
        linear-gradient(180deg, rgba(var(--club-blue-night-rgb), 0.36), rgba(255, 255, 255, 0.08) 100%);
    box-shadow:
        inset 0 4px 9px rgba(var(--club-blue-night-rgb), 0.62),
        inset 0 -1px 0 rgba(255, 255, 255, 0.18);
    transform: var(--button-press-transform);
}

.audio-preloader {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    color: #fff;
    background:
        radial-gradient(circle at 18% 14%, rgba(var(--club-blue-bright-rgb), 0.32), rgba(var(--club-blue-bright-rgb), 0) 32%),
        linear-gradient(135deg, var(--club-blue-night), var(--club-blue-deep) 56%, var(--club-blue));
    transition: opacity 1.1s ease, visibility 1.1s ease;
    overflow: hidden;
}

body:not(.is-audio-preloading) .audio-preloader {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

body.is-audio-preloading .album-listening-shell {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.audio-preloader__inner {
    width: min(560px, 100%);
    position: relative;
    z-index: 2;
    transition: opacity 0.42s ease, transform 0.42s ease, visibility 0.42s ease;
}

body.is-audio-revealing .audio-preloader__inner {
    pointer-events: none;
    animation: audio-loading-ui-exit 0.9s cubic-bezier(0.2, 0.85, 0.25, 1) both;
}

@keyframes audio-loading-ui-exit {
    0% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
        filter: blur(0);
    }
    100% {
        opacity: 0;
        transform: translate3d(0, -18px, 0) scale(0.92);
        filter: blur(8px);
    }
}

.audio-preloader__title {
    margin: 0 0 10px;
    font-family: 'UniversCnRg', Arial, Helvetica, sans-serif;
    font-size: 22px;
    line-height: 1;
    letter-spacing: 0;
    font-weight: 400;
}

.audio-preloader__meta {
    min-height: 16px;
    margin: 0 0 8px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 12px;
    line-height: 1.25;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.audio-preloader__bar {
    height: 14px;
    width: 100%;
}

.audio-preloader__race {
    position: absolute;
    left: 0;
    right: 0;
    top: -16px;
    z-index: 3;
    height: 82px;
    pointer-events: none;
}

.audio-preloader__racing-dino {
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 82px;
    height: 82px;
    background-position: 0 0;
    background-size: 600% 600%;
    background-repeat: no-repeat;
    filter: url("#dino-white-outline");
    transform: translateX(0);
    will-change: transform, background-position;
}

.audio-preloader__percent {
    margin-top: 7px;
    font-size: 11px;
    line-height: 1;
    text-align: right;
    font-variant-numeric: tabular-nums;
    color: rgba(255, 255, 255, 0.82);
}
.audio-preloader__audio-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: fit-content;
    margin: 16px auto 0;
    padding: 9px 15px 10px;
    border: 1px solid rgba(255, 255, 255, 0.46);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.1) 48%, rgba(var(--club-blue-night-rgb), 0.1)),
        linear-gradient(135deg, rgba(var(--club-blue-bright-rgb), 0.82), rgba(var(--club-blue-rgb), 0.62) 54%, rgba(var(--club-blue-night-rgb), 0.74));
    color: #fff;
    font-family: 'Garet', Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.46),
        inset 0 -2px 0 rgba(var(--club-blue-night-rgb), 0.42),
        0 8px 0 rgba(var(--club-blue-night-rgb), 0.16),
        0 18px 36px rgba(var(--club-blue-night-rgb), 0.32),
        0 0 34px rgba(var(--club-blue-bright-rgb), 0.26);
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transform: translateY(0);
    animation: audio-button-invite 2.4s ease-in-out infinite;
    transition: opacity 0.18s ease, background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}
.audio-preloader__audio-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 0%, transparent 32%, rgba(255, 255, 255, 0.34) 50%, transparent 68%, transparent 100%);
    transform: translateX(-115%);
    animation: audio-button-sheen 3s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}
.audio-preloader__audio-button:hover,
.audio-preloader__audio-button:focus-visible {
    outline: none;
    filter: saturate(1.12) brightness(1.06);
    transform: translateY(-2px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.52),
        inset 0 -2px 0 rgba(var(--club-blue-night-rgb), 0.38),
        0 10px 0 rgba(var(--club-blue-night-rgb), 0.14),
        0 24px 44px rgba(var(--club-blue-night-rgb), 0.38),
        0 0 48px rgba(var(--club-blue-bright-rgb), 0.34);
}
.audio-preloader__audio-button:active {
    transform: translateY(3px);
    box-shadow:
        inset 0 3px 8px rgba(var(--club-blue-night-rgb), 0.48),
        inset 0 -1px 0 rgba(255, 255, 255, 0.16),
        0 2px 0 rgba(var(--club-blue-night-rgb), 0.12),
        0 12px 24px rgba(var(--club-blue-night-rgb), 0.24);
}
.audio-preloader__audio-button[disabled],
.audio-preloader__audio-button.is-armed {
    opacity: 0.48;
    cursor: default;
    transform: none;
    animation: none;
}
.audio-preloader__audio-button-icon {
    font-size: 12px;
    line-height: 1;
}
@keyframes audio-button-invite {
    0%, 100% {
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.46),
            inset 0 -2px 0 rgba(var(--club-blue-night-rgb), 0.42),
            0 8px 0 rgba(var(--club-blue-night-rgb), 0.16),
            0 18px 36px rgba(var(--club-blue-night-rgb), 0.32),
            0 0 28px rgba(var(--club-blue-bright-rgb), 0.22);
    }
    50% {
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.5),
            inset 0 -2px 0 rgba(var(--club-blue-night-rgb), 0.38),
            0 8px 0 rgba(var(--club-blue-night-rgb), 0.16),
            0 20px 40px rgba(var(--club-blue-night-rgb), 0.34),
            0 0 48px rgba(var(--club-blue-bright-rgb), 0.38);
    }
}
@keyframes audio-button-sheen {
    0%, 42% {
        transform: translateX(-115%);
    }
    72%, 100% {
        transform: translateX(115%);
    }
}
@media (prefers-reduced-motion: reduce) {
    .audio-preloader__audio-button,
    .audio-preloader__audio-button::before {
        animation: none;
    }
}
.audio-preloader__reveal {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    color: #fff;
    padding: 28px;
}
.audio-preloader__artist {
    font-family: 'Astrella', cursive;
    font-size: 120px;
    font-weight: 400;
    line-height: 0.82;
    letter-spacing: 0;
    text-transform: uppercase;
    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.18),
        0 18px 42px rgba(var(--club-blue-night-rgb), 0.58);
    opacity: 0;
}
.audio-preloader__presents {
    margin-top: 18px;
    font-family: 'Garet', Arial, sans-serif;
    font-size: 19px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    text-transform: lowercase;
    color: rgba(255, 255, 255, 0.86);
    text-shadow: 0 8px 24px rgba(var(--club-blue-night-rgb), 0.48);
    opacity: 0;
}
body.is-audio-revealing .audio-preloader__reveal {
    opacity: 1;
}
body.is-audio-revealing .audio-preloader__artist {
    animation: audio-title-artist-reveal 6s linear 0.9s both;
}
body.is-audio-revealing .audio-preloader__presents {
    animation: audio-title-presents-reveal 5s linear 1.9s both;
}
@keyframes audio-title-artist-reveal {
    0% {
        opacity: 0;
    }
    33.333% {
        opacity: 1;
    }
    66.667% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
@keyframes audio-title-presents-reveal {
    0% {
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    60% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
@media (max-width: 768px) {
    .audio-preloader__artist {
        font-size: 72px;
    }
    .audio-preloader__presents {
        margin-top: 12px;
        font-size: 15px;
    }
}
@media (max-width: 430px) {
    .audio-preloader__artist {
        font-size: 54px;
    }
    .audio-preloader__presents {
        font-size: 13px;
    }
}
@media (prefers-reduced-motion: reduce) {
    body.has-audio-revealed .album-listening-shell {
        animation: none;
    }
    body.is-audio-revealing .audio-preloader__inner {
        animation: audio-loading-ui-exit-reduced 0.25s ease both;
    }
    body.is-audio-revealing .audio-preloader__artist {
        animation: audio-title-artist-reveal 6s linear 0.25s both;
    }
    body.is-audio-revealing .audio-preloader__presents {
        animation: audio-title-presents-reveal 5s linear 1.25s both;
    }
}
@keyframes audio-loading-ui-exit-reduced {
    0% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
        filter: none;
    }
    100% {
        opacity: 0;
        transform: translate3d(0, 0, 0);
        filter: none;
    }
}
@keyframes tab-sweep {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}
.tab-btn.active {
    background:
        linear-gradient(180deg, rgba(var(--club-blue-night-rgb), 0.48) 0%, rgba(var(--club-blue-night-rgb), 0.2) 54%, rgba(255, 255, 255, 0.08) 100%);
    color: #fff;
    font-weight: bold;
    text-shadow: 0 1px 0 rgba(var(--club-blue-night-rgb), 0.5);
    box-shadow:
        inset 0 4px 9px rgba(var(--club-blue-night-rgb), 0.72),
        inset 0 -2px 0 rgba(255, 255, 255, 0.2),
        inset 2px 0 0 rgba(var(--club-blue-night-rgb), 0.34),
        inset -2px 0 0 rgba(255, 255, 255, 0.12);
    transform: var(--button-press-transform);
}
.tab-btn.active:hover {
    background:
        linear-gradient(180deg, rgba(var(--club-blue-night-rgb), 0.42) 0%, rgba(var(--club-blue-night-rgb), 0.14) 54%, rgba(255, 255, 255, 0.12) 100%);
    transform: var(--button-press-transform);
}
.tab-content {
    flex: 1;
    overflow: hidden;
    position: relative;
    z-index: 30;
}
.tab-panel {
    position: absolute;
    inset: 0;
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior-x: none;
    opacity: 0;
    transform: translate3d(0, 8px, 0);
    pointer-events: none;
    transition: opacity 0.12s ease-out, transform 0.14s cubic-bezier(0.2, 0.85, 0.25, 1);
    display: flex;
    flex-direction: column;
    will-change: opacity, transform;
}
.tab-panel.active {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    pointer-events: auto;
}
#tab-tracklist {
    margin: 0;
    padding: 0;
    gap: 0;
}

/* ── Song List (Tracklist tab) ── */
.song-list {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 250, 255, 0.97) 48%, rgba(230, 237, 255, 0.92) 100%),
        repeating-linear-gradient(0deg, rgba(var(--club-blue-rgb), 0.055) 0 1px, transparent 1px var(--row-h));
    /* background-color: #FFFFFF16; */
    /* backdrop-filter: blur(6px); */
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    overflow: visible;
    --row-h: 34px;
    position: relative;
    margin: 0;
    padding: 0;
    box-shadow: inset 10px 0 22px rgba(var(--club-blue-soft-rgb), 0.08);
}
.song-item {
    color: var(--club-blue-strong);
    flex: 1 1 100%;
    padding: 0 12px;
    text-align: left;
    cursor: pointer;
    font-size: 16px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    column-gap: 10px;
    align-items: center;
    position: relative;
    overflow: hidden;
    height: var(--row-h);
    border-bottom: 1px solid rgba(var(--club-blue-rgb), 0.08);
}
/* Set consistent row rhythm for inner cells */
.song-title, .song-length { min-height: 100%; }
.song-section {
    display: none;
}
.song-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(var(--club-blue-surface-rgb), 0.18) 40%,
        rgba(var(--club-blue-surface-rgb), 0.3) 50%,
        rgba(var(--club-blue-surface-rgb), 0.18) 60%,
        transparent 100%);
    transition: left 0s ease;
    pointer-events: none;
    z-index: 1;
    filter: blur(8px);
}
.song-item > * {
    position: relative;
    z-index: 2;
}
.song-item:nth-child(4n + 1) {
    background: linear-gradient(90deg, rgba(var(--club-blue-rgb), 0.07), rgba(var(--club-blue-rgb), 0) 48%);
}
.song-item:nth-child(4n + 3) {
    background: linear-gradient(90deg, rgba(var(--club-blue-soft-rgb), 0.12), rgba(255, 255, 255, 0) 58%);
}
.song-title {
    grid-column: 1;
    grid-row: 1;
    padding: 0;
    font-size: 14px;
    text-transform: capitalize;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: flex;
    align-items: center;
    line-height: 1.2;
}
.song-title__main {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 1.2;
}
.song-feature {
    margin-left: 7px;
    color: inherit;
    font-family: inherit;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.03em;
    opacity: 0.64;
    text-transform: none;
    white-space: nowrap;
    line-height: 1;
}
.song-status {
    display: block;
    align-items: center;
    justify-content: center;
    padding: 0;
    height: auto;
    border: 0;
    background: transparent;
    color: var(--club-blue-strong);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.04em;
    line-height: 1.1;
    white-space: nowrap;
    justify-self: end;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: right;
    opacity: 0.6;
}
.song-status[data-status="demo"] {
    color: #8e6416;
}
.song-status[data-status="in-progress"] {
    color: var(--club-blue-strong);
}
.song-status[data-status="unmastered"] {
    color: #7e3c26;
}
.song-length {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 12px;
    line-height: 1;
    padding: 0;
    text-align: right;
    color: rgba(var(--club-blue-deep-rgb), 0.68);
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.02em;
    opacity: 0.72;
    min-width: 42px;
    align-self: stretch;
}
.song-item.is-audio-loading .song-length,
.song-length.is-loading {
    color: var(--club-blue-bright);
    font-weight: 800;
    opacity: 0.9;
}
.song-item:hover {
    background:
        linear-gradient(90deg, var(--club-blue-night) 0%, var(--club-blue-deep) 48%, var(--club-blue) 100%);
    color: #fff;
}
.song-item:hover .song-status,
.song-item.active .song-status {
    color: #fff;
    opacity: 0.6;
}
.song-item:hover .song-length,
.song-item.active .song-length {
    color: #fff;
    opacity: 0.9;
}
.song-item:hover::before {
    left: 100%;
    transition: left 0.4s ease;
}
.song-item.active {
    background:
        linear-gradient(90deg, var(--club-blue-night) 0%, var(--club-blue-deep) 54%, var(--club-blue-bright) 100%);
    color: #fff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.38), inset 0 -1px 0 rgba(23, 63, 147, 0.28);
}
.song-item.is-track-entering .song-title__main,
.song-item.is-track-entering .song-feature,
.song-item.is-track-entering .song-status,
.song-item.is-track-entering .song-length {
    animation: track-text-pulse 0.42s cubic-bezier(0.22, 1, 0.36, 1) both;
    transform-origin: center;
}
.player-basic.playing ~ .tab-nav ~ .tab-content .song-item.active::before {
    left: 0;
    width: 100%;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.06) 24%,
        rgba(255, 255, 255, 0.26) 50%,
        rgba(var(--club-blue-soft-rgb), 0.2) 72%,
        transparent 100%);
    filter: blur(10px);
    animation: tab-sweep 4s ease-in-out infinite;
}
.song-item.version-unavailable {
    opacity: 0.34;
    filter: grayscale(0.65);
}
.song-item.version-unavailable .song-status::after {
    content: ' · no Dani';
}
.song-item.version-unavailable:hover {
    background: linear-gradient(90deg, #fff, var(--club-blue-ice));
    color: var(--club-blue-strong);
    cursor: not-allowed;
}

/* ── Player Bar (always visible) ── */
.player-basic {
    background:
        radial-gradient(circle at 16% 0%, rgba(var(--club-blue-bright-rgb), 0.3), rgba(var(--club-blue-bright-rgb), 0) 32%),
        linear-gradient(180deg, rgba(246, 250, 255, 0.96), rgba(225, 235, 255, 0.94));
    backdrop-filter: blur(20px);
    width: 100%;
    padding: 0;
    display: flex;
    align-items: stretch;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    box-shadow: 0 -10px 24px rgba(var(--club-blue-rgb), 0.08);
}
.player-basic:has(.volume-control.is-open),
.player-basic:has(.seek-section-tooltip.is-visible) {
    z-index: 400;
}
.player-main:has(.volume-control.is-open),
.player-main:has(.seek-section-tooltip.is-visible) {
    z-index: 400;
}
.player-main {
    min-width: 0;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    position: relative;
}
.player-basic .player-controls {
    padding: 8px 8px 4px;
}
.player-basic .seek-bar-container {
    padding: 2px 8px 5px;
}
.live-lyrics-stage {
    flex: 1 1 auto;
    min-height: 98px;
    position: relative;
    isolation: isolate;
    overflow: hidden;
}
.live-lyrics-waveform {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
    pointer-events: auto;
    cursor: pointer;
    opacity: 1;
}
.live-waveform-dino {
    position: absolute;
    left: 10%;
    top: 50%;
    z-index: 3;
    width: 78px;
    height: 78px;
    opacity: 1;
    filter: url("#dino-white-outline");
    background-position: 0 0;
    background-size: 600% 600%;
    background-repeat: no-repeat;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.live-lyrics {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    min-height: 98px;
    padding: 0;
    overflow: hidden;
    display: block;
    color: var(--club-blue-strong);
    background: transparent;
    border-top: 1px solid rgba(var(--club-blue-rgb), 0.08);
    mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
    pointer-events: none;
}
.live-lyrics:empty {
    background: transparent;
    border-top-color: transparent;
}
.live-lyrics-line {
    position: absolute;
    left: 0;
    top: 50%;
    min-height: 14px;
    width: var(--live-lyric-slot-width, max-content);
    max-width: none;
    margin: 0;
    padding: 0 8px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.18;
    overflow: visible;
    text-overflow: clip;
    white-space: nowrap;
    overflow-wrap: normal;
    text-align: center;
    cursor: default;
    opacity: 1;
    transform: translate3d(var(--live-lyric-x, 0px), -50%, 0);
    filter: none;
    color: #fff;
    text-shadow:
        0 0 3px rgba(27, 79, 165, 0.82),
        0 2px 8px rgba(27, 79, 165, 0.5);
    letter-spacing: 0;
    transition: none;
    will-change: transform;
}
.live-lyrics-line.is-placeholder {
    visibility: hidden;
    pointer-events: none;
    animation: none !important;
}
.live-lyrics-line.is-off-waveform {
    visibility: hidden;
}
.live-lyrics-line.is-near {
    opacity: 1;
}
.live-lyrics-line.is-previous {
    transform: translate3d(var(--live-lyric-x, 0px), -50%, 0);
}
.live-lyrics-line.is-next {
    transform: translate3d(var(--live-lyric-x, 0px), -50%, 0);
}
.live-lyrics-line.is-active {
    min-height: 0;
    width: var(--live-lyric-slot-width, max-content);
    max-width: none;
    margin: 0;
    padding: 0 8px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.18;
    white-space: nowrap;
    overflow-wrap: normal;
    text-wrap: nowrap;
    opacity: 1;
    transform: translate3d(var(--live-lyric-x, 0px), -50%, 0);
    color: #fff;
    background: transparent;
    border-radius: 0;
    filter: blur(0);
    text-shadow:
        0 0 3px rgba(27, 79, 165, 0.82),
        0 2px 8px rgba(27, 79, 165, 0.5);
    pointer-events: auto;
}
.live-lyrics-line__text {
    display: grid;
    grid-template-columns: repeat(var(--live-lyric-word-count, 1), minmax(0, 1fr));
    column-gap: 6px;
    align-items: center;
    width: 100%;
    transform: none;
}
.live-lyrics-line__word {
    display: block;
    justify-self: start;
    width: max-content;
    min-width: 0;
    text-align: left;
    white-space: nowrap;
    transform: translate3d(0, 0, 0);
    will-change: transform;
}
.live-lyrics-line:hover {
    opacity: 1;
    color: #fff;
    filter: none;
}
.live-lyrics-line.is-active:hover {
    color: #fff;
}
.live-lyrics.is-changing .live-lyrics-line {
    animation: none;
}
.player-basic.is-track-changing .live-lyrics-line {
    animation: none;
}
@keyframes live-lyric-shift {
    0% {
        opacity: 0;
        transform: translate3d(-100%, calc(-50% + 14px), 0);
        filter: blur(7px);
    }
    62% {
        filter: blur(0.2px);
    }
    100% {
        opacity: var(--live-lyric-opacity, 0.48);
        transform: translate3d(-100%, -50%, 0);
        filter: var(--live-lyric-filter, blur(0.35px));
    }
}
@keyframes track-change-live-lyrics {
    0% {
        opacity: 0;
        transform: translate3d(-100%, calc(-50% + 12px), 0);
        filter: blur(8px);
    }
    55% {
        opacity: 1;
        filter: blur(0);
    }
    100% {
        opacity: 1;
        transform: translate3d(-100%, -50%, 0);
        filter: blur(0);
    }
}
.player-wrap {
    width: 100%;
    flex: 1;
    overflow: visible;
}
.player {
    background:
        linear-gradient(180deg, #fff, var(--club-blue-ice));
    width: 100%;
    padding: 8px;
}
.controls-bar {
    max-width: 600px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.player-controls {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 12px;
    justify-content: space-between;
    min-width: 0;
}
.volume-control {
    position: relative;
    display: inline-flex;
    align-items: center;
}
.volume-popover {
    position: absolute;
    left: 50%;
    top: calc(100% + 8px);
    width: 42px;
    height: 132px;
    padding: 10px 9px;
    transform: translate(calc(-50% + var(--volume-popover-shift-x, 0px)), -5px);
    background: linear-gradient(135deg, var(--club-blue-night), var(--club-blue-deep));
    box-shadow: 0 10px 26px rgba(var(--club-blue-night-rgb), 0.36);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
    z-index: 180;
}
.volume-control.popover-above .volume-popover {
    top: auto;
    bottom: calc(100% + 8px);
}
.volume-control.is-open .volume-popover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(calc(-50% + var(--volume-popover-shift-x, 0px)), 0);
}
.volume-slider {
    display: block;
    width: 22px;
    height: 110px;
    margin: 0;
    accent-color: #fff;
    cursor: pointer;
    writing-mode: vertical-lr;
    direction: rtl;
    appearance: slider-vertical;
}
.loop-mode-btn[data-loop-mode="track"]::after {
    content: '1';
    position: absolute;
    right: 5px;
    bottom: 3px;
    color: #fff;
    font-size: 8px;
    font-weight: 900;
    line-height: 1;
}
.loop-mode-btn[data-loop-mode="none"]::after {
    content: '';
    position: absolute;
    width: 17px;
    height: 2px;
    left: 50%;
    top: 50%;
    background: #fff;
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(var(--club-blue-night-rgb), 0.5);
    transform: translate(-50%, -50%) rotate(-45deg);
    pointer-events: none;
}
.loop-mode-btn[data-loop-mode="track"],
.loop-mode-btn[data-loop-mode="album"],
.volume-btn[aria-pressed="true"] {
    background: linear-gradient(180deg, rgba(var(--club-blue-night-rgb), 0.48), rgba(255, 255, 255, 0.08) 100%);
    box-shadow: inset 0 4px 9px rgba(var(--club-blue-night-rgb), 0.66);
}
.transport-cluster {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    flex-shrink: 0;
}
.transport-buttons {
    display: inline-flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
    padding-bottom: 0;
    position: relative;
    overflow: visible;
    z-index: 50;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.02) 44%, rgba(var(--club-blue-night-rgb), 0.12)),
        linear-gradient(135deg, var(--club-blue-bright) 0%, var(--club-blue) 42%, var(--club-blue-deep) 70%, var(--club-blue-night) 100%);
    box-shadow: var(--button-outset-shadow);
    transform: translateY(0);
    transition: box-shadow 0.18s ease, transform 0.18s ease, filter 0.18s ease;
}
.player-controls .transport-buttons button {
    transform: none;
}
.player-controls .transport-buttons button + button {
    border-left: 1px solid rgba(255, 255, 255, 0.16);
}
.player-controls .transport-buttons > .volume-control,
.player-controls .transport-buttons > .volume-control + button {
    border-left: 1px solid rgba(255, 255, 255, 0.16);
}
.tempo-dino {
    --tempo-dino-beat: 0.5s;
    --tempo-dino-step: 1s;
    --tempo-dino-rise: -5px;
    --tempo-dino-wag: 13deg;
    --tempo-dino-tail-back: -10deg;
    width: 42px;
    height: 32px;
    flex: 0 0 42px;
    display: none;
    align-items: center;
    justify-content: center;
    color: var(--club-blue-strong);
    background: none;
    border: 0;
    box-shadow: none;
    opacity: 0.52;
    pointer-events: none;
    transform: translateY(0);
    transition: opacity 0.2s ease, filter 0.2s ease;
}
.tempo-dino.is-ready {
    opacity: 0.92;
}
.tempo-dino svg {
    width: 42px;
    height: 31px;
    display: block;
    overflow: visible;
    filter: none;
}
.tempo-dino__pixel {
    fill: url(#tempo-dino-body-gradient);
}
.tempo-dino__cutout,
.tempo-dino__tooth {
    fill: #fff;
}
.tempo-dino__dancer,
.tempo-dino__body,
.tempo-dino__head,
.tempo-dino__jaw,
.tempo-dino__tail,
.tempo-dino__arm,
.tempo-dino__leg {
    transform-box: fill-box;
}
.tempo-dino__dancer {
    transform-origin: center bottom;
}
.tempo-dino__body {
    transform-origin: center bottom;
}
.tempo-dino__head {
    transform-origin: left center;
}
.tempo-dino__jaw {
    transform-origin: left top;
}
.tempo-dino__tail {
    transform-origin: right center;
}
.tempo-dino__arm {
    transform-origin: top left;
}
.tempo-dino__leg-left {
    transform-origin: top center;
}
.tempo-dino__leg-right {
    transform-origin: top center;
}
.player-basic.playing .tempo-dino__dancer {
    animation: tempo-dino-hop var(--tempo-dino-beat) cubic-bezier(0.22, 1.6, 0.45, 1) infinite;
}
.player-basic.playing .tempo-dino__body {
    animation: tempo-dino-body var(--tempo-dino-step) ease-in-out infinite;
}
.player-basic.playing .tempo-dino__head {
    animation: tempo-dino-nod var(--tempo-dino-step) ease-in-out infinite;
}
.player-basic.playing .tempo-dino__jaw {
    animation: tempo-dino-chomp var(--tempo-dino-step) steps(2, end) infinite;
}
.player-basic.playing .tempo-dino__tail {
    animation: tempo-dino-tail var(--tempo-dino-step) ease-in-out infinite;
}
.player-basic.playing .tempo-dino__arm {
    animation: tempo-dino-arm var(--tempo-dino-step) ease-in-out infinite;
}
.player-basic.playing .tempo-dino__leg-left {
    animation: tempo-dino-leg-left var(--tempo-dino-step) steps(2, end) infinite;
}
.player-basic.playing .tempo-dino__leg-right {
    animation: tempo-dino-leg-right var(--tempo-dino-step) steps(2, end) infinite;
}
@keyframes tempo-dino-hop {
    0%, 100% {
        transform: translate3d(0, 0, 0) rotate(-2deg) scaleY(1.02);
    }
    38% {
        transform: translate3d(0, var(--tempo-dino-rise), 0) rotate(4deg) scaleY(0.98);
    }
    68% {
        transform: translate3d(0, 2px, 0) rotate(-4deg) scaleY(1.04);
    }
}
@keyframes tempo-dino-body {
    0%, 100% {
        transform: skewX(-2deg);
    }
    50% {
        transform: skewX(4deg);
    }
}
@keyframes tempo-dino-nod {
    0%, 100% {
        transform: translate3d(0, 0, 0) rotate(-5deg);
    }
    50% {
        transform: translate3d(1px, -2px, 0) rotate(8deg);
    }
}
@keyframes tempo-dino-chomp {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(1.4px);
    }
}
@keyframes tempo-dino-tail {
    0%, 100% {
        transform: rotate(var(--tempo-dino-tail-back));
    }
    50% {
        transform: rotate(var(--tempo-dino-wag));
    }
}
@keyframes tempo-dino-arm {
    0%, 100% {
        transform: rotate(28deg) translateY(0);
    }
    50% {
        transform: rotate(-34deg) translateY(-1px);
    }
}
@keyframes tempo-dino-leg-left {
    0%, 100% {
        transform: translate3d(-1px, 0, 0) rotate(-12deg);
    }
    50% {
        transform: translate3d(2px, -3px, 0) rotate(18deg);
    }
}
@keyframes tempo-dino-leg-right {
    0%, 100% {
        transform: translate3d(2px, -3px, 0) rotate(18deg);
    }
    50% {
        transform: translate3d(-1px, 0, 0) rotate(-12deg);
    }
}
.player-controls button {
    padding: 0;
    cursor: pointer;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    aspect-ratio: 1 / 1;
    flex: 0 0 32px;
    line-height: 1;
    border: 0px;
    position: relative;
    overflow: hidden;
    background: transparent;
    color: #fff;
    box-shadow: none;
    transform: translateY(0);
    transition: background 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease, transform 0.18s ease, filter 0.18s ease;
}
.player-controls .track-nav-btn {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
    padding: 0;
}
.player-controls button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(var(--club-blue-surface-rgb), 0.18) 40%,
        rgba(var(--club-blue-surface-rgb), 0.3) 50%,
        rgba(var(--club-blue-surface-rgb), 0.18) 60%,
        transparent 100%);
    transition: left 0s ease;
    pointer-events: none;
    filter: blur(8px);
}
.player-controls button:not(:disabled):hover::before {
    left: 100%;
    transition: left 0.3s ease;
}
.player-controls button:not(:disabled):hover {
    background: rgba(255, 255, 255, 0.08);
    filter: saturate(1.08);
    transform: translateY(0);
}
.player-controls button:not(:disabled):active,
.player-basic.playing .toggle-btn[aria-label="Pause"] {
    background:
        linear-gradient(180deg, rgba(var(--club-blue-night-rgb), 0.48), rgba(255, 255, 255, 0.08) 100%);
    box-shadow:
        inset 0 4px 9px rgba(var(--club-blue-night-rgb), 0.66),
        inset 0 -1px 0 rgba(255, 255, 255, 0.2);
    transform: var(--button-press-transform);
}
.player-controls .transport-buttons button:not(:disabled):hover {
    transform: none;
}
.player-controls .transport-buttons button:not(:disabled):active,
.player-basic.playing .transport-buttons .toggle-btn[aria-label="Pause"] {
    transform: var(--button-press-transform);
}
.player-basic.playing .toggle-btn[aria-label="Pause"]:hover {
    transform: var(--button-press-transform);
}
.player-controls button:disabled {
    opacity: 0.4;
    cursor: default;
    box-shadow: none;
    transform: translateY(0);
}

.player-controls button i {
    font-size: 14px;
    line-height: 1;
    color: #fff;
}
.player-controls .version-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
    gap: 8px;
    width: auto;
    min-width: 122px;
    height: 28px;
    padding: 3px 4px 3px 9px;
    border: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(230, 237, 255, 0.68));
    color: var(--club-blue-strong);
    box-shadow: var(--button-light-outset-shadow);
    overflow: hidden;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transform: translateY(0);
    transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease, filter 0.18s ease;
}
.player-controls .version-toggle.is-dani {
    background:
        linear-gradient(135deg, var(--club-blue-deep), var(--club-blue) 52%, var(--club-blue-bright));
    color: #fff;
    box-shadow: var(--button-inset-shadow);
    transform: var(--button-press-transform);
}
.version-toggle__label {
    white-space: nowrap;
}
.version-toggle__knob {
    width: 36px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    padding: 2px;
    background: rgba(255, 255, 255, 0.72);
    flex-shrink: 0;
}
.version-toggle__knob::before {
    content: '';
    width: 16px;
    height: 16px;
    background: currentColor;
    transition: transform 0.18s ease;
}
.version-toggle.is-dani .version-toggle__knob::before {
    transform: translateX(16px);
}
.player-controls .version-toggle:not(:disabled):hover {
    filter: saturate(1.06);
    transform: translateY(0);
}
.player-controls .version-toggle.is-dani:not(:disabled):hover {
    transform: var(--button-press-transform);
}
.player-controls .version-toggle:not(:disabled):active {
    box-shadow: var(--button-inset-shadow);
    transform: var(--button-press-transform);
}
.player-controls .version-toggle:disabled {
    opacity: 0.45;
    cursor: default;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.42),
        inset 0 -1px 0 rgba(var(--club-blue-rgb), 0.14);
    transform: translateY(0);
}
.version-toggle__message {
    color: #7e3c26;
    font-size: 11px;
    line-height: 1.2;
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex-shrink: 0;
}
.version-toggle__message:empty {
    display: none;
}
.player-controls .track-nav-btn.audio-quality-toggle {
    width: 32px;
    min-width: 32px;
    height: 32px;
    flex-basis: 32px;
    padding: 0;
}
.player-controls .track-nav-btn.audio-quality-toggle[aria-pressed="true"] {
    background: linear-gradient(180deg, rgba(var(--club-blue-night-rgb), 0.48), rgba(255, 255, 255, 0.08) 100%);
    color: #fff;
    box-shadow:
        inset 0 4px 9px rgba(var(--club-blue-night-rgb), 0.66),
        inset 0 -1px 0 rgba(255, 255, 255, 0.2);
    transform: var(--button-press-transform);
}
.player-controls .track-nav-btn.audio-quality-toggle:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}
@media (max-width: 640px) {
    .player-controls .track-nav-btn.audio-quality-toggle {
        width: 38px;
        min-width: 38px;
        height: 38px;
        flex-basis: 38px;
    }
}
.player-timeline {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    text-align: right;
    white-space: nowrap;
    flex-shrink: 0;
    min-height: 24px;
}
.current-info {
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 0;
    transition: all 0.25s ease;
    justify-content: flex-start;
}
.player-basic.playing .current-info { gap: 8px; }
.player-timeline { transition: all 0.1875s ease-in-out; }
.current-lyric {
    color: var(--club-blue-strong);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    transition: opacity 0.1875s ease-in-out, transform 0.1875s ease-in-out, color 0.1875s ease-in-out;
    display: block;
    text-align: left;
    font-size: 14px;
    opacity: 0.8;
    min-width: 0;
}
.seek-bar-container {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
}
.seek-section-tooltip {
    --tooltip-shift: 0px;
    position: absolute;
    left: 0;
    bottom: calc(100% + 6px);
    transform: translate(calc(-50% + var(--tooltip-shift)), -2px);
    padding: 4px 7px;
    background: rgba(var(--club-blue-night-rgb), 0.94);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.02em;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 5px 12px rgba(var(--club-blue-night-rgb), 0.24);
    transition: opacity 0.12s ease, transform 0.12s ease;
    z-index: 220;
}
.seek-section-tooltip.is-visible {
    opacity: 1;
    transform: translate(calc(-50% + var(--tooltip-shift)), 0);
}
#seek-gl,
#audio-preloader-gl {
    display: block;
    width: 100%;
    height: 14px;
    cursor: pointer;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(var(--club-blue-soft-rgb), 0.3));
    box-shadow: var(--button-light-outset-shadow);
    border-radius: 0;
    transform: translateY(0);
    transition: box-shadow 0.16s ease, transform 0.16s ease, filter 0.16s ease;
}
#seek-gl:hover,
#audio-preloader-gl:hover {
    filter: saturate(1.06);
}
#seek-gl:active,
#audio-preloader-gl:active {
    background:
        linear-gradient(180deg, rgba(var(--club-blue-night-rgb), 0.36), rgba(255, 255, 255, 0.08) 100%);
    box-shadow:
        inset 0 4px 9px rgba(var(--club-blue-night-rgb), 0.62),
        inset 0 -1px 0 rgba(255, 255, 255, 0.18);
    transform: var(--button-press-transform);
}
/* ── Lyrics & Structure (Lyrics tab) ── */
.content-container {
    display: flex;
    gap: 8px;
}
.lyrics, .structure {
    flex: 1;
    padding: 6px;
    font-size: 12px;
}
.lyrics {
    padding: 0px;
}
.lyrics h4, .structure h4 {
    font-size: 12px;
    color: var(--club-blue-strong);
    margin-bottom: 3px;
    font-weight: bold;
}
.lyrics h4 {
    margin: 5px;
}
.tempo-info {
    font-size: 12px;
    color: var(--club-blue-strong);
    margin-bottom: 6px;
}
.song-info-panel {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0;
    margin-bottom: 6px;
    background: transparent;
    border: 0;
    color: var(--club-blue-strong);
}
.song-info-host {
    padding: 0 0 8px;
}
.song-info-host:empty {
    display: none;
}
.structure-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin-bottom: 3px;
    color: var(--club-blue-strong);
}
.structure-heading h4 {
    margin: 0;
}
.structure-tools {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: flex-end;
    gap: 7px;
}
.instrument-picker-control {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    min-width: 0;
}
.instrument-picker-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.instrument-picker {
    min-width: 104px;
    max-width: 100%;
    padding: 5px 26px 5px 8px;
    border: 1px solid rgba(var(--club-blue-rgb), 0.24);
    background: #fff;
    color: var(--club-blue-strong);
    font: 700 11px/1.2 'Garet', Arial, sans-serif;
}
.capo-picker {
    min-width: 72px;
}
.song-info-host .song-info-panel {
    margin: 0;
    padding: 6px 6px 8px;
    border-bottom: 1px solid rgba(var(--club-blue-rgb), 0.12);
}
.song-info-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 6px 8px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    background:
        linear-gradient(90deg, var(--club-blue-ice) 38%, rgba(255, 255, 255, 0)) left center / 28px 100% no-repeat local,
        linear-gradient(270deg, var(--club-blue-ice) 38%, rgba(255, 255, 255, 0)) right center / 28px 100% no-repeat local,
        radial-gradient(farthest-side at 0 50%, rgba(var(--club-blue-night-rgb), 0.16), transparent) left center / 9px 100% no-repeat scroll,
        radial-gradient(farthest-side at 100% 50%, rgba(var(--club-blue-night-rgb), 0.16), transparent) right center / 9px 100% no-repeat scroll;
}
.song-info-grid::-webkit-scrollbar {
    display: none;
}
.song-info-stat {
    flex: 1 0 96px;
    min-width: 96px;
}
.song-info-label {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    opacity: 0.56;
    margin-bottom: 3px;
}
.song-info-value {
    display: block;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    word-break: break-word;
}
.song-info-link {
    color: inherit;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}
.song-info-link:hover,
.song-info-link:focus-visible {
    color: var(--club-blue);
}
.song-info-reference {
    margin-top: 4px;
}
.section-label {
    font-family: 'Garet', cursive;
    font-weight: normal;
    margin: 0;
    padding: 5px 10px;
    font-size: 16px;
    color: #fff;
    background:
        linear-gradient(90deg, var(--club-blue-night), var(--club-blue-deep), var(--club-blue));
    width: 100%;
    display: block;
    text-transform: uppercase;
    line-height: 1.2;
}
.lyrics-line, .structure-block {
    cursor: pointer;
}
.lyrics-line {
    padding: 1px 5px;
    position: relative;
    overflow: hidden;
}
.lyrics-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(var(--club-blue-surface-rgb), 0.16) 40%,
        rgba(var(--club-blue-surface-rgb), 0.28) 50%,
        rgba(var(--club-blue-surface-rgb), 0.16) 60%,
        transparent 100%);
    transition: left 0s ease;
    pointer-events: none;
    z-index: 1;
    filter: blur(8px);
}
.lyrics-line:hover {
    background:
        linear-gradient(90deg, var(--club-blue-night), var(--club-blue-bright));
    color: #fff;
}
.lyrics-line:hover::before {
    left: 100%;
    transition: left 0.4s ease;
}
.lyrics-line.active {
    background:
        linear-gradient(90deg, var(--club-blue-deep), var(--club-blue-bright));
    color: #fff;
}
.lyrics-line.passed {
    opacity: 0.56;
}
.credits {
    flex: 0 0 auto;
    min-height: 100%;
    padding: 10px 13px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 250, 255, 0.97) 52%, rgba(230, 237, 255, 0.92) 100%),
        repeating-linear-gradient(0deg, rgba(var(--club-blue-rgb), 0.045) 0 1px, transparent 1px 34px);
    color: var(--club-blue-strong);
    font-family: 'Garet', Arial, sans-serif;
}
.credits-header {
    margin-bottom: 6px;
}
.credits-kicker {
    margin: 0 0 2px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.66;
}
.credits-title {
    margin: 0;
    max-width: max-content;
    font-family: 'UniversCnRg', Arial, Helvetica, sans-serif;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 400;
}
.credits-title-line {
    display: block;
}
.credits-title-line--en {
    font-size: 14px;
    line-height: 1.12;
}
.credits-title-line--mk {
    margin-top: 1px;
    font-size: 10px;
    line-height: 1.2;
    letter-spacing: 0;
}
.credits-band {
    display: none;
}
.credits-language {
    margin: 0;
}
.credits-language-title {
    display: none;
}
.credits-copy {
    max-width: 78ch;
    font-size: 11.5px;
    line-height: 1.3;
    text-align: justify;
}
.credits-copy p {
    margin: 0 0 4px;
}
.credits-divider {
    width: 100%;
    max-width: 78ch;
    height: 1px;
    margin: 7px 0 8px;
    border: 0;
    background: linear-gradient(90deg, rgba(var(--club-blue-deep-rgb), 0.72), rgba(var(--club-blue-rgb), 0.32), transparent);
}
.structure-chord {
    display: block;
    padding: 2px 4px;
    font-size: 12px;
    font-weight: 700;
    color: var(--club-blue-strong);
    cursor: pointer;
    position: relative;
    overflow: visible;
    background: rgba(var(--club-blue-rgb), 0.05);
}
.structure-chord .chord {
    position: relative;
    z-index: 3;
}
.structure-chord.has-chord-sequence {
    padding-inline: 2px;
}
.chord-sequence-label {
    display: grid;
    grid-template-columns: repeat(var(--slot-label-count), minmax(0, 1fr));
    width: 100%;
    min-width: 0;
    align-items: stretch;
    gap: 0;
    white-space: nowrap;
    overflow: hidden;
    border: 1px solid rgba(var(--club-blue-rgb), 0.24);
    background: rgba(255, 255, 255, 0.28);
}
.chord-sequence-label__chord {
    position: relative;
    display: flex;
    min-width: 0;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    padding: 3px 1px;
    background: rgba(255, 255, 255, 0.36);
    font-size: clamp(7px, 1.55vw, 10px);
    line-height: 1;
}
.chord-sequence-label__chord + .chord-sequence-label__chord {
    border-left: 1px solid rgba(var(--club-blue-rgb), 0.25);
}
.structure-chord.active .chord-sequence-label__chord,
.structure-chord:not(.passed):hover .chord-sequence-label__chord {
    background: rgba(255, 255, 255, 0.13);
}
.structure-chord::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(var(--club-blue-surface-rgb), 0.14) 40%,
        rgba(var(--club-blue-surface-rgb), 0.24) 50%,
        rgba(var(--club-blue-surface-rgb), 0.14) 60%,
        transparent 100%);
    transition: left 0s ease;
    pointer-events: none;
    z-index: 1;
    filter: blur(8px);
}
.structure-chord:not(.passed):hover::before {
    left: 100%;
    transition: left 0.4s ease;
}
.structure-chord:not(.passed):hover {
    background:
        linear-gradient(90deg, var(--club-blue-night), var(--club-blue-bright));
    color: #fff;
}
.structure-chord.active {
    background:
        linear-gradient(90deg, var(--club-blue-deep), var(--club-blue-bright));
    color: #fff;
    padding-right: 16px;
    font-weight: 900;
}
.structure-chord.active::after {
    content: '▶';
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
    color: rgba(var(--club-blue-surface-rgb), 0.88);
    font-size: 9px;
    line-height: 1;
    pointer-events: none;
    z-index: 2;
}
.structure-chord.passed {
    background: rgba(var(--club-blue-rgb), 0.08);
    color: var(--club-blue-strong);
    opacity: 0.58;
}
.structure-chord.passed:hover,
.structure-chord.passed:focus-within,
.structure-chord.passed.is-diagram-open {
    opacity: 1;
}
.structure-chord:not(.is-diagram-dismissed):hover .chord-preview,
.structure-chord:not(.is-diagram-dismissed):focus-within .chord-preview,
.structure-chord.is-diagram-open .chord-preview {
    display: flex;
}
.structure-chord:not(.is-diagram-dismissed):hover,
.structure-chord:not(.is-diagram-dismissed):focus-within,
.structure-chord.is-diagram-open {
    z-index: 31;
}
.stanza-end {
    margin-bottom: 12px;
}
.structure-block {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.chord-container {
    flex: 1;
    text-align: center;
    position: relative;
    margin: 0;
    min-width: 0;
}
.chord-preview {
    display: none;
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background:
        linear-gradient(135deg, var(--club-blue-night), var(--club-blue-bright));
    color: #fff;
    padding: 8px;
    font-size: 10px;
    z-index: 260;
    min-width: 148px;
    max-width: min(260px, calc(100vw - 24px));
    flex-direction: column;
    align-items: center;
    gap: 5px;
    box-shadow: 0 12px 28px rgba(var(--club-blue-night-rgb), 0.34);
}
.chord-value {
    display: block;
    font-size: 10px;
    font-weight: 700;
    white-space: pre;
    text-align: center;
}
.chord-diagram {
    display: block;
    max-width: 100%;
    color: #fff;
    font: 10px/1.2 monospace;
    white-space: pre;
    text-align: left;
}
.chord-diagram svg {
    display: block;
    width: 218px;
    max-width: 100%;
    height: auto;
    max-height: 210px;
}
.chord-diagram.is-chord-sequence {
    display: grid;
    grid-template-columns: repeat(var(--slot-chord-count), minmax(0, 1fr));
    gap: 6px;
    width: min(276px, calc(100vw - 40px));
    white-space: normal;
}
.slot-chord-diagram {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}
.slot-chord-diagram__label {
    font: 800 9px/1.1 'Garet', Arial, sans-serif;
    text-align: center;
}
.slot-chord-diagram svg {
    width: 100%;
    max-height: 118px;
}
.chord-seek-action {
    border: 1px solid rgba(255, 255, 255, 0.52);
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    padding: 5px 8px;
    font: 800 9px/1 'Garet', Arial, sans-serif;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
}
.chord-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 2;
}
.chord-progress::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(var(--club-blue-surface-rgb), 0.18);
    mix-blend-mode: screen;
    opacity: 1;
    transform-origin: left center;
    transform: scaleX(calc(var(--progress, 0) / 100));
    will-change: transform;
    transition: transform 0.1s linear;
}
audio {
    display: none;
}
.current-song-name {
    font-family: 'Garet', Arial, sans-serif;
    font-size: 18px;
    font-weight: 900;
    color: #fff;
    background:
        linear-gradient(90deg, var(--club-blue-night), var(--club-blue-deep) 52%, var(--club-blue));
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 8px;
    min-height: 0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.32), inset 0 -1px 0 rgba(23, 63, 147, 0.24);
    position: relative;
    display: flex;
    align-items: center;
}
.player-basic.is-track-changing .current-song-name__main,
.player-basic.is-track-changing .current-song-name__feature {
    animation: track-text-pulse 0.42s cubic-bezier(0.22, 1, 0.36, 1) both;
    transform-origin: center;
}
.current-song-name__main {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}
.current-song-name__feature {
    margin-left: 8px;
    font-family: inherit;
    font-size: 0.64em;
    font-weight: 400;
    letter-spacing: 0.04em;
    opacity: 0.72;
    text-transform: none;
    line-height: 1;
    white-space: nowrap;
}
.current-song-name:empty {
    display: none;
}
@keyframes track-text-pulse {
    0% {
        transform: scale(1);
    }
    42% {
        transform: scale(0.92);
    }
    100% {
        transform: scale(1);
    }
}
@media (prefers-reduced-motion: reduce) {
    .player-basic.is-track-changing .current-song-name__main,
    .player-basic.is-track-changing .current-song-name__feature,
    .player-basic.is-track-changing .live-lyrics-line,
    .song-item.is-track-entering .song-title__main,
    .song-item.is-track-entering .song-feature,
    .song-item.is-track-entering .song-status,
    .song-item.is-track-entering .song-length,
    .player-basic.playing .tempo-dino__dancer,
    .player-basic.playing .tempo-dino__body,
    .player-basic.playing .tempo-dino__head,
    .player-basic.playing .tempo-dino__jaw,
    .player-basic.playing .tempo-dino__tail,
    .player-basic.playing .tempo-dino__arm,
    .player-basic.playing .tempo-dino__leg-left,
    .player-basic.playing .tempo-dino__leg-right {
        animation: none !important;
    }
}

/* ── Telemetry (Telemetry tab) ── */
.telemetry {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
    color: var(--club-blue-strong);
}
.telemetry-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px 12px;
    flex-wrap: wrap;
}
.telemetry-kicker {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    opacity: 0.6;
    margin-bottom: 4px;
}
.telemetry-header h2 {
    font-size: 25px;
    line-height: 1;
    text-transform: uppercase;
}
.telemetry-status {
    font-size: 11px;
    line-height: 1.4;
    text-align: right;
    max-width: 280px;
    opacity: 0.72;
}
.telemetry-live {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 10px;
    background: linear-gradient(180deg, rgba(var(--club-blue-rgb), 0.08), rgba(var(--club-blue-rgb), 0.03));
    border: 1px solid rgba(var(--club-blue-rgb), 0.12);
}
.telemetry-live-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}
.telemetry-live-kicker {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.58;
    margin-bottom: 4px;
}
.telemetry-live-title {
    display: block;
    font-size: 20px;
    line-height: 1.1;
    font-weight: 900;
}
.telemetry-live-meta {
    font-size: 11px;
    line-height: 1.5;
    opacity: 0.7;
    margin-top: 4px;
}
.telemetry-live-time {
    font-size: 18px;
    font-weight: 900;
    white-space: nowrap;
}
.telemetry-live-progress {
    width: 100%;
    height: 8px;
    overflow: hidden;
    background: rgba(var(--club-blue-rgb), 0.08);
}
.telemetry-live-progress-fill {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #13256d 0%, #f59e0b 100%);
    transform-origin: left center;
    transform: scaleX(0);
}
.telemetry-live-sections {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.telemetry-live-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.telemetry-live-section-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px 12px;
    flex-wrap: wrap;
}
.telemetry-live-section-title {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 900;
    opacity: 0.62;
}
.telemetry-live-section-note {
    font-size: 11px;
    line-height: 1.4;
    opacity: 0.58;
}
.telemetry-live-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 8px;
}
.telemetry-live-card {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(var(--club-blue-rgb), 0.08);
    min-width: 0;
    min-height: 74px;
}
.telemetry-live-label {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.9px;
    opacity: 0.55;
    margin-bottom: 4px;
}
.telemetry-live-value {
    display: block;
    font-size: clamp(14px, 1.45vw, 17px);
    font-weight: 900;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    word-break: break-word;
    line-height: 1.2;
}
.telemetry-live-detail {
    display: block;
    margin-top: auto;
    font-size: 9.5px;
    line-height: 1.3;
    opacity: 0.58;
}
.telemetry-live-reference {
    display: block;
    font-size: 9.5px;
    line-height: 1.3;
    opacity: 0.72;
}
.telemetry-live-spectrum {
    display: grid;
    grid-template-columns: repeat(24, minmax(0, 1fr));
    align-items: end;
    gap: 4px;
    height: 74px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(var(--club-blue-rgb), 0.08);
}
.telemetry-live-spectrum-bar {
    display: block;
    height: 100%;
    background: linear-gradient(180deg, rgba(245, 158, 11, 0.85), rgba(19, 37, 109, 0.9));
    transform-origin: bottom center;
    transform: scaleY(0.08);
    opacity: 0.8;
}
.telemetry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(165px, 1fr));
    gap: 8px;
}
.telemetry-recommendations {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 10px;
    background: rgba(var(--club-blue-rgb), 0.04);
    border: 1px solid rgba(var(--club-blue-rgb), 0.12);
}
.telemetry-recommendations-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px 16px;
    flex-wrap: wrap;
}
.telemetry-recommendations-title {
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
.telemetry-recommendations-note {
    font-size: 11px;
    line-height: 1.45;
    opacity: 0.64;
}
.telemetry-recommendation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 8px;
}
.telemetry-recommendation-card {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
    padding: 10px;
    background: #fff;
    border: 1px solid rgba(var(--club-blue-rgb), 0.12);
    box-shadow: 0 10px 24px rgba(var(--club-blue-rgb), 0.06);
}
.telemetry-recommendation-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.9px;
    opacity: 0.56;
}
.telemetry-recommendation-value {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 900;
    word-break: break-word;
}
.telemetry-recommendation-detail {
    font-size: 11px;
    line-height: 1.35;
    opacity: 0.8;
}
.telemetry-recommendation-reference {
    font-size: 9.5px;
    line-height: 1.3;
}
.telemetry-recommendation-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 0;
    padding: 0;
}
.telemetry-recommendation-item {
    font-size: 10px;
    line-height: 1.35;
    padding-top: 5px;
    border-top: 1px solid rgba(var(--club-blue-rgb), 0.08);
    word-break: break-word;
}
.telemetry-recommendation-item:first-child {
    border-top: 0;
    padding-top: 0;
}
.telemetry-card {
    min-height: 118px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 6px;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0) 30%),
        linear-gradient(135deg, var(--club-blue-night), var(--club-blue-deep) 52%, var(--club-blue));
    color: #fff;
}
.telemetry-card::before {
    content: '';
    position: absolute;
    inset: 0;
    left: -100%;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(var(--club-blue-surface-rgb), 0.14) 40%,
        rgba(var(--club-blue-surface-rgb), 0.26) 50%,
        rgba(var(--club-blue-surface-rgb), 0.14) 60%,
        transparent 100%);
    filter: blur(10px);
}
.telemetry-card:hover::before {
    left: 100%;
    transition: left 0.4s ease;
}
.telemetry-label,
.telemetry-detail,
.telemetry-value {
    position: relative;
    z-index: 1;
}
.telemetry-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.74;
}
.telemetry-value {
    font-size: clamp(18px, 2.2vw, 24px);
    line-height: 1;
    font-weight: 900;
}
.telemetry-detail {
    font-size: 11px;
    line-height: 1.35;
    opacity: 0.82;
}
.telemetry-reference {
    display: flex;
    flex-direction: column;
    gap: 1px;
    font-size: 9.5px;
    line-height: 1.25;
}
.telemetry-reference-range {
    opacity: 0.88;
}
.telemetry-reference-status {
    font-weight: 700;
}
.telemetry-card-reference {
    position: relative;
    z-index: 1;
    align-self: flex-start;
    padding: 0;
    background: none;
    border-radius: 0;
}
.telemetry-value,
.telemetry-live-value,
.telemetry-recommendation-value,
.telemetry-table-main {
    max-width: 100%;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: none;
}
.telemetry-table-main {
    display: block;
    width: auto;
}
.telemetry-tone--inside .telemetry-value,
.telemetry-tone--inside .telemetry-live-value,
.telemetry-tone--inside .telemetry-recommendation-value,
.telemetry-tone--inside .telemetry-table-main,
.telemetry-reference--inside {
    color: var(--club-blue-strong);
}
.telemetry-tone--low .telemetry-value,
.telemetry-tone--low .telemetry-live-value,
.telemetry-tone--low .telemetry-recommendation-value,
.telemetry-tone--low .telemetry-table-main,
.telemetry-tone--high .telemetry-value,
.telemetry-tone--high .telemetry-live-value,
.telemetry-tone--high .telemetry-recommendation-value,
.telemetry-tone--high .telemetry-table-main,
.telemetry-reference--low,
.telemetry-reference--high {
    color: #b22137;
}
.telemetry-tone--pending .telemetry-value,
.telemetry-tone--pending .telemetry-live-value,
.telemetry-tone--pending .telemetry-recommendation-value,
.telemetry-tone--pending .telemetry-table-main,
.telemetry-reference--pending {
    color: rgba(var(--club-blue-strong-rgb), 0.68);
}
.telemetry-song-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}
.telemetry-table-note {
    font-size: 10px;
    line-height: 1.35;
    opacity: 0.7;
}
.telemetry-song-table-wrap {
    overflow: auto;
    position: relative;
    isolation: isolate;
    background: #fff;
    border: 1px solid rgba(var(--club-blue-rgb), 0.14);
    box-shadow: 0 12px 30px rgba(var(--club-blue-rgb), 0.08);
}
.telemetry-song-table {
    width: 100%;
    min-width: 2520px;
    border-collapse: collapse;
    background: #fff;
    color: var(--club-blue-strong);
}
.telemetry-song-table th,
.telemetry-song-table td {
    padding: 8px 6px;
    border-bottom: 1px solid rgba(var(--club-blue-rgb), 0.1);
    vertical-align: top;
    text-align: left;
    white-space: nowrap;
    font-size: 11px;
    line-height: 1.25;
}
.telemetry-song-table thead th {
    position: sticky;
    top: 0;
    background:
        linear-gradient(180deg, var(--club-blue), var(--club-blue-night));
    color: #fff;
    font-size: 10px;
    letter-spacing: 0.9px;
    text-transform: uppercase;
    z-index: 4;
    white-space: nowrap;
}
.telemetry-song-table thead th:first-child {
    left: 0;
    z-index: 7;
}
.telemetry-song-table thead th:nth-child(2) {
    left: 56px;
    z-index: 7;
    box-shadow: 12px 0 18px rgba(var(--club-blue-rgb), 0.08);
}
.telemetry-song-table tbody tr:nth-child(even) {
    background: rgba(var(--club-blue-rgb), 0.03);
}
.telemetry-song-table tbody tr:hover {
    background: rgba(var(--club-blue-rgb), 0.06);
}
.telemetry-song-table tbody tr.is-live {
    background: rgba(245, 158, 11, 0.08);
}
.telemetry-index-cell {
    width: 56px;
    min-width: 56px;
    font-weight: 900;
    font-size: 13px;
    position: sticky;
    left: 0;
    z-index: 5;
    background: #fff;
    background-clip: padding-box;
    box-shadow: 8px 0 14px rgba(var(--club-blue-rgb), 0.05);
}
.telemetry-track-cell {
    min-width: 280px;
    position: sticky;
    left: 56px;
    z-index: 5;
    background: #fff;
    background-clip: padding-box;
    box-shadow: 14px 0 20px rgba(var(--club-blue-rgb), 0.08);
}
.telemetry-wave-cell {
    min-width: 278px;
}
.telemetry-cell-compact {
    min-width: 92px;
}
.telemetry-cell-medium {
    min-width: 118px;
}
.telemetry-cell-wide {
    min-width: 184px;
    white-space: normal;
}
.telemetry-table-stack {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
    white-space: normal;
}
.telemetry-table-main {
    display: inline-block;
    width: fit-content;
    word-break: break-word;
}
.telemetry-table-reference {
    color: inherit;
}
.telemetry-head-ref {
    display: block;
    margin-top: 4px;
    font-size: 10px;
    line-height: 1.35;
    letter-spacing: 0;
    text-transform: none;
    white-space: normal;
    opacity: 0.78;
}
.telemetry-song-table tbody tr:nth-child(even) .telemetry-index-cell,
.telemetry-song-table tbody tr:nth-child(even) .telemetry-track-cell {
    background: rgba(var(--club-blue-rgb), 0.03);
}
.telemetry-song-table tbody tr:hover .telemetry-index-cell,
.telemetry-song-table tbody tr:hover .telemetry-track-cell,
.telemetry-song-table tbody tr.is-live .telemetry-index-cell,
.telemetry-song-table tbody tr.is-live .telemetry-track-cell {
    background: rgba(245, 158, 11, 0.08);
}
.telemetry-song-cell-title {
    display: block;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2px;
}
.telemetry-song-cell-subtitle {
    display: block;
    font-size: 9px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    opacity: 0.58;
    line-height: 1.25;
}
.telemetry-wave {
    display: block;
    width: 272px;
    height: 52px;
    cursor: pointer;
}
.telemetry-wave-empty {
    width: 272px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--club-blue-rgb), 0.04);
    border: 1px dashed rgba(var(--club-blue-rgb), 0.16);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    opacity: 0.6;
}
.telemetry-wave-playhead {
    opacity: 0;
    stroke: #10b981;
    stroke-width: 2;
    transition: opacity 0.12s ease;
}
.telemetry-song-table tbody tr.is-live .telemetry-wave-playhead {
    opacity: 1;
}
.telemetry-mastering-flag {
    display: inline-flex;
    align-items: center;
    padding: 4px 7px;
    font-size: 10px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    border: 1px solid rgba(var(--club-blue-rgb), 0.12);
    background: rgba(var(--club-blue-rgb), 0.04);
}
.telemetry-mastering-flag--hot {
    color: #b22137;
    background: rgba(178, 33, 55, 0.08);
    border-color: rgba(178, 33, 55, 0.18);
}
.telemetry-mastering-flag--clean {
    color: var(--club-blue-strong);
}

/* ── Moodboard (Moodboard tab) ── */
.moodboard {
    min-height: 100%;
    display: flex;
    padding: 0;
    font-size: 12px;
}
.moodboard-grid {
    flex: 1;
    display: grid;
    width: 100%;
    min-height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 10px;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.moodboard-grid img {
    width: 100%;
    height: auto;
    cursor: pointer;
    transition: transform 0.2s;
}
.moodboard-grid img:hover {
    transform: scale(1.05);
}

/* ── Context Menu ── */
       .context-menu {
    position: fixed;
    background: #fff;
    display: none;
    z-index: 1000;
    font-size: 12px;
    max-height: 400px;
    overflow-y: auto;
    min-width: 150px;
  border: 1px solid var(--club-blue);
  box-shadow: 0 2px 10px var(--club-blue-shadow);
}

.menu-item {
    padding: 4px 8px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(var(--club-blue-surface-rgb), 0.16) 40%,
        rgba(var(--club-blue-surface-rgb), 0.28) 50%,
        rgba(var(--club-blue-surface-rgb), 0.16) 60%,
        transparent 100%);
    transition: left 0s ease;
    pointer-events: none;
    z-index: 1;
    filter: blur(8px);
}

.menu-item:hover {
    background:
        linear-gradient(90deg, var(--club-blue-night), var(--club-blue-bright));
    color: #fff;
}
.menu-item:hover::before {
    left: 100%;
    transition: left 0.3s ease;
}

.menu-divider {
    margin: 2px 0;
    height: 0;
}

/* ── Confidential Overlay ── */
.confidential-notice {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    color: var(--club-blue-strong);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.confidential-content {
    padding: 20px;
    text-align: center;
    max-width: 80%;
}
.confidential-close {
    margin-top: 15px;
    padding: 10px 20px;
    background:
        linear-gradient(135deg, var(--club-blue-night), var(--club-blue-bright));
    color: #fff;
    border: none;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
}
.copyright {
    text-align: center;
    font-size: 10px;
    color: var(--club-blue-muted);
    margin-top: 20px;
    padding-bottom: 10px;
    width: 100%;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    :root {
        --mobile-live-stage-height: 76px;
        --mobile-player-height: calc(39px + var(--mobile-live-stage-height));
    }
    body {
        overflow: hidden;
        height: 100dvh;
        min-height: 100dvh;
        align-items: stretch;
    }
    .album-listening-shell {
        width: 100%;
        height: 100dvh;
        min-height: 100dvh;
        padding: 0;
        display: block;
    }
    .app-container {
        width: 100%;
        max-width: none;
        height: 100dvh;
        max-height: none;
        min-height: 0;
        overflow: hidden;
        background: rgba(5, 14, 42, 0.2);
    }
    .player-basic {
        display: contents;
        flex: 0 0 auto;
        background: transparent;
        box-shadow: none;
        overflow: visible;
        z-index: 5;
    }
    .player-cover {
        width: 100%;
        height: 100vw;
        min-height: 0;
        max-height: none;
        aspect-ratio: auto;
        flex: 0 0 100vw;
        display: flex;
        align-items: center;
        justify-content: center;
        background:
            linear-gradient(180deg, rgba(var(--club-blue-night-rgb), 0.1), rgba(var(--club-blue-night-rgb), 0.28));
        box-shadow: 0 18px 38px rgba(var(--club-blue-night-rgb), 0.18);
        overflow: hidden;
    }
    .player-cover img {
        width: 100%;
        height: 100%;
        aspect-ratio: auto;
        object-fit: contain;
    }
    .player-main {
        order: 3;
        position: relative;
        z-index: 20;
        flex: 0 0 var(--mobile-player-height);
        min-height: var(--mobile-player-height);
        padding-bottom: 0;
        background:
            radial-gradient(circle at 20% 0%, rgba(var(--club-blue-bright-rgb), 0.24), rgba(var(--club-blue-bright-rgb), 0) 34%),
            linear-gradient(180deg, rgba(249, 252, 255, 0.98), rgba(222, 233, 255, 0.98));
        border-top: 0;
        box-shadow: 0 -18px 42px rgba(var(--club-blue-night-rgb), 0.26);
        backdrop-filter: blur(22px);
    }
    .player-basic audio {
        display: none;
    }
    .current-song-name {
        display: none;
    }
    .player-basic .player-controls {
        order: 1;
        justify-content: center;
        width: 100%;
        padding: 0;
    }
    .player-basic .seek-bar-container {
        order: 2;
        flex: 0 0 1px;
        height: 1px;
        min-height: 1px;
        margin: 0;
        padding: 0;
        line-height: 0;
    }
    .player-basic #seek-gl {
        height: 1px !important;
        min-height: 1px;
        box-shadow: none;
    }
    .live-lyrics-stage {
        display: block;
        order: 3;
        flex: 0 0 var(--mobile-live-stage-height);
        min-height: var(--mobile-live-stage-height);
        height: var(--mobile-live-stage-height);
        overflow: hidden;
    }
    .live-waveform-dino {
        left: 10%;
        top: 50%;
        width: 64px;
        height: 64px;
    }
    .live-lyrics {
        min-height: var(--mobile-live-stage-height);
        padding: 0;
        display: block;
    }
    .live-lyrics-line {
        display: block;
        top: 50%;
    }
    .live-lyrics-line.is-active {
        display: block;
        width: var(--live-lyric-slot-width, max-content);
        max-width: none;
        min-height: 0;
        margin: 0;
        font-size: 16px;
        line-height: 1.18;
        white-space: nowrap;
        overflow-wrap: normal;
        overflow: visible;
        text-align: center;
    }
    .tab-nav {
        position: sticky;
        top: 0;
        z-index: 6;
    }
    .tab-content {
        order: 2;
        min-height: 0;
        overflow-y: auto;
        overflow-x: hidden;
        overscroll-behavior-y: contain;
        -webkit-overflow-scrolling: touch;
    }
    .tab-panel {
        display: none;
        position: relative;
        inset: auto;
        overflow: visible;
        opacity: 1;
        transform: none;
        pointer-events: auto;
        transition: none;
        will-change: auto;
    }
    .tab-panel.active {
        display: flex;
        transform: none;
    }
    .title-container {
        font-size: 24px;
    }
    .player-controls button {
        width: auto;
        min-width: 0;
        height: 38px;
        flex: 1 1 0;
        aspect-ratio: 1 / 1;
    }
    .player-controls .track-nav-btn {
        width: auto;
        min-width: 0;
        height: 38px;
        flex: 1 1 0;
    }
    .player-controls .track-nav-btn.audio-quality-toggle {
        width: auto;
        min-width: 0;
        height: 38px;
        flex: 1 1 0;
    }
    .player-controls .tempo-dino {
        display: none;
    }
    .player-controls .tempo-dino svg {
        width: 42px;
        height: 34px;
    }
    .content-container {
        flex-direction: column;
    }
    .context-menu {
        font-size: 18px;
        max-height: 300px;
    }
    .menu-item {
        padding: 6px 10px;
    }
    .structure-chord .chord {
        font-size: 14px;
        font-weight: bold;
    }
    .structure-chord {
        padding: 4px 2px;
    }
    .song-item {
        grid-template-columns: minmax(0, 1fr) auto;
        column-gap: 8px;
        align-items: center;
        min-height: 42px;
        height: 42px;
        padding-top: 0;
        padding-bottom: 0;
    }
    .song-item.has-feature {
        min-height: 56px;
        height: auto;
        padding-top: 6px;
        padding-bottom: 6px;
    }
    .song-title { font-size: 16px; }
    .song-item.active .song-title { font-size: 16px; }
    .song-title {
        grid-column: 1;
        grid-row: 1;
        line-height: 1.2;
        flex-wrap: nowrap;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .song-item.has-feature .song-title {
        flex-wrap: wrap;
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
    }
    .song-title__main {
        white-space: nowrap;
    }
    .song-item.has-feature .song-title__main {
        white-space: normal;
    }
    .song-feature {
        flex: 0 0 100%;
        margin: 2px 0 0;
        line-height: 1.1;
    }
    .song-status {
        grid-column: 1 / -1;
        grid-row: 2;
        justify-self: start;
        line-height: 1.2;
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
        text-align: left;
    }
    .song-length {
        grid-column: 2;
        grid-row: 1;
        align-self: center;
        line-height: 1;
    }
    .song-item .song-motif {
        right: 50px;
        width: 24px;
        height: 24px;
    }
    .song-item.active .song-title {
        padding-right: 34px;
    }
    .song-item:not(.active) .song-motif {
        display: none;
    }
    .song-item.active .song-motif {
        display: block;
        opacity: 0.88;
        transform: translateY(-50%) scale(1);
    }
    .current-info { font-size: 20px; }
    .current-lyric { font-size: 16px; }
    .lyrics, .structure, .lyrics h4, .structure h4, .tempo-info, .section-label { font-size: 16px; }
    .credits {
        min-height: auto;
        height: auto;
        padding: 14px;
        overflow: visible;
    }
    .credits-title {
        font-size: 13px;
    }
    .credits-copy {
        max-width: none;
        font-size: 12.5px;
        line-height: 1.42;
    }
    .player-timeline {
        display: none;
    }
    .player-controls {
        gap: 5px;
    }
    .transport-cluster,
    .transport-buttons {
        width: 100%;
        min-width: 0;
    }
    .transport-cluster {
        gap: 0;
    }
    .transport-buttons > button,
    .transport-buttons > .volume-control {
        flex: 1 1 0;
        min-width: 0;
    }
    .transport-buttons > .volume-control .volume-btn {
        width: 100%;
    }
    .playback-settings {
        gap: 2px;
    }
    .chord-preview {
        position: fixed;
        left: var(--chord-preview-left, 50%);
        top: var(--chord-preview-top, 8px);
        bottom: auto;
        transform: translate(-50%, 0);
    }
    .structure-chord:not(.is-diagram-dismissed):hover .chord-preview,
    .structure-chord.is-diagram-open .chord-preview {
        transform: translate(-50%, 0);
    }
    .volume-control .volume-popover,
    .volume-control.popover-above .volume-popover {
        top: auto;
        bottom: calc(100% + 8px);
    }
    .structure-heading {
        align-items: flex-start;
        flex-wrap: wrap;
    }
    .structure-tools {
        width: 100%;
        justify-content: space-between;
    }
    .structure-tools .instrument-picker-control {
        flex: 1 1 auto;
    }
    .structure-tools .instrument-picker {
        min-width: 0;
        width: 100%;
    }
    .instrument-picker-control {
        flex-direction: column;
        align-items: flex-end;
        gap: 2px;
    }
    .moodboard-grid { grid-template-columns: 1fr; }
    .tab-btn {
        font-size: 11px;
        padding: 8px 6px;
        gap: 0;
    }
    .tab-label {
        display: none;
    }
    .tab-icon {
        font-size: 15px;
    }
    .telemetry-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .telemetry-header h2 {
        font-size: 24px;
    }
    .telemetry-status {
        text-align: left;
        max-width: none;
    }
}
@media (max-width: 520px) {
    .telemetry-grid {
        grid-template-columns: 1fr;
    }
    .telemetry-live-time {
        font-size: 16px;
    }
}
@media (max-width: 350px) {
    .player-timeline {
        display: none;
    }
    .player-basic .player-controls {
        justify-content: center;
    }
}

/* Public page: keep the shareable listening experience intentionally simple. */
.song-item {
    grid-template-columns: minmax(0, 1fr) auto;
}
.song-item .song-section,
.song-item .song-status {
    display: none;
}
.album-total-time {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 9px 12px 10px;
    background:
        linear-gradient(90deg, #fff 0%, rgba(var(--club-blue-soft-rgb), 0.2) 44%, var(--club-blue-mist) 100%);
    color: var(--club-blue-strong);
    border-top: 1px solid rgba(var(--club-blue-rgb), 0.26);
    font-size: 12px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.08em;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84);
    position: relative;
    overflow: hidden;
}
.album-total-time::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 50%;
    width: min(52%, 320px);
    height: 1px;
    background: linear-gradient(90deg, rgba(var(--club-blue-deep-rgb), 0.78), rgba(var(--club-blue-rgb), 0.48) 58%, transparent 100%);
    opacity: 0.82;
    pointer-events: none;
}
.album-total-time::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(108deg, transparent 0%, transparent 72%, rgba(255, 255, 255, 0.48) 72%, rgba(255, 255, 255, 0.48) 76%, transparent 76%);
    opacity: 0.52;
    pointer-events: none;
}
.album-total-time > * {
    position: relative;
    z-index: 2;
}
.song-list > .album-total-time {
    flex: 1 1 100%;
    box-sizing: border-box;
    order: 999;
}
#tab-tracklist > .album-total-time {
    border-top: 2px solid var(--club-blue);
    background:
        linear-gradient(90deg, #fff 0%, rgba(var(--club-blue-soft-rgb), 0.26) 42%, var(--club-blue-mist) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68), 0 -8px 18px rgba(var(--club-blue-rgb), 0.06);
}
.album-runtime-label {
    display: inline-block;
    margin-right: 8px;
    padding: 2px 6px 1px;
    background:
        linear-gradient(135deg, var(--club-blue-night), var(--club-blue-deep) 58%, var(--club-blue-bright));
    color: #fff;
    font-size: 8px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
