/* ============================================================
   DUTCH-RADIO V4
   FRONTEND STYLE
============================================================ */

:root {
    --bg: #030914;
    --bg-soft: #071426;
    --panel: #0a1b32;
    --panel-2: #0c2340;

    --accent: #00d9ff;
    --accent-2: #159cff;

    --text: #f7fbff;
    --muted: #91a7bd;

    --line: rgba(255,255,255,.10);
    --line-accent: rgba(0,217,255,.32);

    --success: #20e98b;
    --danger: #ff5575;

    --shadow:
        0 20px 60px rgba(0,0,0,.32);

    --radius: 20px;
}


/* ============================================================
   RESET
============================================================ */

* {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    margin: 0;

    min-height: 100vh;

    font-family:
        Inter,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    color: var(--text);

    background:
        radial-gradient(
            circle at 50% -10%,
            rgba(0,145,255,.22),
            transparent 38%
        ),
        linear-gradient(
            180deg,
            #03101f 0%,
            #020812 100%
        );

    line-height: 1.5;
}


img {
    max-width: 100%;
    display: block;
}


button,
input,
textarea {
    font: inherit;
}


button,
a {
    -webkit-tap-highlight-color: transparent;
}


a {
    color: inherit;
    text-decoration: none;
}


button {
    cursor: pointer;
}


/* ============================================================
   CONTAINER
============================================================ */

.container {
    width: min(
        1240px,
        calc(100% - 40px)
    );

    margin-inline: auto;
}


/* ============================================================
   TOP STRIP
============================================================ */

.top-strip {
    min-height: 34px;

    display: flex;
    align-items: center;

    background:
        rgba(1,7,16,.88);

    border-bottom:
        1px solid rgba(255,255,255,.06);

    color: #a9bed1;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: .06em;
}


.top-strip-inner {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}


.top-strip span {
    white-space: nowrap;
}


.status-dot {
    display: inline-block;

    width: 7px;
    height: 7px;

    margin-right: 7px;

    border-radius: 50%;

    background: var(--success);

    box-shadow:
        0 0 12px rgba(32,233,139,.8);
}


.top-right {
    opacity: .65;
}


/* ============================================================
   HEADER
============================================================ */

.site-header {
    position: sticky;

    top: 0;

    z-index: 100;

    background:
        rgba(3,10,20,.88);

    backdrop-filter:
        blur(18px);

    border-bottom:
        1px solid rgba(255,255,255,.08);
}


.nav-wrap {
    min-height: 76px;

    display: flex;

    align-items: center;

    gap: 28px;
}


.brand {
    display: flex;

    align-items: center;

    gap: 12px;

    flex-shrink: 0;
}


.brand-mark {
    width: 42px;
    height: 42px;

    display: grid;

    place-items: center;

    border-radius: 13px;

    background:
        linear-gradient(
            135deg,
            #00d9ff,
            #168dff
        );

    color: #03101c;

    font-weight: 1000;

    box-shadow:
        0 0 24px rgba(0,217,255,.28);
}


.brand-copy {
    display: flex;

    flex-direction: column;

    line-height: 1;
}


.brand-copy strong {
    font-size: 17px;

    font-weight: 900;

    letter-spacing: -.03em;
}


.brand-copy strong span {
    color: var(--accent);
}


.brand-copy small {
    margin-top: 6px;

    color: #7892aa;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: .13em;
}


.desktop-nav {
    display: flex;

    align-items: center;

    gap: 5px;

    margin-left: auto;
}


.desktop-nav a {
    position: relative;

    padding: 10px 13px;

    border-radius: 10px;

    color: #a9bdd0;

    font-size: 13px;

    font-weight: 800;

    transition:
        color .2s ease,
        background .2s ease;
}


.desktop-nav a:hover,
.desktop-nav a.active {
    color: #fff;

    background:
        rgba(0,217,255,.08);
}


.desktop-nav a.active::after {
    content: "";

    position: absolute;

    left: 15px;
    right: 15px;

    bottom: -14px;

    height: 2px;

    background: var(--accent);

    box-shadow:
        0 0 12px var(--accent);
}


.nav-live {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 11px 16px;

    border:
        1px solid var(--line-accent);

    border-radius: 12px;

    background:
        rgba(0,217,255,.08);

    color: #fff;

    font-size: 11px;

    font-weight: 900;

    letter-spacing: .04em;

    transition:
        background .2s ease,
        transform .2s ease;
}


.nav-live:hover {
    background:
        rgba(0,217,255,.15);

    transform: translateY(-1px);
}


.nav-live span {
    color: var(--success);

    text-shadow:
        0 0 12px var(--success);
}


.mobile-menu {
    display: none;

    width: 42px;
    height: 42px;

    border:
        1px solid var(--line);

    border-radius: 12px;

    background:
        rgba(255,255,255,.05);

    color: #fff;

    font-size: 20px;
}


.mobile-nav {
    display: none;
}


/* ============================================================
   HERO
============================================================ */

.hero {
    position: relative;

    min-height: 570px;

    display: flex;

    align-items: center;

    overflow: hidden;

    border-bottom:
        1px solid rgba(255,255,255,.05);
}


.hero-grid {
    position: absolute;

    inset: 0;

    opacity: .18;

    background-image:
        linear-gradient(
            rgba(0,217,255,.12) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(0,217,255,.12) 1px,
            transparent 1px
        );

    background-size:
        55px 55px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent
        );
}


.hero-glow {
    position: absolute;

    border-radius: 50%;

    filter: blur(70px);

    pointer-events: none;
}


.hero-glow-one {
    width: 430px;
    height: 430px;

    left: -140px;
    top: -120px;

    background:
        rgba(0,155,255,.20);
}


.hero-glow-two {
    width: 520px;
    height: 520px;

    right: -180px;
    top: 20px;

    background:
        rgba(0,217,255,.13);
}


.hero-inner {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1.1fr)
        minmax(340px, .9fr);

    align-items: center;

    gap: 70px;

    padding:
        90px 0;
}


.hero-copy {
    max-width: 700px;
}


.eyebrow,
.section-label {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--accent);

    font-size: 10px;

    font-weight: 950;

    letter-spacing: .16em;
}


.eyebrow span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--success);

    box-shadow:
        0 0 12px var(--success);
}


.hero h1 {
    margin:
        18px 0 20px;

    font-size:
        clamp(48px, 7vw, 82px);

    line-height: .98;

    letter-spacing: -.055em;

    font-weight: 950;
}


.hero h1 em {
    font-style: normal;

    color: var(--accent);

    text-shadow:
        0 0 35px rgba(0,217,255,.18);
}


.hero p {
    max-width: 600px;

    margin: 0;

    color: #9eb1c4;

    font-size: 17px;

    line-height: 1.75;
}


.hero-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 30px;
}


.btn {
    min-height: 46px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding:
        0 19px;

    border-radius: 12px;

    font-size: 12px;

    font-weight: 900;

    letter-spacing: .04em;

    border: 1px solid transparent;

    transition:
        transform .2s ease,
        filter .2s ease,
        background .2s ease;
}


.btn:hover {
    transform: translateY(-2px);
}


.btn-primary {
    background:
        linear-gradient(
            135deg,
            #00d9ff,
            #0aa7ff
        );

    color: #03101b;

    box-shadow:
        0 10px 30px rgba(0,160,255,.22);
}


.btn-primary:hover {
    filter: brightness(1.08);
}


.btn-ghost {
    border-color:
        rgba(255,255,255,.13);

    background:
        rgba(255,255,255,.035);

    color: #d9e7f3;
}


.hero-points {
    display: flex;

    flex-wrap: wrap;

    gap: 20px;

    margin-top: 25px;

    color: #8198ae;

    font-size: 12px;

    font-weight: 700;
}


.hero-points span::first-letter {
    color: var(--success);
}


/* ============================================================
   HERO VISUAL
============================================================ */

.hero-visual {
    position: relative;

    min-height: 350px;

    display: grid;

    place-items: center;
}


.orb {
    position: absolute;

    border-radius: 50%;

    filter: blur(3px);

    pointer-events: none;
}


.orb-a {
    width: 280px;
    height: 280px;

    background:
        radial-gradient(
            circle,
            rgba(0,217,255,.25),
            transparent 65%
        );
}


.orb-b {
    width: 390px;
    height: 390px;

    background:
        radial-gradient(
            circle,
            rgba(0,115,255,.16),
            transparent 65%
        );
}


.studio-card {
    position: relative;

    z-index: 2;

    width: min(360px, 100%);

    min-height: 300px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    padding: 35px;

    border:
        1px solid rgba(0,217,255,.30);

    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            rgba(9,37,69,.94),
            rgba(4,14,29,.96)
        );

    box-shadow:
        0 35px 80px rgba(0,0,0,.38),
        inset 0 1px 0 rgba(255,255,255,.08);

    transform:
        rotate(2deg);
}


.on-air {
    display: flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 15px;

    color: #b8cddd;

    font-size: 10px;

    font-weight: 900;

    letter-spacing: .16em;
}


.on-air span {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: var(--success);

    box-shadow:
        0 0 14px var(--success);
}


.studio-mic {
    font-size: 68px;

    margin: 5px 0 15px;

    filter:
        drop-shadow(
            0 0 20px
            rgba(0,217,255,.25)
        );
}


.studio-lines {
    display: flex;

    align-items: flex-end;

    gap: 5px;

    height: 35px;

    margin-bottom: 17px;
}


.studio-lines i {
    width: 5px;

    height: 12px;

    border-radius: 5px;

    background: var(--accent);

    animation:
        equalizer 1s
        infinite ease-in-out;
}


.studio-lines i:nth-child(2) {
    animation-delay: .12s;
}

.studio-lines i:nth-child(3) {
    animation-delay: .24s;
}

.studio-lines i:nth-child(4) {
    animation-delay: .36s;
}

.studio-lines i:nth-child(5) {
    animation-delay: .48s;
}

.studio-lines i:nth-child(6) {
    animation-delay: .20s;
}

.studio-lines i:nth-child(7) {
    animation-delay: .38s;
}


.studio-card strong {
    font-size: 22px;

    letter-spacing: .08em;
}


.studio-card small {
    margin-top: 5px;

    color: #7590a8;

    font-size: 8px;

    letter-spacing: .18em;
}


@keyframes equalizer {

    0%,
    100% {
        height: 8px;
    }

    50% {
        height: 31px;
    }

}


/* ============================================================
   LIVE PLAYER
============================================================ */

.live-player-section {
    position: relative;

    margin-top: -25px;

    z-index: 5;
}


.radio-player {
    position: relative;

    overflow: hidden;

    border:
        1px solid rgba(0,217,255,.35);

    border-radius: 22px;

    background:
        linear-gradient(
            135deg,
            rgba(8,37,70,.98),
            rgba(4,15,31,.98)
        );

    box-shadow:
        0 25px 70px rgba(0,0,0,.38),
        inset 0 1px 0 rgba(255,255,255,.08);
}


.radio-player::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 0% 50%,
            rgba(0,217,255,.15),
            transparent 35%
        );

    pointer-events: none;
}


.radio-player-brand {
    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    gap: 12px;

    padding:
        17px 24px;

    border-bottom:
        1px solid rgba(255,255,255,.07);
}


.radio-player-brand > strong {
    font-size: 15px;

    font-weight: 950;
}


.radio-player-brand > small {
    color: #7690a7;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .13em;
}


.radio-live-badge {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding:
        6px 9px;

    border-radius: 8px;

    background:
        rgba(32,233,139,.10);

    color: var(--success);

    font-size: 9px;

    font-weight: 950;

    letter-spacing: .12em;
}


.radio-live-badge span {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--success);

    box-shadow:
        0 0 10px var(--success);
}


.radio-player-main {
    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    gap: 18px;

    min-height: 105px;

    padding:
        20px 24px;
}


.play-button {
    width: 62px;
    height: 62px;

    flex: 0 0 62px;

    display: grid;

    place-items: center;

    border: 0;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #00eaff,
            #149bff
        );

    color: #02121d;

    font-size: 22px;

    font-weight: 950;

    box-shadow:
        0 0 0 7px rgba(0,217,255,.10),
        0 10px 35px rgba(0,190,255,.28);

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}


.play-button:hover {
    transform: scale(1.06);

    box-shadow:
        0 0 0 9px rgba(0,217,255,.13),
        0 12px 40px rgba(0,190,255,.36);
}


.play-button.playing {
    background:
        linear-gradient(
            135deg,
            #20ee91,
            #11cf79
        );
}


.radio-player-track {
    min-width: 190px;

    display: flex;

    flex-direction: column;
}


.player-status {
    color: var(--accent);

    font-size: 9px;

    font-weight: 950;

    letter-spacing: .13em;
}


.radio-player-track strong {
    margin-top: 4px;

    font-size: 17px;

    white-space: nowrap;

    overflow: hidden;

    text-overflow: ellipsis;
}


.radio-player-track > span:last-child {
    color: #839bb0;

    font-size: 12px;
}


.radio-player-show {
    display: flex;

    flex-direction: column;

    min-width: 170px;

    padding-left: 22px;

    border-left:
        1px solid rgba(255,255,255,.08);
}


.radio-player-show small {
    color: #6d879e;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: .13em;
}


.radio-player-show strong {
    margin-top: 4px;

    font-size: 13px;
}


.radio-player-show span {
    color: #8299ae;

    font-size: 11px;
}


.equalizer {
    display: flex;

    align-items: flex-end;

    gap: 4px;

    height: 32px;

    margin-left: auto;
}


.equalizer i {
    width: 4px;

    height: 8px;

    border-radius: 4px;

    background: var(--accent);

    opacity: .25;
}


.equalizer.active i {
    opacity: .9;

    animation:
        playerEqualizer .7s
        infinite ease-in-out;
}


.equalizer.active i:nth-child(2) {
    animation-delay: .1s;
}

.equalizer.active i:nth-child(3) {
    animation-delay: .2s;
}

.equalizer.active i:nth-child(4) {
    animation-delay: .3s;
}

.equalizer.active i:nth-child(5) {
    animation-delay: .4s;
}

.equalizer.active i:nth-child(6) {
    animation-delay: .2s;
}

.equalizer.active i:nth-child(7) {
    animation-delay: .35s;
}

.equalizer.active i:nth-child(8) {
    animation-delay: .15s;
}

.equalizer.active i:nth-child(9) {
    animation-delay: .3s;
}

.equalizer.active i:nth-child(10) {
    animation-delay: .1s;
}

.equalizer.active i:nth-child(11) {
    animation-delay: .25s;
}

.equalizer.active i:nth-child(12) {
    animation-delay: .4s;
}


@keyframes playerEqualizer {

    0%,
    100% {
        height: 7px;
    }

    50% {
        height: 30px;
    }

}


.volume-control {
    display: flex;

    align-items: center;

    gap: 9px;
}


.volume-control span {
    font-size: 15px;
}


.volume-control input {
    width: 110px;

    accent-color: var(--accent);

    cursor: pointer;
}


.player-message {
    position: relative;

    z-index: 2;

    padding:
        0 24px 18px;

    color: #718ba2;

    font-size: 11px;
}


/* ============================================================
   FEATURES
============================================================ */

.feature-row {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 12px;

    padding:
        25px 0 15px;
}


.feature-row > div {
    display: flex;

    align-items: center;

    gap: 12px;

    padding: 17px;

    border:
        1px solid rgba(255,255,255,.07);

    border-radius: 15px;

    background:
        rgba(7,24,43,.72);
}


.feature-row b {
    width: 35px;
    height: 35px;

    display: grid;

    place-items: center;

    border-radius: 10px;

    background:
        rgba(0,217,255,.09);

    color: var(--accent);

    font-size: 17px;
}


.feature-row span {
    display: flex;

    flex-direction: column;
}


.feature-row strong {
    font-size: 10px;

    letter-spacing: .05em;
}


.feature-row small {
    margin-top: 3px;

    color: #718aa1;

    font-size: 10px;
}


/* ============================================================
   SECTIONS
============================================================ */

.content-section {
    padding-top: 60px;
}


.two-col {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 18px;
}


.panel {
    border:
        1px solid rgba(255,255,255,.08);

    border-radius: var(--radius);

    background:
        linear-gradient(
            145deg,
            rgba(9,31,57,.90),
            rgba(5,17,32,.90)
        );

    box-shadow:
        var(--shadow);

    overflow: hidden;
}


.section-head,
.section-title-row {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;
}


.section-head {
    padding: 24px 25px 0;
}


.section-title-row {
    margin-bottom: 20px;
}


.section-title-row.compact {
    margin-bottom: 17px;
}


.section-head h2,
.section-title-row h2 {
    margin:
        5px 0 0;

    font-size: 24px;

    line-height: 1.1;

    letter-spacing: -.035em;
}


.section-note {
    color: #7891a7;

    font-size: 11px;

    font-weight: 700;
}


.live-chip {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding:
        7px 10px;

    border-radius: 8px;

    background:
        rgba(32,233,139,.08);

    color: var(--success);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: .08em;
}


.live-chip i {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--success);

    box-shadow:
        0 0 9px var(--success);
}


/* ============================================================
   CURRENT SHOW
============================================================ */

.current-show {
    display: flex;

    align-items: center;

    gap: 18px;

    margin:
        20px 25px 25px;

    padding: 18px;

    border:
        1px solid rgba(255,255,255,.07);

    border-radius: 15px;

    background:
        rgba(0,217,255,.045);
}


.current-show img,
.avatar-placeholder {
    width: 75px;
    height: 75px;

    flex: 0 0 75px;

    object-fit: cover;

    border-radius: 15px;

    border:
        1px solid rgba(0,217,255,.25);
}


.avatar-placeholder {
    display: grid;

    place-items: center;

    background:
        linear-gradient(
            135deg,
            #0a3961,
            #09203b
        );

    font-size: 28px;
}


.mini-label {
    color: var(--accent);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: .1em;
}


.current-show h3 {
    margin: 5px 0 2px;

    font-size: 20px;
}


.current-show p {
    margin: 0;

    color: #8097ad;

    font-size: 12px;
}


/* ============================================================
   NEXT SHOWS
============================================================ */

.next-list {
    padding:
        20px 25px 25px;
}


.next-item {
    display: grid;

    grid-template-columns: 55px 1fr;

    gap: 13px;

    padding:
        13px 0;

    border-bottom:
        1px solid rgba(255,255,255,.06);
}


.next-item:last-child {
    border-bottom: 0;
}


.next-item time {
    color: var(--accent);

    font-size: 12px;

    font-weight: 900;
}


.next-item div {
    display: flex;

    flex-direction: column;
}


.next-item strong {
    font-size: 12px;
}


.next-item span {
    margin-top: 2px;

    color: #71899f;

    font-size: 10px;
}


/* ============================================================
   SCHEDULE
============================================================ */

.schedule-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 12px;
}


.schedule-card {
    display: grid;

    grid-template-columns:
        60px 1fr auto;

    align-items: center;

    gap: 12px;

    padding: 17px;

    border:
        1px solid rgba(255,255,255,.07);

    border-radius: 15px;

    background:
        rgba(7,25,45,.82);
}


.schedule-time {
    color: var(--accent);

    font-size: 16px;

    font-weight: 950;
}


.schedule-info {
    display: flex;

    flex-direction: column;

    min-width: 0;
}


.schedule-info strong {
    overflow: hidden;

    text-overflow: ellipsis;

    white-space: nowrap;

    font-size: 12px;
}


.schedule-info span {
    color: #71899f;

    font-size: 10px;
}


.schedule-day {
    color: #637b91;

    font-size: 9px;

    font-weight: 800;
}


/* ============================================================
   DJ'S
============================================================ */

.dj-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 14px;
}


.dj-card {
    overflow: hidden;

    border:
        1px solid rgba(255,255,255,.08);

    border-radius: 17px;

    background:
        linear-gradient(
            145deg,
            rgba(9,30,55,.94),
            rgba(4,16,30,.94)
        );

    transition:
        transform .2s ease,
        border-color .2s ease;
}


.dj-card:hover {
    transform: translateY(-4px);

    border-color:
        rgba(0,217,255,.30);
}


.dj-card img,
.dj-placeholder {
    width: 100%;
    height: 180px;

    object-fit: cover;
}


.dj-placeholder {
    display: grid;

    place-items: center;

    background:
        linear-gradient(
            135deg,
            #0b3d65,
            #071a31
        );

    font-size: 55px;
}


.dj-info {
    display: flex;

    flex-direction: column;

    padding: 16px;
}


.dj-info strong {
    font-size: 14px;
}


.dj-info span {
    margin-top: 3px;

    color: #7890a5;

    font-size: 11px;
}


/* ============================================================
   NEWS
============================================================ */

.news-list {
    display: flex;

    flex-direction: column;
}


.news-item {
    display: grid;

    grid-template-columns: 90px 1fr;

    gap: 15px;

    padding:
        17px 25px;

    border-top:
        1px solid rgba(255,255,255,.06);
}


.news-item:first-child {
    border-top: 0;
}


.news-item img,
.news-placeholder {
    width: 90px;
    height: 75px;

    object-fit: cover;

    border-radius: 12px;
}


.news-placeholder {
    display: grid;

    place-items: center;

    background:
        linear-gradient(
            135deg,
            #0b416b,
            #071b34
        );

    color: var(--accent);

    font-weight: 950;
}


.news-item time {
    color: var(--accent);

    font-size: 9px;

    font-weight: 900;
}


.news-item h3 {
    margin:
        3px 0 4px;

    font-size: 14px;
}


.news-item p {
    margin: 0;

    color: #7890a6;

    font-size: 11px;

    line-height: 1.55;
}


/* ============================================================
   STATS
============================================================ */

.stats-panel {
    padding: 25px;
}


.stat-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 10px;
}


.stat-grid > div {
    padding: 16px;

    border:
        1px solid rgba(255,255,255,.07);

    border-radius: 13px;

    background:
        rgba(0,217,255,.035);
}


.stat-grid span {
    display: block;

    color: #71899f;

    font-size: 9px;

    font-weight: 800;
}


.stat-grid strong {
    display: block;

    margin-top: 5px;

    color: var(--accent);

    font-size: 22px;
}


.stats-note {
    margin-top: 18px;

    color: #687f95;

    font-size: 10px;
}


/* ============================================================
   REQUEST
============================================================ */

.request-panel {
    display: grid;

    grid-template-columns:
        .85fr 1.15fr;

    gap: 35px;

    padding: 32px;

    border:
        1px solid rgba(0,217,255,.18);

    border-radius: 22px;

    background:
        linear-gradient(
            135deg,
            rgba(8,38,70,.94),
            rgba(4,16,30,.96)
        );

    box-shadow:
        var(--shadow);
}


.request-copy h2 {
    margin:
        7px 0 12px;

    font-size: 32px;

    letter-spacing: -.04em;
}


.request-copy p {
    margin: 0;

    color: #829ab0;

    font-size: 13px;

    line-height: 1.7;
}


.request-points {
    display: flex;

    flex-direction: column;

    gap: 8px;

    margin-top: 22px;

    color: #9bb0c2;

    font-size: 11px;

    font-weight: 700;
}


.request-form {
    display: flex;

    flex-direction: column;

    gap: 12px;
}


.form-row {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 12px;
}


.request-form label {
    display: flex;

    flex-direction: column;

    gap: 6px;

    color: #a9bed0;

    font-size: 10px;

    font-weight: 800;
}


.request-form input,
.request-form textarea,
.chat-form input {
    width: 100%;

    border:
        1px solid rgba(255,255,255,.10);

    border-radius: 10px;

    background:
        rgba(2,10,20,.72);

    color: #fff;

    outline: 0;

    padding:
        12px 13px;

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}


.request-form textarea {
    resize: vertical;
}


.request-form input:focus,
.request-form textarea:focus,
.chat-form input:focus {
    border-color:
        rgba(0,217,255,.55);

    box-shadow:
        0 0 0 3px rgba(0,217,255,.08);
}


.form-message {
    padding: 11px 13px;

    border-radius: 10px;

    font-size: 11px;
}


.form-message.success {
    color: #9ff3c9;

    background:
        rgba(32,233,139,.08);

    border:
        1px solid rgba(32,233,139,.18);
}


.form-message.error {
    color: #ffc1cc;

    background:
        rgba(255,85,117,.08);

    border:
        1px solid rgba(255,85,117,.18);
}


/* ============================================================
   CHAT
============================================================ */

.chat-panel {
    padding: 25px;

    border:
        1px solid rgba(255,255,255,.08);

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            rgba(9,31,56,.92),
            rgba(4,16,31,.94)
        );

    box-shadow:
        var(--shadow);
}


.chatbox {
    height: 280px;

    overflow-y: auto;

    padding: 8px;

    border:
        1px solid rgba(255,255,255,.07);

    border-radius: 14px;

    background:
        rgba(1,8,17,.45);
}


.chat-line {
    display: grid;

    grid-template-columns:
        auto 1fr auto;

    align-items: center;

    gap: 10px;

    padding:
        11px 10px;

    border-bottom:
        1px solid rgba(255,255,255,.05);

    font-size: 11px;
}


.chat-line:last-child {
    border-bottom: 0;
}


.chat-line strong {
    color: var(--accent);

    font-size: 10px;
}


.chat-line span {
    color: #c2d0dc;
}


.chat-line time {
    color: #62798e;

    font-size: 9px;
}


.chat-form {
    display: grid;

    grid-template-columns:
        180px 1fr auto;

    gap: 10px;

    margin-top: 12px;
}


.chat-form button {
    border: 0;
}


.chat-message {
    display: block;

    min-height: 17px;

    margin-top: 8px;

    color: #7890a5;

    font-size: 10px;
}


.empty-state {
    padding: 30px 15px;

    text-align: center;

    color: #71889d;

    font-size: 12px;
}


/* ============================================================
   CTA
============================================================ */

.cta {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    margin-top: 60px;

    padding:
        35px;

    border:
        1px solid rgba(0,217,255,.20);

    border-radius: 22px;

    background:
        linear-gradient(
            135deg,
            rgba(8,48,83,.94),
            rgba(5,18,34,.96)
        );
}


.cta h2 {
    margin:
        5px 0 5px;

    font-size: 28px;

    letter-spacing: -.035em;
}


.cta p {
    margin: 0;

    color: #829bb0;

    font-size: 12px;
}


/* ============================================================
   FOOTER
============================================================ */

.site-footer {
    margin-top: 70px;

    padding:
        28px 0 35px;

    border-top:
        1px solid rgba(255,255,255,.07);

    background:
        rgba(2,8,16,.72);
}


.footer-inner {
    display: grid;

    grid-template-columns:
        auto 1fr auto;

    align-items: center;

    gap: 25px;
}


.footer-brand {
    display: flex;

    align-items: center;

    gap: 10px;
}


.footer-brand .brand-mark {
    width: 35px;
    height: 35px;

    border-radius: 10px;

    font-size: 11px;
}


.footer-brand div {
    display: flex;

    flex-direction: column;
}


.footer-brand strong {
    font-size: 12px;
}


.footer-brand small {
    margin-top: 3px;

    color: #60788f;

    font-size: 7px;

    letter-spacing: .13em;
}


.footer-links {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 16px;
}


.footer-links a {
    color: #71899e;

    font-size: 10px;

    font-weight: 800;
}


.footer-links a:hover {
    color: #fff;
}


.footer-admin-link,
.footer-dj-link {
    color: var(--accent) !important;
}


.footer-inner > small {
    color: #526b81;

    font-size: 9px;

    text-align: right;
}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 1050px) {

    .desktop-nav {
        display: none;
    }


    .nav-live {
        margin-left: auto;
    }


    .mobile-menu {
        display: block;
    }


    .mobile-nav {
        display: flex;

        flex-direction: column;

        padding:
            8px 20px 18px;

        border-top:
            1px solid rgba(255,255,255,.06);

        background:
            rgba(3,10,20,.98);
    }


    .mobile-nav[hidden] {
        display: none;
    }


    .mobile-nav a {
        padding:
            12px 5px;

        color: #9db2c5;

        font-size: 13px;

        font-weight: 800;

        border-bottom:
            1px solid rgba(255,255,255,.05);
    }


    .hero-inner {
        grid-template-columns: 1fr;

        gap: 30px;
    }


    .hero-visual {
        display: none;
    }


    .feature-row {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .schedule-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .dj-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }


    .radio-player-show {
        display: none;
    }


    .request-panel {
        grid-template-columns: 1fr;
    }


    .footer-inner {
        grid-template-columns: 1fr;

        text-align: center;
    }


    .footer-brand {
        justify-content: center;
    }


    .footer-inner > small {
        text-align: center;
    }

}


@media (max-width: 700px) {

    .container {
        width:
            min(
                100% - 24px,
                1240px
            );
    }


    .top-strip {
        display: none;
    }


    .nav-wrap {
        min-height: 68px;
    }


    .brand-copy small {
        display: none;
    }


    .nav-live {
        padding:
            9px 11px;

        font-size: 9px;
    }


    .hero {
        min-height: 520px;
    }


    .hero-inner {
        padding:
            65px 0;
    }


    .hero h1 {
        font-size:
            clamp(43px, 13vw, 65px);
    }


    .hero p {
        font-size: 14px;
    }


    .hero-actions {
        flex-direction: column;
    }


    .hero-actions .btn {
        width: 100%;
    }


    .feature-row {
        grid-template-columns: 1fr;
    }


    .two-col {
        grid-template-columns: 1fr;
    }


    .schedule-grid {
        grid-template-columns: 1fr;
    }


    .dj-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .radio-player-brand {
        flex-wrap: wrap;
    }


    .radio-player-brand > small {
        width: 100%;
        margin-left: 0;
    }


    .radio-player-main {
        flex-wrap: wrap;

        padding:
            18px;
    }


    .radio-player-track {
        flex: 1;

        min-width: 0;
    }


    .equalizer {
        display: none;
    }


    .volume-control {
        width: 100%;
    }


    .volume-control input {
        flex: 1;

        width: auto;
    }


    .form-row {
        grid-template-columns: 1fr;
    }


    .chat-form {
        grid-template-columns: 1fr;
    }


    .cta {
        flex-direction: column;

        align-items: flex-start;

        padding: 25px;
    }


    .cta .btn {
        width: 100%;
    }


    .footer-links {
        gap: 12px;
    }

}


@media (max-width: 480px) {

    .dj-grid {
        grid-template-columns: 1fr;
    }


    .dj-card img,
    .dj-placeholder {
        height: 210px;
    }


    .stat-grid {
        grid-template-columns: 1fr;
    }


    .current-show {
        align-items: flex-start;
    }


    .news-item {
        grid-template-columns: 70px 1fr;

        padding:
            15px 18px;
    }


    .news-item img,
    .news-placeholder {
        width: 70px;
        height: 65px;
    }


    .section-head {
        padding:
            20px 18px 0;
    }


    .next-list {
        padding:
            15px 18px 20px;
    }


    .stats-panel {
        padding: 20px;
    }


    .request-panel {
        padding: 22px;
    }


    .chat-panel {
        padding: 18px;
    }

}


/* ============================================================
   ACCESSIBILITY
============================================================ */

:focus-visible {
    outline:
        2px solid var(--accent);

    outline-offset:
        3px;
}


/* ============================================================
   REDUCED MOTION
============================================================ */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;

        animation-iteration-count: 1 !important;

        scroll-behavior: auto !important;

        transition-duration: .01ms !important;
    }

}