:root {
    color-scheme: dark;
    --bg: #030613;
    --panel: rgba(18, 20, 38, .78);
    --panel-2: rgba(21, 24, 44, .9);
    --line: rgba(255, 255, 255, .13);
    --text: #ffffff;
    --muted: #c4c6d3;
    --pink: #ff3fa8;
    --pink-2: #ec1c91;
    --violet: #932be6;
    --blue: #3d9df4;
    --shadow: 0 26px 80px rgba(0, 0, 0, .46);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    margin: 0;
    padding-bottom: 128px;
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background:
        linear-gradient(180deg, rgba(3, 6, 19, .12), #030613 86%),
        url("/assets/img/background.png") top center / cover no-repeat fixed,
        var(--bg);
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(circle at 18% 14%, rgba(255, 63, 168, .15), transparent 22rem),
        radial-gradient(circle at 82% 20%, rgba(147, 43, 230, .12), transparent 26rem),
        linear-gradient(180deg, transparent 0%, rgba(3, 6, 19, .68) 72%, #030613 100%);
}

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

button {
    font: inherit;
}

main {
    width: min(1760px, calc(100% - 72px));
    margin: 0 auto;
}

.site-header {
    background: #030714;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 8px 34px rgba(0, 0, 0, .18);
}

.header-inner {
    width: min(1760px, calc(100% - 72px));
    margin: 0 auto;
    min-height: 128px;
    display: grid;
    grid-template-columns: 360px 1fr auto auto;
    align-items: center;
    gap: 32px;
}

.logo-link img {
    display: block;
    width: 300px;
    max-width: 100%;
}

.main-nav {
    display: flex;
    justify-content: center;
    gap: clamp(22px, 3vw, 58px);
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
}

.main-nav a {
    position: relative;
    padding: 12px 0;
}

.main-nav a.active,
.main-nav a:hover {
    color: var(--pink);
}

.main-nav a.active::after,
.main-nav a:hover::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 4px;
    height: 3px;
    border-radius: 99px;
    background: var(--pink);
}

.nav-listen {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 48px;
    border-radius: 8px;
    padding: 0 28px;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
}

.nav-listen {
    border: 0;
    background: linear-gradient(135deg, #ff4b98, #b12ee5);
    box-shadow: 0 18px 42px rgba(255, 63, 168, .28);
    cursor: pointer;
}

.play-triangle {
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 12px solid currentColor;
}

.socials,
.footer-socials {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 1.35rem;
    font-weight: 900;
}

.socials a {
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    color: #f5f5f8;
}

.socials svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    display: block;
}

.socials a:hover {
    color: var(--pink);
}

.hero-section {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(620px, 1fr);
    align-items: center;
    gap: 64px;
    min-height: 540px;
    padding: 24px 56px 18px;
}

.hero-copy h1 {
    margin: 0 0 26px;
    max-width: 780px;
    font-size: clamp(4rem, 5.7vw, 7.4rem);
    line-height: .98;
    letter-spacing: 0;
}

.hero-copy h1 span {
    color: var(--pink);
}

.hero-copy p {
    max-width: 640px;
    margin: 0 0 32px;
    color: var(--muted);
    font-size: clamp(1.25rem, 1.5vw, 1.55rem);
    line-height: 1.5;
}

.status {
    min-height: 24px;
    margin-top: 18px;
    color: #d8dae7;
}

.feature-grid article,
.schedule-grid article,
.site-footer {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(145deg, rgba(21, 24, 44, .92), rgba(12, 14, 29, .72));
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.schedule-head,
.site-footer,
.feature-grid article {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.icon {
    position: relative;
    display: block;
    width: 24px;
    height: 24px;
}

.icon-play::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 4px;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 12px solid #fff;
}

.icon-stop::before,
.icon-stop::after {
    content: "";
    position: absolute;
    top: 4px;
    width: 6px;
    height: 16px;
    border-radius: 2px;
    background: #fff;
}

.icon-stop::before {
    left: 5px;
}

.icon-stop::after {
    right: 5px;
}

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

.feature-grid article {
    gap: 26px;
    min-height: 140px;
    padding: 26px 34px;
}

.feature-grid h3,
.schedule-grid h3 {
    margin: 0 0 7px;
    font-size: 1.35rem;
    text-transform: uppercase;
}

.feature-grid p,
.schedule-grid span {
    margin: 0;
    color: var(--muted);
    line-height: 1.35;
}

.feature-icon {
    position: relative;
    flex: 0 0 70px;
    width: 70px;
    height: 70px;
}

.feature-icon::before,
.feature-icon::after {
    content: "";
    position: absolute;
}

.tower::before {
    left: 26px;
    top: 8px;
    width: 18px;
    height: 52px;
    border: 5px solid var(--pink);
    border-top: 0;
    transform: perspective(70px) rotateX(22deg);
}

.tower::after {
    left: 9px;
    top: 7px;
    width: 52px;
    height: 52px;
    border: 5px solid var(--pink);
    border-bottom-color: transparent;
    border-left-color: transparent;
    border-right-color: transparent;
    border-radius: 50%;
}

.headphones::before {
    inset: 8px;
    border: 7px solid #a84cf4;
    border-bottom: 0;
    border-radius: 40px 40px 0 0;
}

.headphones::after {
    left: 9px;
    right: 9px;
    bottom: 8px;
    height: 24px;
    border-left: 14px solid #a84cf4;
    border-right: 14px solid #a84cf4;
}

.community::before {
    left: 9px;
    top: 17px;
    width: 52px;
    height: 18px;
    background: radial-gradient(circle, var(--pink) 0 8px, transparent 9px) left center / 18px 18px repeat-x;
}

.community::after {
    left: 0;
    right: 0;
    bottom: 12px;
    height: 24px;
    background: radial-gradient(ellipse at center bottom, var(--pink) 0 16px, transparent 17px) left bottom / 24px 24px repeat-x;
}

.request::before {
    inset: 9px 6px 18px;
    border-radius: 10px;
    background: linear-gradient(135deg, #4cc4ff, #3787e7);
}

.request::after {
    left: 21px;
    bottom: 11px;
    width: 25px;
    height: 20px;
    background: #3787e7;
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

.schedule-section {
    padding: 0 28px 26px;
}

.schedule-head {
    margin-bottom: 20px;
}

.schedule-head h2 {
    position: relative;
    margin: 0;
    font-size: 1.55rem;
    text-transform: uppercase;
}

.schedule-head h2::after {
    content: "";
    display: inline-block;
    width: 280px;
    height: 1px;
    margin-left: 24px;
    vertical-align: middle;
    background: rgba(255, 255, 255, .1);
}

.schedule-head a {
    color: var(--pink);
    font-weight: 900;
    text-transform: uppercase;
}

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

.schedule-grid article {
    min-height: 160px;
    overflow: hidden;
    padding: 24px;
    background:
        linear-gradient(90deg, rgba(16, 18, 35, .92), rgba(16, 18, 35, .38)),
        var(--card-image) center / cover no-repeat;
}

.schedule-grid p {
    margin: 0 0 18px;
    color: var(--pink);
    font-weight: 900;
}

.schedule-grid h3 {
    text-transform: none;
    font-size: 1.55rem;
}

.site-footer {
    min-height: 118px;
    margin: 0 28px 30px;
    padding: 0 34px;
    background: linear-gradient(90deg, rgba(52, 12, 70, .9), rgba(82, 14, 63, .75), rgba(28, 18, 48, .88));
}

.site-footer img {
    width: 270px;
    max-width: 35%;
}

.footer-socials {
    font-size: 1.15rem;
    text-transform: uppercase;
}

.footer-socials span {
    font-size: .9rem;
    font-weight: 800;
}

.footer-socials a {
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    color: #f5f5f8;
}

.footer-socials svg {
    width: 20px;
    height: 20px;
    display: block;
    fill: currentColor;
}

.footer-socials a:hover {
    color: var(--pink);
}

.legal-callout {
    display: flex;
    align-items: center;
    gap: 20px;
    min-width: 380px;
    padding-left: 48px;
    border-left: 1px solid rgba(255, 255, 255, .16);
    color: var(--muted);
}

.legal-callout p {
    margin: 0 0 8px;
}

.legal-callout nav {
    display: flex;
    gap: 18px;
}

.legal-callout a {
    color: #fff;
    font-weight: 800;
}

.legal-callout a:hover {
    color: var(--pink);
}

.live-radio-player {
    position: fixed;
    z-index: 60;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 12px clamp(14px, 3vw, 56px);
    background:
        linear-gradient(180deg, rgba(3, 6, 19, 0), rgba(3, 6, 19, .78) 22%),
        rgba(3, 6, 19, .76);
    backdrop-filter: blur(18px);
}

.live-radio-shell {
    width: min(1760px, 100%);
    min-height: 92px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(260px, 1.45fr) 112px minmax(120px, .7fr) minmax(220px, .95fr) 150px 150px;
    align-items: center;
    gap: clamp(14px, 2vw, 34px);
    padding: 14px 22px;
    border: 1px solid rgba(255, 63, 168, .32);
    border-radius: 14px;
    background:
        radial-gradient(circle at 10% 20%, rgba(255, 63, 168, .18), transparent 18rem),
        radial-gradient(circle at 78% 10%, rgba(61, 157, 244, .14), transparent 18rem),
        linear-gradient(115deg, rgba(10, 13, 29, .96), rgba(7, 10, 24, .94));
    box-shadow:
        0 -18px 55px rgba(0, 0, 0, .4),
        0 0 28px rgba(147, 43, 230, .18),
        inset 0 1px 0 rgba(255, 255, 255, .08);
}

.live-radio-meta {
    display: flex;
    align-items: center;
    min-width: 0;
    gap: 16px;
}

.live-radio-art {
    position: relative;
    flex: 0 0 68px;
    width: 68px;
    height: 68px;
    border-radius: 12px;
    padding: 2px;
    background: linear-gradient(135deg, var(--pink), var(--violet), var(--blue));
    box-shadow: 0 0 26px rgba(255, 63, 168, .26);
}

.live-radio-art img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.live-radio-eq {
    position: relative;
    flex: 0 0 14px;
    width: 10px;
    height: 30px;
    margin-left: 2px;
    margin-right: 4px;
    background:
        linear-gradient(var(--pink), var(--pink)) left 9px / 3px 12px no-repeat,
        linear-gradient(var(--violet), var(--violet)) center 3px / 3px 24px no-repeat,
        linear-gradient(var(--pink), var(--pink)) right 12px / 3px 9px no-repeat;
    opacity: .9;
}

.is-playing .live-radio-eq {
    animation: glowPulse .75s ease-in-out infinite alternate;
}

@keyframes glowPulse {
    to { transform: scaleY(.72); filter: brightness(1.3); }
}

.live-radio-copy {
    flex: 1 1 auto;
    min-width: 0;
}

.live-radio-title-row {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.live-radio-title-row strong,
.live-radio-copy > span,
.live-radio-copy small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.live-radio-title-row strong {
    color: #fff;
    font-size: 1.02rem;
    font-weight: 900;
}

.live-radio-copy > span {
    margin-top: 5px;
    color: var(--muted);
    font-size: .92rem;
}

.live-radio-copy small {
    margin-top: 7px;
    color: #8f93a9;
    font-size: .82rem;
}

.live-radio-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 24px;
    padding: 0 9px;
    border-radius: 999px;
    background: rgba(255, 63, 168, .12);
    color: var(--pink);
    font-size: .68rem;
    font-weight: 950;
    text-transform: uppercase;
}

.live-radio-badge span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ff2f6d;
    box-shadow: 0 0 12px rgba(255, 47, 109, .85);
}

.live-radio-audience,
.live-radio-quality,
.live-radio-center,
.live-radio-volume,
.live-radio-actions {
    display: flex;
    align-items: center;
}

.live-radio-audience {
    gap: 7px;
    color: var(--muted);
}

.live-radio-audience svg {
    width: 20px;
    height: 20px;
    fill: var(--pink);
}

.live-radio-audience strong {
    color: #fff;
    font-size: 1rem;
    font-variant-numeric: tabular-nums;
}

.live-radio-audience span {
    font-size: .78rem;
}

.live-radio-center {
    flex-direction: column;
    justify-content: center;
    gap: 7px;
}

.live-radio-play {
    display: grid;
    place-items: center;
    width: 68px;
    height: 68px;
    border: 1px solid rgba(255, 63, 168, .66);
    border-radius: 50%;
    background: radial-gradient(circle at 38% 25%, rgba(255, 255, 255, .22), rgba(255, 63, 168, .12) 36%, rgba(147, 43, 230, .26));
    color: #fff;
    cursor: pointer;
    box-shadow: 0 0 28px rgba(255, 63, 168, .42), inset 0 0 18px rgba(147, 43, 230, .2);
}

.live-radio-play:disabled {
    cursor: wait;
    opacity: .7;
}

.live-radio-play.is-loading {
    animation: buttonSpin 1s linear infinite;
}

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

.live-radio-center p {
    min-height: 16px;
    margin: 0;
    color: #aeb2c4;
    font-size: .76rem;
}

.live-radio-player[data-state="playing"] .live-radio-center p,
.live-radio-player[data-state="loading"] .live-radio-center p {
    color: var(--pink);
}

.live-radio-player[data-state="error"] .live-radio-center p {
    color: #ff9dbd;
}

.live-radio-volume {
    gap: 13px;
}

.live-radio-volume input[type="range"] {
    width: min(170px, 12vw);
    height: 5px;
    accent-color: var(--pink);
}

.live-radio-volume span {
    min-width: 38px;
    color: var(--muted);
    font-size: .78rem;
    font-variant-numeric: tabular-nums;
}

.live-radio-quality {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding-left: 28px;
    border-left: 1px solid rgba(255, 255, 255, .09);
}

.live-radio-quality span {
    color: #9ca0b6;
    font-size: .78rem;
}

.live-radio-quality strong {
    color: var(--pink);
    font-size: 1rem;
}

.live-radio-actions {
    justify-content: flex-end;
    gap: 14px;
}

.live-radio-icon-button {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .055);
    color: #fff;
    cursor: pointer;
}

.live-radio-icon-button:hover,
.live-radio-icon-button:focus-visible,
.live-radio-icon-button.is-active {
    color: var(--pink);
    background: rgba(255, 63, 168, .12);
    outline: 0;
}

.live-radio-icon-button svg {
    width: 23px;
    height: 23px;
    fill: currentColor;
}

.live-radio-icon-button .volume-glyph {
    width: 24px;
    height: 24px;
}

.volume-glyph .volume-wave {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
}

.live-radio-icon-button.is-muted {
    color: #8f93a9;
}

.live-radio-collapse svg {
    transition: transform .2s ease;
}

.live-radio-player.is-collapsed {
    padding-top: 6px;
    padding-bottom: 6px;
}

.live-radio-player.is-collapsed .live-radio-shell {
    min-height: 62px;
    grid-template-columns: minmax(220px, 1fr) auto auto;
    padding-block: 8px;
}

.live-radio-player.is-collapsed .live-radio-art {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
}

.live-radio-player.is-collapsed .live-radio-audience,
.live-radio-player.is-collapsed .live-radio-volume,
.live-radio-player.is-collapsed .live-radio-quality,
.live-radio-player.is-collapsed .live-radio-actions button:not(.live-radio-collapse),
.live-radio-player.is-collapsed .live-radio-copy small,
.live-radio-player.is-collapsed .live-radio-eq {
    display: none;
}

.live-radio-player.is-collapsed .live-radio-center {
    flex-direction: row;
}

.live-radio-player.is-collapsed .live-radio-play {
    width: 46px;
    height: 46px;
}

.live-radio-player.is-collapsed .live-radio-actions {
    display: flex;
}

.live-radio-player.is-collapsed .live-radio-collapse svg {
    transform: rotate(180deg);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 1320px) {
    .header-inner {
        grid-template-columns: 260px 1fr auto;
    }

    .socials {
        display: none;
    }

    .hero-section {
        grid-template-columns: 1fr;
        padding-inline: 28px;
    }

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

    .live-radio-shell {
        grid-template-columns: minmax(260px, 1fr) 96px minmax(120px, auto) minmax(180px, .8fr) 132px;
    }

    .live-radio-quality {
        display: none;
    }
}

@media (max-width: 920px) {
    body {
        padding-bottom: 190px;
    }

    main,
    .header-inner {
        width: min(100% - 28px, 1760px);
    }

    .header-inner {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 18px 0;
    }

    .main-nav {
        justify-content: flex-start;
        gap: 20px;
        overflow-x: auto;
    }

    .nav-listen {
        width: fit-content;
    }

    .hero-section,
    .feature-grid,
    .schedule-section {
        padding-inline: 0;
    }

    .site-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .site-footer {
        margin-inline: 0;
        padding: 24px;
    }

    .site-footer img {
        max-width: 100%;
    }

    .legal-callout {
        min-width: 0;
        padding-left: 0;
        border-left: 0;
    }

    .live-radio-player {
        padding: 10px 12px;
    }

    .live-radio-shell {
        grid-template-columns: minmax(0, 1fr) auto auto;
        gap: 14px;
        min-height: 124px;
    }

    .live-radio-meta {
        grid-column: 1 / 3;
    }

    .live-radio-audience {
        justify-content: flex-end;
    }

    .live-radio-center {
        grid-column: 1 / 2;
        flex-direction: row;
        justify-content: flex-start;
    }

    .live-radio-volume {
        grid-column: 2 / 4;
        justify-content: flex-end;
    }

    .live-radio-actions {
        grid-column: 3 / 4;
        grid-row: 1 / 2;
    }

    .live-radio-volume input[type="range"] {
        width: 150px;
    }

    .live-radio-player.is-collapsed .live-radio-shell {
        grid-template-columns: minmax(0, 1fr) auto auto;
        min-height: 62px;
    }

    .live-radio-player.is-collapsed .live-radio-meta {
        grid-column: auto;
    }

    .live-radio-player.is-collapsed .live-radio-center,
    .live-radio-player.is-collapsed .live-radio-actions {
        grid-column: auto;
        grid-row: auto;
    }
}

@media (max-width: 640px) {
    body {
        padding-bottom: 206px;
    }

    .hero-copy h1 {
        font-size: clamp(3rem, 17vw, 4.8rem);
    }

    .nav-listen {
        width: 100%;
    }

    .feature-grid,
    .schedule-grid {
        grid-template-columns: 1fr;
    }

    .feature-grid {
        padding-inline: 0;
    }

    .schedule-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .schedule-head h2::after {
        display: none;
    }

    .live-radio-shell {
        grid-template-columns: 1fr auto;
        min-height: 148px;
        padding: 12px;
    }

    .live-radio-meta {
        grid-column: 1 / 3;
    }

    .live-radio-art {
        width: 58px;
        height: 58px;
        flex-basis: 58px;
    }

    .live-radio-badge,
    .live-radio-audience,
    .live-radio-volume span {
        display: none;
    }

    .live-radio-center {
        grid-column: 1 / 2;
    }

    .live-radio-play {
        width: 54px;
        height: 54px;
    }

    .live-radio-volume {
        grid-column: 1 / 3;
        justify-content: flex-start;
    }

    .live-radio-volume input[type="range"] {
        width: 100%;
    }

    .live-radio-actions {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
    }

    .live-radio-icon-button {
        width: 38px;
        height: 38px;
    }

    .live-radio-player.is-collapsed .live-radio-shell {
        grid-template-columns: 1fr auto auto;
        min-height: 60px;
    }

    .live-radio-player.is-collapsed .live-radio-copy > span {
        display: none;
    }

    .live-radio-player.is-collapsed .live-radio-center,
    .live-radio-player.is-collapsed .live-radio-actions {
        grid-column: auto;
        grid-row: auto;
    }
}
