:root {
    color-scheme: dark;
    --bg: #12090d;
    --bg-deep: #080608;
    --wine: #250b16;
    --wine-bright: #431426;
    --surface: rgba(24, 15, 19, 0.78);
    --surface-solid: #1a1116;
    --line: rgba(231, 137, 77, 0.28);
    --line-soft: rgba(243, 233, 222, 0.1);
    --copper: #e7894d;
    --copper-soft: #c76b46;
    --cream: #f3e9de;
    --muted: #b8a9a3;
    --like: #6fd08c;
    --dislike: #ef6a6a;
    --player-w: clamp(330px, 25.6vw, 400px);
    --header-h: 58px;
    --serif: Georgia, "Times New Roman", serif;
    --sans: Inter, Manrope, "Segoe UI", Arial, sans-serif;
    --shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    min-width: 320px;
    margin: 0;
    color: var(--cream);
    background:
        radial-gradient(circle at 72% 5%, rgba(120, 36, 34, 0.18), transparent 28rem),
        var(--bg-deep);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: 100;
    pointer-events: none;
    opacity: 0.11;
    content: "";
    background-image:
        repeating-radial-gradient(circle at 20% 30%, transparent 0 2px, rgba(255,255,255,.08) 2px 3px),
        linear-gradient(110deg, transparent, rgba(255,255,255,.02), transparent);
    background-size: 7px 7px, 100% 100%;
    mix-blend-mode: soft-light;
}

button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }

.skip-link {
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 500;
    padding: 10px 16px;
    color: #160a0e;
    background: var(--cream);
    border-radius: 999px;
    transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--copper);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;
    line-height: 1.2;
    text-transform: uppercase;
}

.eyebrow--framed {
    padding: 8px 12px;
    border: 1px solid rgba(231, 137, 77, .58);
    border-radius: 8px;
}

.radio-player {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 50;
    display: flex;
    width: var(--player-w);
    min-height: 100vh;
    padding: clamp(20px, 2.2vh, 30px) clamp(18px, 2.1vw, 30px) 24px;
    overflow: hidden auto;
    flex-direction: column;
    background:
        radial-gradient(circle at 52% 18%, rgba(168, 62, 38, .17), transparent 17rem),
        linear-gradient(180deg, rgba(14, 11, 13, .98), rgba(10, 7, 9, .98));
    border: 1px solid rgba(231, 137, 77, .27);
    border-width: 1px 1px 1px 0;
    box-shadow: 16px 0 80px rgba(0, 0, 0, .38);
    scrollbar-width: thin;
    scrollbar-color: rgba(231, 137, 77, .35) transparent;
}

.radio-player::after {
    position: absolute;
    inset: 7px;
    z-index: -1;
    content: "";
    border: 1px solid rgba(243, 233, 222, .06);
    border-radius: 24px;
    pointer-events: none;
}

.brand-lockup {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: clamp(16px, 2vh, 22px);
}

.brand-mark {
    position: relative;
    display: grid;
    width: 75px;
    height: 50px;
    flex: 0 0 auto;
    place-items: center;
}

.brand-mark b {
    color: transparent;
    background: linear-gradient(145deg, #ffbd82, #a9462f 62%, #f3a76f);
    font-family: var(--serif);
    font-size: 38px;
    font-weight: 400;
    letter-spacing: -.16em;
    line-height: 1;
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: 0 0 28px rgba(231, 137, 77, .22);
}

.brand-mark__pulse {
    position: absolute;
    left: -2px;
    width: 32px;
    height: 1px;
    background: var(--copper);
    box-shadow: 0 0 10px rgba(231, 137, 77, .6);
}
.brand-mark__pulse::before,
.brand-mark__pulse::after {
    position: absolute;
    top: 50%;
    content: "";
    background: var(--copper);
    transform: translateY(-50%);
}
.brand-mark__pulse::before { right: 8px; width: 2px; height: 14px; }
.brand-mark__pulse::after { right: 2px; width: 2px; height: 7px; }

.brand-lockup > div { display: flex; min-width: 0; flex-direction: column; }
.brand-lockup strong { font-size: clamp(18px, 1.55vw, 24px); font-weight: 500; letter-spacing: .1em; white-space: nowrap; }
.brand-lockup span { color: var(--copper); font-size: 14px; }

.player-cover-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    margin-bottom: 14px;
}

.player-cover {
    position: absolute;
    inset: 0;
    display: grid;
    overflow: hidden;
    background:
        radial-gradient(circle at 70% 20%, rgba(241, 151, 85, .6), transparent 8rem),
        linear-gradient(135deg, #4f1924, #120b0f 60%);
    background-position: center;
    background-size: cover;
    border: 1px solid rgba(231, 137, 77, .48);
    border-radius: 18px;
    box-shadow: inset 0 -80px 80px rgba(8, 5, 7, .35), 0 22px 45px rgba(0, 0, 0, .25);
    place-items: center;
    transition: background-image .5s ease;
}

.player-cover::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, transparent 50%, rgba(8,5,7,.42));
}
.player-cover > span { color: rgba(243,233,222,.2); font-family: var(--serif); font-size: 70px; }
.player-cover.has-image > span { opacity: 0; }

.live-pill {
    position: absolute;
    right: 10px;
    bottom: 10px;
    z-index: 2;
    display: flex;
    padding: 5px 8px;
    align-items: center;
    gap: 5px;
    color: #ffc5ac;
    background: rgba(16, 7, 10, .68);
    border: 1px solid rgba(231, 137, 77, .28);
    border-radius: 7px;
    font-size: 9px;
    letter-spacing: .1em;
    backdrop-filter: blur(12px);
}
.live-pill i,
.hero-stage__live i { width: 6px; height: 6px; background: #ff604d; border-radius: 50%; box-shadow: 0 0 10px #ff604d; }

.now-playing { display: flex; align-items: center; flex-direction: column; text-align: center; }
.now-playing strong { display: -webkit-box; max-width: 100%; max-height: 2.04em; margin-top: 5px; overflow: hidden; font-family: var(--serif); font-size: clamp(25px, 2.25vw, 34px); font-weight: 400; line-height: 1.02; overflow-wrap: anywhere; text-wrap: balance; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.now-playing > span:last-child { max-width: 100%; color: var(--cream); font-size: 17px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.player-controls {
    display: grid;
    margin: clamp(13px, 1.8vh, 20px) auto 8px;
    align-items: center;
    grid-template-columns: 58px 92px 58px;
    gap: 17px;
}

.reaction-button,
.play-button {
    position: relative;
    display: grid;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    place-items: center;
}
.mobile-player-expand { display: none; }

.reaction-button {
    width: 52px;
    height: 52px;
    background: rgba(10, 8, 9, .72);
    border: 1px solid currentColor;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.reaction-button:hover { transform: translateY(-2px); }
.reaction-button--dislike { color: var(--dislike); }
.reaction-button--like { color: var(--like); }
.reaction-button.is-selected { background: color-mix(in srgb, currentColor 18%, transparent); box-shadow: 0 0 25px color-mix(in srgb, currentColor 45%, transparent); }
.reaction-button span { font-size: 27px; font-weight: 300; line-height: 1; }

.play-button {
    width: 86px;
    height: 86px;
    color: #fff4e9;
    background: radial-gradient(circle at 35% 28%, #f4ac71, #c7643f 62%, #7b301f);
    border: 1px solid rgba(255, 199, 153, .8);
    box-shadow: 0 0 0 7px rgba(231, 137, 77, .08), 0 0 40px rgba(231, 137, 77, .4), inset 0 2px 4px rgba(255,255,255,.25);
    transition: transform .2s ease, box-shadow .2s ease;
}
.play-button:hover { transform: scale(1.035); box-shadow: 0 0 0 8px rgba(231, 137, 77, .1), 0 0 52px rgba(231, 137, 77, .55); }
.play-button__icon { width: 0; height: 0; margin-left: 6px; border-top: 12px solid transparent; border-bottom: 12px solid transparent; border-left: 19px solid currentColor; filter: drop-shadow(0 2px 4px rgba(0,0,0,.3)); }
.play-button.is-playing .play-button__icon { width: 18px; height: 23px; margin-left: 0; border: 0; border-right: 6px solid currentColor; border-left: 6px solid currentColor; }
.play-button__halo { position: absolute; inset: -12px; border: 1px solid rgba(231,137,77,.32); border-radius: inherit; }
.is-audio-playing .play-button__halo { animation: player-halo 2.2s ease-out infinite; }

@keyframes player-halo { 0% { opacity: .7; transform: scale(.92); } 75%,100% { opacity: 0; transform: scale(1.22); } }

.vote-reveal { min-height: 28px; text-align: center; }
.vote-reveal p { margin: 0; color: var(--muted); font-size: 11px; }
.vote-reveal__scores { display: flex; justify-content: center; gap: 22px; font-size: 12px; }
.vote-reveal__scores span { color: var(--muted); }
.vote-reveal__scores b { margin-left: 4px; color: var(--cream); font-size: 14px; }
.vote-reveal__scores b.is-positive { color: var(--like); }
.vote-reveal__scores b.is-negative { color: var(--dislike); }

.volume-row { display: grid; margin-top: 7px; align-items: center; grid-template-columns: 24px 1fr 22px; gap: 7px; }
.volume-row button { padding: 0; color: var(--muted); background: none; border: 0; cursor: pointer; }
.volume-row > span { color: var(--muted); font-size: 12px; }
.volume-row input { width: 100%; height: 4px; accent-color: var(--copper); cursor: pointer; }

.listener-row { display: flex; margin-top: 9px; justify-content: center; align-items: center; gap: 6px; color: var(--muted); font-size: 12px; }
.listener-row b { color: var(--cream); font-size: 13px; }
.listener-icon { color: var(--copper); transform: rotate(180deg); }

.waveform { display: flex; height: 42px; margin: 8px 0 5px; align-items: center; justify-content: center; gap: 2px; mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.waveform i { width: 2px; height: var(--bar); background: linear-gradient(180deg, #f6b274, #bd4b30); border-radius: 2px; opacity: .74; transform: scaleY(.45); transform-origin: center; }
.is-audio-playing .waveform i { animation: waveform 1.05s ease-in-out infinite alternate; animation-delay: calc(var(--bar) * -7ms); }
@keyframes waveform { to { opacity: 1; transform: scaleY(1); } }

.service-icons { display: flex; margin: 4px 0 12px; justify-content: center; gap: clamp(5px, .6vw, 8px); }
.service-icon { display: grid; width: 32px; height: 32px; color: var(--cream); background: rgba(255,255,255,.035); border: 1px solid rgba(243,233,222,.18); border-radius: 50%; font-size: 12px; font-weight: 800; place-items: center; transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.service-icon:hover { background: rgba(255,255,255,.1); border-color: currentColor; transform: translateY(-2px); }
.service--yandex { color: #ffc940; }
.service--mts { color: #ff4b55; }
.service--zvooq { color: #f3e9de; }
.service--vk { color: #8f86ff; font-size: 10px; }
.service--deezer { color: #67d391; }
.service--spotify { color: #61d780; font-size: 20px; }
.service--apple { color: #ff6d88; font-size: 17px; }

.recent-mini { padding: 10px 12px 4px; background: rgba(255,255,255,.018); border: 1px solid rgba(243,233,222,.09); border-radius: 14px; }
.section-kicker { display: flex; margin-bottom: 5px; align-items: center; justify-content: space-between; }
.section-kicker h2 { margin: 0; color: var(--copper); font-size: 13px; font-weight: 500; }
.section-kicker a { color: var(--copper); }
.recent-mini__list { display: grid; }
.recent-song { display: grid; min-height: 48px; padding: 7px 0; align-items: center; grid-template-columns: 36px 1fr auto; gap: 9px; border-top: 1px solid rgba(243,233,222,.07); }
.recent-song__cover { width: 36px; height: 36px; background: linear-gradient(135deg, #713226, #1b1115); background-position: center; background-size: cover; border-radius: 8px; }
.recent-song div { min-width: 0; display: flex; flex-direction: column; }
.recent-song strong, .recent-song span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.recent-song strong { font-size: 11px; font-weight: 600; }
.recent-song span, .recent-song time { color: var(--muted); font-size: 9px; }
.recent-mini__placeholder { height: 48px; border-top: 1px solid rgba(243,233,222,.07); background: linear-gradient(90deg, transparent, rgba(255,255,255,.025), transparent); animation: shimmer 1.8s linear infinite; }
@keyframes shimmer { to { background-position: 280px 0; } }

.site-shell { min-height: 100vh; margin-left: var(--player-w); overflow: clip; }

.floating-header {
    position: fixed;
    top: 24px;
    right: clamp(18px, 3.2vw, 48px);
    left: calc(var(--player-w) + clamp(18px, 3.2vw, 48px));
    z-index: 40;
    display: flex;
    height: var(--header-h);
    padding: 0 12px 0 22px;
    align-items: center;
    justify-content: space-between;
    background: rgba(20, 13, 16, .68);
    border: 1px solid rgba(243,233,222,.12);
    border-radius: 17px;
    box-shadow: 0 16px 45px rgba(0,0,0,.24);
    backdrop-filter: blur(22px) saturate(135%);
}

.main-nav { display: flex; align-items: center; gap: clamp(14px, 2vw, 32px); }
.main-nav a { position: relative; color: #d5c8c2; font-size: clamp(12px, .94vw, 15px); white-space: nowrap; transition: color .2s ease; }
.main-nav a::after { position: absolute; right: 0; bottom: -18px; left: 0; height: 2px; content: ""; background: var(--copper); box-shadow: 0 0 12px var(--copper); transform: scaleX(0); transition: transform .2s ease; }
.main-nav a:hover, .main-nav a.is-active { color: var(--cream); }
.main-nav a.is-active::after { transform: scaleX(1); }
.nav-more { position: relative; }
.nav-more > button { padding: 0; color: #d5c8c2; background: transparent; border: 0; cursor: pointer; font-size: clamp(12px, .94vw, 15px); }
.nav-more > button::after { margin-left: 6px; content: "⌄"; color: var(--copper); }
.nav-more > div { position: absolute; top: calc(100% + 20px); right: -10px; display: grid; min-width: 190px; padding: 8px; visibility: hidden; gap: 2px; background: rgba(20,13,16,.96); border: 1px solid rgba(243,233,222,.12); border-radius: 13px; box-shadow: 0 18px 40px rgba(0,0,0,.42); opacity: 0; transform: translateY(-5px); transition: opacity .18s ease, transform .18s ease, visibility .18s; }
.nav-more > div a { padding: 9px 11px; border-radius: 8px; }
.nav-more > div a::after { display: none; }
.nav-more > div a:hover { background: rgba(231,137,77,.1); }
.nav-more:hover > div, .nav-more:focus-within > div { visibility: visible; opacity: 1; transform: translateY(0); }
.login-button { display: inline-flex; align-items: center; justify-content: center; padding: 10px 20px; background: rgba(10,8,9,.45); border: 1px solid rgba(231,137,77,.68); border-radius: 12px; cursor: pointer; transition: background .2s ease, box-shadow .2s ease; }
.login-button:hover { background: rgba(231,137,77,.12); box-shadow: 0 0 24px rgba(231,137,77,.16); }
.mobile-brand { display: none; }
.mobile-menu-button { display: none; }

.page-content { min-height: 85vh; outline: none; }

.hero-stage {
    position: relative;
    min-height: clamp(650px, 78vh, 820px);
    overflow: hidden;
    background:
        radial-gradient(circle at 26% 42%, rgba(172, 70, 39, .32), transparent 23rem),
        linear-gradient(100deg, #32101a, #110a0e 64%, #080608);
    border-bottom: 1px solid rgba(231,137,77,.16);
}

.hero-stage::after { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg, transparent 48%, rgba(8,6,8,.22)), linear-gradient(0deg, #0b0709 0, transparent 30%); }
.hero-stage__backdrop { position: absolute; inset: 0; opacity: .18; background-position: 28% center; background-size: cover; filter: blur(24px) saturate(.8); transform: scale(1.1); }
.hero-stage__portrait { position: absolute; z-index: 2; top: 84px; bottom: 0; left: 0; width: 57%; background: radial-gradient(circle at 45% 38%, #9b442f, transparent 16rem); background-position: center; background-repeat: no-repeat; background-size: contain; filter: drop-shadow(26px 10px 38px rgba(0,0,0,.35)); mask-image: linear-gradient(90deg, transparent 0, #000 12%, #000 78%, transparent 100%), linear-gradient(0deg, transparent 0, #000 18%); mask-composite: intersect; }
.hero-stage__portrait.has-image { background-size: cover; background-position: center top; }
.hero-stage__giant-name { position: absolute; z-index: 1; top: 120px; right: 1.5vw; width: 62%; color: transparent; background: linear-gradient(180deg, rgba(174,75,43,.44), rgba(68,20,30,.13)); font-family: var(--serif); font-size: clamp(72px, 9.2vw, 154px); letter-spacing: -.06em; line-height: .8; text-align: right; text-transform: uppercase; -webkit-background-clip: text; background-clip: text; }
.hero-stage__copy { position: absolute; z-index: 5; top: 47%; right: clamp(34px, 5vw, 80px); width: min(46%, 620px); transform: translateY(-28%); }
.hero-stage__copy h1 { display: -webkit-box; max-height: 1.84em; margin: 24px 0 12px; overflow: hidden; font-family: var(--serif); font-size: clamp(58px, 5.5vw, 90px); font-weight: 400; letter-spacing: -.05em; line-height: .92; overflow-wrap: anywhere; text-wrap: balance; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.hero-stage__copy p { max-width: 620px; margin: 0 0 28px; color: #c9bbb4; font-size: clamp(14px, 1.15vw, 18px); }
.copper-button { display: inline-flex; min-height: 54px; padding: 0 24px; align-items: center; justify-content: center; gap: 24px; background: linear-gradient(135deg, rgba(231,137,77,.28), rgba(105,39,30,.18)); border: 1px solid rgba(231,137,77,.72); border-radius: 12px; box-shadow: 0 12px 32px rgba(0,0,0,.24), inset 0 0 22px rgba(231,137,77,.08); transition: transform .2s ease, box-shadow .2s ease; }
.copper-button:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(0,0,0,.32), 0 0 24px rgba(231,137,77,.16); }
.copper-button span { color: var(--copper); }
.hero-stage__live { position: absolute; z-index: 6; right: 3.3vw; bottom: 126px; display: flex; padding: 7px 10px; align-items: center; gap: 7px; color: #ffc5ac; background: rgba(15,8,10,.48); border: 1px solid rgba(231,137,77,.24); border-radius: 8px; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; backdrop-filter: blur(12px); }

.charts-stage { position: relative; z-index: 10; display: grid; width: calc(100% - clamp(36px, 6vw, 96px)); margin: clamp(-115px, -9vh, -70px) auto 0; grid-template-columns: 1fr 1fr minmax(210px, .62fr); gap: 18px; }
.chart-panel, .request-tile { background: linear-gradient(145deg, rgba(28,18,22,.92), rgba(12,9,11,.88)); border: 1px solid rgba(231,137,77,.3); border-radius: 18px; box-shadow: var(--shadow); backdrop-filter: blur(20px); }
.chart-panel { padding: clamp(20px, 2vw, 30px); }
.chart-panel--shifted { transform: translateY(14px); }
.section-heading { display: flex; margin-bottom: 26px; align-items: end; justify-content: space-between; gap: 24px; }
.section-heading h2 { margin: 5px 0 0; font-family: var(--serif); font-size: clamp(34px, 3.5vw, 58px); font-weight: 400; letter-spacing: -.035em; line-height: 1; }
.section-heading > a, .section-heading--compact a { color: var(--copper); font-size: 13px; white-space: nowrap; }
.section-heading--compact { margin-bottom: 14px; }
.section-heading--compact h2 { font-size: clamp(28px, 2.4vw, 40px); }
.chart-list { margin: 0; padding: 0; list-style: none; }
.chart-list li { display: grid; min-height: 62px; padding: 9px 0; align-items: center; grid-template-columns: 28px 44px 1fr auto; gap: 10px; border-top: 1px solid rgba(243,233,222,.08); }
.chart-list li > b { color: var(--copper); font-family: var(--serif); font-size: 25px; font-weight: 400; }
.track-thumb { width: 42px; height: 42px; background: linear-gradient(135deg, #7a392a, #191013); border: 1px solid rgba(231,137,77,.22); border-radius: 9px; }
.track-thumb--two { background: linear-gradient(135deg, #353137, #111); }
.track-thumb--three { background: linear-gradient(135deg, #925437, #261217); }
.chart-list li > div { min-width: 0; display: flex; flex-direction: column; }
.chart-list strong, .chart-list small { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.chart-list strong { font-size: 13px; }
.chart-list small { color: var(--muted); font-size: 10px; }
.chart-list em { color: var(--cream); font-size: 12px; font-style: normal; }
.request-tile { position: relative; display: flex; min-height: 100%; padding: 28px 24px; overflow: hidden; flex-direction: column; justify-content: space-between; background: radial-gradient(circle at 68% 46%, rgba(231,137,77,.34), transparent 8rem), linear-gradient(150deg, #421728, #170d12); }
.request-tile::after { position: absolute; right: -40px; bottom: -50px; width: 180px; height: 220px; content: ""; border: 2px solid rgba(231,137,77,.25); border-radius: 50%; filter: blur(.2px); transform: rotate(-20deg); }
.request-tile strong { margin: 12px 0; font-family: var(--serif); font-size: clamp(38px, 3.3vw, 55px); font-weight: 400; line-height: .95; }
.request-tile > span:last-child { color: var(--cream); font-size: 12px; }
.request-tile i { width: 54px; height: 54px; border: 1px solid rgba(231,137,77,.58); border-radius: 50%; }
.request-tile i::before { display: block; width: 13px; height: 25px; margin: 11px auto 0; content: ""; border: 2px solid var(--copper); border-radius: 9px; }

.leaders-section, .news-section { position: relative; width: calc(100% - clamp(36px, 7vw, 112px)); margin: clamp(80px, 10vw, 150px) auto 0; }
.leaders-section { display: grid; grid-template-columns: 1fr minmax(230px, .32fr); gap: 24px; }
.leaders-section > .section-heading { grid-column: 1 / -1; }
.period-switcher { display: flex; padding: 5px; gap: 2px; background: rgba(255,255,255,.035); border: 1px solid rgba(243,233,222,.09); border-radius: 999px; }
.period-switcher button { padding: 8px 13px; color: var(--muted); background: transparent; border: 0; border-radius: 999px; cursor: pointer; font-size: 12px; }
.period-switcher button.is-active { color: #1b0c11; background: var(--copper); }
.leaders-card { padding: clamp(22px, 2.2vw, 34px); background: linear-gradient(145deg, rgba(29,18,23,.88), rgba(12,9,11,.82)); border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow); }
.leaders-card__top { display: grid; max-width: 660px; margin: 0 auto 30px; align-items: end; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.podium-card { position: relative; display: flex; min-height: 150px; padding: 18px 10px; align-items: center; flex-direction: column; justify-content: end; background: rgba(255,255,255,.025); border: 1px solid rgba(243,233,222,.08); border-radius: 50% 50% 16px 16px / 38% 38% 16px 16px; text-align: center; }
.podium-card--first { min-height: 180px; border-color: rgba(231,137,77,.5); box-shadow: inset 0 0 45px rgba(231,137,77,.08); }
.podium-card > span { position: absolute; top: 10px; left: 12px; color: var(--copper); font-family: var(--serif); font-size: 25px; }
.podium-card i { display: grid; width: 55px; height: 55px; margin-bottom: 8px; color: #2a1018; background: linear-gradient(145deg, #f2b079, #a44936); border-radius: 50%; font-style: normal; place-items: center; }
.podium-card strong { font-size: 13px; }
.podium-card small { color: var(--copper); }
.leaders-list { display: grid; margin: 0; padding: 0; grid-template-columns: 1fr 1fr; column-gap: 26px; list-style: none; }
.leaders-list li { display: grid; min-height: 46px; align-items: center; grid-template-columns: 26px 32px 1fr auto; gap: 8px; border-top: 1px solid rgba(243,233,222,.07); }
.leaders-list li b { color: var(--muted); font-size: 11px; }
.avatar-token { display: grid; width: 30px; height: 30px; color: #1d0b12; background: linear-gradient(145deg, #eaa16d, #9b4937); border-radius: 50%; font-size: 11px; font-weight: 800; place-items: center; }
.leaders-list li strong { font-size: 12px; }
.leaders-list li em { color: var(--copper); font-size: 11px; font-style: normal; }
.leaders-card__all { display: block; margin-top: 20px; color: var(--copper); font-size: 13px; text-align: center; }
.viewer-rank-card { position: sticky; top: 104px; display: flex; min-height: 290px; padding: 26px; align-self: start; overflow: hidden; flex-direction: column; justify-content: center; background: radial-gradient(circle at 80% 20%, rgba(231,137,77,.24), transparent 9rem), linear-gradient(150deg, #35121f, #130b10); border: 1px solid rgba(231,137,77,.42); border-radius: 24px; box-shadow: var(--shadow); }
.viewer-rank-card::after { position: absolute; right: -80px; bottom: -80px; width: 210px; height: 210px; content: ""; border: 1px solid rgba(231,137,77,.25); border-radius: 50%; box-shadow: 0 0 40px rgba(231,137,77,.1); }
.viewer-rank-card > span { color: var(--copper); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.viewer-rank-card strong { margin: 12px 0; font-family: var(--serif); font-size: 32px; font-weight: 400; line-height: 1.05; }
.viewer-rank-card small { color: var(--muted); }
.viewer-rank-card button { width: fit-content; margin-top: 24px; padding: 10px 18px; background: var(--copper); border: 0; border-radius: 10px; color: #1e0d13; cursor: pointer; font-weight: 700; }

.news-grid { display: grid; grid-template-columns: 1.3fr .7fr; grid-template-rows: 1fr 1fr; gap: 18px; }
.news-feature { display: grid; min-height: 460px; overflow: hidden; grid-row: 1 / 3; grid-template-rows: 1.35fr 1fr; background: rgba(255,255,255,.025); border: 1px solid rgba(243,233,222,.1); border-radius: 24px; }
.news-feature__visual { position: relative; display: flex; padding: 25px; align-items: end; background: radial-gradient(circle at 68% 35%, #c96b42, transparent 7rem), radial-gradient(circle at 48% 60%, #5b1b29, transparent 15rem), linear-gradient(135deg, #1c1016, #070607); }
.news-feature__visual::before { position: absolute; inset: 15% 24%; content: ""; border: 1px solid rgba(231,137,77,.55); border-radius: 50%; box-shadow: 0 0 60px rgba(231,137,77,.22), inset 0 0 50px rgba(231,137,77,.1); }
.news-feature__visual span { z-index: 1; color: rgba(243,233,222,.18); font-family: var(--serif); font-size: clamp(50px, 7vw, 110px); }
.news-feature > div:last-child { padding: 25px 30px 30px; }
.news-feature small, .news-brief small { color: var(--copper); text-transform: uppercase; letter-spacing: .12em; }
.news-feature h3 { margin: 10px 0; font-family: var(--serif); font-size: clamp(34px, 3.5vw, 58px); font-weight: 400; line-height: .98; }
.news-feature p { max-width: 650px; color: var(--muted); }
.news-feature > div:last-child > span, .news-brief > span { color: var(--copper); font-size: 13px; }
.news-brief { display: flex; min-height: 220px; padding: 28px; flex-direction: column; justify-content: space-between; border: 1px solid rgba(231,137,77,.18); border-radius: 24px; transition: transform .2s ease; }
.news-brief:hover { transform: translateY(-3px); }
.news-brief h3 { margin: 15px 0; font-family: var(--serif); font-size: clamp(28px, 2.5vw, 40px); font-weight: 400; line-height: 1.02; }
.news-brief--warm { background: radial-gradient(circle at 90% 8%, rgba(231,137,77,.22), transparent 10rem), #2b111a; }
.news-brief--dark { background: radial-gradient(circle at 20% 90%, rgba(115,35,54,.3), transparent 12rem), #100b0e; }

.schedule-strip { display: grid; width: calc(100% - clamp(36px, 7vw, 112px)); margin: clamp(70px, 9vw, 130px) auto; padding: clamp(28px, 3vw, 45px); align-items: center; grid-template-columns: .7fr 1.2fr auto; gap: 40px; background: linear-gradient(100deg, rgba(65,19,31,.7), rgba(18,11,15,.5)); border: 1px solid rgba(231,137,77,.24); border-radius: 24px; }
.schedule-strip h2 { margin: 6px 0; font-family: var(--serif); font-size: 42px; font-weight: 400; }
.schedule-strip p { color: var(--muted); }
.schedule-strip ol { margin: 0; padding: 0; list-style: none; }
.schedule-strip li { display: grid; padding: 9px 0; grid-template-columns: 62px 1fr; column-gap: 12px; border-top: 1px solid rgba(243,233,222,.08); }
.schedule-strip time { grid-row: 1 / 3; color: var(--copper); }
.schedule-strip strong { font-size: 13px; }
.schedule-strip li span { color: var(--muted); font-size: 11px; }
.schedule-strip > a { color: var(--copper); white-space: nowrap; }

.site-footer { display: flex; min-height: 150px; padding: 50px clamp(28px, 4vw, 65px); align-items: center; justify-content: space-between; background: #080608; border-top: 1px solid rgba(243,233,222,.07); }
.site-footer > div { display: flex; flex-direction: column; }
.site-footer strong { letter-spacing: .12em; }
.site-footer span { color: var(--copper); }
.site-footer nav { display: flex; gap: 22px; color: var(--muted); font-size: 12px; }

.chat-launcher { position: fixed; right: 26px; bottom: 20px; z-index: 44; display: flex; min-width: 155px; height: 52px; padding: 0 18px; align-items: center; justify-content: center; gap: 10px; color: var(--cream); background: rgba(20,16,18,.82); border: 1px solid rgba(243,233,222,.22); border-radius: 999px; box-shadow: 0 16px 38px rgba(0,0,0,.4); cursor: pointer; backdrop-filter: blur(18px); }
.chat-launcher i { width: 7px; height: 7px; background: #5fd681; border-radius: 50%; box-shadow: 0 0 9px #5fd681; }
.chat-launcher__icon { position: relative; width: 23px; height: 20px; border: 2px solid var(--cream); border-radius: 50%; }
.chat-launcher__icon::after { position: absolute; bottom: -4px; left: 2px; width: 7px; height: 7px; content: ""; border-left: 2px solid var(--cream); transform: rotate(28deg); }

.inner-hero { min-height: 420px; padding: 155px clamp(30px, 7vw, 110px) 80px; background: radial-gradient(circle at 75% 45%, rgba(145,47,37,.3), transparent 18rem), linear-gradient(135deg, #2a0e1a, #090709 70%); border-bottom: 1px solid rgba(231,137,77,.18); }
.inner-hero h1 { max-width: 1000px; margin: 14px 0; font-family: var(--serif); font-size: clamp(60px, 8vw, 128px); font-weight: 400; letter-spacing: -.06em; line-height: .9; }
.inner-hero p { max-width: 650px; color: var(--muted); font-size: 18px; }
.section-placeholder { position: relative; display: flex; width: calc(100% - clamp(36px, 8vw, 128px)); min-height: 450px; margin: 70px auto 120px; padding: 50px; overflow: hidden; align-items: start; flex-direction: column; justify-content: center; background: rgba(255,255,255,.02); border: 1px solid rgba(231,137,77,.22); border-radius: 28px; }
.section-placeholder__glow { position: absolute; right: -80px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(231,137,77,.26), transparent 68%); }
.section-placeholder > span { color: var(--copper); font-size: 12px; text-transform: uppercase; letter-spacing: .14em; }
.section-placeholder h2 { max-width: 700px; margin: 14px 0; font-family: var(--serif); font-size: clamp(42px, 6vw, 80px); font-weight: 400; line-height: .94; }
.section-placeholder p { max-width: 600px; color: var(--muted); }
.section-placeholder .copper-button { margin-top: 20px; }

.catalogs-section { width: calc(100% - clamp(36px, 8vw, 128px)); margin: 68px auto 120px; }
.catalogs-intro { display: grid; margin-bottom: 34px; align-items: end; grid-template-columns: minmax(0, 1fr) minmax(280px, .52fr); gap: 42px; }
.catalogs-intro h2 { margin: 8px 0 0; font-family: var(--serif); font-size: clamp(42px, 5vw, 76px); font-weight: 400; letter-spacing: -.045em; line-height: .94; }
.catalogs-intro p { max-width: 520px; margin: 0; color: var(--muted); line-height: 1.7; }
.catalog-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.catalog-card { position: relative; display: flex; min-width: 0; padding: 14px; overflow: hidden; color: var(--text); flex-direction: column; background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.016)); border: 1px solid rgba(231,137,77,.17); border-radius: 22px; text-decoration: none; transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.catalog-card::after { position: absolute; right: -70px; bottom: -90px; width: 180px; height: 180px; content: ''; background: radial-gradient(circle, rgba(231,137,77,.16), transparent 68%); pointer-events: none; }
.catalog-card:hover { z-index: 1; border-color: rgba(231,137,77,.58); box-shadow: 0 24px 70px rgba(0,0,0,.28); transform: translateY(-6px); }
.catalog-card__logo { position: relative; display: grid; width: 100%; aspect-ratio: 16 / 9; overflow: hidden; place-items: center; background: rgba(8,4,6,.62); border: 1px solid rgba(255,255,255,.06); border-radius: 15px; }
.catalog-card__logo > span { display: grid; width: 68px; height: 68px; color: var(--copper); place-items: center; font-family: var(--serif); font-size: 22px; letter-spacing: -.04em; background: radial-gradient(circle at 30% 25%, rgba(231,137,77,.17), rgba(98,37,54,.2)); border: 1px solid rgba(231,137,77,.3); border-radius: 50%; }
.catalog-card__logo img { position: absolute; max-width: min(70%, 150px); max-height: 66%; object-fit: contain; filter: drop-shadow(0 8px 18px rgba(0,0,0,.28)); }
.catalog-card__copy { display: flex; padding: 18px 5px 5px; flex-direction: column; gap: 6px; }
.catalog-card__copy strong { overflow: hidden; font-size: 17px; text-overflow: ellipsis; white-space: nowrap; }
.catalog-card__copy small { color: var(--muted); }
.catalog-card__copy i { margin-left: 4px; color: var(--copper); font-style: normal; }
.catalogs-note { display: grid; margin-top: 22px; padding: 22px 24px; align-items: center; grid-template-columns: 38px minmax(0, 1fr) auto; gap: 15px; background: rgba(231,137,77,.065); border: 1px solid rgba(231,137,77,.2); border-radius: 18px; }
.catalogs-note > span { display: grid; width: 38px; height: 38px; color: var(--copper); place-items: center; border: 1px solid rgba(231,137,77,.34); border-radius: 50%; }
.catalogs-note p { margin: 0; color: var(--muted); line-height: 1.55; }
.catalogs-note a { color: var(--copper); white-space: nowrap; }

.inner-hero--history { position: relative; min-height: 500px; overflow: hidden; padding-bottom: 105px; background: radial-gradient(circle at 79% 42%, rgba(174,65,43,.31), transparent 17rem), radial-gradient(circle at 48% 115%, rgba(93,27,50,.48), transparent 28rem), linear-gradient(130deg, #2b0e19, #080608 72%); }
.inner-hero--history::before { position: absolute; right: -2vw; bottom: -9vw; color: rgba(231,137,77,.055); content: "ЭФИР"; font-family: var(--serif); font-size: clamp(170px, 23vw, 390px); line-height: .75; pointer-events: none; }
.inner-hero--history > * { position: relative; z-index: 1; }
.history-now { position: absolute; right: clamp(30px,7vw,110px); bottom: 78px; display: grid; width: min(360px,34vw); padding: 20px 22px; background: rgba(13,8,10,.7); border: 1px solid rgba(231,137,77,.34); border-radius: 18px; box-shadow: 0 20px 55px rgba(0,0,0,.24); backdrop-filter: blur(18px); }
.history-now > span { display: flex; align-items: center; gap: 8px; color: var(--copper); font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.history-now > span i { width: 7px; height: 7px; background: #ff6255; border-radius: 50%; box-shadow: 0 0 10px #ff6255; }
.history-now strong { margin-top: 7px; overflow: hidden; font-family: var(--serif); font-size: 27px; font-weight: 400; text-overflow: ellipsis; white-space: nowrap; }
.history-now small { overflow: hidden; color: var(--muted); text-overflow: ellipsis; white-space: nowrap; }
.history-page { width: calc(100% - clamp(36px,8vw,128px)); margin: 65px auto 130px; }
.history-page__heading { display: grid; margin-bottom: 30px; align-items: end; grid-template-columns: minmax(0,1fr) minmax(310px,.62fr); gap: 38px; }
.history-page__heading h2 { margin: 7px 0 0; font-family: var(--serif); font-size: clamp(44px,5vw,78px); font-weight: 400; letter-spacing: -.045em; line-height: .95; }
.history-search { display: flex; height: 58px; padding: 0 11px 0 20px; align-items: center; gap: 13px; background: rgba(255,255,255,.035); border: 1px solid rgba(243,233,222,.13); border-radius: 15px; transition: border-color .2s ease, box-shadow .2s ease; }
.history-search:focus-within { border-color: rgba(231,137,77,.62); box-shadow: 0 0 0 3px rgba(231,137,77,.08), 0 12px 35px rgba(0,0,0,.2); }
.history-search__icon { position: relative; width: 15px; height: 15px; flex: 0 0 auto; border: 1.5px solid var(--copper); border-radius: 50%; }
.history-search__icon::after { position: absolute; right: -5px; bottom: -3px; width: 7px; height: 1.5px; content: ""; background: var(--copper); transform: rotate(45deg); }
.history-search input { min-width: 0; flex: 1; color: var(--cream); background: transparent; border: 0; outline: 0; }
.history-search input::placeholder { color: #897b78; }
.history-search input::-webkit-search-cancel-button { filter: invert(1); opacity: .55; }
.history-search button { padding: 8px 12px; flex: 0 0 auto; color: var(--cream); background: rgba(231,137,77,.12); border: 1px solid rgba(231,137,77,.35); border-radius: 8px; cursor: pointer; }
.history-search button:hover { background: rgba(231,137,77,.22); }
.history-search kbd { padding: 6px 9px; color: var(--muted); background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: 7px; font-family: var(--sans); font-size: 10px; }
.history-filterbar { display: flex; margin-bottom: 16px; align-items: center; justify-content: space-between; gap: 18px; }
.history-periods { display: flex; padding: 4px; gap: 2px; background: rgba(255,255,255,.035); border: 1px solid rgba(243,233,222,.09); border-radius: 999px; }
.history-periods button { min-height: 38px; padding: 0 17px; color: var(--muted); background: transparent; border: 0; border-radius: 999px; cursor: pointer; font-size: 12px; transition: color .2s ease, background .2s ease, box-shadow .2s ease; }
.history-periods button:hover { color: var(--cream); }
.history-periods button.is-active { color: #210e14; background: linear-gradient(135deg,#f2a16b,#cf6d42); box-shadow: 0 8px 22px rgba(231,137,77,.22); font-weight: 700; }
.history-total { margin: 0; color: var(--muted); font-size: 12px; white-space: nowrap; }
.history-total b { margin-right: 4px; color: var(--cream); font-family: var(--serif); font-size: 24px; font-weight: 400; }
.history-source { display: flex; min-height: 42px; margin-bottom: 13px; padding: 0 16px; align-items: center; gap: 10px; color: var(--muted); background: rgba(231,137,77,.045); border: 1px solid rgba(231,137,77,.14); border-radius: 11px; font-size: 11px; }
.history-source > span { color: var(--like); font-size: 8px; text-shadow: 0 0 8px var(--like); }
.history-source p { margin: 0; }
.history-list { margin: 0; padding: 0 26px; background: linear-gradient(145deg,rgba(255,255,255,.04),rgba(255,255,255,.014)); border: 1px solid rgba(243,233,222,.1); border-radius: 24px; box-shadow: var(--shadow); list-style: none; }
.history-track { position: relative; display: grid; min-height: 104px; padding: 13px 0; align-items: center; grid-template-columns: 76px 76px minmax(0,1fr) auto; gap: 17px; border-top: 1px solid rgba(243,233,222,.08); }
.history-track:first-child { border-top: 0; }
.history-track::before { position: absolute; top: 24px; bottom: 24px; left: 75px; width: 1px; content: ""; background: linear-gradient(transparent,rgba(231,137,77,.35),transparent); }
.history-track__moment { display: flex; padding-right: 13px; align-items: end; flex-direction: column; }
.history-track__moment time { font-family: var(--serif); font-size: 24px; line-height: 1; }
.history-track__moment span { margin-top: 6px; color: var(--muted); font-size: 10px; }
.history-track__cover { display: grid; width: 72px; height: 72px; overflow: hidden; color: rgba(231,137,77,.62); place-items: center; background: radial-gradient(circle at 35% 30%,rgba(231,137,77,.16),rgba(60,22,34,.22)); background-position: center; background-size: cover; border: 1px solid rgba(231,137,77,.18); border-radius: 14px; font-family: var(--serif); }
.history-track__cover.has-image { color: transparent; }
.history-track__copy { min-width: 0; }
.history-track__copy strong, .history-track__copy span { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.history-track__copy strong { font-family: var(--serif); font-size: clamp(21px,2vw,29px); font-weight: 400; letter-spacing: -.02em; }
.history-track__copy span { margin-top: 4px; color: var(--muted); font-size: 13px; }
.history-track__action { display: flex; min-height: 42px; padding: 0 15px; align-items: center; gap: 12px; color: var(--muted); border: 1px solid rgba(243,233,222,.12); border-radius: 999px; font-size: 11px; transition: color .2s ease, border-color .2s ease, background .2s ease; }
.history-track__action:hover { color: var(--cream); background: rgba(231,137,77,.08); border-color: rgba(231,137,77,.5); }
.history-track__action i { color: var(--copper); font-size: 15px; font-style: normal; }
.history-list.is-loading { opacity: .7; }
.history-track--skeleton { pointer-events: none; }
.history-track--skeleton::before { display: none; }
.history-track--skeleton > span, .history-track--skeleton > i, .history-track--skeleton div b, .history-track--skeleton div em { display: block; background: linear-gradient(90deg,rgba(255,255,255,.035),rgba(255,255,255,.09),rgba(255,255,255,.035)); background-size: 220% 100%; border-radius: 10px; animation: history-shimmer 1.4s infinite linear; }
.history-track--skeleton > span { width: 48px; height: 20px; justify-self: end; }
.history-track--skeleton > i { width: 72px; height: 72px; }
.history-track--skeleton div b { width: min(250px,70%); height: 20px; }
.history-track--skeleton div em { width: min(170px,50%); height: 12px; margin-top: 10px; }
@keyframes history-shimmer { to { background-position: -220% 0; } }
.history-empty { padding: 70px 20px; text-align: center; }
.history-empty > span { display: grid; width: 64px; height: 64px; margin: 0 auto 16px; color: var(--copper); place-items: center; background: rgba(231,137,77,.07); border: 1px solid rgba(231,137,77,.24); border-radius: 50%; font-family: var(--serif); font-size: 28px; }
.history-empty h3 { margin: 0; font-family: var(--serif); font-size: 34px; font-weight: 400; }
.history-empty p { margin: 8px auto 0; color: var(--muted); }

.inner-hero--editorial { background: radial-gradient(circle at 76% 44%,rgba(164,58,49,.3),transparent 18rem),linear-gradient(135deg,#32101e,#090709 72%); }
.inner-hero--artists { background: radial-gradient(circle at 72% 38%,rgba(109,44,72,.38),transparent 20rem),linear-gradient(130deg,#25101d,#080608 70%); }
.inner-hero--content { background: radial-gradient(circle at 78% 40%,rgba(189,84,50,.26),transparent 18rem),linear-gradient(130deg,#2d111b,#080608 72%); }
.editorial-page, .artists-page, .content-page, .article-page, .artist-profile { width: calc(100% - clamp(36px,8vw,128px)); margin: 65px auto 130px; }
.editorial-page__heading, .artists-page__heading { display: grid; margin-bottom: 34px; align-items: end; grid-template-columns: minmax(0,1fr) minmax(300px,.55fr); gap: 42px; }
.editorial-page__heading h2, .artists-page__heading h2 { margin: 8px 0 0; font-family: var(--serif); font-size: clamp(44px,5vw,78px); font-weight: 400; letter-spacing: -.05em; line-height: .95; }
.editorial-page__heading > p { max-width: 450px; margin: 0; color: var(--muted); line-height: 1.7; }
.content-empty { padding: 70px 28px; text-align: center; background: rgba(255,255,255,.025); border: 1px solid rgba(231,137,77,.16); border-radius: 24px; }
.content-empty > span { display: grid; width: 70px; height: 70px; margin: 0 auto 18px; color: var(--copper); place-items: center; background: rgba(231,137,77,.07); border: 1px solid rgba(231,137,77,.28); border-radius: 50%; font-family: var(--serif); font-size: 23px; }
.content-empty h3 { margin: 0; font-family: var(--serif); font-size: clamp(28px,3vw,42px); font-weight: 400; }
.content-empty p { max-width: 620px; margin: 10px auto 0; color: var(--muted); }
.news-catalog { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 20px; }
.news-card { display: grid; min-width: 0; overflow: hidden; background: linear-gradient(145deg,rgba(255,255,255,.045),rgba(255,255,255,.014)); border: 1px solid rgba(243,233,222,.1); border-radius: 24px; box-shadow: 0 20px 55px rgba(0,0,0,.2); grid-template-columns: minmax(150px,.48fr) minmax(0,1fr); }
.news-card--featured { grid-column: 1 / -1; grid-template-columns: minmax(300px,.82fr) minmax(0,1fr); }
.news-card__visual { position: relative; display: grid; min-height: 250px; overflow: hidden; color: rgba(231,137,77,.52); place-items: center; background: radial-gradient(circle at 38% 30%,rgba(231,137,77,.22),transparent 8rem),#160c11; font-family: var(--serif); font-size: 54px; }
.news-card--featured .news-card__visual { min-height: 380px; }
.news-card__visual img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.news-card:hover .news-card__visual img { transform: scale(1.025); }
.news-card__copy { display: flex; min-width: 0; padding: clamp(24px,3vw,42px); flex-direction: column; justify-content: center; }
.news-card__copy time { color: var(--copper); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.news-card__copy h3 { margin: 12px 0; font-family: var(--serif); font-size: clamp(28px,3vw,47px); font-weight: 400; letter-spacing: -.035em; line-height: .98; }
.news-card:not(.news-card--featured) .news-card__copy h3 { font-size: clamp(23px,2.2vw,34px); }
.news-card__copy p { margin: 0 0 24px; color: var(--muted); }
.news-card__copy > a { color: var(--copper); font-size: 12px; }
.content-pagination { display: grid; margin-top: 38px; align-items: center; grid-template-columns: 1fr auto 1fr; gap: 16px; }
.content-pagination a { color: var(--orange); }
.content-pagination a:last-child { justify-self: end; }
.content-pagination b { color: var(--muted); font-size: 12px; }
.article-page { max-width: 1080px; }
.article-page__header { max-width: 900px; padding-top: 65px; }
.article-page__header > a { color: var(--copper); font-size: 12px; }
.article-page__header time { display: block; margin-top: 45px; color: var(--muted); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.article-page__header h1 { margin: 14px 0 18px; font-family: var(--serif); font-size: clamp(52px,7vw,105px); font-weight: 400; letter-spacing: -.06em; line-height: .91; }
.article-page__header p { max-width: 760px; color: var(--muted); font-size: 19px; }
.article-page__cover { width: 100%; max-height: 650px; margin: 50px 0; overflow: hidden; border: 1px solid rgba(231,137,77,.22); border-radius: 28px; }
.article-page__cover img { width: 100%; max-height: 650px; object-fit: cover; }
.article-page__body { max-width: 760px; margin: 0 auto; }
.article-page__body p { margin: 0 0 24px; color: #d3c6c0; font-family: var(--serif); font-size: clamp(19px,2vw,24px); line-height: 1.65; }
.artists-search { max-width: 520px; justify-self: end; width: 100%; }
.artists-page__count { margin: -12px 0 22px; color: var(--muted); font-size: 12px; }
.artists-page__count b { color: var(--cream); font-size: 18px; }
.artists-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 16px; }
.artist-card { min-width: 0; overflow: hidden; background: rgba(255,255,255,.025); border: 1px solid rgba(243,233,222,.09); border-radius: 22px; transition: transform .22s ease,border-color .22s ease,box-shadow .22s ease; }
.artist-card:hover { border-color: rgba(231,137,77,.5); box-shadow: 0 24px 60px rgba(0,0,0,.3); transform: translateY(-5px); }
.artist-card__visual { display: grid; width: 100%; aspect-ratio: 1; overflow: hidden; color: rgba(231,137,77,.5); place-items: center; background: radial-gradient(circle at 40% 35%,rgba(231,137,77,.22),transparent 7rem),#160c11; }
.artist-card__visual img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.artist-card:hover .artist-card__visual img { transform: scale(1.035); }
.artist-card__visual i { font-family: var(--serif); font-size: 42px; font-style: normal; }
.artist-card__copy { display: flex; padding: 18px; flex-direction: column; }
.artist-card__copy strong { overflow: hidden; font-family: var(--serif); font-size: 24px; font-weight: 400; text-overflow: ellipsis; white-space: nowrap; }
.artist-card__copy small { margin-top: 5px; color: var(--muted); }
.artist-card__copy i { float: right; color: var(--copper); font-style: normal; }
.artist-profile { margin-top: 30px; }
.artist-profile__hero { display: grid; min-height: 660px; overflow: hidden; background: radial-gradient(circle at 78% 25%,rgba(231,137,77,.12),transparent 16rem),rgba(255,255,255,.02); border: 1px solid rgba(231,137,77,.18); border-radius: 30px; grid-template-columns: minmax(320px,.82fr) minmax(0,1fr); }
.artist-profile__visual { display: grid; min-height: 600px; color: var(--copper); place-items: center; background: #130c10; font-family: var(--serif); font-size: 80px; }
.artist-profile__visual img { width: 100%; height: 100%; object-fit: cover; }
.artist-profile__intro { display: flex; padding: clamp(35px,6vw,90px); align-items: start; flex-direction: column; justify-content: center; }
.artist-profile__intro > a:first-child { margin-bottom: 50px; color: var(--copper); font-size: 12px; }
.artist-profile__intro h1 { margin: 14px 0 18px; font-family: var(--serif); font-size: clamp(56px,7vw,110px); font-weight: 400; letter-spacing: -.06em; line-height: .86; }
.artist-profile__intro p { max-width: 650px; color: var(--muted); font-size: 17px; line-height: 1.75; }
.artist-profile__intro .copper-button { margin-top: 22px; }
.artist-tracks { margin-top: 70px; }
.artist-tracks .section-heading > span { color: var(--muted); }
.artist-embed { display: grid; margin-top: 70px; padding: clamp(22px,4vw,48px); gap: 26px; background: rgba(255,255,255,.025); border: 1px solid rgba(231,137,77,.18); border-radius: 26px; }
.artist-embed h2 { margin: 8px 0 0; font-family: var(--serif); font-size: clamp(38px,5vw,70px); font-weight: 400; letter-spacing: -.04em; }
.artist-embed iframe { width: 100%; min-height: 420px; border: 0; border-radius: 18px; background: #120a0e; }
.artist-track-list { margin: 0; padding: 0 25px; background: rgba(255,255,255,.025); border: 1px solid rgba(243,233,222,.1); border-radius: 24px; list-style: none; }
.artist-track-list li { display: grid; min-height: 82px; align-items: center; grid-template-columns: 54px 1fr 42px; gap: 15px; border-top: 1px solid rgba(243,233,222,.08); }
.artist-track-list li:first-child { border-top: 0; }
.artist-track-list__cover { display: grid; width: 50px; height: 50px; overflow: hidden; color: var(--copper); place-items: center; background: #160d12; border-radius: 10px; font-family: var(--serif); }
.artist-track-list__cover img { width: 100%; height: 100%; object-fit: cover; }
.artist-track-list li > div { min-width: 0; }
.artist-track-list strong, .artist-track-list small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.artist-track-list small { color: var(--muted); }
.artist-track-list li > a { color: var(--copper); text-align: center; }
.content-page { display: grid; max-width: 1200px; align-items: start; grid-template-columns: minmax(0,1fr); gap: 35px; }
.content-page--contacts { grid-template-columns: minmax(0,.82fr) minmax(380px,1fr); }
.content-page__story { padding: clamp(28px,4vw,55px); background: rgba(255,255,255,.025); border: 1px solid rgba(243,233,222,.1); border-radius: 26px; }
.content-page__story > p { margin: 18px 0 0; color: #d0c2bc; font-family: var(--serif); font-size: clamp(20px,2.2vw,27px); line-height: 1.6; }
.content-values { display: grid; margin-top: 42px; grid-template-columns: repeat(3,1fr); gap: 10px; }
.content-values article { display: flex; min-height: 130px; padding: 18px; flex-direction: column; justify-content: center; background: rgba(231,137,77,.055); border: 1px solid rgba(231,137,77,.16); border-radius: 17px; }
.content-values b { color: var(--copper); font-family: var(--serif); font-size: 34px; font-weight: 400; }
.content-values span { color: var(--muted); font-size: 11px; }
.contact-form { position: relative; display: grid; padding: clamp(28px,4vw,50px); gap: 18px; background: linear-gradient(145deg,rgba(74,24,42,.52),rgba(21,13,17,.9)); border: 1px solid rgba(231,137,77,.3); border-radius: 26px; box-shadow: var(--shadow); }
.contact-form__heading h2 { margin: 8px 0; font-family: var(--serif); font-size: clamp(36px,4vw,55px); font-weight: 400; line-height: .95; }
.contact-form__heading p { margin: 0 0 8px; color: var(--muted); }
.contact-form label { display: grid; gap: 7px; }
.contact-form label > span { color: var(--muted); font-size: 11px; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; padding: 13px 14px; color: var(--cream); background: rgba(8,5,7,.55); border: 1px solid rgba(243,233,222,.13); border-radius: 11px; outline: 0; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: rgba(231,137,77,.65); box-shadow: 0 0 0 3px rgba(231,137,77,.07); }
.contact-form option { color: var(--cream); background: #1a1116; }
.contact-form .copper-button { width: fit-content; margin-top: 4px; cursor: pointer; }
.contact-form .copper-button:disabled { cursor: wait; opacity: .6; }
.contact-form__status { min-height: 20px; margin: 0; color: var(--copper); font-size: 12px; }
.contact-form__trap { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.inner-hero--chat { background: radial-gradient(circle at 76% 44%,rgba(69,121,105,.2),transparent 18rem),linear-gradient(135deg,#25101d,#080608 72%); }
.inner-hero--requests { background: radial-gradient(circle at 77% 44%,rgba(231,137,77,.28),transparent 18rem),linear-gradient(135deg,#34101c,#080608 72%); }
.chat-page, .requests-page { display: grid; width: calc(100% - clamp(36px,8vw,128px)); margin: 55px auto 130px; align-items: start; grid-template-columns: minmax(0,1fr) minmax(270px,.34fr); gap: 20px; }
.chat-room { overflow: hidden; background: rgba(255,255,255,.025); border: 1px solid rgba(243,233,222,.1); border-radius: 26px; box-shadow: var(--shadow); }
.chat-room__header { display: flex; min-height: 100px; padding: 20px 26px; align-items: center; justify-content: space-between; gap: 20px; background: linear-gradient(90deg,rgba(91,33,54,.32),rgba(255,255,255,.01)); border-bottom: 1px solid rgba(243,233,222,.08); }
.chat-room__header h2 { margin: 6px 0 0; font-family: var(--serif); font-size: clamp(27px,3vw,42px); font-weight: 400; line-height: 1; }
.chat-room__header > span { display: flex; align-items: center; gap: 7px; color: var(--muted); font-size: 11px; }
.chat-room__header > span i { width: 7px; height: 7px; background: var(--like); border-radius: 50%; box-shadow: 0 0 9px var(--like); }
.chat-load-older { display: block; margin: 12px auto 0; padding: 7px 12px; color: var(--muted); background: rgba(255,255,255,.03); border: 1px solid var(--line); border-radius: 999px; cursor: pointer; }
.chat-load-older:hover { color: var(--cream); border-color: rgba(231,137,77,.45); }
.chat-messages { height: min(58vh,650px); min-height: 450px; margin: 0; padding: 20px 24px; overflow-y: auto; list-style: none; scrollbar-width: thin; scrollbar-color: rgba(231,137,77,.32) transparent; }
.chat-message { position: relative; display: grid; padding: 10px 76px 10px 0; align-items: start; grid-template-columns: 42px minmax(0,1fr); gap: 12px; }
.chat-message__avatar { display: grid; width: 40px; height: 40px; overflow: hidden; color: #1c0c12; place-items: center; background: linear-gradient(135deg,#e99860,#9f4439); border-radius: 50%; font-size: 13px; font-weight: 800; }
.chat-message__avatar img { width: 100%; height: 100%; object-fit: cover; }
.chat-message__meta { display: flex; align-items: center; gap: 8px; }
.chat-message__meta strong { font-size: 13px; }
.chat-message__meta b { padding: 2px 7px; color: var(--copper); background: rgba(231,137,77,.08); border: 1px solid rgba(231,137,77,.18); border-radius: 999px; font-size: 9px; }
.chat-message__meta time { margin-left: auto; color: #786c69; font-size: 9px; }
.chat-message p { margin: 4px 0 0; color: #d7cbc5; overflow-wrap: anywhere; font-size: 13px; line-height: 1.55; }
.chat-message__actions { position: absolute; top: 12px; right: 2px; display: flex; gap: 2px; opacity: .25; transition: opacity .2s ease; }
.chat-message:hover .chat-message__actions,.chat-message:focus-within .chat-message__actions { opacity: 1; }
.chat-message__actions button { min-width: 24px; height: 27px; padding: 0 5px; color: var(--muted); background: transparent; border: 0; border-radius: 50%; cursor: pointer; font-size: 10px; }
.chat-message__actions button:hover { color: var(--cream); background: rgba(231,137,77,.1); }
.chat-message__reply-preview { display: grid; width: 100%; margin-top: 5px; padding: 6px 9px; overflow: hidden; color: var(--muted); background: rgba(231,137,77,.055); border: 0; border-left: 2px solid var(--orange); border-radius: 0 7px 7px 0; text-align: left; cursor: pointer; }
.chat-message__reply-preview b,.chat-message__reply-preview span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 10px; }
.chat-message--system { display: block; padding: 18px; color: var(--muted); background: rgba(231,137,77,.05); border: 1px solid rgba(231,137,77,.13); border-radius: 13px; text-align: center; }
.chat-composer { padding: 14px 20px 18px; background: rgba(8,5,7,.48); border-top: 1px solid rgba(243,233,222,.08); }
.chat-reply-preview { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 8px; padding: 7px 10px; color: var(--muted); background: rgba(231,137,77,.07); border-left: 2px solid var(--orange); border-radius: 0 8px 8px 0; font-size: 11px; }
.chat-reply-preview[hidden] { display: none; }
.chat-reply-preview button { color: var(--muted); background: transparent; border: 0; cursor: pointer; }
.chat-emoji { display: flex; margin-bottom: 8px; overflow-x: auto; gap: 3px; scrollbar-width: none; }
.chat-emoji button { width: 32px; height: 32px; flex: 0 0 auto; background: transparent; border: 0; border-radius: 7px; cursor: pointer; }
.chat-emoji button:hover { background: rgba(255,255,255,.06); }
.chat-composer__row { display: grid; grid-template-columns: minmax(0,1fr) 52px; gap: 9px; }
.chat-composer textarea { width: 100%; min-height: 54px; padding: 13px 14px; color: var(--cream); background: rgba(255,255,255,.035); border: 1px solid rgba(243,233,222,.12); border-radius: 13px; outline: 0; resize: none; }
.chat-composer textarea:focus { border-color: rgba(231,137,77,.55); }
.chat-composer__row button { color: #210d14; background: linear-gradient(135deg,#f2a16b,#c85f3d); border: 0; border-radius: 13px; cursor: pointer; font-size: 23px; }
.chat-composer small { display: block; margin-top: 7px; color: #796c69; font-size: 9px; }
.chat-login { display: flex; padding: 22px; align-items: center; justify-content: space-between; gap: 20px; background: rgba(8,5,7,.48); border-top: 1px solid rgba(243,233,222,.08); }
.chat-login p { margin: 0; color: var(--muted); font-size: 12px; }
.chat-login button, .request-login button { padding: 10px 16px; color: #210d14; background: var(--copper); border: 0; border-radius: 10px; cursor: pointer; white-space: nowrap; }
.chat-sidebar { display: grid; gap: 14px; }
.chat-sidebar section { padding: 25px; background: rgba(255,255,255,.025); border: 1px solid rgba(243,233,222,.1); border-radius: 20px; }
.chat-sidebar h3 { margin: 9px 0; font-family: var(--serif); font-size: 29px; font-weight: 400; line-height: 1; }
.chat-sidebar p, .chat-sidebar li { color: var(--muted); font-size: 12px; line-height: 1.6; }
.chat-sidebar a { color: var(--copper); font-size: 11px; }
.chat-sidebar ul { margin: 12px 0 0; padding-left: 18px; }
.requests-page { display: block; }
.request-current { display: grid; margin-bottom: 20px; padding: 18px; align-items: center; background: linear-gradient(100deg,rgba(81,29,48,.44),rgba(255,255,255,.02)); border: 1px solid rgba(231,137,77,.2); border-radius: 22px; grid-template-columns: 90px 1fr auto; gap: 20px; }
.request-current__cover { display: grid; width: 86px; height: 86px; overflow: hidden; color: var(--copper); place-items: center; background: #150c10 center/cover; border: 1px solid rgba(231,137,77,.2); border-radius: 15px; font-family: var(--serif); font-size: 25px; }
.request-current__cover.has-image { color: transparent; }
.request-current > div { min-width: 0; }
.request-current strong, .request-current p { display: block; margin: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.request-current strong { font-family: var(--serif); font-size: 31px; font-weight: 400; }
.request-current p { color: var(--muted); }
.request-current__queue { display: flex; max-width: 155px; flex-direction: column; text-align: right; }
.request-current__queue b { color: var(--copper); font-family: var(--serif); font-size: 34px; font-weight: 400; }
.request-current__queue small { color: var(--muted); font-size: 9px; }
.requests-layout { display: grid; align-items: start; grid-template-columns: minmax(340px,.72fr) minmax(0,1fr); gap: 20px; }
.request-form-card, .request-history { padding: clamp(25px,4vw,45px); background: rgba(255,255,255,.025); border: 1px solid rgba(243,233,222,.1); border-radius: 24px; }
.request-form-card { background: radial-gradient(circle at 90% 15%,rgba(231,137,77,.16),transparent 12rem),linear-gradient(145deg,#35111f,#130b10); border-color: rgba(231,137,77,.28); }
.request-form-card h2 { margin: 10px 0; font-family: var(--serif); font-size: clamp(40px,4.8vw,70px); font-weight: 400; letter-spacing: -.05em; line-height: .9; }
.request-form-card > p { color: var(--muted); }
.request-form-card form { display: grid; margin-top: 28px; gap: 17px; }
.request-form-card label { display: grid; gap: 7px; }
.request-form-card label span { color: var(--muted); font-size: 11px; }
.request-form-card input, .request-form-card textarea { width: 100%; padding: 13px 14px; color: var(--cream); background: rgba(8,5,7,.52); border: 1px solid rgba(243,233,222,.13); border-radius: 11px; outline: 0; resize: vertical; }
.request-form-card input:focus, .request-form-card textarea:focus { border-color: rgba(231,137,77,.62); }
.request-form-card button { cursor: pointer; }
.request-form-card form > p { min-height: 20px; margin: 0; color: var(--copper); font-size: 11px; }
.request-login { margin-top: 28px; padding: 20px; background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.08); border-radius: 14px; }
.request-login p { color: var(--muted); }
.request-history ol { margin: 0; padding: 0; list-style: none; }
.request-history li { display: grid; min-height: 78px; align-items: center; grid-template-columns: 1fr auto; gap: 18px; border-top: 1px solid rgba(243,233,222,.08); }
.request-history li:first-child { border-top: 0; }
.request-history li > div { min-width: 0; }
.request-history strong, .request-history small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.request-history small { color: var(--muted); }
.request-status { padding: 5px 9px; color: var(--muted); background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09); border-radius: 999px; font-size: 9px; white-space: nowrap; }
.request-status--approved, .request-status--queued { color: var(--copper); border-color: rgba(231,137,77,.3); }
.request-status--played { color: var(--like); border-color: rgba(111,208,140,.3); }
.request-status--rejected, .request-status--cancelled { color: var(--dislike); }
.account-guest { display: flex; width: calc(100% - clamp(36px,8vw,128px)); min-height: 72vh; margin: 0 auto; padding: 120px 0; align-items: start; flex-direction: column; justify-content: center; }
.account-guest h1 { max-width: 920px; margin: 15px 0 22px; font-family: var(--serif); font-size: clamp(56px,8vw,120px); font-weight: 400; letter-spacing: -.06em; line-height: .88; }
.account-guest p { max-width: 650px; margin: 0 0 30px; color: var(--muted); font-size: 18px; }
.account-guest .copper-button { cursor: pointer; }
.account-page, .admin-page { width: calc(100% - clamp(36px,8vw,128px)); margin: 42px auto 130px; }
.account-header, .admin-header { display: flex; min-height: 270px; padding: clamp(30px,5vw,65px); align-items: center; gap: 28px; background: radial-gradient(circle at 80% 25%,rgba(231,137,77,.2),transparent 15rem),linear-gradient(140deg,#32111e,#110a0e); border: 1px solid rgba(231,137,77,.26); border-radius: 28px; box-shadow: var(--shadow); }
.account-avatar { display: grid; width: 120px; height: 120px; overflow: hidden; flex: 0 0 auto; color: #210d14; place-items: center; background: linear-gradient(135deg,#f2a16b,#bd5837); border: 3px solid rgba(243,233,222,.24); border-radius: 50%; font-family: var(--serif); font-size: 54px; }
.account-avatar img { width: 100%; height: 100%; object-fit: cover; }
.account-header > div { min-width: 0; flex: 1; }
.account-header h1, .admin-header h1 { margin: 8px 0 4px; overflow-wrap: anywhere; font-family: var(--serif); font-size: clamp(48px,6vw,92px); font-weight: 400; letter-spacing: -.055em; line-height: .92; }
.account-header p, .admin-header p { margin: 0; color: var(--muted); }
.account-header > button { padding: 10px 18px; color: var(--muted); background: transparent; border: 1px solid rgba(243,233,222,.16); border-radius: 999px; cursor: pointer; }
.account-stat-grid, .admin-metrics { display: grid; margin-top: 20px; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 14px; }
.account-stat-grid article, .admin-metrics article { display: flex; min-height: 150px; padding: 24px; flex-direction: column; justify-content: center; background: rgba(255,255,255,.027); border: 1px solid rgba(243,233,222,.1); border-radius: 20px; }
.account-stat-grid span, .admin-metrics span { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.account-stat-grid strong, .admin-metrics strong { margin-top: 8px; font-family: var(--serif); font-size: clamp(35px,4vw,58px); font-weight: 400; line-height: 1; }
.account-stat-grid small { color: var(--copper); }
.account-columns { display: grid; margin-top: 20px; align-items: start; grid-template-columns: 1fr 1fr; gap: 20px; }
.account-columns--settings { align-items: stretch; }
.account-panel, .admin-inbox { padding: clamp(22px,3vw,36px); background: rgba(255,255,255,.025); border: 1px solid rgba(243,233,222,.1); border-radius: 24px; }
.account-panel__empty { padding: 40px 20px; color: var(--muted); text-align: center; background: rgba(255,255,255,.02); border: 1px dashed rgba(243,233,222,.12); border-radius: 14px; }
.account-ledger, .account-votes, .admin-inbox ol { margin: 0; padding: 0; list-style: none; }
.account-ledger li, .account-votes li { display: grid; min-height: 68px; align-items: center; border-top: 1px solid rgba(243,233,222,.08); gap: 12px; }
.account-ledger li:first-child, .account-votes li:first-child { border-top: 0; }
.account-ledger li { grid-template-columns: 1fr auto; }
.account-ledger li > div, .account-votes li > div { min-width: 0; }
.account-ledger strong, .account-ledger small, .account-votes strong, .account-votes small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.account-ledger small, .account-votes small { color: var(--muted); font-size: 10px; }
.account-votes time { display: block; margin-top: 3px; color: rgba(243,233,222,.48); font-size: 9px; }
.account-ledger b, .account-votes b { font-weight: 600; }
.is-positive { color: var(--like) !important; }
.is-negative { color: var(--dislike) !important; }
.account-votes li { grid-template-columns: 50px 1fr 35px; }
.account-votes__cover { display: grid; width: 46px; height: 46px; overflow: hidden; color: var(--copper); place-items: center; background: #160d12; border-radius: 9px; font-family: var(--serif); }
.account-votes__cover img { width: 100%; height: 100%; object-fit: cover; }
.account-settings-form { display: grid; gap: 16px; }
.account-settings-form > label:not(.account-settings-toggle) { display: grid; gap: 7px; }
.account-settings-form label > span { color: var(--muted); font-size: 12px; }
.account-settings-form input[name="public_name"] { width: 100%; min-height: 48px; padding: 0 14px; color: var(--cream); background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.14); border-radius: 11px; }
.account-settings-form input[name="public_name"]:focus { border-color: rgba(231,137,77,.62); outline: none; box-shadow: 0 0 0 3px rgba(231,137,77,.07); }
.account-settings-toggle { display: flex; padding: 14px; align-items: flex-start; gap: 12px; background: rgba(255,255,255,.025); border: 1px solid rgba(255,255,255,.08); border-radius: 12px; cursor: pointer; }
.account-settings-toggle input { margin-top: 3px; accent-color: var(--orange); }
.account-settings-toggle span { display: grid; gap: 4px; }
.account-settings-toggle b { color: var(--cream); }
.account-settings-toggle small { color: var(--muted); line-height: 1.45; }
.account-settings-form [data-profile-settings-status] { min-height: 18px; margin: 0; color: var(--muted); font-size: 12px; }
.linked-accounts { display: grid; gap: 9px; }
.linked-accounts article { display: grid; padding: 12px; align-items: center; grid-template-columns: 42px minmax(0,1fr); gap: 12px; background: rgba(255,255,255,.025); border: 1px solid rgba(255,255,255,.08); border-radius: 12px; }
.linked-accounts article > span { display: grid; width: 40px; height: 40px; color: var(--copper); place-items: center; background: rgba(231,137,77,.07); border: 1px solid rgba(231,137,77,.2); border-radius: 50%; font-size: 9px; font-weight: 800; }
.linked-accounts article div { display: grid; min-width: 0; gap: 3px; }
.linked-accounts article strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.linked-accounts article small, .linked-accounts > p { color: var(--muted); }
.listening-activity { display: flex; margin-top: 14px; padding: 14px; align-items: center; gap: 12px; background: rgba(255,255,255,.018); border-radius: 12px; }
.listening-activity > span { width: 10px; height: 10px; flex: 0 0 auto; background: #75686d; border-radius: 50%; }
.listening-activity > span.is-live { background: #62d68a; box-shadow: 0 0 15px rgba(98,214,138,.65); }
.listening-activity div { display: grid; gap: 3px; }
.listening-activity small { color: var(--muted); }
.admin-header { justify-content: space-between; }
.admin-header > div { max-width: 850px; }
.admin-metrics { grid-template-columns: repeat(6,minmax(0,1fr)); }
.admin-metrics article { min-height: 125px; padding: 18px; }
.admin-metrics strong { font-size: clamp(30px,3vw,48px); }
.admin-modules { display: grid; margin: 20px 0; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 12px; }
.admin-modules > span { display: flex; min-height: 105px; padding: 20px; flex-direction: column; justify-content: center; background: rgba(231,137,77,.045); border: 1px solid rgba(231,137,77,.16); border-radius: 17px; }
.admin-modules b { font-family: var(--serif); font-size: 25px; font-weight: 400; }
.admin-modules small { color: var(--muted); }
.admin-inbox ol li { display: grid; min-height: 105px; padding: 18px 0; align-items: start; grid-template-columns: 1fr auto; gap: 25px; border-top: 1px solid rgba(243,233,222,.08); }
.admin-inbox ol li:first-child { border-top: 0; }
.admin-inbox strong, .admin-inbox span { display: block; }
.admin-inbox span, .admin-inbox time { color: var(--muted); font-size: 11px; }
.admin-inbox p { max-width: 780px; margin: 8px 0 0; color: #d0c4be; }

.full-rating { width: calc(100% - clamp(36px, 8vw, 128px)); margin: 70px auto 130px; }
.full-rating__layout { display: grid; align-items: start; grid-template-columns: 1fr minmax(260px,.38fr); gap: 24px; }
.rating-table { margin: 0; padding: 0 28px; background: rgba(255,255,255,.025); border: 1px solid rgba(243,233,222,.1); border-radius: 24px; list-style: none; }
.rating-table li { display: grid; min-height: 74px; align-items: center; grid-template-columns: 42px 42px 1fr auto; gap: 12px; border-top: 1px solid rgba(243,233,222,.08); }
.rating-table li:first-child { border-top: 0; }
.rating-table li.is-viewer { position: relative; margin: 0 -14px; padding: 0 14px; background: linear-gradient(90deg, rgba(231,137,77,.18), rgba(231,137,77,.04)); border: 1px solid rgba(231,137,77,.5); border-radius: 13px; box-shadow: 0 0 30px rgba(231,137,77,.12); }
.rating-table li > b { color: var(--copper); font-family: var(--serif); font-size: 24px; font-weight: 400; }
.rating-table .avatar-token { width: 40px; height: 40px; }
.rating-table li > div { display: flex; flex-direction: column; }
.rating-table small { color: var(--muted); }
.rating-table em { color: var(--copper); font-style: normal; }
.viewer-rank-card--sticky { min-height: 310px; }
.load-more-button { display: block; margin: 30px auto 0; padding: 12px 24px; color: var(--cream); background: transparent; border: 1px solid rgba(231,137,77,.52); border-radius: 999px; cursor: pointer; }

.auth-dialog { width: min(520px, calc(100% - 28px)); padding: 38px; color: var(--cream); background: radial-gradient(circle at 100% 0, rgba(231,137,77,.22), transparent 12rem), #171014; border: 1px solid rgba(231,137,77,.48); border-radius: 24px; box-shadow: 0 40px 100px rgba(0,0,0,.55); }
.auth-dialog::backdrop { background: rgba(6,4,5,.72); backdrop-filter: blur(8px); }
.auth-dialog h2 { margin: 8px 0; font-family: var(--serif); font-size: 42px; font-weight: 400; }
.auth-dialog p { color: var(--muted); }
.auth-dialog__close { position: absolute; top: 13px; right: 15px; width: 36px; height: 36px; color: var(--muted); background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: 50%; cursor: pointer; }
.auth-providers { display: grid; margin: 26px 0 16px; grid-template-columns: 1fr 1fr; gap: 10px; }
.auth-providers button,.auth-providers a { display: flex; height: 50px; padding: 0 14px; align-items: center; gap: 12px; color: var(--cream); background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; cursor: pointer; }
.auth-providers button:disabled { opacity: .45; cursor: not-allowed; }
.auth-providers button span,.auth-providers a span { display: grid; width: 28px; height: 28px; color: #1b0d12; background: var(--cream); border-radius: 50%; font-size: 10px; font-weight: 800; place-items: center; }
.auth-dialog small { color: var(--muted); }

.toast-region { position: fixed; right: 28px; bottom: 86px; z-index: 200; display: grid; width: min(360px, calc(100% - 32px)); gap: 8px; }
.toast { padding: 14px 16px; color: var(--cream); background: rgba(25,16,20,.94); border: 1px solid rgba(231,137,77,.34); border-radius: 13px; box-shadow: 0 18px 45px rgba(0,0,0,.4); animation: toast-in .25s ease both; }
.toast--error { border-color: rgba(239,106,106,.55); }
@keyframes toast-in { from { opacity: 0; transform: translateY(10px); } }

@media (max-width: 1180px) {
    :root { --player-w: 330px; }
    .catalog-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .history-now { width: min(330px,36vw); }
    .artists-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
    .admin-metrics { grid-template-columns: repeat(3,minmax(0,1fr)); }
    .main-nav { gap: 13px; }
    .main-nav a:nth-child(4), .main-nav a:nth-child(7) { display: none; }
    .charts-stage { grid-template-columns: 1fr 1fr; }
    .request-tile { min-height: 220px; grid-column: 1 / -1; }
    .leaders-section { grid-template-columns: 1fr; }
    .viewer-rank-card { position: relative; top: auto; min-height: 220px; }
}

@media (max-width: 860px) {
    :root { --player-w: 0px; }
    body { padding-bottom: 84px; }
    .radio-player { top: auto; right: 10px; bottom: 10px; left: 10px; z-index: 70; display: grid; width: auto; min-height: 68px; height: 68px; padding: 8px 10px; overflow: hidden; grid-template-columns: 52px 1fr auto; align-items: center; gap: 10px; border: 1px solid rgba(231,137,77,.38); border-radius: 18px; box-shadow: 0 20px 50px rgba(0,0,0,.55); backdrop-filter: blur(18px); }
    .radio-player::after, .brand-lockup, .player-cover-wrap .live-pill, .now-playing .eyebrow, .vote-reveal, .volume-row, .listener-row, .waveform, .service-icons, .recent-mini { display: none; }
    .player-cover-wrap { width: 52px; height: 52px; margin: 0; aspect-ratio: 1; }
    .player-cover { border-radius: 12px; }
    .now-playing { min-width: 0; align-items: start; text-align: left; }
    .now-playing strong { margin: 0; font-family: var(--sans); font-size: 13px; font-weight: 700; }
    .now-playing > span:last-child { font-size: 11px; color: var(--muted); }
    .player-controls { display: flex; margin: 0; gap: 7px; }
    .reaction-button { display: none; }
    .play-button { width: 47px; height: 47px; }
    .play-button__icon { border-top-width: 8px; border-bottom-width: 8px; border-left-width: 13px; }
    .play-button__halo { inset: -5px; }
    .mobile-player-expand { position: absolute; inset: 0 65px 0 0; z-index: 2; display: block; color: transparent; background: transparent; border: 0; cursor: pointer; }
    .mobile-player-expand span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
    body.is-mobile-player-open { padding-bottom: 0; overflow: hidden; }
    .is-mobile-player-open .radio-player { inset: 0; z-index: 100; display: flex; width: 100%; height: 100dvh; padding: 22px clamp(18px,5vw,38px) 34px; overflow-y: auto; align-items: center; flex-direction: column; gap: 12px; border: 0; border-radius: 0; background: radial-gradient(circle at 50% 15%, rgba(108,40,35,.38), transparent 38%), #0d080a; }
    .is-mobile-player-open .mobile-player-expand { inset: 12px 12px auto auto; z-index: 4; width: 44px; height: 44px; color: var(--cream); background: rgba(255,255,255,.06); border: 1px solid var(--line); border-radius: 50%; }
    .is-mobile-player-open .mobile-player-expand span { position: static; width: auto; height: auto; clip-path: none; font-size: 25px; line-height: 1; }
    .is-mobile-player-open .brand-lockup { display: flex; width: 100%; padding-right: 52px; }
    .is-mobile-player-open .player-cover-wrap { display: block; width: min(72vw,320px); height: auto; margin: 8px auto 0; aspect-ratio: 1; }
    .is-mobile-player-open .player-cover-wrap .live-pill { display: inline-flex; }
    .is-mobile-player-open .now-playing { align-items: center; text-align: center; }
    .is-mobile-player-open .now-playing .eyebrow { display: block; }
    .is-mobile-player-open .now-playing strong { max-width: min(86vw,520px); font-family: var(--serif); font-size: clamp(30px,9vw,46px); }
    .is-mobile-player-open .now-playing > span:last-child { font-size: 15px; }
    .is-mobile-player-open .player-controls { display: grid; margin: 8px auto 12px; grid-template-columns: 58px 92px 58px; gap: 17px; }
    .is-mobile-player-open .reaction-button { display: grid; }
    .is-mobile-player-open .play-button { width: 86px; height: 86px; }
    .is-mobile-player-open .vote-reveal { display: block; }
    .is-mobile-player-open .volume-row { display: flex; width: min(90vw,440px); }
    .is-mobile-player-open .listener-row { display: flex; }
    .is-mobile-player-open .waveform { display: flex; width: min(86vw,400px); }
    .is-mobile-player-open .service-icons { display: flex; flex-wrap: wrap; justify-content: center; }
    .is-mobile-player-open .recent-mini { display: block; width: min(92vw,560px); min-height: 220px; margin-top: 8px; }
    .site-shell { margin-left: 0; }
    .floating-header { top: 10px; right: 10px; left: 10px; height: 52px; padding: 0 8px 0 12px; }
    .mobile-brand { display: grid; width: 34px; height: 34px; color: #1d0b12; background: var(--copper); border-radius: 50%; font-family: var(--serif); font-weight: 700; place-items: center; }
    .mobile-menu-button { display: grid; width: 38px; height: 38px; padding: 9px; margin-left: auto; background: transparent; border: 0; place-content: center; gap: 4px; }
    .mobile-menu-button i { display: block; width: 19px; height: 1px; background: var(--cream); transition: transform .2s ease, opacity .2s ease; }
    .is-mobile-nav-open .mobile-menu-button i:nth-child(1) { transform: translateY(5px) rotate(45deg); }
    .is-mobile-nav-open .mobile-menu-button i:nth-child(2) { opacity: 0; }
    .is-mobile-nav-open .mobile-menu-button i:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }
    .main-nav { position: fixed; top: 70px; right: 10px; left: 10px; display: none; padding: 18px; align-items: stretch; flex-direction: column; gap: 3px; background: rgba(18,11,15,.96); border: 1px solid rgba(243,233,222,.12); border-radius: 18px; box-shadow: 0 25px 60px rgba(0,0,0,.5); backdrop-filter: blur(22px); }
    .is-mobile-nav-open .main-nav { display: flex; }
    .main-nav a { display: block !important; padding: 10px 12px; border-radius: 9px; }
    .main-nav a::after { display: none; }
    .main-nav a:hover, .main-nav a.is-active { background: rgba(231,137,77,.1); }
    .nav-more > button { display: none; }
    .nav-more > div { position: static; display: grid; min-width: 0; padding: 0; visibility: visible; background: transparent; border: 0; box-shadow: none; opacity: 1; transform: none; }
    .login-button { padding: 8px 15px; }
    .hero-stage { min-height: 700px; }
    .hero-stage__portrait { top: 80px; bottom: 0; width: 100%; max-width: none; aspect-ratio: auto; opacity: .74; }
    .hero-stage__giant-name { top: 115px; right: -3%; width: 95%; font-size: 24vw; }
    .hero-stage__copy { top: auto; right: 24px; bottom: 105px; left: 24px; width: auto; transform: none; }
    .hero-stage__copy h1 { font-size: clamp(52px, 15vw, 78px); }
    .hero-stage__live { right: 20px; bottom: 38px; }
    .charts-stage { width: calc(100% - 24px); margin-top: -65px; grid-template-columns: 1fr; }
    .chart-panel--shifted { transform: none; }
    .leaders-section, .news-section, .schedule-strip, .full-rating, .history-page, .editorial-page, .artists-page, .content-page, .article-page, .artist-profile { width: calc(100% - 24px); }
    .catalogs-section { width: calc(100% - 24px); margin: 34px auto 90px; }
    .catalogs-intro { align-items: start; grid-template-columns: 1fr; gap: 18px; }
    .catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
    .catalog-card { padding: 9px; border-radius: 17px; }
    .catalog-card__logo { border-radius: 12px; }
    .catalog-card__logo > span { width: 54px; height: 54px; font-size: 17px; }
    .catalog-card__copy { padding: 13px 3px 4px; }
    .catalog-card__copy strong { font-size: 15px; }
    .catalog-card__copy small { font-size: 11px; }
    .catalogs-note { grid-template-columns: 38px 1fr; }
    .catalogs-note a { grid-column: 2; }
    .inner-hero--history { min-height: 560px; padding-bottom: 155px; }
    .history-now { right: 20px; bottom: 45px; left: 20px; width: auto; }
    .history-page { margin-top: 38px; }
    .history-page__heading { align-items: start; grid-template-columns: 1fr; gap: 22px; }
    .history-filterbar { align-items: start; flex-direction: column; }
    .history-periods { width: 100%; overflow: auto; border-radius: 14px; scrollbar-width: none; }
    .history-periods::-webkit-scrollbar { display: none; }
    .history-periods button { flex: 1 0 auto; }
    .history-list { padding: 0 16px; }
    .history-track { grid-template-columns: 60px 60px minmax(0,1fr) auto; gap: 13px; }
    .history-track::before { left: 59px; }
    .history-track__cover { width: 58px; height: 58px; border-radius: 11px; }
    .history-track__action { width: 42px; padding: 0; justify-content: center; }
    .history-track__action span { display: none; }
    .editorial-page__heading, .artists-page__heading { align-items: start; grid-template-columns: 1fr; gap: 20px; }
    .artists-search { justify-self: stretch; max-width: none; }
    .news-catalog { grid-template-columns: 1fr; }
    .news-card, .news-card--featured { grid-column: auto; grid-template-columns: minmax(170px,.5fr) minmax(0,1fr); }
    .news-card--featured .news-card__visual, .news-card__visual { min-height: 280px; }
    .artists-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .artist-profile__hero { grid-template-columns: 1fr; }
    .artist-profile__visual { min-height: 520px; max-height: 70vh; }
    .artist-profile__intro > a:first-child { margin-bottom: 30px; }
    .content-page--contacts { grid-template-columns: 1fr; }
    .chat-page { width: calc(100% - 24px); grid-template-columns: 1fr; }
    .chat-sidebar { grid-template-columns: 1fr 1fr; }
    .requests-page { width: calc(100% - 24px); }
    .account-page, .admin-page, .account-guest { width: calc(100% - 24px); }
    .account-columns { grid-template-columns: 1fr; }
    .account-header { align-items: start; flex-wrap: wrap; }
    .admin-header { align-items: start; flex-direction: column; }
    .admin-modules { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .section-heading { align-items: start; flex-direction: column; }
    .leaders-card__top { grid-template-columns: repeat(3, minmax(0,1fr)); }
    .leaders-list { grid-template-columns: 1fr; }
    .news-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .news-feature { min-height: 530px; grid-row: auto; }
    .schedule-strip { grid-template-columns: 1fr; gap: 22px; }
    .full-rating__layout { grid-template-columns: 1fr; }
    .site-footer { align-items: start; flex-direction: column; gap: 28px; }
    .site-footer nav { flex-wrap: wrap; }
    .chat-launcher { display: none; }
}

@media (max-width: 540px) {
    .hero-stage { min-height: 660px; }
    .hero-stage__copy p { font-size: 13px; }
    .charts-stage { margin-top: -35px; }
    .chart-panel { padding: 18px 15px; }
    .chart-list li { grid-template-columns: 22px 38px 1fr auto; }
    .track-thumb { width: 36px; height: 36px; }
    .request-tile { min-height: 260px; }
    .leaders-section, .news-section { margin-top: 80px; }
    .period-switcher { width: 100%; }
    .period-switcher button { flex: 1; }
    .leaders-card { padding: 18px 12px; }
    .podium-card { min-height: 130px; padding: 14px 5px; }
    .podium-card--first { min-height: 150px; }
    .podium-card i { width: 44px; height: 44px; }
    .podium-card strong, .podium-card small { max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
    .news-feature { grid-template-rows: 230px 1fr; }
    .news-feature > div:last-child, .news-brief { padding: 22px; }
    .inner-hero { min-height: 370px; padding: 130px 20px 55px; }
    .inner-hero h1 { font-size: 16vw; }
    .inner-hero--history h1 { font-size: 14vw; }
    .section-placeholder { width: calc(100% - 24px); min-height: 420px; margin-top: 30px; padding: 28px; }
    .rating-table { padding: 0 12px; }
    .rating-table li { grid-template-columns: 28px 36px 1fr; }
    .rating-table li > em { grid-column: 3; padding-bottom: 10px; }
    .history-search { min-width: 0; }
    .history-search kbd { display: none; }
    .history-track { min-height: 92px; grid-template-columns: 48px 48px minmax(0,1fr) 36px; gap: 10px; }
    .history-track::before { left: 47px; }
    .history-track__moment { padding-right: 8px; }
    .history-track__moment time { font-size: 19px; }
    .history-track__moment span { font-size: 8px; }
    .history-track__cover { width: 46px; height: 46px; }
    .history-track__copy strong { font-family: var(--sans); font-size: 14px; font-weight: 700; }
    .history-track__copy span { font-size: 11px; }
    .history-track__action { width: 36px; min-height: 36px; }
    .news-card, .news-card--featured { grid-template-columns: 1fr; }
    .news-card--featured .news-card__visual, .news-card__visual { min-height: 230px; }
    .news-card__copy { padding: 24px 20px; }
    .artists-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .artist-card { border-radius: 16px; }
    .artist-card__copy { padding: 13px; }
    .artist-card__copy strong { font-family: var(--sans); font-size: 14px; font-weight: 700; }
    .artist-card__copy small { font-size: 9px; }
    .artist-profile__hero { min-height: 0; }
    .artist-profile__visual { min-height: 380px; }
    .artist-profile__intro { padding: 30px 22px 40px; }
    .artist-profile__intro h1 { font-size: 17vw; }
    .content-values { grid-template-columns: 1fr; }
    .content-values article { min-height: 90px; }
    .article-page__header { padding-top: 35px; }
    .article-page__header h1 { font-size: 14vw; }
    .chat-messages { min-height: 400px; height: 55vh; padding: 16px 13px; }
    .chat-sidebar { grid-template-columns: 1fr; }
    .chat-login { align-items: start; flex-direction: column; }
    .requests-layout { grid-template-columns: 1fr; }
    .request-current { grid-template-columns: 64px minmax(0,1fr); gap: 13px; }
    .request-current__cover { width: 62px; height: 62px; }
    .request-current__queue { grid-column: 2; max-width: none; flex-direction: row; align-items: center; gap: 7px; text-align: left; }
    .request-current__queue b { font-size: 22px; }
    .account-header { padding: 30px 22px; }
    .account-avatar { width: 82px; height: 82px; font-size: 36px; }
    .account-header > div { flex-basis: calc(100% - 115px); }
    .account-header h1 { font-size: 12vw; }
    .account-stat-grid, .admin-metrics { grid-template-columns: 1fr 1fr; }
    .account-stat-grid article, .admin-metrics article { min-height: 115px; padding: 17px; }
    .admin-modules { grid-template-columns: 1fr; }
    .auth-dialog { padding: 30px 20px; }
    .auth-providers { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
    .catalog-grid { grid-template-columns: 1fr; }
    .catalog-card { flex-direction: row; align-items: center; gap: 12px; }
    .catalog-card__logo { width: 98px; flex: 0 0 98px; }
    .catalog-card__copy { min-width: 0; padding: 0; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* Schedule, cabinet preferences and functional editorial workspace */
.inner-hero--schedule { min-height: 360px; }
.schedule-page { padding: 68px clamp(28px, 5vw, 88px) 100px; display: grid; gap: 18px; }
.schedule-day { display: grid; grid-template-columns: minmax(180px, .34fr) 1fr; gap: 32px; padding: 28px; border: 1px solid var(--line); border-radius: 22px; background: rgba(18,9,12,.78); }
.schedule-day.is-today { border-color: rgba(231,137,77,.65); box-shadow: 0 18px 60px rgba(106,36,26,.14); }
.schedule-day header span { color: var(--orange); font-size: .72rem; text-transform: uppercase; letter-spacing: .18em; }
.schedule-day h2 { margin: 7px 0 0; font: 2rem/1 var(--serif); }
.schedule-day ol { display: grid; gap: 14px; margin: 0; padding: 0; list-style: none; }
.schedule-day li { display: grid; grid-template-columns: 110px 1fr; gap: 22px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.schedule-day li:last-child { border-bottom: 0; padding-bottom: 0; }
.schedule-day time { color: var(--orange); font-weight: 700; }
.schedule-day li div { display: grid; gap: 3px; }
.schedule-day li strong { font-size: 1.06rem; }
.schedule-day li span,.schedule-day li p,.schedule-day__empty { color: var(--muted); }
.schedule-day li p { margin: 6px 0 0; line-height: 1.55; }
.chart-list .track-thumb img,.news-feature__visual img { width: 100%; height: 100%; object-fit: cover; }
.chart-panel__empty { margin: 24px 0 0; color: var(--muted); }
.content-socials { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; margin-top: 26px; }
.content-socials span { flex-basis: 100%; color: var(--muted); }
.content-socials a { padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; color: var(--cream); }
.artist-profile__credit { position: absolute; right: 12px; bottom: 10px; max-width: calc(100% - 24px); padding: 5px 8px; border-radius: 8px; color: rgba(255,255,255,.72); background: rgba(0,0,0,.6); font-size: .68rem; }
.artist-profile__source { display: inline-flex; margin-top: 5px; color: var(--orange); font-size: .84rem; }
.artist-profile__services { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.artist-profile__visual { position: relative; }
.reaction-button b { position: absolute; left: 50%; bottom: -19px; min-width: 34px; color: var(--muted); transform: translateX(-50%); font-size: 9px; font-weight: 600; }
.reaction-button b[hidden] { display: none; }
.inner-hero--charts { min-height: 390px; }
.public-chart { padding: 62px clamp(28px,5vw,88px) 100px; }
.public-chart__periods { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; }
.public-chart__periods a { padding: 9px 13px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); }
.public-chart__periods a.is-active { color: var(--cream); border-color: var(--orange); }
.public-chart__list { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; }
.public-chart__list li { display: grid; grid-template-columns: 48px 64px minmax(160px,1fr) auto; gap: 4px 16px; align-items: center; padding: 13px 18px; border: 1px solid var(--line); border-radius: 15px; background: rgba(18,9,12,.72); }
.public-chart__list li > b { color: var(--orange); font: 2rem/1 var(--serif); }
.public-chart__list li > span { display: grid; place-items: center; width: 58px; aspect-ratio: 1; overflow: hidden; border-radius: 11px; background: rgba(255,255,255,.05); }
.public-chart__list li img { width: 100%; height: 100%; object-fit: cover; }
.public-chart__list li div { display: grid; gap: 3px; }
.public-chart__list li small { color: var(--muted); }
.public-chart__list li > small { grid-column: 3/5; }
.public-chart__list li em { color: var(--cream); font-style: normal; font-weight: 700; }
.leaderboard-empty { grid-column: 1/-1; padding: 20px !important; color: var(--muted); text-align: center; }
.account-panel--wide { margin-top: 24px; }
.streaming-preferences { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.streaming-preferences label { display: grid; grid-template-columns: auto 32px auto auto; align-items: center; gap: 9px; padding: 10px 13px; border: 1px solid var(--line); border-radius: 14px; cursor: pointer; }
.streaming-preferences label:has(input:checked) { opacity: .55; }
.streaming-preferences label span { display: grid; place-items: center; width: 30px; aspect-ratio: 1; border-radius: 50%; background: rgba(255,255,255,.06); color: var(--orange); }
.streaming-preferences label small { color: var(--muted); }
.streaming-preferences > p { flex-basis: 100%; margin: 0; color: var(--muted); }
.admin-tabs { position: sticky; top: 12px; z-index: 5; display: flex; gap: 8px; padding: 8px; margin: 26px 0; overflow-x: auto; border: 1px solid var(--line); border-radius: 16px; background: rgba(16,8,11,.92); backdrop-filter: blur(20px); }
.admin-tabs button { flex: 0 0 auto; padding: 10px 15px; border: 0; border-radius: 11px; color: var(--muted); background: transparent; cursor: pointer; }
.admin-tabs button.is-active { color: var(--cream); background: linear-gradient(135deg, rgba(231,137,77,.26), rgba(105,33,40,.25)); }
.admin-tab-panel { animation: admin-in .22s ease both; }
@keyframes admin-in { from { opacity: 0; transform: translateY(5px); } }
.admin-card { margin-top: 18px; padding: clamp(20px, 3vw, 34px); border: 1px solid var(--line); border-radius: 22px; background: rgba(18,9,12,.8); }
.admin-form { display: grid; grid-template-columns: repeat(2,minmax(160px,1fr)) auto; gap: 14px; align-items: end; }
.admin-form--vertical { grid-template-columns: 1fr; max-width: 920px; }
.admin-form label { display: grid; gap: 7px; min-width: 0; }
.admin-form label > span { color: var(--muted); font-size: .83rem; }
.admin-form input,.admin-form select,.admin-form textarea,.admin-request-list input,.admin-request-list select { width: 100%; padding: 11px 12px; border: 1px solid var(--line); border-radius: 10px; color: var(--cream); background: rgba(5,3,4,.55); font: inherit; }
.admin-form textarea { resize: vertical; line-height: 1.5; }
.admin-form__wide { grid-column: 1/-1; }
.admin-form__row { display: grid; grid-template-columns: repeat(4,minmax(120px,1fr)); gap: 12px; }
.admin-check { grid-template-columns: auto 1fr !important; align-items: center; align-self: end; padding-bottom: 10px; }
.admin-check input { width: auto; }
.admin-form > p { margin: 0; color: var(--muted); align-self: center; }
.admin-user-picker { position: relative; }
.admin-user-picker > small { color: var(--muted); font-size: 10px; }
.admin-user-picker__results { position: absolute; z-index: 20; top: calc(100% + 6px); left: 0; width: min(430px, 90vw); max-height: 300px; overflow: auto; padding: 7px; border: 1px solid rgba(232,119,59,.35); border-radius: 13px; background: #160c10; box-shadow: 0 18px 45px rgba(0,0,0,.45); }
.admin-user-picker__results button { display: flex; width: 100%; padding: 10px; justify-content: space-between; gap: 16px; border: 0; border-radius: 8px; color: var(--cream); background: transparent; text-align: left; cursor: pointer; }
.admin-user-picker__results button:hover,.admin-user-picker__results button:focus-visible { background: rgba(232,119,59,.13); }
.admin-user-picker__results small,.admin-user-picker__results p { color: var(--muted); }
.admin-role-picker { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); }
.admin-simple-list,.admin-user-list,.admin-term-list { display: grid; gap: 8px; margin-top: 24px; max-height: 420px; overflow: auto; }
.admin-term-list form { display: grid; padding: 8px 0; align-items: center; grid-template-columns: 1fr auto; gap: 8px 12px; border-bottom: 1px solid var(--line); }
.admin-term-list form span.is-disabled { color: var(--muted); text-decoration: line-through; }
.admin-term-list form button { padding: 6px 9px; color: var(--cream); background: transparent; border: 1px solid var(--line); border-radius: 7px; cursor: pointer; }
.admin-term-list form small { grid-column: 1/-1; color: var(--muted); }
.admin-simple-list > span,.admin-user-list > span { display: grid; grid-template-columns: 1fr auto; gap: 3px 18px; padding: 11px 0; border-bottom: 1px solid var(--line); }
.admin-simple-list > button { display: grid; grid-template-columns: 1fr auto; gap: 3px 18px; padding: 12px 0; border: 0; border-bottom: 1px solid var(--line); color: var(--cream); background: transparent; text-align: left; cursor: pointer; }
.admin-simple-list > button small { color: var(--muted); }
.admin-simple-list > button em { grid-row: 1/3; grid-column: 2; align-self: center; color: var(--orange); font-style: normal; }
.admin-simple-list small,.admin-user-list small { color: var(--muted); }
.admin-user-list strong { grid-row: 1/3; grid-column: 2; align-self: center; color: var(--orange); }
.admin-term-list { display: flex; flex-wrap: wrap; flex-direction: row; }
.admin-term-list span { padding: 7px 10px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); }
.admin-report-periods { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.admin-report-periods a { padding: 8px 11px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); }
.admin-report-periods a.is-active { color: var(--cream); border-color: var(--orange); }
.admin-report-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.admin-report-grid > section { padding: 20px; border: 1px solid var(--line); border-radius: 16px; }
.admin-report-grid h3 { margin: 0 0 15px; font: 1.6rem/1 var(--serif); }
.admin-report-grid ol { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.admin-report-grid li { display: grid; grid-template-columns: 24px 1fr auto; gap: 4px 10px; align-items: center; padding-bottom: 10px; border-bottom: 1px solid var(--line); }
.admin-report-grid li > b { color: var(--orange); }
.admin-report-grid li div { display: grid; }
.admin-report-grid li span,.admin-report-grid li small { color: var(--muted); font-size: .78rem; }
.admin-report-grid li small { grid-column: 2/4; }
.admin-request-list { display: grid; gap: 10px; }
.admin-request-list form { display: grid; grid-template-columns: minmax(240px,1fr) 150px minmax(160px,.7fr) auto; gap: 12px; align-items: center; padding: 14px; border: 1px solid var(--line); border-radius: 14px; }
.admin-request-list form > div { display: grid; gap: 3px; }
.admin-request-list form span,.admin-request-list form p { margin: 0; color: var(--muted); font-size: .84rem; }
.admin-request-list button { padding: 10px 12px; border: 1px solid var(--orange); border-radius: 10px; color: var(--cream); background: transparent; cursor: pointer; }
.admin-inbox form { display: flex; gap: 8px; margin-top: 10px; }
.admin-inbox form select,.admin-inbox form button { padding: 7px 9px; border: 1px solid var(--line); border-radius: 8px; color: var(--cream); background: rgba(5,3,4,.55); }
.admin-schedule-list { display: grid; gap: 8px; margin-top: 24px; }
.admin-schedule-list form { display: grid; grid-template-columns: minmax(180px,1fr) repeat(4,minmax(90px,auto)) auto auto; gap: 8px; align-items: center; padding: 11px; border: 1px solid var(--line); border-radius: 12px; }
.admin-schedule-list input,.admin-schedule-list select,.admin-schedule-list button { padding: 8px; border: 1px solid var(--line); border-radius: 8px; color: var(--cream); background: rgba(5,3,4,.55); }
.admin-user-actions { display: grid; gap: 10px; }
.admin-user-actions article { display: grid; grid-template-columns: minmax(180px,1fr) auto auto; gap: 12px; align-items: center; padding: 13px; border: 1px solid var(--line); border-radius: 14px; }
.admin-user-actions article > div { display: grid; gap: 3px; }
.admin-user-actions article span,.admin-user-actions article small { color: var(--muted); font-size: .78rem; }
.admin-user-actions form { display: flex; gap: 7px; align-items: center; }
.admin-user-actions select,.admin-user-actions button { padding: 8px 9px; border: 1px solid var(--line); border-radius: 9px; color: var(--cream); background: rgba(5,3,4,.55); }
@media (max-width: 900px) {
  .schedule-day,.admin-report-grid { grid-template-columns: 1fr; }
  .admin-form,.admin-form__row { grid-template-columns: 1fr 1fr; }
  .admin-request-list form { grid-template-columns: 1fr 1fr; }
  .admin-user-actions article { grid-template-columns: 1fr; }
  .admin-schedule-list form { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .schedule-page { padding: 38px 16px 70px; }
  .schedule-day { padding: 20px; }
  .schedule-day li { grid-template-columns: 1fr; gap: 6px; }
  .admin-form,.admin-form__row,.admin-request-list form { grid-template-columns: 1fr; }
  .streaming-preferences label { width: 100%; }
}
