:root {
    --yellow: #ffeb00;
    --yellow-soft: #fff36a;
    --blue: #0732c5;
    --navy: #07113d;
    --surface: rgba(7, 17, 61, 0.78);
    --surface-strong: rgba(4, 10, 37, 0.94);
    --line: rgba(255, 255, 255, 0.13);
    --text: #ffffff;
    --muted: #b8c2e4;
    --red: #ff4057;
    --shadow: 0 34px 90px rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; }

html {
    min-width: 280px;
    background: var(--navy);
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    min-height: 100dvh;
    margin: 0;
    overflow-x: hidden;
    color: var(--text);
    font-family: "Segoe UI", Arial, sans-serif;
    background-color: #020718;
    background-image: url("img/logo.jpg");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-blend-mode: multiply;
    transition: background-image .55s ease-in-out, color .3s ease;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        linear-gradient(115deg, rgba(2, 7, 24, .98) 5%, rgba(7, 17, 61, .86) 52%, rgba(5, 17, 75, .76) 100%),
        radial-gradient(circle at 75% 15%, rgba(255, 235, 0, .22), transparent 32%);
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: .35;
    background-image: radial-gradient(rgba(255, 255, 255, .26) .8px, transparent .8px);
    background-size: 24px 24px;
    mask-image: linear-gradient(to bottom, black, transparent 72%);
}

body.dark-mode {
    --surface: rgba(2, 7, 24, .86);
    --surface-strong: rgba(1, 4, 16, .96);
    --muted: #aeb9df;
}

button, a, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

button:focus-visible,
a:focus-visible,
input:focus-visible {
    outline: 3px solid var(--yellow);
    outline-offset: 4px;
}

audio { display: none !important; }

.ambient {
    position: fixed;
    z-index: 0;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
    opacity: .16;
}

.ambient-one { top: -190px; right: -130px; background: var(--yellow); }
.ambient-two { bottom: -220px; left: -150px; background: #174dff; }

.container {
    position: relative;
    z-index: 1;
    width: min(100%, 1280px);
    min-height: 100vh;
    min-height: 100dvh;
    margin: 0 auto;
    padding: 24px clamp(18px, 4vw, 54px) calc(18px + env(safe-area-inset-bottom));
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 22px;
}

.site-header {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand { display: inline-flex; width: min(330px, 54vw); }

.logo-titulo {
    display: block;
    width: 100%;
    height: auto;
    max-height: 70px;
    object-fit: contain;
    object-position: left center;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, .3));
}

.header-tools { display: flex; align-items: center; gap: 12px; }

.current-date-time {
    min-width: 150px;
    padding: 9px 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    color: var(--muted);
    text-align: right;
    font-size: .78rem;
    line-height: 1.25;
    background: rgba(255, 255, 255, .055);
    backdrop-filter: blur(14px);
}

#currentTime { color: var(--text); font-size: .95rem; font-weight: 800; }

.theme-toggle {
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 14px;
    display: grid;
    place-items: center;
    cursor: pointer;
    color: var(--yellow);
    background: rgba(255, 255, 255, .07);
    backdrop-filter: blur(14px);
    transition: transform .25s ease, background-color .25s ease;
}

.theme-toggle:hover { transform: translateY(-2px) rotate(8deg); background: rgba(255, 255, 255, .13); }
.theme-toggle svg { width: 20px; height: 20px; }

.radio-stage {
    position: relative;
    align-self: center;
    width: 100%;
    min-height: 570px;
    border: 1px solid var(--line);
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(255, 255, 255, .09), transparent 48%), var(--surface);
    box-shadow: var(--shadow), inset 0 1px rgba(255, 255, 255, .12);
    backdrop-filter: blur(26px) saturate(125%);
    overflow: visible;
}

.radio-stage::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background:
        linear-gradient(90deg, var(--yellow), transparent 28%) top left / 42% 2px no-repeat,
        linear-gradient(180deg, var(--yellow), transparent 30%) top left / 2px 42% no-repeat;
}

.center-content {
    min-height: 570px;
    padding: clamp(34px, 5vw, 64px);
    display: grid;
    grid-template-columns: minmax(290px, .9fr) minmax(390px, 1.25fr);
    align-items: center;
    gap: clamp(40px, 6vw, 82px);
}

.album-column { position: relative; display: grid; place-items: center; }

.album-column::before,
.album-column::after {
    content: "";
    position: absolute;
    z-index: 0;
    top: 50%;
    left: 50%;
    width: calc(min(31vw, 370px) + 18px);
    min-width: 288px;
    aspect-ratio: 1;
    border: 2px solid rgba(93,216,255,.46);
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(.94);
}

body.is-playing .album-column::before,
body.is-playing .album-column::after {
    animation: discSignal 2.6s ease-out infinite;
}

body.is-playing .album-column::after {
    border-color: rgba(255,235,0,.44);
    animation-delay: 1.3s;
}

.album-glow {
    position: absolute;
    z-index: 0;
    width: 82%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--yellow);
    filter: blur(60px);
    opacity: .16;
    transform: translateY(12%);
}

.radio-image {
    position: relative;
    z-index: 1;
    width: min(31vw, 370px);
    min-width: 270px;
    aspect-ratio: 1;
    padding: 12px;
    border-radius: 50%;
    overflow: hidden;
    isolation: isolate;
    background:
        repeating-radial-gradient(circle, transparent 0 5px, rgba(255,255,255,.12) 6px, transparent 7px),
        conic-gradient(from 30deg, #03091d, #27345e, #020510, #50618f, #03091d, #1e2b55, #020510);
    box-shadow: 0 30px 70px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.14), inset 0 0 0 7px rgba(0,0,0,.42);
    animation: discSpin 10s linear infinite;
    animation-play-state: paused;
    will-change: transform;
}

body.is-playing .radio-image { animation-play-state: running; }

.radio-image img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    transition: opacity .25s ease;
    filter: saturate(1.07) contrast(1.03);
}

.disc-shine {
    position: absolute;
    inset: 12px;
    z-index: 2;
    border-radius: 50%;
    pointer-events: none;
    background: conic-gradient(from 225deg, transparent 0 16%, rgba(255,255,255,.22) 20%, transparent 24% 52%, rgba(93,216,255,.16) 58%, transparent 64%);
    mix-blend-mode: screen;
}

.disc-hole {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    width: 16%;
    aspect-ratio: 1;
    border: 7px solid rgba(255,255,255,.75);
    border-radius: 50%;
    background: var(--navy);
    box-shadow: 0 0 0 6px rgba(0,0,0,.26), inset 0 0 12px rgba(0,0,0,.75);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

@keyframes discSpin { to { transform: rotate(360deg); } }

@keyframes discSignal {
    0% {
        opacity: .72;
        transform: translate(-50%, -50%) scale(.94);
    }
    75%, 100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.18);
    }
}

.content-column { min-width: 0; }
.on-air-row { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }

.live-pill, .frequency { font-size: .72rem; font-weight: 800; letter-spacing: .1em; }

.live-pill {
    padding: 8px 12px;
    border: 1px solid rgba(255,64,87,.42);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #fff;
    background: rgba(255,64,87,.12);
}

.live-dot {
    width: 8px;
    height: 8px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 0 rgba(255,64,87,.7);
    animation: livePulse 1.6s infinite;
}

@keyframes livePulse {
    70% { box-shadow: 0 0 0 8px rgba(255,64,87,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,64,87,0); }
}

.frequency { color: var(--yellow); }

.eyebrow {
    display: block;
    margin-bottom: 7px;
    color: var(--muted);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .2em;
}

.song-title {
    width: 100%;
    min-height: 2.35em;
    overflow: hidden;
    color: var(--text);
    font-size: clamp(1.55rem, 3vw, 2.65rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -.035em;
    text-wrap: balance;
}

.song-title .scroll-text {
    display: inline-block;
    min-width: 100%;
    padding-right: 20%;
    white-space: nowrap;
    animation: titleScroll 14s linear infinite;
}

@keyframes titleScroll {
    0%, 16% { transform: translateX(0); }
    84%, 100% { transform: translateX(-45%); }
}

.station-tagline { margin: 10px 0 0; color: var(--muted); font-size: .98rem; }

.visualizer {
    position: relative;
    width: 100%;
    height: 78px;
    margin: 18px 0 10px;
    overflow: hidden;
    border-block: 1px solid rgba(255,255,255,.06);
    background: linear-gradient(90deg, transparent, rgba(255,235,0,.035), transparent);
}

#audioVisualizer { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .9; pointer-events: none; }

.player-controls {
    position: relative;
    width: 100%;
    min-height: 96px;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 22px;
    display: grid;
    grid-template-columns: minmax(150px, 1fr) auto minmax(150px, 1fr);
    align-items: center;
    gap: 18px;
    background: rgba(255,255,255,.07);
    box-shadow: inset 0 1px rgba(255,255,255,.08);
}

.station-info { min-width: 0; display: flex; align-items: center; gap: 11px; }

.station-info img {
    width: 54px;
    height: 54px;
    flex: 0 0 auto;
    border: 2px solid rgba(255,235,0,.7);
    border-radius: 16px;
    object-fit: cover;
}

.station-copy { min-width: 0; }

.station-name {
    overflow: hidden;
    color: var(--text);
    font-size: .83rem;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.live-indicator { margin-top: 5px; display: flex; align-items: center; gap: 6px; color: var(--muted); font-size: .69rem; }
.live-indicator .live-dot { width: 6px; height: 6px; }
.playback-controls { display: grid; place-items: center; }

#playPauseButton {
    position: relative;
    isolation: isolate;
    width: 68px;
    height: 68px;
    border: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    cursor: pointer;
    color: var(--navy);
    background: linear-gradient(145deg, var(--yellow-soft), var(--yellow));
    box-shadow: 0 12px 32px rgba(255,235,0,.25), inset 0 2px rgba(255,255,255,.75);
    transition: transform .2s ease, box-shadow .2s ease;
}

#playPauseButton::before,
#playPauseButton::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: -7px;
    border: 2px solid rgba(255,235,0,.58);
    border-radius: inherit;
    opacity: 0;
    pointer-events: none;
    animation: playSignal 2s ease-out infinite;
}

#playPauseButton::after {
    border-color: rgba(93,216,255,.5);
    animation-delay: 1s;
}

#playPauseButton:hover { transform: scale(1.06); box-shadow: 0 16px 38px rgba(255,235,0,.34), inset 0 2px rgba(255,255,255,.75); }
#playPauseButton svg { position: relative; z-index: 2; width: 29px; height: 29px; stroke-width: 2.6; }

@keyframes playSignal {
    0% { opacity: .78; transform: scale(.9); }
    75%, 100% { opacity: 0; transform: scale(1.55); }
}

.extra-controls { justify-self: end; display: flex; align-items: center; gap: 10px; }

#likeButton, .volume-button {
    width: 38px;
    height: 38px;
    padding: 0;
    border: 0;
    display: grid;
    place-items: center;
    cursor: pointer;
    color: var(--muted);
    background: transparent;
    transition: color .2s ease, transform .2s ease;
}

#likeButton:hover, .volume-button:hover { color: var(--yellow); transform: translateY(-2px); }
#likeButton.liked { color: var(--red); }
#likeButton.liked svg { fill: currentColor; }
.volume-control { display: flex; align-items: center; gap: 7px; }

#volumeSlider {
    width: 82px;
    height: 4px;
    border-radius: 99px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    accent-color: var(--yellow);
    background: rgba(255,255,255,.22);
}

#volumeSlider::-webkit-slider-thumb {
    width: 15px;
    height: 15px;
    border: 3px solid var(--navy);
    border-radius: 50%;
    appearance: none;
    -webkit-appearance: none;
    background: var(--yellow);
    box-shadow: 0 0 0 1px var(--yellow);
}

#volumeSlider::-moz-range-thumb { width: 11px; height: 11px; border: 3px solid var(--navy); border-radius: 50%; background: var(--yellow); }
#volumePercentage { min-width: 37px; color: var(--muted); font-size: .7rem; text-align: right; }

.quick-actions { margin-top: 16px; display: flex; align-items: stretch; justify-content: space-between; gap: 12px; }

.chat-button, .download-button {
    min-height: 48px;
    border: 1px solid var(--line);
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}

.chat-button {
    padding: 0 17px;
    gap: 9px;
    color: #04130a;
    border-color: rgba(65,224,117,.55);
    background: linear-gradient(145deg, #54ef89, #25d366);
    font-size: .76rem;
    font-weight: 800;
}

.chat-button i { font-size: 1.2rem; }
.chat-button:hover, .download-button:hover { transform: translateY(-2px); }
.app-download-buttons { display: flex; gap: 8px; }

.download-button { padding: 7px 11px; gap: 8px; color: var(--text); background: rgba(255,255,255,.07); }
.download-button:hover { border-color: rgba(255,235,0,.45); background: rgba(255,255,255,.12); }
.download-button i { color: var(--yellow); font-size: 1.25rem; }
.button-text { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.05; }
.button-text small { color: var(--muted); font-size: .52rem; letter-spacing: .06em; }
.button-text strong { margin-top: 3px; font-size: .68rem; white-space: nowrap; }

.social-links {
    position: absolute;
    z-index: 5;
    top: 50%;
    right: -25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transform: translateY(-50%);
}

.social-icon {
    width: 50px;
    height: 50px;
    border: 1px solid var(--line);
    border-radius: 16px;
    display: grid;
    place-items: center;
    color: var(--text);
    text-decoration: none;
    background: var(--surface-strong);
    box-shadow: 0 12px 24px rgba(0,0,0,.25);
    backdrop-filter: blur(16px);
    transition: transform .22s ease, color .22s ease, border-color .22s ease;
}

.social-icon i { font-size: 1.25rem; }
.social-icon:hover { transform: translateX(-5px) scale(1.04); }
.social-whatsapp:hover { color: #25d366; border-color: #25d366; }
.social-facebook:hover { color: #4d8dff; border-color: #4d8dff; }
.social-tiktok:hover { color: #ff3f78; border-color: #ff3f78; }
.share-button:hover { color: var(--yellow); border-color: var(--yellow); }

.site-footer { display: flex; align-items: center; justify-content: center; gap: 12px; color: var(--muted); font-size: .72rem; text-align: center; }
.footer-separator { width: 4px; height: 4px; border-radius: 50%; background: var(--red); }

.developer-credit {
    color: var(--red);
    font-weight: 800;
    text-decoration: none;
    transition: color .2s ease, transform .2s ease;
}

.developer-credit:hover {
    color: #ffffff;
    transform: translateY(-1px);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.share-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    padding: 20px;
    display: grid;
    place-items: center;
    visibility: hidden;
    opacity: 0;
    background: rgba(1,4,16,.78);
    backdrop-filter: blur(14px);
    transition: opacity .25s ease, visibility .25s ease;
}

.share-overlay.visible { visibility: visible; opacity: 1; }

.share-modal {
    position: relative;
    width: min(100%, 410px);
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 24px;
    color: var(--text);
    text-align: center;
    background: var(--navy);
    box-shadow: var(--shadow);
    transform: translateY(14px) scale(.96);
    transition: transform .25s ease;
}

.share-overlay.visible .share-modal { transform: translateY(0) scale(1); }
.share-modal h2 { margin: 0 0 18px; color: var(--yellow); font-size: 1.2rem; }
.share-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }

.share-links a {
    min-width: 0;
    padding: 15px 8px;
    border: 1px solid var(--line);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: var(--text);
    text-decoration: none;
    font-size: .72rem;
    background: rgba(255,255,255,.06);
}

.share-links a:hover { border-color: rgba(255,235,0,.5); }
.share-links i { font-size: 1.45rem; }
.share-links .bi-whatsapp { color: #25d366; }
.share-links .bi-facebook { color: #4d8dff; }
.share-links .bi-twitter { color: #55acee; }

.share-modal .close-button {
    position: absolute;
    top: 11px;
    right: 13px;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    color: var(--muted);
    background: rgba(255,255,255,.07);
    font-size: 1.35rem;
}

.browser-notice {
    position: relative;
    z-index: 2;
    width: min(92%, 520px);
    min-height: 100dvh;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.browser-notice img { width: min(90%, 340px); }
.browser-notice h1 { margin: 28px 0 8px; }
.browser-notice p { margin: 0 0 24px; color: var(--muted); }
.browser-notice button { padding: 14px 20px; border: 0; border-radius: 14px; color: var(--navy); background: var(--yellow); font-weight: 900; cursor: pointer; }
.ios-standalone .container { padding-top: calc(20px + env(safe-area-inset-top)); }

@media (max-width: 1040px) {
    .center-content { grid-template-columns: minmax(250px, .8fr) minmax(350px, 1.2fr); gap: 34px; }
    .radio-image { width: min(32vw, 320px); min-width: 240px; }
    .album-column::before,
    .album-column::after { width: calc(min(32vw, 320px) + 18px); min-width: 258px; }
    .quick-actions { align-items: stretch; flex-direction: column; }
    .chat-button, .app-download-buttons { width: 100%; }
    .download-button { flex: 1; }
}

@media (max-width: 820px) {
    body { background-attachment: scroll; }
    .container { padding-inline: 14px; }
    .site-header {
        position: relative;
        min-height: 64px;
        padding-inline: 52px;
        justify-content: center;
    }
    .brand {
        width: min(320px, 72vw);
        margin-inline: auto;
        justify-content: center;
    }
    .logo-titulo { object-position: center; }
    .header-tools {
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
    }
    .current-date-time { display: none; }
    .radio-stage { min-height: auto; overflow: hidden; }
    .center-content { min-height: auto; padding: 34px 24px 28px; grid-template-columns: 1fr; gap: 28px; }
    .radio-image { width: min(64vw, 320px); min-width: 230px; }
    .album-column::before,
    .album-column::after { width: calc(min(64vw, 320px) + 18px); min-width: 248px; }
    .content-column {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }
    .on-air-row { order: 1; }
    .player-controls { order: 2; }
    .now-playing { order: 3; }
    .visualizer { order: 4; }
    .quick-actions { order: 5; }
    .on-air-row { justify-content: center; }
    .now-playing { text-align: center; }
    .song-title { min-height: 1.25em; font-size: clamp(1.4rem, 7vw, 2.3rem); }
    .station-tagline { font-size: .9rem; }
    .social-links { position: static; padding: 18px 20px 0; flex-direction: row; justify-content: center; transform: none; }
    .social-icon { width: 46px; height: 46px; border-radius: 14px; }
    .social-icon:hover { transform: translateY(-4px); }
    .visualizer { height: 65px; margin-block: 10px; }
}

@media (max-width: 610px) {
    .container {
        gap: 10px;
        padding: calc(10px + env(safe-area-inset-top)) 10px calc(12px + env(safe-area-inset-bottom));
    }
    .site-header {
        min-height: 58px;
        padding-inline: 48px;
    }
    .brand { width: min(270px, 66vw); }
    .theme-toggle {
        width: 38px;
        height: 38px;
        border-radius: 12px;
    }
    .header-tools { right: 2px; }
    .radio-stage {
        border-radius: 24px;
        background: linear-gradient(160deg, rgba(255,255,255,.075), transparent 42%), rgba(7,17,61,.9);
        box-shadow: 0 22px 55px rgba(0,0,0,.38), inset 0 1px rgba(255,255,255,.1);
    }
    .social-links {
        padding: 14px 10px 4px;
        gap: 9px;
    }
    .social-icon {
        width: 42px;
        height: 42px;
        border-radius: 13px;
    }
    .social-icon i { font-size: 1.08rem; }
    .center-content {
        padding: 18px 14px 22px;
        gap: 14px;
    }
    .radio-image {
        width: min(56vw, 210px);
        min-width: 184px;
        padding: 8px;
        box-shadow: 0 20px 45px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.12), inset 0 0 0 5px rgba(0,0,0,.38);
    }
    .album-column::before,
    .album-column::after {
        width: calc(min(56vw, 210px) + 14px);
        min-width: 198px;
    }
    .disc-shine { inset: 8px; }
    .disc-hole { border-width: 5px; }
    .album-glow { width: 68%; opacity: .12; }
    .content-column {
        display: grid;
        grid-template-columns: 1fr auto auto 1fr;
        grid-template-rows: auto auto auto auto;
        align-items: center;
        column-gap: 12px;
        row-gap: 9px;
    }
    .frequency { display: none; }
    .on-air-row {
        grid-column: 2;
        grid-row: 1;
        margin: 0;
        justify-content: flex-end;
    }
    .live-pill {
        padding: 7px 10px;
        font-size: .64rem;
        letter-spacing: .07em;
    }
    .live-dot { width: 7px; height: 7px; }
    .player-controls {
        grid-column: 3;
        grid-row: 1;
        width: auto;
        min-height: 0;
        margin: 0;
        padding: 6px;
        border: 0;
        grid-template-columns: auto;
        gap: 0;
        background: transparent;
        box-shadow: none;
    }
    .station-info,
    .extra-controls { display: none; }
    #playPauseButton {
        width: 56px;
        height: 56px;
        box-shadow: 0 10px 26px rgba(255,235,0,.22), inset 0 2px rgba(255,255,255,.72);
    }
    #playPauseButton::before,
    #playPauseButton::after { inset: -5px; }
    #playPauseButton svg { width: 25px; height: 25px; }
    .now-playing {
        grid-column: 1 / -1;
        grid-row: 2;
        margin-top: 2px;
    }
    .eyebrow {
        margin-bottom: 5px;
        font-size: .62rem;
        letter-spacing: .16em;
    }
    .song-title {
        min-height: 1.15em;
        font-size: clamp(1.35rem, 6.2vw, 1.75rem);
        line-height: 1.12;
        letter-spacing: -.025em;
    }
    .station-tagline { display: none; }
    .visualizer {
        grid-column: 1 / -1;
        grid-row: 3;
        height: 38px;
        margin: 0 0 5px;
    }
    .quick-actions {
        grid-column: 1 / -1;
        grid-row: 4;
        margin-top: 2px;
        gap: 8px;
    }
    .chat-button { min-height: 46px; }
    .app-download-buttons { flex-direction: row; }
    .download-button { min-height: 46px; padding-inline: 8px; }
    .button-text strong { font-size: .68rem; }
    .site-footer {
        padding: 5px 8px 2px;
        flex-wrap: wrap;
        gap: 6px;
        font-size: .62rem;
    }
}

@media (max-width: 360px) {
    .center-content { padding-inline: 12px; }
    .radio-image { width: min(54vw, 194px); min-width: 176px; }
    .album-column::before,
    .album-column::after { width: calc(min(54vw, 194px) + 12px); min-width: 188px; }
    .social-links { gap: 6px; }
    .social-icon { width: 40px; height: 40px; }
    .content-column { column-gap: 9px; }
    #playPauseButton { width: 52px; height: 52px; }
    .song-title { font-size: 1.32rem; }
    .download-button i { font-size: 1rem; }
    .button-text strong { font-size: .6rem; }
    .share-links { grid-template-columns: 1fr; }
}

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