
/* Source: site.css */
: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);
    touch-action: pan-x;
}

.volume-control output {
    min-width: 38px;
    color: var(--text);
    font-size: 0.78rem;
    font-weight: 900;
    text-align: right;
}

.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: 0;
    background: transparent;
    box-shadow: none;
}

.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-panel[hidden],
[data-live-request-link][hidden] {
    display: none !important;
}

.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(720px, 100%);
    max-height: min(86vh, 760px);
    overflow-y: auto;
    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-meta {
    margin: 16px 0 14px;
}

.dj-modal-label {
    display: block;
    margin-bottom: 8px;
    color: var(--orange-soft);
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.dj-modal-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.dj-modal-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 10px;
    border: 1px solid rgba(255, 129, 37, 0.34);
    border-radius: 999px;
    color: var(--text);
    background: rgba(255, 129, 37, 0.1);
    font-size: 0.82rem;
    font-weight: 800;
}

.dj-modal-bio {
    margin: 0 0 18px;
    white-space: pre-line;
}

.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);
    transform-origin: center center;
}

.sticky-player img.is-spinning {
    animation: playerSpin 24s linear infinite;
}

.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-modal-tags {
        justify-content: 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;
}


/* Source: pro-polish.css */
/* Magic407 professional polish layer */
:root {
    --pro-page-max: 1560px;
    --pro-card: rgba(22, 20, 34, 0.82);
    --pro-card-2: rgba(38, 30, 52, 0.74);
    --pro-border: rgba(194, 92, 255, 0.28);
    --pro-border-warm: rgba(255, 102, 26, 0.30);
    --pro-glow-purple: rgba(141, 0, 255, 0.32);
    --pro-glow-orange: rgba(255, 90, 0, 0.24);
    --pro-ink: rgba(247, 247, 251, 0.92);
    --pro-muted: rgba(210, 200, 224, 0.76);
}

body {
    background:
        radial-gradient(circle at 16% 0%, rgba(141, 0, 255, 0.24), transparent 34rem),
        radial-gradient(circle at 86% 8%, rgba(255, 90, 0, 0.18), transparent 32rem),
        linear-gradient(180deg, rgba(19, 4, 29, 0.90), rgba(7, 6, 13, 0.98) 28rem),
        #07060d;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 72%);
}

.site-shell {
    width: min(100%, var(--pro-page-max));
}

.topbar {
    min-height: 86px;
    margin-top: 10px;
    padding: 13px 18px;
    border: 1px solid rgba(186, 88, 255, 0.16);
    border-radius: 0 0 8px 8px;
    background:
        linear-gradient(90deg, rgba(16, 5, 25, 0.86), rgba(54, 31, 65, 0.58), rgba(20, 8, 14, 0.82)),
        rgba(7, 6, 13, 0.78);
    box-shadow:
        0 18px 60px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.brand-mark {
    width: 54px;
    height: 54px;
    box-shadow:
        0 0 0 2px rgba(255, 255, 255, 0.12),
        0 0 0 5px rgba(141, 0, 255, 0.12),
        0 16px 34px rgba(255, 90, 0, 0.18);
}

.brand strong {
    font-size: 1.26rem;
}

.brand small {
    font-size: 0.88rem;
}

.nav {
    gap: 2px;
    padding: 7px;
    border-color: rgba(255, 255, 255, 0.16);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.035)),
        linear-gradient(90deg, rgba(141, 0, 255, 0.24), rgba(255, 90, 0, 0.13));
}

.nav a {
    min-height: 42px;
    padding-inline: 17px;
    letter-spacing: -0.01em;
}

.ghost-link {
    min-width: 140px;
    min-height: 46px;
    padding-inline: 20px;
    border-color: rgba(255, 90, 0, 0.34);
    background:
        radial-gradient(circle at 0% 0%, rgba(141, 0, 255, 0.24), transparent 70%),
        rgba(255, 90, 0, 0.06);
    box-shadow: 0 12px 34px rgba(255, 90, 0, 0.12);
}

.top-banner {
    height: clamp(172px, 18vw, 286px);
    margin-top: 16px;
    overflow: hidden;
    border: 1px solid rgba(194, 92, 255, 0.24);
    border-radius: 8px;
    background:
        linear-gradient(90deg, rgba(36, 0, 63, 0.50), transparent 28%, transparent 70%, rgba(68, 20, 8, 0.50)),
        #030306;
    box-shadow:
        0 24px 70px rgba(0, 0, 0, 0.32),
        0 0 42px rgba(141, 0, 255, 0.10);
}

.top-banner img {
    object-fit: contain;
    padding: 0;
}

.live-strip {
    display: none;
}

.hero {
    grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.22fr);
    gap: 24px;
    min-height: auto;
    padding-top: 28px;
}

.hero-copy,
.player-card,
.section {
    border-color: var(--pro-border);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.034)),
        var(--pro-card);
    box-shadow:
        0 26px 84px rgba(0, 0, 0, 0.38),
        0 0 34px rgba(141, 0, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero-copy {
    position: relative;
    overflow: hidden;
    min-height: 500px;
    justify-content: flex-start;
    padding: 22px clamp(30px, 3.4vw, 52px) clamp(30px, 3.4vw, 52px);
}

.hero-copy::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(115deg, rgba(153, 25, 255, 0.18), transparent 42%),
        radial-gradient(circle at 18% 18%, rgba(255, 102, 26, 0.18), transparent 18rem);
    opacity: 0.75;
}

.hero-copy > * {
    position: relative;
    z-index: 1;
}

.hero-copy h1 {
    max-width: 600px;
    font-size: clamp(2.1rem, 3.05vw, 3.75rem);
    line-height: 1.02;
    margin-top: 22px;
    letter-spacing: 0;
}

.hero-title-brand,
.hero-title-sub {
    display: block;
}

.hero-title-sub {
    margin-top: 0.08em;
    font-size: 0.72em;
    line-height: 1.08;
    font-weight: 800;
}

h1 {
    max-width: 620px;
    font-size: clamp(2.1rem, 3.05vw, 3.75rem);
}

.section h2,
.section-head h2,
.full-schedule h2 {
    font-size: clamp(1.45rem, 1.9vw, 2.15rem);
    letter-spacing: -0.035em;
}

.lead {
    max-width: 610px;
    margin-top: 20px;
    font-size: clamp(1.02rem, 1.08vw, 1.22rem);
    line-height: 1.55;
}

.hero-signals {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.hero-signals span {
    display: grid;
    gap: 3px;
    min-width: 138px;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(170, 32, 255, 0.16), rgba(255, 94, 20, 0.08)),
        rgba(6, 5, 12, 0.28);
}

.hero-signals strong {
    color: #fff;
    font-size: 1rem;
    line-height: 1;
}

.hero-signals small {
    color: rgba(247, 247, 251, 0.72);
    font-size: 0.78rem;
    line-height: 1.25;
}

.welcome-copy {
    max-width: 650px;
    margin-top: 24px;
    padding: 13px 0 13px 18px;
    border-left: 3px solid var(--orange);
    color: rgba(247, 247, 251, 0.78);
    font-size: clamp(0.95rem, 1vw, 1.08rem);
    line-height: 1.62;
}

.eyebrow {
    color: var(--orange-soft);
    letter-spacing: 0.16em;
    text-shadow: 0 0 20px rgba(255, 90, 0, 0.18);
}

.ticker {
    margin-top: 20px;
}

.ticker span,
.day-tabs button,
.text-link,
.secondary-button,
.cast-button,
.popup-player-button {
    border-color: rgba(194, 92, 255, 0.22);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
        rgba(31, 22, 43, 0.56);
}

.ticker span:hover,
.day-tabs button:hover,
.text-link:hover,
.secondary-button:hover,
.cast-button:hover,
.popup-player-button:hover {
    border-color: rgba(255, 90, 0, 0.42);
}

.primary-button,
.secondary-button,
.text-link,
.poll-form button,
.contact-form button,
.request-btn,
.popup-player-button,
.cast-button {
    transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.primary-button:hover,
.text-link:hover,
.poll-form button:hover,
.contact-form button:hover,
.request-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 42px rgba(255, 90, 0, 0.24), 0 0 28px rgba(141, 0, 255, 0.16);
}

.pro-player-main {
    grid-template-columns: 210px minmax(0, 1fr);
    align-items: center;
}

.pro-player .art-wrap {
    width: 200px;
    height: 200px;
    margin: 10px auto;
}

.track-meta h2 {
    max-width: 680px;
    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;
}

.player-eq {
    display: block;
    width: 100%;
    height: 80px;
    min-height: 72px;
    margin-top: 22px;
    opacity: 0.92;
    transform: translateZ(0);
}

.player-bio {
    background: rgba(3, 4, 8, 0.48);
    border-color: rgba(255, 255, 255, 0.10);
}

.section {
    margin-top: 24px;
    position: relative;
    overflow: hidden;
    padding-top: clamp(32px, 3vw, 46px);
    padding-bottom: clamp(32px, 3vw, 46px);
}

.section::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 3px;
    background: linear-gradient(180deg, var(--purple), var(--orange), transparent);
    opacity: 0.65;
}

.section > * {
    position: relative;
    z-index: 1;
}

.split {
    grid-template-columns: 0.72fr 1.28fr;
}

.schedule-list article,
.week-row,
.request-live-card,
.request-state,
.request-results .track,
.request-results .empty,
.station-info-card,
.contact-grid article,
.contact-form,
.poll-card,
.update-grid article {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.086), rgba(255, 255, 255, 0.026)),
        rgba(10, 11, 18, 0.42);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.055),
        0 14px 36px rgba(0, 0, 0, 0.18);
}

.week-row {
    grid-template-columns: 138px 64px minmax(0, 1fr);
    border-radius: 8px;
}

.week-photo,
.schedule-list article > img {
    box-shadow: 0 0 0 2px rgba(141, 0, 255, 0.26), 0 14px 30px rgba(0, 0, 0, 0.25);
}

.dj-week-card {
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr) auto;
    align-items: center;
    gap: 22px;
    margin: 0 0 22px;
    padding: 20px 22px;
    border: 1px solid rgba(255, 90, 0, 0.22);
    border-radius: 18px;
    background:
        radial-gradient(circle at 8% 10%, rgba(141, 0, 255, 0.26), transparent 16rem),
        radial-gradient(circle at 92% 50%, rgba(255, 90, 0, 0.16), transparent 18rem),
        linear-gradient(145deg, rgba(255, 255, 255, 0.074), rgba(255, 255, 255, 0.022)),
        rgba(8, 8, 14, 0.58);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 20px 50px rgba(0, 0, 0, 0.22);
    overflow: hidden;
}

.dj-week-art {
    width: 104px;
    height: 104px;
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(135deg, #8d00ff, #e2308d 52%, #ff5a00);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.28), 0 0 30px rgba(141, 0, 255, 0.24);
}

.dj-week-art img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    object-fit: cover;
    background: #05050a;
}

.dj-week-card h3 {
    margin: 4px 0 2px;
    font-size: clamp(1.65rem, 3vw, 2.55rem);
    line-height: 0.98;
}

.dj-week-card p:not(.eyebrow) {
    margin: 0;
    color: rgba(247, 247, 251, 0.72);
    font-size: 1rem;
    font-weight: 750;
}

.dj-week-time {
    display: inline-flex;
    width: fit-content;
    margin-top: 10px !important;
    padding: 8px 12px;
    border: 1px solid rgba(52, 211, 153, 0.28);
    border-radius: 999px;
    background: rgba(52, 211, 153, 0.08);
    color: #34d399 !important;
    font-size: 0.86rem !important;
    font-weight: 950 !important;
}

.dj-strip {
    grid-auto-columns: minmax(178px, 208px);
    padding-bottom: 24px;
    scroll-snap-type: x proximity;
}

.dj-card {
    min-height: 232px;
    scroll-snap-align: start;
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 90, 0, 0.16), transparent 42%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
        rgba(10, 11, 18, 0.44);
    border-color: rgba(255, 255, 255, 0.12);
}

.dj-card > img {
    width: 112px;
    height: 112px;
    box-shadow:
        0 0 0 3px rgba(141, 0, 255, 0.22),
        0 0 0 6px rgba(255, 90, 0, 0.10),
        0 18px 34px rgba(0, 0, 0, 0.30);
}

.updates-section .update-grid article:last-child {
    border-color: var(--pro-border-warm);
}

.request-panel {
    border-color: rgba(52, 211, 153, 0.24);
}

.request-panel .section-head {
    align-items: center;
}

.request-live-card {
    grid-template-columns: 96px minmax(0, 1fr);
    border-color: rgba(52, 211, 153, 0.20);
}

.request-cover {
    border-radius: 14px;
    border-color: rgba(141, 0, 255, 0.78);
}

.listener-request-form {
    display: grid;
    gap: 16px;
    margin-top: 18px;
    padding: 22px;
    border: 1px solid rgba(186, 88, 255, 0.24);
    border-radius: 16px;
    background:
        radial-gradient(circle at 14% 0%, rgba(141, 0, 255, 0.20), transparent 18rem),
        radial-gradient(circle at 90% 18%, rgba(255, 90, 0, 0.16), transparent 18rem),
        rgba(4, 5, 10, 0.42);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

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

.listener-request-form label,
.request-message-field {
    display: grid;
    gap: 8px;
}

.listener-request-form label span,
.request-message-field span {
    color: rgba(247, 247, 251, 0.86);
    font-size: 0.78rem;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.listener-request-form input,
.listener-request-form textarea {
    width: 100%;
    border: 1px solid rgba(186, 88, 255, 0.24);
    border-radius: 12px;
    outline: 0;
    background: rgba(5, 6, 10, 0.78);
    color: var(--text);
    padding: 14px 15px;
    font: inherit;
    font-weight: 750;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.listener-request-form input[type="file"] {
    padding: 11px 14px;
    color: rgba(247, 247, 251, 0.72);
}

.listener-request-form input::file-selector-button {
    margin-right: 12px;
    border: 1px solid rgba(255, 90, 0, 0.38);
    border-radius: 999px;
    background: rgba(255, 90, 0, 0.12);
    color: var(--text);
    padding: 8px 12px;
    font-weight: 900;
    cursor: pointer;
}

.listener-request-form textarea {
    min-height: 130px;
    resize: vertical;
}

.listener-request-form input:focus,
.listener-request-form textarea:focus {
    border-color: rgba(255, 90, 0, 0.74);
    box-shadow: 0 0 0 4px rgba(141, 0, 255, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.request-unavailable {
    border: 1px solid rgba(255, 90, 0, 0.36);
    border-radius: 14px;
    padding: 14px 16px;
    color: #ffb26b;
    background: rgba(255, 90, 0, 0.10);
    font-weight: 900;
}

.request-form-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}

.request-state.is-success {
    color: #34d399;
    border-color: rgba(52, 211, 153, 0.58);
    background: rgba(52, 211, 153, 0.10);
}

.request-state.is-error {
    color: #ff9f43;
    border-color: rgba(255, 90, 0, 0.36);
    background: rgba(255, 90, 0, 0.08);
}

.request-results .track {
    grid-template-columns: 80px minmax(0, 1fr) auto;
}

.request-results .track img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
}

.poll-options {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.poll-options label {
    min-height: 44px;
}

.style-options {
    opacity: 0.72;
}

.info-layout {
    grid-template-columns: 0.86fr 1.14fr;
}

.sticky-player {
    border-color: rgba(255, 90, 0, 0.40);
}

.sticky-player a {
    border-color: rgba(52, 211, 153, 0.24);
}

.footer {
    border-top: 1px solid rgba(186, 88, 255, 0.16);
    margin-top: 28px;
}

@media (max-width: 1180px) {
    .hero,
    .split,
    .info-layout {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        min-height: auto;
    }
}

@media (max-width: 720px) {
    .dj-week-card {
        grid-template-columns: 76px minmax(0, 1fr);
        gap: 14px;
        padding: 16px;
    }

    .dj-week-art {
        width: 76px;
        height: 76px;
    }

    .dj-week-card .text-link {
        grid-column: 1 / -1;
        width: 100%;
        text-align: center;
    }

    .request-form-grid {
        grid-template-columns: 1fr;
    }

    .listener-request-form {
        padding: 16px;
    }

    .request-form-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .request-form-actions .request-btn,
    .request-form-actions .request-state {
        width: 100%;
    }
}

@media (max-width: 980px) {
    html,
    body {
        max-width: 100%;
        overflow-x: hidden;
    }

    .site-shell {
        width: 100%;
        max-width: 100%;
        padding-inline: 10px;
        overflow-x: hidden;
    }

    .topbar {
        width: 100%;
        max-width: 100%;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        min-height: 78px;
        gap: 8px;
        padding: 10px;
        overflow: visible;
    }

    .nav {
        position: fixed;
        left: 10px;
        right: 10px;
        top: 78px;
        width: auto;
        max-width: calc(100vw - 20px);
        overflow-x: hidden;
        z-index: 90;
        border-radius: 14px;
    }

    .brand-side,
    .top-actions {
        min-width: 0;
    }

    .brand-side {
        display: flex;
        min-width: 0;
        max-width: 100%;
        overflow: hidden;
    }

    .top-actions {
        display: flex;
        justify-content: flex-end;
        width: auto;
        max-width: 100%;
        gap: 8px;
    }

    .brand {
        min-width: 0;
        flex: 1 1 auto;
        overflow: hidden;
    }

    .brand strong {
        max-width: 34vw;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .language-switch {
        flex: 0 0 auto;
    }

    .social-links {
        display: none;
    }

    .pro-player-main {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

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

@media (max-width: 560px) {
    body {
        padding-bottom: 92px;
    }

    .top-banner {
        height: 160px;
    }

    .topbar {
        position: sticky;
        left: 0;
        right: 0;
        margin-top: 6px;
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .brand-mark {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }

    .brand strong {
        max-width: 26vw;
        font-size: 1.05rem;
    }

    .brand-side {
        gap: 8px;
    }

    .top-actions {
        gap: 6px;
    }

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

    .language-switch {
        gap: 2px;
        padding: 2px;
    }

    .menu-button {
        width: 38px;
        height: 40px;
        min-width: 38px;
    }

    .nav {
        left: 8px;
        right: 8px;
        top: 72px;
        max-width: calc(100vw - 16px);
        padding: 8px;
    }

    h1 {
        font-size: 2.45rem;
    }

    .pro-player .art-wrap {
        width: min(190px, 58vw);
        height: min(190px, 58vw);
        margin: 4px auto 12px;
    }

    .track-meta h2 {
        font-size: 1.18rem;
        -webkit-line-clamp: 2;
    }

    .track-meta .next-track {
        width: 100%;
        justify-content: flex-start;
        border-radius: 14px;
    }

    .track-meta .next-track strong {
        max-width: none;
    }

    .player-eq {
        height: 62px;
        min-height: 62px;
        margin-top: 14px;
    }

    .player-bio {
        max-height: 106px;
        padding: 12px;
    }

    .player-controls {
        display: grid;
        grid-template-columns: 58px minmax(0, 1fr);
        align-items: center;
        gap: 10px;
    }

    .player-controls .stream-line {
        min-width: 0;
    }

    .volume-control,
    .cast-button,
    .popup-player-button {
        grid-column: 1 / -1;
        width: 100%;
        justify-content: center;
    }

    .volume-control {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr) 44px;
    }

    .volume-control input {
        width: 100%;
        min-height: 34px;
    }

    .track-board {
        gap: 10px;
    }

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

    .track-board-item {
        grid-template-columns: 28px 38px minmax(0, 1fr);
        gap: 8px;
        padding: 8px;
    }

    .track-board-photo {
        width: 38px;
        height: 38px;
    }

    .track-board-copy strong {
        font-size: 0.82rem;
    }

    .track-board-copy small {
        font-size: 0.7rem;
    }

    .hero-actions > * {
        width: 100%;
    }

    .sticky-player {
        bottom: 10px;
        grid-template-columns: 40px minmax(0, 1fr) 38px;
        gap: 9px;
        width: calc(100% - 20px);
        padding: 9px 10px;
        border-radius: 16px;
    }

    .sticky-player img {
        width: 40px;
        height: 40px;
    }

    .sticky-player strong {
        font-size: 0.9rem;
    }

    .sticky-player span {
        font-size: 0.76rem;
    }

    .request-results .track {
        grid-template-columns: 68px minmax(0, 1fr);
    }

    .request-results .track .request-btn {
        grid-column: 1 / -1;
    }
}

.dj-flag {
    width: 18px !important;
    height: 12px !important;
    min-width: 18px !important;
    max-width: 18px !important;
    border-radius: 1px !important;
    object-fit: cover !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.28) !important;
}

/* Magic407 Prosody chat */
.chat-section {
    scroll-margin-top: 96px;
}

.chat-section .section-head {
    align-items: flex-end;
    gap: 24px;
}

.chat-shell {
    position: relative;
    overflow: hidden;
    min-height: clamp(220px, 30vh, 320px);
    border: 1px solid rgba(255, 204, 41, 0.24);
    border-radius: 16px;
    background:
        linear-gradient(180deg, rgba(255, 204, 41, 0.09), transparent 94px),
        radial-gradient(circle at 12% 0%, rgba(141, 0, 255, 0.24), transparent 30rem),
        radial-gradient(circle at 92% 0%, rgba(255, 90, 0, 0.18), transparent 28rem),
        #05020a;
    box-shadow:
        0 28px 90px rgba(0, 0, 0, 0.42),
        0 0 46px rgba(141, 0, 255, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

.chat-launch-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: clamp(24px, 5vw, 48px);
}

.chat-launch-panel strong {
    display: block;
    color: #fffaf0;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    line-height: 1.05;
}

.chat-launch-panel p {
    max-width: 680px;
    margin: 12px 0 0;
    color: rgba(255, 250, 240, 0.72);
    font-size: 1.05rem;
    line-height: 1.6;
}

.chat-frame {
    display: block;
    width: 100%;
    height: clamp(620px, 74vh, 760px);
    min-height: inherit;
    border: 0;
    background: #05020a;
}

@media (max-width: 720px) {
    .chat-section .section-head {
        align-items: flex-start;
    }

    .chat-shell {
        min-height: 260px;
        border-radius: 12px;
    }

    .chat-launch-panel {
        align-items: flex-start;
        flex-direction: column;
    }
}

.listenback-inline[hidden] {
    display: none !important;
}

.listenback-inline {
    padding: 24px;
}

.listenback-inline-inner {
    display: grid;
    gap: 22px;
}

.listenback-list-wrap {
    position: relative;
    min-width: 0;
}

.listenback-list {
    display: grid;
    gap: 12px;
    max-height: min(42vh, 430px);
    overflow-y: scroll;
    scrollbar-gutter: stable;
    padding-right: 24px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 91, 31, .72) rgba(255, 255, 255, .08);
}

.listenback-list::-webkit-scrollbar {
    width: 9px;
}

.listenback-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, .07);
    border-radius: 999px;
}

.listenback-list::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #b913ff, #ff5a1f);
    border-radius: 999px;
}

/* macOS may hide native browser scrollbars, so this rail remains visible. */
.listenback-scroll-rail {
    position: absolute;
    top: 8px;
    right: 5px;
    bottom: 8px;
    width: 8px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .22);
}

.listenback-scroll-thumb {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    min-height: 32px;
    border-radius: inherit;
    background: linear-gradient(180deg, #c323ff, #ff5a1f);
    box-shadow: 0 0 12px rgba(196, 35, 255, .55);
    transition: transform .12s ease, height .12s ease;
}

.listenback-item {
    display: flex;
    gap: 12px;
    align-items: center;
    width: 100%;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 10px;
    background: rgba(255,255,255,.055);
    padding: 10px 12px;
    color: #fff;
    cursor: pointer;
    text-align: left;
}

.listenback-item:hover {
    border-color: rgba(255, 91, 31, .6);
    background:
        linear-gradient(135deg, rgba(160, 0, 255, .18), rgba(255, 91, 31, .12)),
        rgba(255,255,255,.07);
}

.listenback-cover {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border: 2px solid rgba(105, 28, 150, .82);
    border-radius: 50%;
    object-fit: cover;
    background: rgba(0, 0, 0, .35);
}

.listenback-title {
    color: #fff;
    font-size: clamp(15px, 1.05vw, 18px);
    font-weight: 800;
    line-height: 1.25;
}

.listenback-copy {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 7px;
    min-width: 0;
}

.listenback-date {
    color: #bdaec8;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.25;
    white-space: nowrap;
}

.listenback-download {
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    border-radius: 8px;
    padding: 10px 12px;
    background: linear-gradient(135deg,#a000ff,#ff5a1f);
}

@media (max-width: 820px) {
    .listenback-item {
        align-items: flex-start;
    }
}

/* Strakker Magic407 polish - 2026-08-02 */
:root {
    --pro-page-max: 1680px;
    --pro-card: rgba(18, 17, 27, 0.88);
    --pro-card-2: rgba(28, 25, 39, 0.78);
    --pro-border: rgba(194, 92, 255, 0.22);
    --pro-border-warm: rgba(255, 102, 26, 0.24);
}

body {
    background:
        linear-gradient(180deg, rgba(18, 5, 28, 0.94), rgba(6, 5, 10, 0.99) 420px),
        #07060d;
}

body::before {
    opacity: 0.42;
}

.site-shell {
    padding-inline: clamp(14px, 1.6vw, 28px);
}

.topbar {
    min-height: 74px;
    margin-top: 8px;
    padding: 10px 14px;
    border-radius: 8px;
    background:
        linear-gradient(90deg, rgba(14, 6, 23, 0.94), rgba(35, 23, 47, 0.78), rgba(17, 7, 14, 0.92)),
        rgba(7, 6, 13, 0.90);
    box-shadow:
        0 14px 42px rgba(0, 0, 0, 0.30),
        inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.brand-side {
    min-width: 248px;
}

.brand-mark {
    width: 48px;
    height: 48px;
}

.brand strong {
    font-size: 1.16rem;
    line-height: 1;
}

.brand small {
    margin-top: 4px;
    font-size: 0.8rem;
}

.language-switch {
    background: rgba(255, 255, 255, 0.055);
}

.nav {
    padding: 5px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
        rgba(22, 14, 32, 0.78);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 12px 34px rgba(0, 0, 0, 0.18);
}

.nav a {
    min-height: 36px;
    padding-inline: 13px;
    font-size: 0.88rem;
}

.nav a::after {
    left: 13px;
    right: 13px;
    bottom: 4px;
}

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

.ghost-link {
    min-width: 124px;
    min-height: 40px;
    padding-inline: 16px;
}

.top-banner {
    height: clamp(156px, 16vw, 244px);
    margin-top: 14px;
    border-color: rgba(194, 92, 255, 0.18);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.hero {
    grid-template-columns: minmax(420px, 0.72fr) minmax(560px, 1.28fr);
    gap: 18px;
    padding-top: 18px;
}

.hero-copy,
.player-card,
.section,
.dj-week-card,
.chat-shell,
.listener-request-form {
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.082), rgba(255, 255, 255, 0.024)),
        var(--pro-card);
    box-shadow:
        0 18px 54px rgba(0, 0, 0, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.hero-copy {
    min-height: 430px;
    padding: clamp(24px, 2.4vw, 38px);
}

.hero-copy h1,
h1 {
    max-width: 560px;
    font-size: clamp(2rem, 2.45vw, 3.15rem);
    line-height: 1.04;
}

.hero-title-sub {
    font-size: 0.68em;
}

.lead {
    max-width: 560px;
    margin-top: 16px;
    font-size: clamp(0.98rem, 1vw, 1.12rem);
}

.hero-signals {
    gap: 8px;
    margin-top: 20px;
}

.hero-signals span {
    min-width: 126px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.045);
}

.welcome-copy {
    max-width: 580px;
    margin-top: 18px;
    padding-block: 10px;
    font-size: 0.96rem;
    line-height: 1.54;
}

.hero-actions {
    margin-top: 22px;
}

.primary-button,
.secondary-button,
.text-link,
.request-btn,
.popup-player-button,
.cast-button,
.poll-form button,
.contact-form button {
    border-radius: 8px;
    min-height: 42px;
}

.primary-button {
    padding-inline: 22px;
}

.pro-player {
    padding: clamp(18px, 2vw, 26px);
}

.pro-player-main {
    grid-template-columns: 168px minmax(0, 1fr);
    gap: 22px;
}

.pro-player .art-wrap {
    width: 168px;
    height: 168px;
}

.track-meta h2 {
    font-size: clamp(1.1rem, 1.28vw, 1.42rem);
    line-height: 1.2;
    -webkit-line-clamp: 2;
}

.player-eq {
    height: 62px;
    min-height: 62px;
    margin-top: 16px;
}

.player-bio {
    margin-top: 16px;
    padding: 14px;
    border-radius: 8px;
}

.player-controls {
    gap: 10px;
    margin-top: 16px;
}

.round-button {
    width: 48px;
    height: 48px;
}

.section {
    margin-top: 18px;
    padding: clamp(26px, 2.5vw, 36px);
}

.section::before {
    width: 2px;
    opacity: 0.5;
}

.section h2,
.section-head h2,
.full-schedule h2 {
    font-size: clamp(1.35rem, 1.55vw, 1.95rem);
    letter-spacing: 0;
}

.split {
    grid-template-columns: 0.62fr 1.38fr;
    gap: 24px;
}

.schedule-list {
    gap: 10px;
}

.schedule-list article,
.week-row,
.request-live-card,
.request-state,
.request-results .track,
.request-results .empty,
.station-info-card,
.contact-grid article,
.contact-form,
.poll-card,
.update-grid article,
.listenback-item {
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.062), rgba(255, 255, 255, 0.018)),
        rgba(9, 9, 15, 0.52);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.045),
        0 10px 28px rgba(0, 0, 0, 0.14);
}

.week-row {
    grid-template-columns: 126px 56px minmax(0, 1fr);
}

.dj-week-card {
    grid-template-columns: 86px minmax(0, 1fr) auto;
    gap: 18px;
    padding: 16px 18px;
}

.dj-week-art {
    width: 86px;
    height: 86px;
}

.dj-week-card h3 {
    font-size: clamp(1.35rem, 2.2vw, 2.05rem);
}

.dj-card {
    min-height: 210px;
    border-radius: 8px;
}

.dj-card > img {
    width: 96px;
    height: 96px;
}

.listenback-inline {
    padding: 24px;
}

.listenback-item {
    grid-template-columns: 220px minmax(260px, 1fr) auto;
}

.listenback-download {
    border-radius: 8px;
}

.footer {
    margin-top: 18px;
}

@media (max-width: 1280px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        min-height: auto;
    }
}

@media (max-width: 980px) {
    .topbar {
        min-height: 72px;
        margin-top: 6px;
    }

    .nav {
        top: 74px;
    }

    .top-banner {
        height: 150px;
    }
}

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

    .topbar {
        padding: 8px;
    }

    .brand small {
        display: none;
    }

    .top-banner {
        height: 118px;
    }

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

    .hero-copy h1,
    h1 {
        font-size: 2.08rem;
    }

    .hero-signals span {
        min-width: 100%;
    }

    .pro-player-main {
        gap: 12px;
    }

    .pro-player .art-wrap {
        width: min(160px, 52vw);
        height: min(160px, 52vw);
    }
}

/* Mobile cleanup - 2026-08-03 */
@media (max-width: 760px) {
    body {
        padding-bottom: 92px;
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 12px;
    }

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

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

    .pro-player .art-wrap {
        width: min(156px, 48vw);
        height: min(156px, 48vw);
    }

    .track-meta {
        justify-items: center;
        text-align: center;
    }

    .track-meta .next-track {
        max-width: 100%;
    }

    .split,
    .section.split {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    #shows > div:first-child {
        display: grid;
        gap: 8px;
    }

    #shows > div:first-child p:not(.eyebrow) {
        max-width: 34rem;
        font-size: 1rem;
        line-height: 1.55;
    }

    .today-brand-mark {
        display: none;
    }

    .schedule-list {
        gap: 12px;
    }

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

    .schedule-list article > img {
        grid-row: 1 / span 2;
        width: 54px;
        height: 54px;
    }

    .schedule-list article > span {
        align-self: end;
        font-size: 1.06rem;
        line-height: 1.1;
    }

    .schedule-main {
        align-self: start;
        display: grid;
        gap: 5px;
    }

    .schedule-main strong,
    .schedule-main small {
        width: 100%;
        line-height: 1.18;
    }

    .schedule-main small {
        font-size: 0.86rem;
    }

    .schedule-badge {
        width: fit-content;
        margin-top: 2px;
    }

    .sticky-player {
        bottom: 8px;
        grid-template-columns: 40px minmax(0, 1fr) 42px;
        gap: 9px;
        width: calc(100% - 18px);
        padding: 8px 10px;
        border-radius: 16px;
    }

    .sticky-player img {
        width: 40px;
        height: 40px;
    }

    .sticky-player strong {
        font-size: 0.9rem;
        line-height: 1.12;
    }

    .sticky-player span {
        font-size: 0.76rem;
        line-height: 1.12;
    }

    .sticky-player button {
        width: 42px;
        min-height: 42px;
    }

    .sticky-player a {
        display: none;
    }
}

@media (max-width: 420px) {
    .hero-copy h1,
    h1 {
        font-size: 1.88rem;
    }

    .section h2,
    .section-head h2,
    .full-schedule h2 {
        font-size: 1.58rem;
    }

    .schedule-list article {
        grid-template-columns: 48px minmax(0, 1fr);
        padding: 12px;
    }

    .schedule-list article > img {
        width: 48px;
        height: 48px;
    }
}

/* Uitzending gemist - harde mobiele fix */
@media (max-width: 760px) {
    .listenback-inline {
        overflow: hidden !important;
        padding: 16px 12px 32px !important;
    }

    .listenback-inline-inner {
        min-width: 0 !important;
        overflow: hidden !important;
    }

    .listenback-inline h2 {
        font-size: 1.85rem !important;
        line-height: 1.08 !important;
    }

    .listenback-inline p {
        max-width: 100% !important;
        overflow-wrap: break-word !important;
    }

    .listenback-list {
        min-width: 0 !important;
        max-height: 52vh !important;
        overflow-y: scroll !important;
        scrollbar-gutter: stable !important;
        overflow-x: hidden !important;
        padding-right: 20px !important;
    }

    .listenback-scroll-rail {
        right: 3px;
    }

    .listenback-item {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        gap: 10px !important;
        padding: 14px !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }

    .listenback-item > div {
        width: 100% !important;
        min-width: 0 !important;
    }

    .listenback-item strong {
        display: block !important;
        font-size: 1.18rem !important;
        line-height: 1.15 !important;
    }

    .listenback-meta {
        max-width: 100% !important;
        white-space: normal !important;
        overflow-wrap: anywhere !important;
        word-break: break-word !important;
        font-size: .88rem !important;
        line-height: 1.35 !important;
    }

    .listenback-item audio {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        margin: 4px 0 0 !important;
        box-sizing: border-box !important;
    }

    .listenback-download {
        display: block !important;
        width: 100% !important;
        box-sizing: border-box !important;
        text-align: center !important;
        margin-top: 2px !important;
    }
}
.native-airplay[hidden]{display:none!important}
.native-airplay{margin-top:12px;max-width:620px;padding:12px;border:1px solid rgba(255,255,255,.14);border-radius:12px;background:rgba(255,255,255,.055)}
.native-airplay audio{width:100%;display:block}
.native-airplay small{display:block;margin-top:8px;color:#d8c7df;font-size:12px;line-height:1.35}
@media(max-width:760px){.native-airplay{max-width:100%;padding:10px}}

.airplay-button,
.cast-button {
    min-height: 46px;
}

/* Uitzending gemist popup */
.listenback-detail-modal[hidden] {
    display: none !important;
}

.listenback-detail-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    padding: 22px;
    background: rgba(0, 0, 0, .76);
    backdrop-filter: blur(9px);
}

.listenback-detail-panel {
    position: relative;
    width: min(760px, 100%);
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid rgba(255, 91, 31, .4);
    border-radius: 18px;
    background:
        radial-gradient(circle at 20% 0%, rgba(166, 0, 255, .28), transparent 42%),
        linear-gradient(145deg, rgba(31, 24, 42, .98), rgba(10, 7, 18, .98));
    box-shadow: 0 30px 90px rgba(0, 0, 0, .58);
    padding: clamp(22px, 4vw, 34px);
    color: #fff;
}

.listenback-detail-close {
    position: absolute;
    top: 12px;
    right: 14px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .09);
    color: #fff;
    cursor: pointer;
    font-size: 30px;
    line-height: 1;
}

.listenback-detail-header {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
}

.listenback-detail-photo {
    width: 92px;
    height: 92px;
    border: 3px solid rgba(105, 28, 150, .9);
    border-radius: 50%;
    object-fit: cover;
    background: rgba(0, 0, 0, .35);
    box-shadow: 0 18px 42px rgba(0, 0, 0, .35);
}

.listenback-detail-panel h3 {
    margin: 4px 48px 6px 0;
    color: #fff;
    font-size: clamp(22px, 2.2vw, 30px);
    line-height: 1.12;
}

.listenback-detail-date {
    margin: 0;
    color: #d8c7df;
    font-size: 14px;
    font-weight: 700;
}

.listenback-detail-styles {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.listenback-detail-styles span {
    border: 1px solid rgba(255, 91, 31, .38);
    border-radius: 999px;
    padding: 7px 11px;
    color: #ffd4bd;
    font-size: 13px;
    font-weight: 900;
}

.listenback-detail-bio {
    margin: 18px 0;
    color: #efe6f4;
    font-size: 15px;
    line-height: 1.55;
}

.listenback-detail-player audio {
    display: block;
    width: 100%;
}

.listenback-detail-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 18px;
}

@media (max-width: 760px) {
    .listenback-item {
        flex-direction: row !important;
        align-items: center !important;
        gap: 12px !important;
    }

    .listenback-cover {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }

    .listenback-title {
        font-size: .98rem !important;
    }

    .listenback-date {
        font-size: .78rem !important;
    }

    .listenback-detail-modal {
        padding: 12px;
    }

    .listenback-detail-header {
        grid-template-columns: 82px minmax(0, 1fr);
        gap: 14px;
    }

    .listenback-detail-photo {
        width: 82px;
        height: 82px;
    }

    .listenback-detail-panel h3 {
        margin-right: 38px;
        font-size: 1.35rem;
    }

    .listenback-detail-actions .listenback-download {
        width: 100%;
        text-align: center;
    }
}

.airplay-button {
    border: 1px solid rgba(96, 165, 250, .55);
    border-radius: 10px;
    padding: 0 16px;
    color: #fff;
    font-weight: 900;
    background: linear-gradient(135deg, rgba(37,99,235,.38), rgba(168,85,247,.22));
    cursor: pointer;
}

.airplay-button::before {
    content: "▭";
    margin-right: 8px;
    font-size: 16px;
}

.cast-button::before {
    content: "◱";
    margin-right: 8px;
    font-size: 16px;
}

@media (max-width: 760px) {
    .airplay-button,
    .cast-button {
        width: 100%;
        justify-content: center;
    }
}

/* losse AirPlay en Chromecast knoppen */
.airplay-button,
.cast-button {
    min-height: 46px;
    border-radius: 10px;
    padding: 0 16px;
    color: #fff;
    font-weight: 900;
    cursor: pointer;
}

.airplay-button {
    border: 1px solid rgba(96,165,250,.55);
    background: linear-gradient(135deg, rgba(37,99,235,.42), rgba(168,85,247,.24));
}

.airplay-button::before {
    content: "△";
    margin-right: 8px;
}

.cast-button::before {
    content: "▱";
    margin-right: 8px;
}

@media (max-width:760px) {
    .airplay-button,
    .cast-button {
        width: 100%;
    }
}

/* AirPlay/Chromecast knoppen strak op mobiel */
.airplay-button,
.cast-button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 7px !important;
    height: 46px !important;
    min-height: 46px !important;
    line-height: 1 !important;
    white-space: nowrap !important;
}

@media (max-width: 760px) {
    .player-controls {
        display: grid !important;
        grid-template-columns: 56px minmax(0, 1fr) !important;
        gap: 10px !important;
        align-items: center !important;
    }

    .player-controls .round-button {
        grid-column: 1;
        grid-row: 1;
    }

    .player-controls .stream-line {
        grid-column: 2;
        grid-row: 1;
        min-width: 0 !important;
    }

    .player-controls .volume-control {
        grid-column: 1 / -1;
        grid-row: 2;
        width: 100% !important;
    }

    .airplay-button,
    .cast-button {
        width: 100% !important;
        height: 44px !important;
        min-height: 44px !important;
        padding: 0 10px !important;
        border-radius: 10px !important;
        font-size: 14px !important;
        box-sizing: border-box !important;
    }

    .airplay-button {
        grid-column: 1;
        grid-row: 3;
    }

    .cast-button {
        grid-column: 2;
        grid-row: 3;
    }

    .popup-player-button {
        grid-column: 1 / -1;
        grid-row: 4;
        width: 100% !important;
        height: 44px !important;
    }

    .airplay-button::before {
        content: "▵" !important;
        margin-right: 4px !important;
        font-size: 15px !important;
    }

    .cast-button::before {
        content: "▱" !important;
        margin-right: 4px !important;
        font-size: 15px !important;
    }
}

@media (max-width: 390px) {
    .airplay-button,
    .cast-button {
        font-size: 13px !important;
        padding: 0 8px !important;
    }
}

/* AirPlay/Chromecast knoppen strak op mobiel */
.airplay-button,
.cast-button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 7px !important;
    height: 46px !important;
    min-height: 46px !important;
    line-height: 1 !important;
    white-space: nowrap !important;
}

@media (max-width: 760px) {
    .player-controls {
        display: grid !important;
        grid-template-columns: 56px minmax(0, 1fr) !important;
        gap: 10px !important;
        align-items: center !important;
    }

    .player-controls .round-button {
        grid-column: 1;
        grid-row: 1;
    }

    .player-controls .stream-line {
        grid-column: 2;
        grid-row: 1;
        min-width: 0 !important;
    }

    .player-controls .volume-control {
        grid-column: 1 / -1;
        grid-row: 2;
        width: 100% !important;
    }

    .airplay-button,
    .cast-button {
        width: 100% !important;
        height: 44px !important;
        min-height: 44px !important;
        padding: 0 10px !important;
        border-radius: 10px !important;
        font-size: 14px !important;
        box-sizing: border-box !important;
    }

    .airplay-button {
        grid-column: 1;
        grid-row: 3;
    }

    .cast-button {
        grid-column: 2;
        grid-row: 3;
    }

    .popup-player-button {
        grid-column: 1 / -1;
        grid-row: 4;
        width: 100% !important;
        height: 44px !important;
    }

    .airplay-button::before {
        content: "▵" !important;
        margin-right: 4px !important;
        font-size: 15px !important;
    }

    .cast-button::before {
        content: "▱" !important;
        margin-right: 4px !important;
        font-size: 15px !important;
    }
}

@media (max-width: 390px) {
    .airplay-button,
    .cast-button {
        font-size: 13px !important;
        padding: 0 8px !important;
    }
}

/* Fix afgesneden AirPlay-knop mobiel */
@media (max-width: 760px) {
    .player-controls {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    }

    .player-controls .round-button {
        grid-column: 1 / -1 !important;
        justify-self: center !important;
    }

    .player-controls .stream-line {
        grid-column: 1 / -1 !important;
        text-align: center !important;
    }

    .player-controls .volume-control {
        grid-column: 1 / -1 !important;
    }

    .airplay-button {
        grid-column: 1 !important;
        min-width: 0 !important;
        max-width: 100% !important;
    }

    .cast-button {
        grid-column: 2 !important;
        min-width: 0 !important;
        max-width: 100% !important;
    }

    .popup-player-button {
        grid-column: 1 / -1 !important;
    }

    .airplay-button,
    .cast-button,
    .popup-player-button {
        margin: 0 !important;
        box-sizing: border-box !important;
    }
}

@media (max-width: 360px) {
    .airplay-button,
    .cast-button {
        font-size: 12px !important;
        padding: 0 6px !important;
    }
}

/* AirPlay is available on Safari for iPhone, iPad and Mac. */
.airplay-button {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
}

/* Native live AirPlay/audio balk altijd zichtbaar */
.native-airplay {
    display: block !important;
    margin-top: 12px !important;
    max-width: 620px !important;
}

.native-airplay small {
    opacity: .82;
}

/* Native AirPlay balk alleen op mobiel */
.native-airplay {
    display: none !important;
}

@media (max-width: 760px) {
    .native-airplay {
        display: block !important;
    }
}

/* Compacte mobiele live player controls */
@media (max-width: 760px) {
    .player-controls {
        display: grid !important;
        grid-template-columns: 48px minmax(0, 1fr) !important;
        gap: 10px 12px !important;
        align-items: center !important;
        padding-top: 4px !important;
    }

    .player-controls .round-button {
        grid-column: 1 !important;
        grid-row: 1 !important;
        width: 48px !important;
        height: 48px !important;
        min-width: 48px !important;
        font-size: 18px !important;
        justify-self: start !important;
    }

    .player-controls .stream-line {
        grid-column: 2 !important;
        grid-row: 1 !important;
        text-align: left !important;
        min-width: 0 !important;
    }

    .player-controls .stream-line strong {
        font-size: 1rem !important;
        line-height: 1.1 !important;
    }

    .player-controls .stream-line span {
        font-size: .86rem !important;
        line-height: 1.1 !important;
    }

    .player-controls .volume-control {
        grid-column: 1 / -1 !important;
        grid-row: 2 !important;
        height: 46px !important;
        padding: 0 12px !important;
        border-radius: 14px !important;
    }

    .player-controls .volume-control span {
        font-size: .92rem !important;
    }

    .player-controls .volume-control output {
        font-size: .92rem !important;
        min-width: 42px !important;
    }

    .airplay-button,
    .cast-button {
        height: 42px !important;
        min-height: 42px !important;
        border-radius: 12px !important;
        font-size: .9rem !important;
        padding: 0 10px !important;
    }

    .airplay-button {
        grid-column: 1 !important;
        grid-row: 3 !important;
    }

    .cast-button {
        grid-column: 2 !important;
        grid-row: 3 !important;
    }

    .popup-player-button {
        grid-column: 1 / -1 !important;
        grid-row: 4 !important;
        height: 42px !important;
        min-height: 42px !important;
        border-radius: 12px !important;
        font-size: .95rem !important;
    }
}

@media (max-width: 390px) {
    .airplay-button,
    .cast-button {
        font-size: .82rem !important;
        padding: 0 8px !important;
    }

    .airplay-button::before,
    .cast-button::before {
        margin-right: 4px !important;
    }
}

/* AirPlay en Chromecast exact gelijk breed op mobiel */
@media (max-width: 760px) {
    .player-controls {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    }

    .airplay-button {
        grid-column: 1 !important;
        width: 100% !important;
        min-width: 0 !important;
        justify-self: stretch !important;
    }

    .cast-button {
        grid-column: 2 !important;
        width: 100% !important;
        min-width: 0 !important;
        justify-self: stretch !important;
    }

    .airplay-button,
    .cast-button {
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
        font-size: 16px !important;
    }

    .airplay-button::before {
        content: "" !important;
        margin: 0 !important;
    }
}

.donate-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    color: #fff;
    font-weight: 900;
    text-decoration: none;
    background: linear-gradient(135deg, #a000ff 0%, #e7338a 52%, #ff5a1f 100%);
    box-shadow: 0 14px 36px rgba(255,86,31,.22);
    white-space: nowrap;
}

.donate-link:hover,
.donate-link:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 16px 42px rgba(255,86,31,.32);
}

@media (max-width: 760px) {
    .donate-link {
        min-height: 42px;
        padding: 0 14px;
        font-size: 13px;
    }
}


.update-donate-card{border-color:rgba(255,122,26,.35)!important;background:linear-gradient(135deg,rgba(160,0,255,.12),rgba(255,90,31,.10))!important}
.update-donate-button{display:inline-flex;align-items:center;justify-content:center;width:fit-content;margin-top:14px;padding:10px 14px;border-radius:8px;color:#fff;font-weight:900;text-decoration:none;background:linear-gradient(135deg,#a000ff,#ff5a1f);box-shadow:0 12px 30px rgba(255,90,31,.18)}
.update-donate-button:hover,.update-donate-button:focus-visible{transform:translateY(-1px);box-shadow:0 16px 38px rgba(255,90,31,.28)}
@media(max-width:720px){.update-donate-button{width:100%}}

.donate-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 18px;
    border: 1px solid rgba(255, 184, 77, .55);
    border-radius: 999px;
    color: #fff !important;
    font-weight: 950;
    text-decoration: none !important;
    white-space: nowrap;
    background: radial-gradient(circle at 24% 16%, rgba(255,255,255,.28), transparent 28%),
        linear-gradient(135deg, #9c1cff 0%, #e8329c 46%, #ff5a1f 100%);
    box-shadow: 0 12px 28px rgba(255, 90, 31, .26), 0 0 20px rgba(160, 0, 255, .18), inset 0 1px 0 rgba(255,255,255,.28);
}

.donate-link::before {
    content: "\2665";
    width: 20px;
    height: 20px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 999px;
    color: #ff4b1f;
    background: rgba(255,255,255,.96);
    font-size: 12px;
    font-weight: 1000;
}

.donate-link:hover,
.donate-link:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(255,255,255,.36);
    filter: saturate(1.08);
}

@media (max-width: 980px) {
    .donate-link {
        min-height: 40px;
        padding: 0 13px;
        font-size: 13px;
    }
}

/* Header actions: match the compact main menu height. */
.top-actions .donate-link,
.top-actions .ghost-link {
    width: auto;
    min-width: 132px;
    height: 42px;
    min-height: 42px;
    padding: 0 18px;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .88rem;
    line-height: 1;
}

.top-actions .donate-link {
    gap: 8px;
}

.top-actions .donate-link::before {
    width: 18px;
    height: 18px;
    font-size: 11px;
}

@media (max-width: 1180px) {
    .top-actions .donate-link,
    .top-actions .ghost-link {
        min-width: 120px;
        height: 40px;
        min-height: 40px;
        padding: 0 14px;
        font-size: .84rem;
    }
}

@media (max-width: 760px) {
    .top-actions .donate-link,
    .top-actions .ghost-link {
        width: auto;
        min-width: 0;
        height: 44px;
        min-height: 44px;
    }
}

/* Mobile header: keep the action buttons equal without squeezing the layout. */
@media (max-width: 760px) {
    .topbar {
        grid-template-columns: minmax(0, 1fr);
        gap: 8px;
        min-height: 0;
        padding: 8px;
    }

    .brand-side {
        width: 100%;
        justify-content: space-between;
    }

    .brand strong {
        max-width: 44vw;
    }

    .top-actions {
        width: 100%;
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 40px;
        align-items: center;
        gap: 8px;
    }

    .top-actions .social-links {
        display: none !important;
    }

    .top-actions .donate-link,
    .top-actions .ghost-link {
        width: 100% !important;
        min-width: 0 !important;
        height: 40px !important;
        min-height: 40px !important;
        padding: 0 10px !important;
        border-radius: 999px;
        font-size: 13px !important;
        line-height: 1 !important;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .top-actions .donate-link::before {
        width: 16px;
        height: 16px;
        font-size: 10px;
    }

    .top-actions .menu-button {
        width: 40px;
        min-width: 40px;
        height: 40px;
        justify-self: end;
    }
}

@media (max-width: 420px) {
    .brand span {
        display: none;
    }

    .brand strong {
        max-width: 58vw;
    }

    .top-actions {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 38px;
        gap: 6px;
    }

    .top-actions .donate-link,
    .top-actions .ghost-link {
        height: 38px !important;
        min-height: 38px !important;
        padding: 0 8px !important;
        font-size: 12px !important;
    }

    .top-actions .menu-button {
        width: 38px;
        min-width: 38px;
        height: 38px;
    }
}
.dj-vibe-memorial {
    padding-top: 0.5rem;
    scroll-margin-top: 120px;
}

.dj-vibe-memorial-card {
    display: grid;
    grid-template-columns: minmax(120px, 170px) 1fr;
    gap: 1.15rem;
    align-items: center;
    padding: clamp(1rem, 2vw, 1.45rem);
    border: 1px solid rgba(215, 170, 99, 0.35);
    border-radius: 18px;
    background:
        radial-gradient(circle at 18% 20%, rgba(215, 170, 99, 0.18), transparent 34%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
    box-shadow: 0 14px 44px rgba(0, 0, 0, 0.24);
}

.dj-vibe-memorial-photo-wrap {
    max-width: 170px;
    margin: 0 auto;
}

.dj-vibe-memorial-photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
    filter: grayscale(1);
    border: 2px solid rgba(215, 170, 99, 0.75);
    box-shadow: 0 0 0 5px rgba(215, 170, 99, 0.08), 0 10px 32px rgba(0, 0, 0, 0.42);
}

.dj-vibe-memorial-eyebrow {
    margin: 0 0 0.25rem;
    color: #d7aa63;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.68rem;
    font-weight: 800;
}

.dj-vibe-memorial-copy h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(1.55rem, 3vw, 2.5rem);
    line-height: 1;
}

.dj-vibe-memorial-meta {
    margin: 0.35rem 0 0.65rem;
    color: #d7aa63;
    font-size: 0.92rem;
    font-weight: 700;
}

.dj-vibe-memorial-copy p {
    max-width: 820px;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(0.9rem, 1vw, 0.98rem);
    line-height: 1.45;
    margin: 0.35rem 0;
}

.dj-vibe-memorial-signoff {
    color: #fff !important;
    font-weight: 800;
    margin-top: 0.45rem;
}

@media (max-width: 760px) {
    .dj-vibe-memorial-card {
        grid-template-columns: 1fr;
        gap: 0.9rem;
        padding: 1rem;
        text-align: center;
    }

    .dj-vibe-memorial-photo-wrap {
        max-width: 145px;
    }

    .dj-vibe-memorial-copy p {
        margin-left: auto;
        margin-right: auto;
    }
}
/* Keep the page scrollbar visible and consistent with the Magic407 palette. */
html {
    overflow-y: scroll;
    scrollbar-gutter: stable;
    scrollbar-width: auto;
    scrollbar-color: #ff5a1f rgba(10, 2, 14, .9);
}

html::-webkit-scrollbar {
    width: 12px;
}

html::-webkit-scrollbar-track {
    background: rgba(10, 2, 14, .94);
    border-left: 1px solid rgba(255, 255, 255, .10);
}

html::-webkit-scrollbar-thumb {
    min-height: 56px;
    border: 3px solid rgba(10, 2, 14, .94);
    border-radius: 10px;
    background: linear-gradient(180deg, #c323ff, #ff5a1f);
}

html::-webkit-scrollbar-thumb:hover {
    background: #ffbe22;
}

.valdo-amanda-feature {
    padding-top: 0.5rem;
    scroll-margin-top: 120px;
}

.valdo-amanda-feature-card {
    display: grid;
    grid-template-columns: minmax(190px, 280px) minmax(0, 1fr);
    gap: clamp(1rem, 2.4vw, 2rem);
    align-items: center;
    overflow: hidden;
    padding: clamp(1rem, 2.2vw, 1.5rem);
    border: 1px solid rgba(255, 86, 183, 0.45);
    border-radius: 18px;
    background: linear-gradient(110deg, rgba(85, 10, 105, 0.72), rgba(13, 7, 33, 0.94) 62%), #100817;
    box-shadow: 0 14px 44px rgba(0, 0, 0, 0.24);
}

.valdo-amanda-feature-art {
    min-height: 188px;
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(123, 198, 255, 0.35);
    border-radius: 12px;
}

.valdo-amanda-feature-art img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 188px;
    object-fit: cover;
    object-position: center 42%;
}

/* Jamy's portrait source is taller than it is wide; lift the crop in the round player frame. */
.art-wrap img[data-cover][src*="01M0AM89FDQ7553BSATQ5VTJDM"],
.sticky-player img[data-sticky-cover][src*="01M0AM89FDQ7553BSATQ5VTJDM"] {
    object-position: center 40%;
}

.art-wrap img[data-cover][src*="01M0AM89FDQ7553BSATQ5VTJDM"] {
    scale: 1.28;
}

.sticky-player img[data-sticky-cover][src*="01M0AM89FDQ7553BSATQ5VTJDM"] {
    scale: 1.1;
}

.valdo-amanda-feature-eyebrow {
    margin: 0 0 0.35rem;
    color: #ff78cb;
    font-size: 0.73rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.valdo-amanda-feature-copy h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(1.6rem, 3vw, 2.7rem);
    line-height: 1.04;
}

.valdo-amanda-feature-time {
    margin: 0.45rem 0 0.85rem !important;
    color: #6ed4ff !important;
    font-size: clamp(0.95rem, 1.3vw, 1.08rem) !important;
    font-weight: 800;
}

.valdo-amanda-feature-copy > p:not(.valdo-amanda-feature-eyebrow):not(.valdo-amanda-feature-time) {
    max-width: 760px;
    margin: 0.42rem 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(0.92rem, 1.15vw, 1.03rem);
    line-height: 1.55;
}

.valdo-amanda-feature-link {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    margin-top: 0.8rem;
    padding: 0 1rem;
    border: 1px solid rgba(255, 126, 51, 0.75);
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 90, 31, 0.15);
    font-size: 0.88rem;
    font-weight: 800;
    text-decoration: none;
}

.valdo-amanda-feature-link:hover {
    background: rgba(255, 90, 31, 0.3);
}

@media (max-width: 760px) {
    .valdo-amanda-feature-card {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }

    .valdo-amanda-feature-art {
        width: min(100%, 390px);
        min-height: 200px;
        margin: 0 auto;
    }

    .valdo-amanda-feature-art img {
        min-height: 200px;
        object-position: center 38%;
    }

    .valdo-amanda-feature-copy > p:not(.valdo-amanda-feature-eyebrow):not(.valdo-amanda-feature-time) {
        margin-left: auto;
        margin-right: auto;
    }
}


/* Source: magic407-station-refresh.css */
/* Magic407 station refresh: visual layer only, no player or data behavior. */
:root {
  --bg: #0c0d0e;
  --bg-soft: #161719;
  --panel: #151618;
  --panel-strong: #1a1b1d;
  --line: #343234;
  --text: #f4f1ea;
  --muted: #afa9a0;
  --orange: #d77926;
  --orange-soft: #ef9d4f;
  --purple: #b56b2f;
  --pink: #d77926;
  --violet-line: #343234;
  --orange-line: #80501f;
  --shadow: none;
  --radius: 4px;
}

body {
  background: #0c0d0e;
  color: var(--text);
}

/* Give the full page depth without competing with the programme and player. */
body {
  background:
    linear-gradient(90deg, rgba(7, 10, 12, .76), rgba(15, 14, 17, .3) 52%, rgba(7, 10, 12, .76)),
    url("../images/magic407-depth-background.jpg") center top / cover fixed,
    #101215;
}

.site-shell {
  background: linear-gradient(90deg, rgba(13, 18, 20, .64), rgba(33, 18, 21, .4) 52%, rgba(12, 21, 22, .64));
  border-inline: 1px solid rgba(205, 133, 67, .28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .07), 0 28px 70px rgba(0, 0, 0, .3);
}

.section {
  background: linear-gradient(90deg, transparent, rgba(198, 112, 50, .12) 50%, transparent);
}

@media (max-width: 720px) {
  body {
    background-attachment: scroll;
  }
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .28;
  background-image: linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 38px 38px;
}

.site-shell { width: min(100%, 1540px); padding: 0 32px 48px; }

.topbar {
  min-height: 74px;
  padding: 12px 0;
  border-bottom: 1px solid #353336;
  background: rgba(12, 13, 14, .93);
  box-shadow: 0 12px 30px rgba(0,0,0,.22);
}

.brand-side { min-width: 260px; gap: 12px; }
.brand-mark { width: 46px; height: 46px; border-radius: 50%; background: #151515; box-shadow: 0 0 0 1px #80501f; }
.brand strong { font-size: 1.1rem; letter-spacing: .02em; }
.brand small { color: #bd976d; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }

.nav { gap: 20px; padding: 0; border: 0; border-radius: 0; background: transparent; box-shadow: none; }
.nav a { min-height: 42px; padding: 0; border-radius: 0; color: #c2bcb3; font-size: .87rem; }
.nav a:hover { color: #fff4df; background: transparent; box-shadow: none; }
.nav a::after { left: 0; right: 0; bottom: 3px; height: 1px; border-radius: 0; background: #ef9d4f; }
.nav-dropdown-menu { border-radius: 4px; border-color: #4d3a29; background: #161719; box-shadow: 0 18px 38px rgba(0,0,0,.36); }
.nav .nav-dropdown-menu a { padding: 10px 12px; border-radius: 2px; }
.nav .nav-dropdown-menu a:hover { background: #27221d; }

.language-switch, .social-links { border-radius: 3px; background: #171719; border-color: #373438; box-shadow: none; }
.language-switch button, .language-switch button.is-active { border-radius: 2px; background: transparent; box-shadow: none; }
.language-switch button.is-active { background: #43352a; }
.social-link { border-radius: 3px; box-shadow: none; }
.ghost-link { min-height: 40px; border-radius: 3px; border-color: #80501f; background: #1d1814; box-shadow: none; }

.top-banner { height: clamp(180px, 22vw, 340px); margin: 18px 0 0; border: 0; border-radius: 0; background: #111; box-shadow: none; }
.top-banner::after { background: linear-gradient(90deg, rgba(12,13,14,.4), transparent 22%, transparent 78%, rgba(12,13,14,.4)); }

.hero { grid-template-columns: 1fr; gap: 0; min-height: 0; padding: 0 0 36px; }
.hero-copy, .player-card, .section, .request-band { border-radius: 0; background: transparent; box-shadow: none; }
.hero-copy { padding: 30px 0 26px; border: 0; border-bottom: 1px solid #353336; }
.eyebrow { margin-bottom: 10px; color: #ef9d4f; font-size: .72rem; letter-spacing: .14em; }
h1 { max-width: 800px; font-size: clamp(2.25rem, 4vw, 4.5rem); line-height: .98; }
.lead { max-width: 720px; margin-top: 18px; color: #c6c0b7; }
.welcome-copy { max-width: 720px; padding-left: 14px; border-left-color: #d77926; color: #bcb6ad; }
.hero-actions { margin-top: 26px; }
.primary-button { border-radius: 3px; background: #d77926; box-shadow: none; }
.primary-button:hover { background: #ef9d4f; }
.secondary-button, .text-link { border-radius: 3px; border-color: #4d4540; background: transparent; }

.player-card { padding: 28px 0 0; border: 0; }
.pro-player { border-top: 2px solid #d77926; background: #151618; }
.player-blur {
  inset: -12px;
  background-image: var(--cover-bg, none);
  background-position: center;
  background-size: cover;
  filter: blur(8px) saturate(1.1);
  opacity: 1;
  transform: none;
}
.pro-player::after {
  background: linear-gradient(180deg, rgba(10,11,14,.54), rgba(10,11,14,.86));
}
.onair-row { padding: 18px 22px 0; color: #e5dfd5; }
.pro-player-main { grid-template-columns: 190px minmax(0,1fr); padding: 0 22px; }
.art-wrap { width: 166px; height: 166px; border-radius: 2px; }
.cover, .cover-fallback { border-radius: 2px; }
.player-eq { height: 48px; margin: 16px 22px 0; border: 0; border-radius: 0; background: #0d0e0f; }

.track-board { gap: 0; margin-top: 18px; border-top: 1px solid #393638; border-bottom: 1px solid #393638; }
.track-board section, .track-board section:nth-child(2) { padding: 18px 22px; border: 0; border-radius: 0; background: transparent; box-shadow: none; }
.track-board section + section { border-left: 1px solid #393638; }
.track-board > section > strong::before { border-radius: 0; background: #ef9d4f; box-shadow: none; }
.track-board-item { padding: 10px 0; border: 0; border-radius: 0; border-top: 1px solid rgba(255,255,255,.08); background: transparent; }
.track-board-photo { border-radius: 2px; box-shadow: none; }

.section { margin-top: 0; padding: 54px 0; border: 0; border-bottom: 1px solid #353336; }
.section h2 { font-size: clamp(1.8rem, 3vw, 3.35rem); }
.split { grid-template-columns: minmax(240px,.65fr) minmax(0,1.35fr); gap: 54px; }
.schedule-list { gap: 0; border-top: 1px solid #3d3938; }
.schedule-list article, .schedule-list article.is-current { padding: 16px 0; border: 0; border-radius: 0; border-bottom: 1px solid #3d3938; background: transparent; box-shadow: none; }
.schedule-list article.is-current { background: rgba(215,121,38,.08); box-shadow: inset 4px 0 #d77926; padding-left: 14px; }
.schedule-list article > img { border-radius: 2px; border-color: #9d6533; box-shadow: none; }
.schedule-badge { border-radius: 2px; background: #ef9d4f; }

.dj-card { min-height: 194px; padding: 16px 12px; border-radius: 2px; border-color: #373437; background: #151618; box-shadow: none; }
.dj-card:hover { transform: translateY(-2px); border-color: #d77926; background: #1c1d1f; }
.dj-card > img { border-radius: 2px; border-color: #80501f; box-shadow: none; }
.dj-strip::-webkit-scrollbar-thumb { border-radius: 0; background: #d77926; }

.sticky-player { border-radius: 0; border-color: #80501f; background: #151618; box-shadow: 0 -10px 26px rgba(0,0,0,.25); }

@media (max-width: 1080px) {
  .site-shell { padding-inline: 22px; }
  .topbar { flex-wrap: wrap; }
  .nav { order: 3; width: 100%; justify-content: space-between; gap: 12px; overflow-x: auto; }
  .top-actions { min-width: 0; }
}

@media (max-width: 720px) {
  .site-shell { padding-inline: 16px; }
  .top-banner { height: 145px; }
  .brand-side { min-width: 0; }
  .brand small { display: none; }
  .social-links { display: none; }
  .hero-copy { padding: 24px 0; }
  .pro-player-main { grid-template-columns: 104px minmax(0,1fr); gap: 14px; padding-inline: 16px; }
  .art-wrap { width: 94px; height: 94px; }
  .onair-row { padding-inline: 16px; }
  .player-eq { margin-inline: 16px; }
  .track-board { grid-template-columns: 1fr; }
  .track-board section, .track-board section:nth-child(2) { padding-inline: 16px; }
  .track-board section + section { border-left: 0; border-top: 1px solid #393638; }
  .split { grid-template-columns: 1fr; gap: 28px; }
}

/* Quiet the display type and keep the reading column comfortably inset. */
@media (min-width: 721px) {
  .site-shell {
    width: min(100% - 180px, 1280px) !important;
  }
}

h1,
h2,
h3,
.section h2,
.section-head h2,
.full-schedule h2 {
  letter-spacing: 0 !important;
  font-weight: 720 !important;
}

h1 {
  font-size: clamp(2.2rem, 3.2vw, 3.65rem) !important;
  line-height: 1.04 !important;
}

.section h2,
.section-head h2,
.full-schedule h2 {
  max-width: 720px;
  font-size: clamp(1.55rem, 2.25vw, 2.45rem) !important;
  line-height: 1.12 !important;
}

.eyebrow,
.section-head .eyebrow {
  font-size: .68rem !important;
  letter-spacing: .11em !important;
}

.section p,
.section-head > p {
  max-width: 640px;
  font-size: .98rem;
}

.section {
  padding-block: 62px;
}

.section + .section {
  margin-top: 0;
}

.full-schedule,
.dj-section,
.updates-section,
.staff-section,
.info-section {
  padding-inline: 0;
}

@media (max-width: 720px) {
  .site-shell {
    width: min(100% - 32px, 1280px) !important;
    padding-inline: 0;
  }

  h1 { font-size: 2.1rem !important; }
  .section h2,
  .section-head h2,
  .full-schedule h2 { font-size: 1.65rem !important; }
}

/* Second pass: make the station feel composed, not edge-to-edge. */
@media (min-width: 721px) {
  .site-shell {
    width: min(100% - 96px, 1320px);
    padding-inline: 0;
  }
}

.topbar {
  gap: 28px;
}

.top-banner {
  margin-top: 26px;
  height: clamp(210px, 25vw, 370px);
  border: 1px solid #3b352f;
  border-radius: 6px;
}

.top-banner::before {
  content: "MAGIC407 / LIVE BROADCAST";
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 20px;
  padding: 7px 9px;
  border: 1px solid rgba(239,157,79,.62);
  background: rgba(12,13,14,.84);
  color: #ef9d4f;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
}

.hero-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, .42fr);
  align-items: end;
  column-gap: 54px;
  padding: 48px 0 40px;
}

.hero-copy .eyebrow,
.hero-copy h1,
.hero-copy .lead,
.hero-copy .hero-actions {
  grid-column: 1;
}

.hero-copy .welcome-copy {
  grid-column: 2;
  grid-row: 1 / span 4;
  align-self: center;
  margin: 0;
  padding: 18px 0 18px 18px;
  border-left-width: 2px;
  font-size: .96rem;
}

.hero-copy h1 { max-width: 720px; }
.hero-copy .lead { margin-top: 16px; }

.pro-player {
  overflow: hidden;
  border-top-width: 3px;
  border-radius: 6px;
}

.onair-row {
  padding: 18px 28px 0;
  font-size: .86rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.pro-player-main {
  grid-template-columns: 208px minmax(0, 1fr);
  gap: 32px;
  padding: 18px 28px 12px;
}

.art-wrap { width: 184px; height: 184px; }
.track-meta h2 { font-size: clamp(1.7rem, 3vw, 3.15rem); }
.track-meta p { font-size: 1.08rem; }
.player-controls { padding-top: 14px; }
.player-eq { margin: 12px 28px 0; }
.track-board section, .track-board section:nth-child(2) { padding: 22px 28px; }

.section { padding: 72px 0; }
.section-head { margin-bottom: 34px; }
.section-head h2 { max-width: 680px; }
.section-head > p { max-width: 560px; }

.split { grid-template-columns: minmax(260px, .66fr) minmax(0, 1.34fr); gap: 80px; }
.schedule-list article { grid-template-columns: 58px 146px minmax(0,1fr); padding-block: 18px; }

.dj-strip {
  margin-inline: 0;
  padding: 8px 0 22px;
  grid-auto-columns: minmax(180px, 206px);
}

.dj-card { min-height: 224px; padding: 22px 16px; }
.dj-card > img { width: 104px; height: 104px; }

@media (max-width: 1080px) {
  .hero-copy { grid-template-columns: 1fr; padding-block: 34px; }
  .hero-copy .welcome-copy { grid-column: 1; grid-row: auto; margin-top: 24px; max-width: 680px; }
  .top-banner::before { display: none; }
}

@media (max-width: 720px) {
  .top-banner { height: 150px; margin-top: 18px; border-radius: 4px; }
  .hero-copy { padding-block: 30px; }
  .onair-row { padding-inline: 18px; }
  .pro-player-main { padding-inline: 18px; }
  .player-eq { margin-inline: 18px; }
  .track-board section, .track-board section:nth-child(2) { padding-inline: 18px; }
  .section { padding-block: 48px; }
}

/* Shared page gutters. Keep every content surface off its own border. */
@media (min-width: 721px) {
  .site-shell {
    width: min(100% - 112px, 1280px) !important;
    padding-inline: 0 !important;
  }

  .hero-copy {
    padding: 56px 52px 48px !important;
  }

  .section,
  .listenback-inline {
    padding-inline: 52px !important;
  }

  .section.split {
    grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr) !important;
    gap: 48px !important;
  }

  .schedule-list article {
    grid-template-columns: 56px minmax(0, 1fr) !important;
    column-gap: 18px;
  }
}

.site-shell,
.hero,
.hero-copy,
.section,
.listenback-inline,
.split > *,
.schedule-list,
.schedule-list article {
  box-sizing: border-box;
  min-width: 0;
}

/* Final spacing pass: the hero is a reading surface, never a flush edge. */
@media (min-width: 721px) {
  .hero-copy {
    padding: 52px clamp(38px, 4vw, 64px) 46px !important;
  }

  .hero-copy .lead {
    max-width: 42rem;
    font-size: 1.04rem;
    line-height: 1.5;
  }
}

.hero-copy,
.hero-copy > * {
  min-width: 0;
}

@media (max-width: 720px) {
  .hero-copy {
    padding-inline: 22px !important;
  }
}

/* High-resolution material pass: depth for the whole station without a heavy canvas. */
.site-shell {
  isolation: isolate;
}

.topbar {
  background: linear-gradient(135deg, rgba(15, 22, 25, .9), rgba(39, 20, 27, .78), rgba(12, 26, 27, .9));
  border-color: rgba(212, 152, 86, .3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 18px 44px rgba(0, 0, 0, .3);
}

.top-banner {
  border-color: rgba(224, 158, 83, .5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12), 0 26px 58px rgba(0, 0, 0, .38);
}

.hero-copy {
  background: linear-gradient(90deg, rgba(8, 15, 17, .72), rgba(26, 17, 22, .38) 58%, rgba(8, 15, 17, .62));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .045), inset 0 -1px 0 rgba(214, 149, 77, .2);
}

.pro-player {
  background: linear-gradient(135deg, rgba(15, 23, 26, .9), rgba(45, 26, 37, .8) 52%, rgba(14, 25, 26, .9));
  border-inline: 1px solid rgba(229, 155, 74, .3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .09), 0 30px 68px rgba(0, 0, 0, .42);
}

.section {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .025), inset 0 -1px 0 rgba(204, 135, 65, .14);
}

.schedule-list article,
.dj-card,
.dj-week-card,
.staff-card,
.update-donate-card,
.dj-news-card,
.station-info-card,
.request-live-card,
.request-state,
.chat-launch-panel,
.radio-platform-link {
  border-color: rgba(214, 154, 86, .34);
  background: linear-gradient(145deg, rgba(34, 38, 42, .84), rgba(30, 18, 27, .78));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .07), inset 0 -1px 0 rgba(0, 0, 0, .24), 0 16px 34px rgba(0, 0, 0, .25);
}

.schedule-list article:hover,
.dj-card:hover,
.staff-card:hover,
.dj-news-card:hover,
.radio-platform-link:hover {
  border-color: rgba(103, 220, 205, .62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .11), 0 20px 42px rgba(0, 0, 0, .34), 0 0 26px rgba(87, 192, 180, .1);
}

.primary-button,
.donate-link {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .28), inset 0 -2px 0 rgba(90, 35, 10, .3), 0 12px 28px rgba(215, 112, 32, .26);
}

@media (max-width: 720px) {
  .topbar,
  .pro-player,
  .top-banner {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06), 0 14px 32px rgba(0, 0, 0, .28);
  }

  .schedule-list article,
  .dj-card,
  .dj-week-card,
  .staff-card,
  .update-donate-card,
  .dj-news-card,
  .station-info-card,
  .request-live-card,
  .request-state,
  .chat-launch-panel,
  .radio-platform-link {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .055), 0 10px 22px rgba(0, 0, 0, .22);
  }
}

/* Physical depth: raised surfaces, inset seams and restrained perspective. */
.site-shell {
  perspective: 1600px;
}

.topbar,
.top-banner,
.pro-player {
  transform: translateZ(0);
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

.topbar {
  border-bottom-color: rgba(89, 215, 202, .28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .1),
    inset 0 -1px 0 rgba(0, 0, 0, .58),
    0 2px 0 rgba(204, 129, 60, .16),
    0 20px 48px rgba(0, 0, 0, .34);
}

.top-banner {
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, .14),
    inset 0 -5px 0 rgba(0, 0, 0, .3),
    0 3px 0 rgba(181, 111, 49, .22),
    0 30px 62px rgba(0, 0, 0, .42);
}

.hero-copy,
.section {
  border-top: 1px solid rgba(255, 255, 255, .055);
  border-bottom: 1px solid rgba(0, 0, 0, .58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .025), inset 0 -8px 22px rgba(0, 0, 0, .13);
}

.schedule-list article,
.dj-card,
.dj-week-card,
.staff-card,
.update-donate-card,
.dj-news-card,
.station-info-card,
.request-live-card,
.request-state,
.chat-launch-panel,
.radio-platform-link {
  position: relative;
  transform: translateZ(0);
  transform-style: preserve-3d;
  border-top-color: rgba(255, 255, 255, .13);
  border-bottom-color: rgba(0, 0, 0, .66);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .1),
    inset 0 -4px 0 rgba(0, 0, 0, .18),
    0 2px 0 rgba(215, 145, 74, .12),
    0 18px 38px rgba(0, 0, 0, .3);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.primary-button,
.secondary-button,
.donate-link,
.social-link,
.popup-player-button,
.cast-button {
  border-top-color: rgba(255, 255, 255, .22);
  border-bottom-color: rgba(0, 0, 0, .5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .2),
    inset 0 -2px 0 rgba(0, 0, 0, .2),
    0 5px 0 rgba(0, 0, 0, .24),
    0 13px 26px rgba(0, 0, 0, .22);
}

@media (hover: hover) and (pointer: fine) {
  .schedule-list article:hover,
  .dj-card:hover,
  .dj-week-card:hover,
  .staff-card:hover,
  .update-donate-card:hover,
  .dj-news-card:hover,
  .station-info-card:hover,
  .request-live-card:hover,
  .request-state:hover,
  .chat-launch-panel:hover,
  .radio-platform-link:hover {
    transform: perspective(1000px) translateY(-5px) rotateX(1deg);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, .16),
      inset 0 -4px 0 rgba(0, 0, 0, .2),
      0 3px 0 rgba(98, 219, 205, .2),
      0 26px 48px rgba(0, 0, 0, .4);
  }

  .primary-button:hover,
  .secondary-button:hover,
  .donate-link:hover,
  .social-link:hover,
  .popup-player-button:hover,
  .cast-button:hover {
    transform: translateY(-2px);
  }
}

/* Keep the header mark still; the main banner carries the motion instead. */
.top-banner {
  width: min(100%, 920px);
  height: auto;
  aspect-ratio: 3 / 1;
  margin: 16px auto 0;
  overflow: hidden;
}

.top-banner::after {
  z-index: 3;
  mix-blend-mode: screen;
  background:
    radial-gradient(circle, rgba(255, 255, 255, .98) 0 5%, rgba(239, 203, 255, .84) 8%, rgba(194, 72, 255, .44) 16%, transparent 28%) 18.4% 48% / 34px 34px no-repeat,
    radial-gradient(circle, rgba(255, 255, 255, .96) 0 7%, rgba(235, 181, 255, .72) 12%, transparent 30%) 18.4% 48% / 22px 22px no-repeat,
    radial-gradient(circle, rgba(255, 255, 255, .96) 0 8%, rgba(210, 138, 255, .64) 14%, transparent 34%) 18.4% 48% / 16px 16px no-repeat,
    radial-gradient(circle at 18.4% 48%, rgba(255, 255, 255, .96) 0, rgba(239, 203, 255, .80) .32%, rgba(194, 72, 255, .52) .95%, rgba(141, 0, 255, .18) 2.5%, transparent 5.2%),
    radial-gradient(circle at 18.4% 48%, rgba(180, 51, 255, .24), transparent 11%);
  animation: magic407-wand-glimmer 4.2s ease-in-out infinite;
}

@keyframes magic407-wand-glimmer {
  0%, 100% {
    opacity: .14;
    background-position: 18.4% 48%, 18.4% 48%, 18.4% 48%, 0 0, 0 0;
  }
  28% {
    opacity: .68;
    background-position: 23% 39%, 27% 49%, 22% 60%, 0 0, 0 0;
  }
  52% {
    opacity: 1;
    background-position: 31% 31%, 38% 52%, 29% 68%, 0 0, 0 0;
  }
  76% {
    opacity: .42;
    background-position: 37% 26%, 47% 55%, 35% 74%, 0 0, 0 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .top-banner,
  .top-banner::after {
    animation: none;
  }
}

/* Keep desktop navigation clear on medium-width laptops. */
@media (max-width: 1280px) {
  .topbar {
    gap: 14px;
    padding-inline: 14px;
  }

  .brand-side,
  .top-actions {
    min-width: 0;
  }

  .brand-side {
    gap: 10px;
  }

  .nav {
    flex: 1 1 auto;
    min-width: 0;
    gap: 13px;
  }

  .social-links {
    display: none;
  }

  .ghost-link {
    min-width: 118px;
    padding-inline: 14px;
  }
}

/* A quieter, consistent bronze treatment for page section headings. */
.section h2,
.section-head h2,
.full-schedule h2,
.request-panel h2 {
  color: #c58a4c;
  font-size: clamp(1.28rem, 1.48vw, 1.78rem) !important;
  font-weight: 760 !important;
  line-height: 1.14 !important;
  text-shadow: 0 1px 0 rgba(255, 225, 183, .12), 0 8px 22px rgba(0, 0, 0, .38);
}


/* Source: magic407-schedule-card-fix.css */
/* Restore the today-schedule to one compact, readable row per show. */
.schedule-list article {
  display: flex !important;
  align-items: center !important;
  gap: 18px !important;
  min-height: 96px;
  padding: 16px 20px !important;
}

.schedule-list article > img {
  width: 64px !important;
  height: 64px !important;
  flex: 0 0 64px;
}

.schedule-list article > span {
  flex: 0 0 168px;
  white-space: nowrap;
}

.schedule-list article .schedule-main {
  display: block !important;
  flex: 1 1 auto;
  min-width: 0;
}

.schedule-list article .schedule-main strong {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  font-size: 1.12rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

/* Internal playlist labels do not belong in the public schedule. */
.schedule-list article .schedule-main small {
  display: none !important;
}

@media (max-width: 720px) {
  .schedule-list article {
    gap: 12px !important;
    min-height: 80px;
    padding: 12px 14px !important;
  }

  .schedule-list article > img {
    width: 48px !important;
    height: 48px !important;
    flex-basis: 48px;
  }

  .schedule-list article > span {
    flex-basis: 102px;
    font-size: .86rem;
  }

  .schedule-list article .schedule-main strong {
    font-size: 1rem;
  }
}


/* Source: magic407-content-refresh.css */
/* Calm, editorial treatment for donation, news and team content. */
.update-donate-card,
.dj-news-card,
.staff-card {
    border: 1px solid #3b362f !important;
    border-radius: 8px !important;
    background: #151719 !important;
    box-shadow: none !important;
}

.update-donate-card {
    display: flex;
    min-height: 0 !important;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    padding: 30px !important;
    border-left: 3px solid #e39a41 !important;
}

.update-donate-card::before {
    content: "SUPPORT THE STATION";
    color: #e39a41;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.update-donate-card > span {
    display: none;
}

.update-donate-card strong {
    margin: 0 !important;
    color: #f5f1ea !important;
    font-size: clamp(1.45rem, 2.4vw, 2rem) !important;
    line-height: 1.1;
}

.update-donate-card p {
    max-width: 44rem;
    margin: 0 !important;
    color: #bcb7af !important;
}

.update-donate-button {
    align-self: flex-start;
    min-height: 42px;
    margin-top: 6px;
    padding: 0 16px;
    border: 1px solid #e39a41;
    border-radius: 5px;
    color: #17120d;
    background: #e39a41;
    box-shadow: none;
    font-weight: 800;
    text-decoration: none;
}

.update-donate-button:hover {
    border-color: #f2b261;
    background: #f2b261;
}

.dj-news-section .section-head,
.staff-section .section-head {
    max-width: 720px;
}

.dj-news-grid {
    gap: 16px !important;
}

.dj-news-card {
    min-height: 208px !important;
    gap: 22px;
    padding: 24px !important;
}

.dj-news-card strong {
    color: #f5f1ea !important;
    font-size: 1.12rem !important;
}

.dj-news-card p,
.dj-news-empty {
    color: #bcb7af !important;
}

.dj-news-meta {
    color: #e39a41 !important;
    font-size: 0.7rem !important;
    letter-spacing: 0.09em !important;
}

.dj-news-link {
    color: #f5f1ea !important;
    text-decoration: underline;
    text-decoration-color: #e39a41;
    text-underline-offset: 4px;
}

.staff-grid {
    gap: 16px !important;
}

.staff-card {
    min-height: 0 !important;
    padding: 24px !important;
    overflow: visible !important;
}

.staff-card::after {
    display: none;
}

.staff-avatar {
    width: 68px !important;
    height: 68px !important;
    margin-bottom: 16px !important;
    border: 1px solid #e39a41 !important;
    border-radius: 50% !important;
    background: #24211e !important;
    box-shadow: none !important;
}

.staff-badge {
    margin-bottom: 14px !important;
    padding: 5px 8px !important;
    border: 1px solid #484039 !important;
    border-radius: 4px !important;
    color: #e39a41 !important;
    background: #1d1b19 !important;
    font-size: 0.64rem !important;
    letter-spacing: 0.08em !important;
}

.staff-card strong {
    color: #f5f1ea !important;
    font-size: clamp(1.55rem, 2vw, 2rem) !important;
}

.staff-card small {
    color: #e39a41 !important;
}

.staff-card p {
    color: #bcb7af !important;
}

.staff-card .text-link {
    border-color: #4c443c !important;
    border-radius: 5px !important;
    color: #f5f1ea !important;
    background: transparent !important;
    font-size: 0.88rem;
    font-weight: 700;
}

.staff-card .text-link:hover {
    border-color: #e39a41 !important;
    color: #e39a41 !important;
}

@media (max-width: 720px) {
    .update-donate-card,
    .dj-news-card,
    .staff-card {
        padding: 20px !important;
    }
}


/* Source: magic407-player-title.css */
/* Keep long show and mix names readable without taking over the player. */
.track-meta h2 {
    max-width: 48ch;
    font-size: 18px !important;
    font-weight: 400 !important;
    line-height: 1.45 !important;
    letter-spacing: 0 !important;
    overflow-wrap: anywhere;
}

@media (max-width: 720px) {
    .track-meta h2 {
        max-width: none;
        font-size: 16px !important;
    }
}


/* Source: magic407-donate-button.css */
/* A compact, high-contrast primary action for the main navigation. */
.topbar .donate-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    padding: 0 18px;
    border: 1px solid #ff925b !important;
    border-radius: 6px !important;
    color: #fffaf4 !important;
    background: #ff5a1f !important;
    box-shadow: 0 8px 24px rgba(255, 90, 31, 0.34) !important;
    font-weight: 800;
    letter-spacing: 0;
}

.topbar .donate-link::before {
    content: "♥";
    display: grid;
    width: 22px;
    height: 22px;
    place-items: center;
    border-radius: 50%;
    color: #ff5a1f;
    background: #fffaf4;
    font-size: 0.72rem;
    line-height: 1;
}

.topbar .donate-link:hover {
    border-color: #ffc29c !important;
    background: #ff6f3b !important;
    transform: translateY(-1px);
}

.topbar .donate-link:focus-visible {
    outline: 2px solid #fff6e6;
    outline-offset: 3px;
}


/* Source: magic407-mobile-gutters.css */
/* One consistent reading gutter across every mobile section. */
@media (max-width: 720px) {
    :root {
        --mobile-gutter: 22px;
    }

    .site-shell {
        width: calc(100% - (var(--mobile-gutter) * 2)) !important;
    }

    .section,
    .listenback-inline,
    .full-schedule,
    .dj-section,
    .updates-section,
    .staff-section,
    .info-section {
        padding-inline: var(--mobile-gutter) !important;
    }

    .hero-copy {
        padding-inline: var(--mobile-gutter) !important;
    }

    .section-head,
    .section-head > div,
    .split,
    .listenback-inline-inner {
        min-width: 0;
    }

    .schedule-cta > .section-head {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .schedule-cta .schedule-toggle {
        align-self: flex-start;
        margin: 0;
    }

    .dj-week-card {
        display: grid !important;
        grid-template-columns: 76px minmax(0, 1fr) !important;
        align-items: start !important;
        column-gap: 14px;
        row-gap: 8px;
    }

    .dj-week-card .dj-week-art {
        grid-column: 1;
        grid-row: 1 / span 3;
        width: 76px;
        height: 76px;
    }

    .dj-week-card > div:nth-child(2) {
        display: contents;
    }

    .dj-week-card > div:nth-child(2) > .eyebrow,
    .dj-week-card > div:nth-child(2) > h3,
    .dj-week-card > div:nth-child(2) > p:not(.dj-week-time) {
        grid-column: 2;
        min-width: 0;
        margin: 0;
    }

    .dj-week-card .dj-week-time {
        grid-column: 1 / -1;
        justify-self: start;
        margin: 4px 0 2px !important;
    }

    .dj-week-card > .text-link {
        grid-column: 1 / -1;
        justify-self: stretch;
    }

    .chat-section > .section-head > .section-actions {
        display: none;
    }
}


/* Source: magic407-mobile-player.css */
/* A real small-screen player layout rather than a squeezed desktop player. */
@media (max-width: 560px) {
    .pro-player {
        padding: 18px !important;
    }

    .onair-row {
        font-size: 0.72rem;
        letter-spacing: 0.06em;
        text-transform: uppercase;
    }

    .pro-player-main {
        display: grid !important;
        grid-template-columns: 96px minmax(0, 1fr) !important;
        align-items: start !important;
        justify-items: stretch !important;
        gap: 16px !important;
        margin-top: 14px !important;
        text-align: left !important;
    }

    .pro-player .art-wrap,
    .pro-player .art-wrap img,
    .pro-player .art-wrap span {
        width: 96px !important;
        height: 96px !important;
        min-width: 96px !important;
        min-height: 96px !important;
        max-width: 96px !important;
        max-height: 96px !important;
        margin: 0 !important;
    }

    .track-meta {
        display: contents !important;
    }

    .track-meta > span,
    .track-meta h2,
    .track-meta > p:not(.next-track) {
        grid-column: 2;
        min-width: 0;
        text-align: left !important;
    }

    .track-meta > span {
        display: block;
        font-size: 0.75rem;
        line-height: 1.25;
    }

    .track-meta h2 {
        display: -webkit-box !important;
        margin: 4px 0 0 !important;
        font-size: 16px !important;
        line-height: 1.4 !important;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .track-meta p {
        margin-top: 5px !important;
        font-size: 0.88rem !important;
    }

    .track-time {
        grid-column: 1 / -1;
        width: 100% !important;
        margin: 14px 0 0 !important;
    }

    .track-meta .next-track {
        grid-column: 1 / -1;
        width: 100% !important;
        margin: 12px 0 0 !important;
        border-color: #484039 !important;
        border-radius: 6px !important;
        background: #1a1b1d !important;
        box-shadow: none !important;
    }

    .player-eq {
        height: 42px !important;
        margin-top: 16px !important;
        border-radius: 6px !important;
    }

    .player-bio {
        margin-top: 14px !important;
        padding: 16px !important;
        border-radius: 6px !important;
    }

    .player-bio p {
        font-size: 0.88rem;
        line-height: 1.45;
    }

    .player-controls {
        display: grid !important;
        grid-template-columns: 46px minmax(0, 1fr) !important;
        align-items: center;
        gap: 12px !important;
        margin-top: 16px !important;
        text-align: left !important;
    }

    .round-button {
        width: 46px !important;
        height: 46px !important;
        box-shadow: none !important;
    }

    .stream-line {
        min-width: 0 !important;
    }

    .volume-control {
        grid-column: 1 / -1;
        width: 100% !important;
        order: initial !important;
    }

    .airplay-button,
    .cast-button,
    .popup-player-button {
        min-height: 40px !important;
        padding-inline: 10px !important;
        border-radius: 5px !important;
        font-size: 0.8rem !important;
    }
}


/* Source: station-selector.css */
.station-selector {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  width: min(100%, 360px);
  margin: 24px 0 20px;
  padding: 4px;
  border: 1px solid #65503a;
  border-radius: 6px;
  background: #171b19;
  box-sizing: border-box;
}
.station-selector a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 46px;
  padding: 10px 16px;
  border: 0;
  border-radius: 3px;
  color: #e9e8e3;
  background: transparent;
  font: 600 16px/1.25 Arial, sans-serif;
  letter-spacing: 0;
  text-decoration: none;
}
.station-selector a:hover { background: #303931; color: #fff; }
.station-selector a[aria-current="page"] { background: #edb566; color: #20170d; }
.station-selector a:focus-visible { outline: 2px solid #76c8a4; outline-offset: 2px; }
#dance-player, #classics-player { scroll-margin-top: 170px; }
.listening > .station-selector { margin-top: 0; }
.track-board { grid-template-columns: minmax(0, 720px); }
@media (max-width: 600px) {
  .station-selector { width: 100%; }
  .track-board { grid-template-columns: minmax(0, 1fr); }
}
