:root {
    --bg: #07040d;
    --bg-soft: #160b20;
    --panel: rgba(36, 20, 48, 0.72);
    --panel-strong: rgba(58, 30, 72, 0.78);
    --line: rgba(186, 88, 255, 0.24);
    --text: #f7f7fb;
    --muted: #c8bfd3;
    --orange: #ff5a00;
    --orange-soft: #ff8a2a;
    --purple: #8d00ff;
    --pink: #e2308d;
    --green: #34d399;
    --violet-line: rgba(141, 0, 255, 0.42);
    --orange-line: rgba(255, 90, 0, 0.36);
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.46), 0 0 42px rgba(141, 0, 255, 0.12);
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    padding-bottom: 84px;
    color: var(--text);
    background:
        radial-gradient(circle at 12% 12%, rgba(141, 0, 255, 0.22), transparent 34rem),
        radial-gradient(circle at 88% 16%, rgba(255, 90, 0, 0.18), transparent 32rem),
        linear-gradient(135deg, #090a10 0%, #121425 48%, #08090f 100%);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

button,
input,
textarea {
    font: inherit;
}

.site-shell {
    width: min(100%, 1480px);
    margin: 0 auto;
    padding: 0 22px 28px;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 82px;
    padding: 16px 0;
    backdrop-filter: blur(18px);
    background:
        linear-gradient(90deg, rgba(13, 7, 20, 0.76), rgba(30, 18, 39, 0.54), rgba(13, 7, 20, 0.76));
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-side {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 280px;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    overflow: hidden;
    border-radius: 999px;
    color: #fff;
    font-weight: 900;
    letter-spacing: 0;
    background: linear-gradient(135deg, var(--purple), var(--orange));
    box-shadow:
        0 0 0 2px rgba(255, 255, 255, 0.14),
        0 12px 34px rgba(255, 90, 0, 0.28);
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand strong {
    display: block;
    font-size: 1.18rem;
}

.brand small {
    display: block;
    margin-top: 2px;
    color: var(--muted);
    font-size: 0.84rem;
}

.language-switch {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(141, 0, 255, 0.15), rgba(255, 90, 0, 0.10));
    box-shadow: inset 0 0 22px rgba(255, 255, 255, 0.035);
}

.language-switch button {
    display: grid;
    place-items: center;
    width: 34px;
    height: 30px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
}

.language-switch button.is-active {
    background: linear-gradient(135deg, rgba(141, 0, 255, 0.38), rgba(255, 90, 0, 0.30));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18), 0 0 18px rgba(255, 90, 0, 0.16);
}

.nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 999px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
        linear-gradient(90deg, rgba(141, 0, 255, 0.16), rgba(255, 90, 0, 0.09));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.09),
        0 18px 55px rgba(0, 0, 0, 0.24),
        0 0 36px rgba(141, 0, 255, 0.12);
}

.nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 16px;
    border-radius: 999px;
    color: var(--muted);
    font-weight: 850;
    font-size: 0.93rem;
    transition: color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.nav a:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.nav a::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 5px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--purple), var(--orange));
    opacity: 0;
    transform: scaleX(0.35);
    transition: opacity 160ms ease, transform 160ms ease;
}

.nav a:hover::after {
    opacity: 1;
    transform: scaleX(1);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown > a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.dropdown-caret {
    color: var(--orange-soft);
    font-size: 0.92em;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    z-index: 40;
    display: grid;
    gap: 4px;
    min-width: 205px;
    padding: 10px;
    border: 1px solid rgba(186, 88, 255, 0.26);
    border-radius: 12px;
    background: rgba(14, 8, 22, 0.97);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.45), 0 0 32px rgba(141, 0, 255, 0.13);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -6px);
    transition: opacity 160ms ease, transform 160ms ease;
}

.nav-dropdown.is-open .nav-dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.nav .nav-dropdown-menu a {
    display: block;
    border-radius: 10px;
    padding: 10px 13px;
    color: var(--muted);
}

.nav .nav-dropdown-menu a:hover {
    color: var(--text);
    background: linear-gradient(135deg, rgba(141, 0, 255, 0.34), rgba(255, 90, 0, 0.22));
}

.top-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    min-width: 210px;
}

.social-links {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.045);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.social-link {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
    transition: transform 160ms ease, filter 160ms ease, box-shadow 160ms ease;
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.social-instagram svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.social-facebook {
    background: linear-gradient(135deg, #2f6fff, #183d9e);
}

.social-instagram {
    background:
        radial-gradient(circle at 30% 25%, #ffd76a 0 14%, transparent 29%),
        radial-gradient(circle at 70% 80%, #6a38ff 0 18%, transparent 38%),
        linear-gradient(135deg, #ff7a18, #ec2f7f 48%, #8d00ff);
}

.social-twitch {
    background: linear-gradient(135deg, #a970ff, #6b21d9);
}

.social-link:hover,
.social-link:focus-visible {
    transform: translateY(-2px);
    filter: saturate(1.12) brightness(1.08);
    box-shadow: 0 14px 34px rgba(141, 0, 255, 0.24), 0 10px 26px rgba(255, 90, 0, 0.16);
    outline: none;
}

.ghost-link,
.menu-button {
    border: 1px solid rgba(255, 90, 0, 0.34);
    border-radius: 999px;
    color: var(--text);
    background: linear-gradient(135deg, rgba(141, 0, 255, 0.18), rgba(255, 90, 0, 0.13));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 14px 40px rgba(255, 90, 0, 0.10);
}

.ghost-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    font-weight: 900;
    line-height: 1;
    text-align: center;
}

.menu-button {
    display: none;
    width: 44px;
    height: 44px;
    cursor: pointer;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
    gap: 22px;
    align-items: stretch;
    min-height: calc(100vh - 248px);
    padding: 24px 0 26px;
}

.live-strip {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) minmax(0, 0.8fr) auto;
    align-items: center;
    gap: 14px;
    margin: 12px 0 0;
    padding: 12px 16px;
    border: 1px solid rgba(255, 90, 0, 0.24);
    border-radius: var(--radius);
    background:
        linear-gradient(90deg, rgba(141, 0, 255, 0.20), rgba(255, 90, 0, 0.11)),
        rgba(255, 255, 255, 0.055);
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.22);
}

.live-strip span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--orange-soft);
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
}

.live-strip i {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #ff2f4f;
    box-shadow: 0 0 0 6px rgba(255, 47, 79, 0.16);
}

.live-strip b,
.live-strip small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.live-strip small {
    color: var(--muted);
    font-weight: 800;
}

.live-strip a {
    min-height: 34px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    color: var(--text);
    font-weight: 900;
    background: rgba(255, 255, 255, 0.07);
}

.top-banner {
    position: relative;
    overflow: hidden;
    height: clamp(150px, 18vw, 260px);
    margin: 10px 0 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 20% 50%, rgba(141, 0, 255, 0.18), transparent 22rem),
        radial-gradient(circle at 82% 50%, rgba(255, 90, 0, 0.14), transparent 22rem),
        #05060b;
    box-shadow: var(--shadow);
}

.top-banner img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.top-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(8, 9, 15, 0.02), rgba(8, 9, 15, 0.22)),
        linear-gradient(90deg, rgba(8, 9, 15, 0.18), transparent 24%, transparent 76%, rgba(8, 9, 15, 0.18));
}

.brand-banner {
    position: relative;
    display: grid;
    align-items: end;
    min-height: 132px;
    margin: 10px 0 12px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #090a10;
    box-shadow: var(--shadow);
}

.brand-banner img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.52;
    filter: saturate(1.12) contrast(1.05);
}

.brand-banner-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(8, 9, 15, 0.86), rgba(8, 9, 15, 0.18) 52%, rgba(8, 9, 15, 0.78)),
        linear-gradient(180deg, rgba(8, 9, 15, 0.12), rgba(8, 9, 15, 0.72));
}

.brand-banner-text {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 4px;
    padding: 22px 26px;
}

.brand-banner-text span {
    color: var(--orange-soft);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.brand-banner-text strong {
    color: var(--text);
    font-size: clamp(1.35rem, 2.4vw, 2.35rem);
    line-height: 1;
}

.hero-copy,
.player-card,
.section,
.request-band {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.065));
    box-shadow: var(--shadow);
}

.hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(26px, 4vw, 54px);
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--orange-soft);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

h1,
h2 {
    margin: 0;
    letter-spacing: 0;
    line-height: 1.05;
}

h1 {
    max-width: 640px;
    font-size: clamp(2.15rem, 3.75vw, 4.1rem);
}

h2 {
    font-size: clamp(1.75rem, 2.7vw, 3rem);
}

.section h2 {
    font-size: clamp(1.8rem, 2.8vw, 3.15rem);
}

.section-head h2,
.request-panel h2,
.full-schedule h2 {
    font-size: clamp(1.65rem, 2.35vw, 2.65rem);
}

.lead {
    max-width: 680px;
    margin: 24px 0 0;
    color: var(--muted);
    font-size: clamp(1rem, 1.45vw, 1.18rem);
    line-height: 1.55;
}

.welcome-copy {
    max-width: 650px;
    margin: 18px 0 0;
    padding-left: 16px;
    border-left: 3px solid rgba(255, 90, 0, 0.62);
    color: rgba(247, 247, 251, 0.82);
    font-size: clamp(0.98rem, 1.25vw, 1.08rem);
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.primary-button,
.secondary-button,
.text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 8px;
    font-weight: 900;
}

.primary-button {
    border: 0;
    padding: 0 22px;
    color: #fff;
    cursor: pointer;
    background: linear-gradient(135deg, var(--purple), var(--pink), var(--orange));
    box-shadow: 0 14px 34px rgba(255, 90, 0, 0.25);
}

.secondary-button {
    padding: 0 20px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.07);
}

.player-card {
    display: flex;
    flex-direction: column;
    padding: 22px;
    overflow: hidden;
}

.pro-player {
    position: relative;
    min-height: 100%;
    isolation: isolate;
}

.player-blur {
    position: absolute;
    inset: -30%;
    z-index: -2;
    background:
        linear-gradient(rgba(9, 10, 16, 0.2), rgba(9, 10, 16, 0.2)),
        var(--cover-bg, none),
        radial-gradient(circle at 20% 20%, rgba(141, 0, 255, 0.38), transparent 34rem),
        radial-gradient(circle at 80% 30%, rgba(255, 90, 0, 0.26), transparent 28rem);
    background-position: center;
    background-size: cover, cover, auto, auto;
    filter: blur(68px) saturate(1.45) brightness(1.08);
    opacity: 0.86;
    transform: scale(1.14);
    transition: opacity 250ms ease, filter 250ms ease;
}

.pro-player::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.10), transparent 18rem),
        linear-gradient(180deg, rgba(12, 13, 22, 0.44), rgba(8, 9, 15, 0.84));
}

.onair-row {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-weight: 800;
}

.live-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #ff2f4f;
    box-shadow: 0 0 0 6px rgba(255, 47, 79, 0.16);
}

.listeners {
    margin-left: auto;
}

.pro-player-main {
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr);
    align-items: center;
    gap: clamp(18px, 3vw, 28px);
    margin-top: 22px;
}

.art-wrap {
    position: relative;
    display: grid;
    place-items: center;
    width: 190px;
    height: 190px;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
    box-sizing: border-box;
    border-radius: 50%;
    background: transparent;
    box-shadow: 0 18px 58px rgba(0,0,0,.36), 0 0 34px rgba(141,0,255,.18);
    transform-origin: center center;
}

.art-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: transparent;
    box-shadow: none;
    z-index: 0;
}

.art-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    box-shadow: inset 0 -18px 32px rgba(0,0,0,.18);
    pointer-events: none;
    z-index: 3;
}

.pro-player .art-wrap {
    width: 190px;
    height: 190px;
    max-width: 190px;
    justify-self: center;
    align-self: center;
}

.art-wrap.is-spinning {
    animation: none;
}

.art-wrap.is-spinning::before {
    animation: playerSpin 24s linear infinite;
    transform-origin: center center;
}

@keyframes playerSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.art-wrap img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    object-position: center center;
    border-radius: 50%;
    transform-origin: center center;
    background: #05050a;
}

.art-wrap.is-spinning img,
.art-wrap.is-spinning span {
    animation: playerSpin 24s linear infinite;
    transform-origin: center center;
}

.art-wrap img[hidden] {
    display: none;
}

.art-wrap span {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    font-size: 0;
    font-weight: 950;
}

.track-meta span,
.stream-line span {
    color: var(--muted);
}

.track-meta h2 {
    max-width: 680px;
    margin-top: 8px;
    font-size: clamp(1.18rem, 1.45vw, 1.62rem);
    line-height: 1.18;
    letter-spacing: 0;
    font-weight: 850;
    overflow-wrap: anywhere;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.track-meta p {
    margin: 9px 0 0;
    color: var(--muted);
    font-size: clamp(0.96rem, 1.15vw, 1.06rem);
    line-height: 1.35;
}

.track-time {
    width: min(360px, 100%);
    margin-top: 12px;
}

.track-time[hidden] {
    display: none;
}

.track-time-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    color: rgba(247, 247, 251, 0.78);
    font-size: 0.82rem;
    font-weight: 850;
}

.track-time-row span {
    color: var(--orange-soft);
}

.track-time-row strong {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
}

.track-time-bar {
    display: block;
    height: 6px;
    margin-top: 7px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    overflow: hidden;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.35);
}

.track-time-bar i {
    display: block;
    width: 0%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--purple), var(--orange));
    box-shadow: 0 0 14px rgba(255, 90, 0, 0.32);
    transition: width 0.45s linear;
}

.track-meta .next-track {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    max-width: 100%;
    margin-top: 14px;
    padding: 7px 13px 7px 7px;
    border: 1px solid rgba(255, 126, 34, 0.34);
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(124, 28, 255, 0.18), rgba(255, 90, 0, 0.13));
    box-shadow: 0 10px 26px rgba(154, 35, 255, 0.12);
    color: rgba(247, 247, 251, 0.86);
    font-size: 0.82rem;
    font-weight: 850;
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.track-meta .next-track img {
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    object-fit: cover;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 18px rgba(255, 90, 0, 0.18);
}

.track-meta .next-track.has-brand-fallback img {
    padding: 3px;
    object-fit: contain;
    background: #06030a;
}

.track-meta .next-track span {
    color: var(--orange);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.track-meta .next-track strong {
    min-width: 0;
    max-width: min(430px, 52vw);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.86rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.track-meta .next-track[hidden] {
    display: none;
}

.player-controls {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 18px;
    padding-top: 0;
}

.round-button {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    cursor: pointer;
    background: linear-gradient(135deg, var(--purple), var(--orange));
    box-shadow: 0 14px 34px rgba(255, 90, 0, 0.25);
}

.stream-line {
    display: grid;
    gap: 2px;
    min-width: 130px;
}

.player-eq {
    width: 100%;
    height: 72px;
    margin-top: 18px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.22);
}

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

.track-board[hidden] {
    display: none;
}

.track-board section {
    min-width: 0;
    padding: 15px;
    border: 1px solid rgba(178, 48, 255, 0.22);
    border-radius: 12px;
    background:
        radial-gradient(circle at top left, rgba(151, 32, 255, 0.16), transparent 42%),
        linear-gradient(145deg, rgba(13, 10, 23, 0.78), rgba(34, 17, 28, 0.56));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.track-board section:nth-child(2) {
    border-color: rgba(255, 126, 34, 0.24);
    background:
        radial-gradient(circle at top right, rgba(255, 90, 0, 0.14), transparent 42%),
        linear-gradient(145deg, rgba(13, 10, 23, 0.78), rgba(39, 18, 22, 0.56));
}

.track-board > section > strong {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 12px;
    color: var(--text);
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.track-board > section > strong::before {
    content: '';
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--purple), var(--orange));
    box-shadow: 0 0 18px rgba(183, 24, 255, 0.58);
}

.track-board ol {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.35;
}

.track-board-item {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: start;
    gap: 10px;
    min-width: 0;
    padding: 9px 10px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.045);
}

.track-board-photo {
    width: 42px;
    height: 42px;
    align-self: start;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    object-fit: cover;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.22);
}

.track-board-item.has-brand-fallback .track-board-photo {
    padding: 4px;
    object-fit: contain;
    background: #06030a;
}

.track-board-copy {
    width: 100%;
    min-width: 0;
    display: grid;
    gap: 2px;
}

.track-board-copy strong {
    display: block;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.87rem;
    line-height: 1.25;
    letter-spacing: 0;
    text-transform: none;
    overflow: visible;
    overflow-wrap: break-word;
    text-overflow: clip;
    white-space: normal;
    word-break: normal;
}

.track-board-copy small {
    color: rgba(214, 204, 231, 0.66);
    font-size: 0.75rem;
    line-height: 1.25;
    overflow: visible;
    overflow-wrap: break-word;
    text-overflow: clip;
    white-space: normal;
    word-break: normal;
}

.player-bio {
    max-height: 118px;
    margin-top: 14px;
    overflow: auto;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 10px;
    background: rgba(5, 6, 10, 0.38);
    scrollbar-color: rgba(255, 90, 0, 0.66) rgba(255, 255, 255, 0.08);
}

.player-bio strong {
    display: block;
    margin-bottom: 6px;
    color: var(--text);
    font-size: 0.9rem;
}

.player-bio p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}

.volume-control {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    color: var(--muted);
    font-weight: 800;
}

.volume-control input {
    width: 110px;
    accent-color: var(--orange);
}

.popup-player-button {
    min-height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    padding: 0 16px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.055);
    cursor: pointer;
    font-weight: 900;
}

.cast-button {
    min-height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    padding: 0 16px;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    font-weight: 900;
    cursor: pointer;
}

.cast-status {
    min-height: 24px;
    margin: 12px 0 0;
    color: #fbbf24;
    font-weight: 850;
    line-height: 1.45;
    opacity: 0;
    transition: opacity .2s ease;
}

.cast-status.is-visible {
    opacity: 1;
}

.popup-player-button:hover,
.volume-control:hover {
    border-color: rgba(255, 90, 0, 0.42);
    background: rgba(255, 255, 255, 0.12);
}

.ticker {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0 22px;
}

.promo-banner {
    position: relative;
    overflow: hidden;
    min-height: clamp(150px, 15vw, 240px);
    margin: 4px 0 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #08090f;
    box-shadow: var(--shadow);
}

.promo-banner img {
    display: block;
    width: 100%;
    height: clamp(150px, 15vw, 240px);
    object-fit: cover;
    object-position: center;
}

.promo-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(8, 9, 15, 0.08), rgba(8, 9, 15, 0.34));
}

.ticker span {
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.06);
    font-weight: 800;
}

.section {
    margin-top: 22px;
    padding: clamp(24px, 4vw, 46px);
}

.section p {
    color: var(--muted);
    line-height: 1.6;
}

.split {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 26px;
    align-items: start;
}

.today-brand-mark {
    width: min(210px, 48%);
    aspect-ratio: 1;
    margin: 28px auto 4px;
    border-radius: 50%;
    padding: 7px;
    background:
        linear-gradient(135deg, rgba(168, 0, 255, 0.95), rgba(255, 106, 19, 0.95));
    box-shadow:
        0 0 26px rgba(168, 0, 255, 0.24),
        0 18px 48px rgba(0, 0, 0, 0.32);
}

.today-brand-mark img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background: #05050a;
}

.schedule-list {
    display: grid;
    gap: 12px;
}

.schedule-list article {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
}

.schedule-list article.is-current {
    border-color: rgba(52, 211, 153, 0.48);
    background:
        linear-gradient(90deg, rgba(52, 211, 153, 0.14), transparent),
        rgba(255, 255, 255, 0.07);
    box-shadow: 0 0 26px rgba(52, 211, 153, 0.12);
}

.schedule-badge {
    min-height: 22px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0 8px;
    color: #07120d;
    background: #34d399;
    font-size: 0.68rem;
    font-weight: 950;
    font-style: normal;
    letter-spacing: 0.02em;
}

.schedule-list article {
    display: grid;
    grid-template-columns: 54px 132px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 16px;
}

.schedule-list article > img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 42%;
    border: 2px solid rgba(255, 90, 0, 0.42);
    box-shadow: 0 0 18px rgba(141, 0, 255, 0.22);
}

.schedule-list span {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    color: var(--orange-soft);
    font-weight: 900;
}

.schedule-list small {
    color: var(--muted);
    font-weight: 800;
}

.schedule-main {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.schedule-main strong {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.schedule-main small {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    line-height: 1;
}

.schedule-main small::before {
    content: "";
    width: 5px;
    height: 5px;
    flex: 0 0 5px;
    border-radius: 50%;
    background: var(--orange-soft);
    box-shadow: 0 0 10px rgba(255, 90, 0, 0.45);
}

.full-schedule {
    display: block;
}

.day-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 24px 0;
}

.schedule-toggle {
    appearance: none;
    cursor: pointer;
    font: inherit;
}

.schedule-expand[hidden] {
    display: none;
}

.day-tabs a,
.day-tabs button {
    padding: 10px 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.06);
    font-weight: 800;
    cursor: pointer;
}

.day-tabs a:hover,
.day-tabs button:hover,
.day-tabs button.is-active {
    color: var(--text);
    border-color: rgba(255, 90, 0, 0.5);
    background: linear-gradient(135deg, rgba(141, 0, 255, 0.42), rgba(255, 90, 0, 0.26));
}

.compact-days {
    margin-bottom: 18px;
}

.week-schedule {
    display: grid;
    gap: 20px;
}

.week-day {
    scroll-margin-top: 110px;
}

.week-day-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
}

.week-day-head span {
    color: var(--orange-soft);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.week-day h3 {
    margin: 0;
    color: var(--text);
    font-size: clamp(1.45rem, 3vw, 2.4rem);
    text-transform: uppercase;
}

.week-row,
.request-live-card,
.request-state,
.request-results .track,
.request-results .empty {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.06);
}

.week-row {
    display: grid;
    grid-template-columns: 140px 52px minmax(0, 1fr);
    align-items: center;
    gap: 16px;
    margin-bottom: 10px;
    padding: 14px 16px;
}

.week-time {
    color: var(--orange-soft);
    font-weight: 900;
}

.week-photo {
    width: 52px;
    height: 52px;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.18);
    background: linear-gradient(135deg, var(--purple), var(--orange));
    background-position: center;
    background-size: cover;
}

.week-title {
    display: block;
    color: var(--text);
    font-weight: 900;
}

.week-subtitle,
.loading-note {
    color: var(--muted);
}

.request-panel {
    display: grid;
    gap: 18px;
}

.request-live-card {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    padding: 18px;
}

.request-cover {
    grid-row: span 4;
    width: 92px;
    height: 92px;
    border-radius: 8px;
    border: 2px solid var(--purple);
    object-fit: cover;
    background: #11131d;
}

.request-live-card h3,
.request-live-card p {
    margin: 0;
}

.request-live-card strong {
    color: var(--orange-soft);
}

.request-search {
    display: grid;
    gap: 12px;
}

.request-search input {
    width: 100%;
    min-height: 58px;
    padding: 0 22px;
    border: 1px solid var(--line);
    border-radius: 999px;
    outline: 0;
    background: rgba(5, 6, 10, 0.58);
    color: var(--text);
    font-size: 1.05rem;
}

.request-search input:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(255, 90, 0, 0.16);
}

.request-state,
.request-results .empty {
    padding: 14px 16px;
    color: var(--orange-soft);
    font-weight: 900;
}

.request-state.is-success {
    color: #34d399;
    border-color: rgba(52, 211, 153, 0.48);
    background: rgba(52, 211, 153, 0.08);
    box-shadow: 0 0 28px rgba(52, 211, 153, 0.14);
}

.request-results {
    display: grid;
    gap: 12px;
}

.request-results .track {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    padding: 14px 16px;
}

.request-results .track img {
    width: 74px;
    height: 74px;
    border-radius: 8px;
    object-fit: cover;
    background: #11131d;
}

.request-results .info h3 {
    margin: 0;
    color: var(--text);
    overflow-wrap: anywhere;
}

.request-results .info p,
.request-results .info span {
    color: var(--muted);
}

.request-btn {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    padding: 0 18px;
    background: linear-gradient(90deg, var(--purple), var(--orange));
    color: #fff;
    font-weight: 900;
    cursor: pointer;
}

.info-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 18px;
}

.station-info-card,
.contact-grid article,
.contact-form {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.06);
}

.station-info-card {
    padding: 22px;
}

.station-info-card h3 {
    margin: 0 0 12px;
    color: var(--text);
    font-size: 1.45rem;
}

.station-info-card p,
.contact-grid p {
    color: var(--muted);
    line-height: 1.55;
}

.info-list {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.info-list article {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 4px 12px;
    align-items: center;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.12);
}

.info-list span {
    grid-row: span 2;
    font-size: 1.3rem;
}

.info-list strong,
.contact-grid h3 {
    color: var(--text);
}

.info-list small {
    color: var(--muted);
}

.contact-side {
    display: grid;
    gap: 14px;
}

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

.contact-grid article {
    padding: 16px;
}

.contact-grid h3,
.contact-grid p {
    margin: 0;
}

.contact-grid p {
    margin-top: 8px;
}

.contact-form {
    display: grid;
    gap: 12px;
    padding: 18px;
}

.contact-form input,
.contact-form textarea,
.poll-other {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    outline: 0;
    background: rgba(5, 6, 10, 0.58);
    color: var(--text);
    padding: 13px 14px;
}

.poll-other {
    margin-top: 12px;
    border-color: rgba(255, 90, 0, 0.24);
    border-radius: 999px;
    background: rgba(5, 6, 10, 0.78);
}

.poll-other::placeholder {
    color: rgba(255, 255, 255, 0.46);
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form button {
    justify-self: start;
    min-height: 46px;
    border: 0;
    border-radius: 999px;
    padding: 0 18px;
    color: #fff;
    background: linear-gradient(90deg, var(--purple), var(--orange));
    font-weight: 900;
    cursor: pointer;
}

.form-honey {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.captcha-row label,
.poll-form label {
    display: grid;
    gap: 8px;
    color: var(--text);
    font-weight: 900;
}

.form-status {
    min-height: 24px;
    margin: 0;
    color: var(--muted);
    font-weight: 900;
}

.form-status.is-success {
    color: #34d399;
}

.form-status.is-error {
    color: #fb7185;
}

.poll-section {
    border-color: rgba(255, 90, 0, 0.22);
}

.poll-form {
    display: grid;
    gap: 18px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    background:
        radial-gradient(circle at 18% 8%, rgba(141, 0, 255, 0.20), transparent 18rem),
        radial-gradient(circle at 86% 20%, rgba(255, 90, 0, 0.16), transparent 18rem),
        rgba(5, 6, 10, 0.28);
}

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

.poll-card {
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 12px;
    background: rgba(5, 6, 10, 0.28);
}

.poll-card > strong {
    display: block;
    margin-bottom: 14px;
    color: var(--text);
    font-size: 1.05rem;
}

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

.poll-options label {
    position: relative;
    display: flex;
    min-height: 38px;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    cursor: pointer;
    font-weight: 850;
}

.poll-options input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.poll-options span {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.poll-options span::before {
    content: "";
    display: block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.36);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.28);
    box-shadow: inset 0 0 0 4px rgba(5, 6, 10, 0.92);
}

.poll-options input:checked + span {
    color: var(--text);
}

.poll-options input:checked + span::before {
    border-color: var(--orange);
    background: linear-gradient(135deg, var(--purple), var(--orange));
    box-shadow: inset 0 0 0 4px rgba(5, 6, 10, 0.86), 0 0 18px rgba(255, 90, 0, 0.34);
}

.style-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.style-options span {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    border: 1px solid rgba(255, 90, 0, 0.26);
    border-radius: 999px;
    padding: 0 12px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.06);
    font-weight: 800;
}

.poll-form button {
    justify-self: start;
    min-height: 48px;
    border: 0;
    border-radius: 999px;
    padding: 0 20px;
    color: #fff;
    background: linear-gradient(90deg, var(--purple), var(--orange));
    font-weight: 950;
    cursor: pointer;
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.section-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

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

.update-grid article {
    min-height: 154px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 16% 0%, rgba(141, 0, 255, 0.22), transparent 12rem),
        rgba(255, 255, 255, 0.06);
}

.update-grid span {
    color: var(--orange-soft);
    font-size: 0.78rem;
    font-weight: 950;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.update-grid strong {
    display: block;
    margin-top: 12px;
    color: var(--text);
    font-size: 1.08rem;
}

.update-grid p {
    margin-bottom: 0;
}

.radio-platforms-section {
    padding-block: clamp(34px, 5vw, 56px);
    border-color: rgba(141, 0, 255, 0.38);
    background:
        linear-gradient(90deg, rgba(6, 4, 12, 0.88), rgba(30, 7, 46, 0.84), rgba(42, 12, 7, 0.86)),
        url("../images/magic407-banner.png") center / cover;
    background-blend-mode: multiply;
    overflow: hidden;
}

.radio-platforms-section .section-head {
    margin-bottom: 22px;
}

.radio-platforms-section .section-head p:not(.eyebrow) {
    max-width: 720px;
}

.radio-platforms-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(16px, 3vw, 34px);
    min-height: 112px;
    margin-inline: calc(clamp(24px, 4vw, 46px) * -0.35);
    padding: 24px clamp(18px, 4vw, 46px);
    border: 1px solid rgba(255, 126, 34, 0.28);
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 50% -20%, rgba(141, 0, 255, 0.30), transparent 26rem),
        linear-gradient(180deg, rgba(2, 2, 8, 0.66), rgba(2, 2, 8, 0.88));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 24px 70px rgba(0, 0, 0, 0.35);
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 90, 0, 0.72) rgba(255, 255, 255, 0.08);
}

.radio-platforms-bar::-webkit-scrollbar {
    height: 9px;
}

.radio-platforms-bar::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.08);
}

.radio-platforms-bar::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: linear-gradient(90deg, var(--purple), var(--orange));
}

.radio-platform-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    min-width: 92px;
    min-height: 54px;
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.055);
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.radio-platform-link:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 126, 34, 0.46);
    background: rgba(255, 255, 255, 0.10);
}

.radio-platform-link img {
    display: block;
    max-width: 148px;
    max-height: 44px;
    object-fit: contain;
}

.radio-platform-link:not(.radio-platform-wide) img[src*="radio-net"] {
    max-width: 48px;
    max-height: 48px;
}

.radio-platform-wide img {
    max-width: 190px;
}

.radio-platform-text {
    color: #fff;
    font-size: 1.22rem;
    font-weight: 950;
    line-height: 1;
}

.radio-platform-text small {
    color: #44d7ff;
    font-size: 0.64rem;
    font-weight: 850;
}

.staff-section {
    scroll-margin-top: 110px;
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.staff-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 230px;
    padding: 26px;
    border: 1px solid rgba(255, 126, 34, 0.28);
    border-radius: var(--radius);
    background:
        linear-gradient(145deg, rgba(141, 0, 255, 0.18), rgba(255, 90, 0, 0.12)),
        rgba(255, 255, 255, 0.055);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.staff-card::after {
    content: "";
    position: absolute;
    right: -42px;
    top: -42px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 90, 0, 0.24), transparent 66%);
    pointer-events: none;
}

.staff-avatar {
    display: grid;
    place-items: center;
    width: 74px;
    height: 74px;
    margin-bottom: 18px;
    border: 2px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--purple), var(--orange));
    box-shadow: 0 14px 34px rgba(255, 90, 0, 0.22);
    font-size: 1.15rem;
    font-weight: 950;
    overflow: hidden;
}

.staff-avatar img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.staff-avatar-image {
    background: #fff;
}

.staff-badge {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 12px;
    padding: 6px 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    color: var(--orange-soft);
    background: rgba(5, 6, 10, 0.34);
    font-size: 0.74rem;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.staff-card strong {
    display: block;
    color: var(--text);
    font-size: clamp(1.55rem, 2.4vw, 2.25rem);
    line-height: 1.05;
}

.staff-card small {
    display: block;
    margin-top: 5px;
    color: var(--orange-soft);
    font-weight: 850;
}

.staff-card p {
    max-width: 520px;
    margin: 14px 0 20px;
    color: var(--muted);
    line-height: 1.55;
}

.staff-card .text-link {
    margin-top: auto;
}

.text-link {
    min-height: 42px;
    padding: 0 14px;
    color: var(--orange-soft);
    border: 1px solid rgba(255, 90, 0, 0.34);
}

.dj-strip {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(168px, 190px);
    gap: 14px;
    margin-inline: calc(clamp(24px, 4vw, 46px) * -0.35);
    padding: 8px clamp(8px, 2vw, 16px) 18px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x proximity;
    scrollbar-color: rgba(255, 90, 0, 0.72) rgba(255, 255, 255, 0.08);
}

.dj-strip::-webkit-scrollbar {
    height: 10px;
}

.dj-strip::-webkit-scrollbar-track {
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

.dj-strip::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: linear-gradient(90deg, var(--purple), var(--orange));
}

.dj-card {
    display: grid;
    justify-items: center;
    gap: 10px;
    min-height: 210px;
    padding: 18px 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        radial-gradient(circle at 50% 20%, rgba(141, 0, 255, 0.18), transparent 7rem),
        rgba(255, 255, 255, 0.06);
    scroll-snap-align: start;
    text-align: center;
    cursor: pointer;
    transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.dj-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 90, 0, 0.42);
    background:
        radial-gradient(circle at 50% 20%, rgba(255, 90, 0, 0.18), transparent 7rem),
        rgba(255, 255, 255, 0.075);
}

.dj-card > img {
    width: 92px;
    height: 92px;
    border-radius: 999px;
    border: 3px solid rgba(255, 255, 255, 0.16);
    object-fit: cover;
    background: #11131d;
    box-shadow: 0 0 0 2px rgba(141, 0, 255, 0.35), 0 14px 34px rgba(0, 0, 0, 0.28);
}

.dj-card strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text);
    font-size: 1.05rem;
    line-height: 1.1;
}

.dj-flag {
    width: 18px !important;
    height: 12px !important;
    flex: 0 0 18px;
    border-radius: 1px !important;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.32) !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.28) !important;
    background: transparent !important;
}

.dj-card span {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.35;
}

.request-band {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 22px;
}

.footer {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: space-between;
    padding: 28px 2px 8px;
    color: var(--muted);
}

.footer a {
    color: var(--orange-soft);
    font-weight: 800;
}

.dj-modal[hidden] {
    display: none;
}

.dj-modal {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: grid;
    place-items: center;
    padding: 24px;
}

.dj-modal-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(3, 4, 8, 0.76);
    backdrop-filter: blur(12px);
}

.dj-modal-card {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 22px;
    width: min(620px, 100%);
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background:
        radial-gradient(circle at 22% 12%, rgba(141, 0, 255, 0.24), transparent 16rem),
        radial-gradient(circle at 86% 24%, rgba(255, 90, 0, 0.18), transparent 16rem),
        #10111a;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6);
}

.dj-modal-card img {
    width: 160px;
    height: 160px;
    border-radius: 999px;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 0 0 3px rgba(141, 0, 255, 0.36);
}

.dj-modal-card h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.dj-modal-card p:not(.eyebrow) {
    color: var(--muted);
    line-height: 1.55;
}

.dj-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
    font-size: 1.4rem;
    line-height: 1;
}

.sticky-player {
    position: fixed;
    left: 50%;
    bottom: 14px;
    z-index: 70;
    display: grid;
    grid-template-columns: 46px minmax(160px, 1fr) auto auto;
    align-items: center;
    gap: 12px;
    width: min(720px, calc(100% - 28px));
    padding: 10px 12px;
    border: 1px solid rgba(255, 90, 0, 0.30);
    border-radius: 999px;
    background:
        linear-gradient(90deg, rgba(141, 0, 255, 0.26), rgba(255, 90, 0, 0.15)),
        rgba(8, 9, 15, 0.92);
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.48), 0 0 34px rgba(141, 0, 255, 0.14);
    backdrop-filter: blur(18px);
    transform: translateX(-50%);
}

.sticky-player img {
    width: 46px;
    height: 46px;
    border-radius: 999px;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.14);
}

.sticky-player div {
    display: grid;
    min-width: 0;
}

.sticky-player strong,
.sticky-player span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sticky-player span {
    color: var(--muted);
    font-size: 0.82rem;
}

.sticky-player button,
.sticky-player a {
    min-height: 38px;
    border-radius: 999px;
    font-weight: 950;
}

.sticky-player button {
    width: 38px;
    border: 0;
    color: #fff;
    background: linear-gradient(135deg, var(--purple), var(--orange));
    cursor: pointer;
}

.sticky-player a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: var(--text);
    background: rgba(255, 255, 255, 0.07);
}

@media (max-width: 980px) {
    .site-shell {
        padding-inline: 14px;
    }

    .topbar {
        min-height: 72px;
    }

    .brand-side {
        min-width: auto;
        gap: 10px;
    }

    .nav {
        display: none;
        position: absolute;
        left: 14px;
        right: 14px;
        top: 72px;
        flex-direction: column;
        align-items: stretch;
        max-height: calc(100vh - 96px);
        overflow-y: auto;
        padding: 10px;
        border: 1px solid rgba(255, 123, 46, 0.34);
        border-radius: 14px;
        background: linear-gradient(145deg, #08030f, #14040b);
        box-shadow: 0 30px 80px rgba(0, 0, 0, 0.88), 0 0 0 1px rgba(141, 0, 255, 0.28);
        backdrop-filter: none;
    }

    .nav.is-open {
        display: flex;
    }

    .nav a {
        padding: 13px 14px;
        border-radius: 10px;
        text-align: center;
        border: 1px solid rgba(255, 255, 255, 0.08);
        background: #16091d;
    }

    .nav-dropdown {
        display: grid;
        justify-items: stretch;
    }

    .nav-dropdown > a {
        justify-content: center;
    }

    .nav-dropdown-menu {
        position: static;
        display: none;
        min-width: 0;
        margin: 8px 0 2px;
        padding: 8px;
        border: 1px solid rgba(255, 123, 46, 0.18);
        border-radius: 12px;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        background: #050308;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    }

    .nav-dropdown.is-open .nav-dropdown-menu {
        display: grid;
        transform: none;
    }

    .nav .nav-dropdown-menu a {
        background: #130817;
    }

    .top-actions {
        min-width: auto;
    }

    .social-links {
        gap: 5px;
        padding: 4px;
    }

    .social-link {
        width: 36px;
        height: 36px;
    }

    .ghost-link {
        display: none;
    }

    .menu-button {
        display: inline-grid;
        place-items: center;
    }

    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 18px;
    }

    .split,
    .request-band,
    .info-layout {
        grid-template-columns: 1fr;
        display: grid;
    }

    .pro-player-main {
        grid-template-columns: 1fr;
        justify-items: center;
        align-items: center;
        width: 100%;
        text-align: center;
    }

    .onair-row {
        justify-content: flex-start;
        width: 100%;
        text-align: left;
    }

    .listeners {
        margin-left: 0;
    }

    .track-meta {
        display: grid;
        justify-items: center;
        width: 100%;
        max-width: 100%;
        text-align: center;
    }

    .track-meta h2,
    .track-meta p {
        max-width: 100%;
    }

    .track-time {
        width: min(320px, 100%);
        margin-right: auto;
        margin-left: auto;
    }

    .track-meta .next-track {
        justify-content: center;
        margin-right: auto;
        margin-left: auto;
    }

    .player-controls {
        justify-content: center;
        text-align: center;
    }

    .track-board {
        grid-template-columns: 1fr;
    }

    .player-copy {
        width: 100%;
    }

    .live-strip {
        grid-template-columns: 1fr auto;
    }

    .live-strip small {
        display: none;
    }

    .update-grid,
    .poll-grid {
        grid-template-columns: 1fr;
    }

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

    .dj-strip {
        grid-auto-columns: minmax(150px, 170px);
    }

    .schedule-list article {
        grid-template-columns: 1fr;
    }

    .schedule-badge {
        justify-self: start;
    }
}

@media (max-width: 560px) {
    h1 {
        font-size: 2.55rem;
    }

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

    .section h2,
    .section-head h2,
    .request-panel h2,
    .full-schedule h2 {
        font-size: 2rem;
    }

    .hero-copy,
    .player-card,
    .section {
        padding: 16px;
    }

    .dj-strip {
        grid-auto-columns: minmax(142px, 158px);
    }

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

    .brand {
        min-width: auto;
    }

    .brand small {
        display: none;
    }

    .language-switch {
        padding: 3px;
    }

    .language-switch button {
        width: 30px;
        height: 28px;
        font-size: 0.92rem;
    }

    .pro-player .art-wrap {
        width: 152px;
        height: 152px;
        min-width: 152px;
        min-height: 152px;
        max-width: 152px;
        max-height: 152px;
        aspect-ratio: 1 / 1;
        justify-self: center;
        margin-right: auto;
        margin-left: auto;
        border-radius: 50%;
        transform: none;
    }

    .pro-player .art-wrap img,
    .pro-player .art-wrap span {
        width: 152px;
        height: 152px;
        min-width: 152px;
        min-height: 152px;
        max-width: 152px;
        max-height: 152px;
        aspect-ratio: 1 / 1;
        border-radius: 50%;
    }

    .pro-player-main {
        gap: 14px;
        margin-top: 16px;
    }

    .track-meta {
        align-content: start;
    }

    .track-meta .next-track {
        display: grid;
        grid-template-columns: 30px auto minmax(0, 1fr);
        justify-content: stretch;
        align-items: center;
        width: 100%;
        max-width: 100%;
        gap: 8px;
        padding: 7px 9px;
        border-radius: 14px;
        text-align: left;
    }

    .track-meta .next-track img {
        width: 30px;
        height: 30px;
    }

    .track-meta .next-track span {
        font-size: 0.66rem;
        letter-spacing: 0.06em;
    }

    .track-meta .next-track strong {
        max-width: none;
        overflow: visible;
        text-overflow: clip;
        white-space: normal;
        overflow-wrap: break-word;
        font-size: 0.76rem;
        line-height: 1.2;
    }

    .track-meta h2 {
        font-size: 1.12rem;
    }

    .player-controls {
        gap: 10px;
    }

    .volume-control {
        order: 4;
        width: min(240px, 100%);
        justify-content: center;
    }

    .sticky-player {
        grid-template-columns: 42px minmax(0, 1fr) 38px;
        border-radius: 18px;
    }

    .track-board section {
        padding: 10px;
    }

    .track-board-item {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        padding: 8px;
    }

    .track-board-photo {
        flex: 0 0 32px;
        width: 32px;
        height: 32px;
    }

    .track-board-copy strong {
        width: 100%;
        min-width: 0;
        font-size: 0.8rem;
        line-height: 1.22;
        overflow-wrap: normal;
        word-break: normal;
        hyphens: none;
    }

    .track-board-copy small {
        width: 100%;
        min-width: 0;
        overflow-wrap: normal;
        word-break: normal;
        hyphens: none;
    }

    .sticky-player a {
        display: none;
    }

    .dj-modal-card {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }
}

.dj-news-section {
    position: relative;
    overflow: hidden;
}

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

.dj-news-card {
    display: flex;
    min-height: 190px;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
    padding: 20px;
    border: 1px solid rgba(255, 123, 46, 0.28);
    border-radius: 18px;
    background:
        radial-gradient(circle at 20% 0%, rgba(179, 46, 255, 0.22), transparent 38%),
        linear-gradient(135deg, rgba(38, 10, 54, 0.92), rgba(22, 8, 16, 0.94));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.dj-news-card strong {
    color: #fff;
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    line-height: 1.25;
}

.dj-news-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.5;
}

.dj-news-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: #ff8a2a;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.dj-news-link {
    color: #ffd43b;
    font-weight: 900;
    text-decoration: none;
}

.dj-news-link:hover {
    color: #fff;
}

.dj-news-empty {
    grid-column: 1 / -1;
    padding: 20px;
    border: 1px solid rgba(255, 123, 46, 0.24);
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.25);
    color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 980px) {
    .dj-news-grid {
        grid-template-columns: 1fr;
    }
}

/* Magic407 cleanup: hide old genre vote block */
.poll-section,
.poll-form,
.poll-grid,
.poll-card,
.poll-options,
form[data-poll-form],
[data-poll-form],
[data-poll-status] {
  display: none !important;
}
