/* =========================================================
   STREFA DOBREJ MUZY — GŁÓWNY STYLES.CSS
   PC + MOBILE
   ========================================================= */

* {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    background: #03080d;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;

    background:
        radial-gradient(circle at 10% 25%, rgba(0, 190, 255, .07), transparent 30%),
        radial-gradient(circle at 85% 45%, rgba(0, 190, 255, .04), transparent 30%),
        linear-gradient(135deg, #06131a 0%, #02070c 48%, #020509 100%);

    color: #fff;

    font-family: "Inter", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
}

img,
iframe,
video {
    max-width: 100%;
}

button,
input {
    font: inherit;
}


/* =========================================================
   LINKI
   ========================================================= */

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


/* =========================================================
   GŁÓWNY KONTENER
   ========================================================= */

main {
    width: 100%;
}

.topbar,
.hero,
.about,
.presenters-section,
footer {
    width: min(1150px, calc(100% - 40px));
    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   TOPBAR
   ========================================================= */

.topbar {
    min-height: 74px;

    display: flex;
    align-items: center;

    border-bottom: 1px solid rgba(255,255,255,.07);

    gap: 25px;
}

.brand {
    display: flex;
    align-items: center;

    width: 100px;
    flex-shrink: 0;
}

.brand img {
    display: block;
    width: 82px;
    height: auto;
    object-fit: contain;
}

.topbar nav {
    margin-left: auto;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 30px;
}

.topbar nav a {
    color: #b9c7d8;

    font-size: 13px;
    font-weight: 700;

    transition:
        color .2s ease,
        transform .2s ease;
}

.topbar nav a:hover {
    color: #20d5ff;
    transform: translateY(-1px);
}

.live-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 7px 14px;

    border: 1px solid rgba(0,220,170,.35);
    border-radius: 20px;

    color: #28e9a7;

    font-size: 11px;
    font-weight: 800;

    white-space: nowrap;

    background: rgba(0,220,170,.04);
}

.live-pill i {
    display: block;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #29e9a7;

    box-shadow: 0 0 10px rgba(41,233,167,.8);
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    min-height: 780px;

    display: grid;
    grid-template-columns: minmax(0, 580px) minmax(300px, 1fr);

    align-items: center;

    gap: 80px;

    padding: 55px 0 70px;
}

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

.eyebrow {
    margin-bottom: 12px;

    color: #20d5ff;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: .8px;
    text-transform: uppercase;
}

.hero h1 {
    margin: 0;

    color: #f7fbff;

    font-family: "Space Grotesk", "Inter", Arial, sans-serif;

    font-size: clamp(55px, 6vw, 78px);
    font-weight: 500;

    line-height: .94;
    letter-spacing: -3px;
}

.hero h1 strong {
    color: #20d5ff;
    font-weight: 700;
}

.lead {
    max-width: 560px;

    margin: 25px 0 30px;

    color: #8195ad;

    font-size: 16px;
    line-height: 1.6;
}


/* =========================================================
   GRAFIKA PO PRAWEJ
   ========================================================= */

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 0;
}

.visual-frame {
    position: relative;

    width: min(410px, 100%);
    aspect-ratio: 1 / 1;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    border: 1px solid rgba(0,190,255,.30);
    border-radius: 30px;

    background:
        radial-gradient(circle, rgba(0,170,255,.09), transparent 50%),
        #060c14;

    box-shadow:
        inset 0 0 50px rgba(0,170,255,.035),
        0 20px 70px rgba(0,0,0,.25);
}

.visual-frame img {
    position: relative;
    z-index: 2;

    width: 78%;
    height: auto;

    object-fit: contain;
}

.orb {
    position: absolute;

    width: 250px;
    height: 250px;

    border: 1px solid rgba(0,200,255,.16);
    border-radius: 50%;

    box-shadow:
        0 0 50px rgba(0,180,255,.06),
        inset 0 0 40px rgba(0,180,255,.03);
}


/* =========================================================
   RADIO PLAYER
   ========================================================= */

.radio-player {
    position: relative;

    width: 100%;

    overflow: hidden;

    border: 1px solid rgba(0,190,255,.35);
    border-radius: 20px;

    background:
        linear-gradient(145deg, #09131e, #060c14);

    box-shadow:
        0 20px 50px rgba(0,0,0,.30),
        inset 0 1px rgba(255,255,255,.025);
}

.player-head {
    min-height: 58px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 18px;

    border-bottom: 1px solid rgba(255,255,255,.07);
}

.station {
    display: flex;
    align-items: center;

    gap: 13px;

    min-width: 0;
}

.station b {
    display: flex;
    align-items: center;

    gap: 7px;

    color: #28e9a7;

    font-size: 10px;
    font-weight: 800;

    white-space: nowrap;
}

.station b span {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #28e9a7;

    box-shadow: 0 0 8px rgba(40,233,167,.8);
}

.station em {
    color: #7890aa;

    font-size: 10px;
    font-style: normal;
    font-weight: 700;

    letter-spacing: .7px;

    white-space: nowrap;
}

.online {
    color: #28e9a7;

    font-size: 10px;
    font-weight: 800;

    white-space: nowrap;
}


/* =========================================================
   ZAWARTOŚĆ PLAYERA
   ========================================================= */

.player-content {
    display: grid;

    grid-template-columns: 180px minmax(0, 1fr);

    gap: 25px;

    padding: 25px 22px 20px;
}

.disc-area {
    display: flex;
    align-items: center;
    justify-content: center;
}

.disc {
    position: relative;

    width: 150px;
    height: 150px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(0,190,255,.18);
    border-radius: 50%;

    background:
        radial-gradient(circle,
            #091522 0 28%,
            #050a10 29% 45%,
            #07121c 46% 100%);

    box-shadow:
        0 0 0 8px rgba(0,0,0,.2),
        0 0 0 9px rgba(0,180,255,.08),
        0 0 35px rgba(0,170,255,.12);
}

.disc::before {
    content: "";

    position: absolute;

    inset: 13px;

    border: 1px solid rgba(0,190,255,.12);
    border-radius: 50%;
}

.disc-center {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;
}

#playButton {
    width: 58px;
    height: 58px;

    border: 0;
    border-radius: 50%;

    color: #fff;

    cursor: pointer;

    background:
        radial-gradient(circle at 35% 30%, #29dfff, #069ed1 70%);

    box-shadow:
        0 0 20px rgba(0,190,255,.45),
        inset 0 1px rgba(255,255,255,.35);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

#playButton:hover {
    transform: scale(1.06);

    box-shadow:
        0 0 30px rgba(0,210,255,.65),
        inset 0 1px rgba(255,255,255,.35);
}

#playIcon {
    font-size: 22px;
    line-height: 1;
}


/* =========================================================
   DATA AREA
   ========================================================= */

.data-area {
    min-width: 0;
}

.song-row {
    min-width: 0;

    padding-bottom: 16px;

    border-bottom: 1px solid rgba(255,255,255,.07);
}

.label {
    margin-bottom: 6px;

    color: #7e91a7;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .8px;
}

.label.blue {
    color: #20d5ff;
}

.text-window {
    width: 100%;
    min-width: 0;

    overflow: hidden !important;

    white-space: nowrap !important;
}

.text-window strong {
    display: inline-block;

    color: #f1f7fb;

    font-size: 14px;
    font-weight: 700;

    white-space: nowrap;
}


/* =========================================================
   DANE DJ / AUDYCJA / SŁUCHACZE
   ========================================================= */

.data-row {
    display: grid;

    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 72px;

    gap: 9px;

    margin-top: 14px;
}

.data-box {
    min-width: 0;

    min-height: 72px;

    padding: 11px;

    overflow: hidden;

    border: 1px solid rgba(255,255,255,.06);
    border-radius: 10px;

    background: rgba(255,255,255,.025);
}

.data-box strong {
    color: #edf5fa;

    font-size: 12px;
}

.listeners-box {
    text-align: center;
}

.listeners-box strong {
    display: block;

    margin-top: 7px;

    font-size: 16px;
}


/* =========================================================
   KONTROLKI
   ========================================================= */

.controls {
    display: flex;
    align-items: center;

    gap: 8px;

    margin-top: 15px;
}

.play-btn,
.mute-btn {
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 9px;

    color: #dce8ef;

    background: #101923;

    cursor: pointer;

    transition:
        background .2s ease,
        border-color .2s ease;
}

.play-btn {
    height: 36px;

    padding: 0 13px;

    font-size: 11px;
    font-weight: 700;
}

.mute-btn {
    width: 36px;
    height: 36px;

    padding: 0;
}

.play-btn:hover,
.mute-btn:hover {
    border-color: rgba(0,190,255,.3);

    background: #142432;
}

#volume {
    width: 85px;

    accent-color: #20d5ff;

    cursor: pointer;
}

#status {
    margin-left: auto;

    color: #64778b;

    font-size: 10px;

    white-space: nowrap;
}


/* =========================================================
   EQUALIZER
   ========================================================= */

.equalizer {
    position: absolute;

    left: 22px;
    bottom: 17px;

    height: 30px;

    display: flex;
    align-items: flex-end;

    gap: 3px;
}

.equalizer i {
    display: block;

    width: 3px;

    border-radius: 2px;

    background: #0ba9d0;

    opacity: .8;
}

.equalizer i:nth-child(1)  { height: 8px; }
.equalizer i:nth-child(2)  { height: 13px; }
.equalizer i:nth-child(3)  { height: 22px; }
.equalizer i:nth-child(4)  { height: 17px; }
.equalizer i:nth-child(5)  { height: 28px; }
.equalizer i:nth-child(6)  { height: 19px; }
.equalizer i:nth-child(7)  { height: 11px; }
.equalizer i:nth-child(8)  { height: 25px; }
.equalizer i:nth-child(9)  { height: 16px; }
.equalizer i:nth-child(10) { height: 23px; }
.equalizer i:nth-child(11) { height: 12px; }
.equalizer i:nth-child(12) { height: 20px; }
.equalizer i:nth-child(13) { height: 9px; }


/* =========================================================
   ANIMACJE NAPISÓW
   ========================================================= */

@keyframes sdmSongMove {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-20px);
    }

    50% {
        transform: translateX(0);
    }

    75% {
        transform: translateX(-20px);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes sdmDJMove {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-15px);
    }

    50% {
        transform: translateX(0);
    }

    75% {
        transform: translateX(-15px);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes sdmShowMove {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-20px);
    }

    50% {
        transform: translateX(0);
    }

    75% {
        transform: translateX(-20px);
    }

    100% {
        transform: translateX(0);
    }
}


/* =========================================================
   AVATAR
   ========================================================= */

#radio .avatar-full {
    width: 72px;
    height: 72px;

    border-radius: 50%;
    overflow: hidden;

    position: relative;

    box-sizing: border-box;
}

#radio .avatar-full iframe {
    position: absolute;

    left: 2px;
    top: 2px;

    width: 300px !important;
    height: 300px !important;

    max-width: none !important;
    max-height: none !important;

    border: 0;

    transform: scale(.2266667);
    transform-origin: top left;
}


/* =========================================================
   AVATAR — POZYCJA
   ========================================================= */

#radio .avatar-fixed {
    position: absolute !important;

    top: 18px !important;
    right: 18px !important;
    left: auto !important;
    bottom: auto !important;

    z-index: 20 !important;

    margin: 0 !important;
}

#radio .avatar-fixed > span {
    display: none !important;
}


/* =========================================================
   AVATAR — ANIMACJA
   ========================================================= */

@keyframes sdmAvatarPulse {
    0%, 100% {
        transform: scale(.2266667);
    }

    50% {
        transform: scale(.231);
    }
}

#radio.sdm-playing .avatar-full iframe,
#radio.playing .avatar-full iframe {
    animation:
        sdmAvatarPulse
        2s
        ease-in-out
        infinite;
}


/* =========================================================
   O NAS
   ========================================================= */

.about {
    padding: 40px 0 70px;
}

.section-head {
    margin-bottom: 25px;
}

.about h2 {
    margin: 0;

    color: #f5f9fc;

    font-family: "Space Grotesk", "Inter", Arial, sans-serif;

    font-size: 34px;
    line-height: 1.1;
}

.about-box {
    padding: 25px;

    border: 1px solid rgba(0,190,255,.20);
    border-radius: 16px;

    background:
        linear-gradient(145deg, #080f17, #050a10);
}

.about-box p {
    margin: 0;

    color: #9aabbb;

    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   PARTNERZY
   ========================================================= */

.presenters-section {
    padding-bottom: 50px;
}

.sdm-partners {
    width: 100% !important;
    max-width: 900px !important;

    margin: 30px auto !important;
    padding: 20px 25px 25px !important;

    box-sizing: border-box !important;

    text-align: center !important;

    background: #080d15 !important;

    border: 1px solid rgba(0,190,255,.35) !important;
    border-radius: 16px !important;
}

.sdm-partners-title {
    display: inline-block !important;

    margin: 0 auto 18px !important;
    padding: 8px 18px !important;

    background: #080f18 !important;

    border: 1px solid rgba(0,190,255,.4) !important;
    border-radius: 9px !important;

    color: #20d5ff !important;

    font-size: 12px !important;
    font-weight: 800 !important;

    letter-spacing: .8px !important;
}


/* =========================================================
   POZDROWIENIA
   ========================================================= */

.pozdrawienia-section {
    width: 100%;
    box-sizing: border-box;

    padding: 20px 0;
    margin: 0;
}

.pozdrawienia-box {
    width: 575px;
    max-width: 100%;

    margin: 0 auto;

    box-sizing: border-box;

    border: 0;
    border-radius: 0;

    background: transparent;

    box-shadow: none;
}

.pozdrawienia-header {
    padding: 0;
    margin: 0 0 8px;

    color: #20d5ff;

    font-family: Inter, sans-serif;
    font-size: 11px;
    font-weight: 800;

    letter-spacing: .7px;
}

.pozdrawienia-text {
    width: 100%;
    min-height: 20px;

    padding: 0;
    margin: 0;

    color: #fff;

    font-family: Inter, sans-serif;
    font-size: 14px;
    line-height: 1.4;
}


/* =========================================================
   FOOTER
   ========================================================= */

footer {
    padding: 25px 0 35px;

    border-top: 1px solid rgba(255,255,255,.06);

    color: #607386;

    font-size: 11px;
    text-align: center;
}

footer span {
    margin-left: 8px;
    color: #20d5ff;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 900px) {

    .hero {
        grid-template-columns: 1fr;

        gap: 40px;

        padding-top: 40px;
    }

    .hero-visual {
        order: -1;
    }

    .visual-frame {
        width: min(360px, 90vw);
    }
}


@media (max-width: 700px) {

    html,
    body {
        width: 100%;
        min-width: 0;

        background:
            radial-gradient(circle at 50% 0%, rgba(0,190,255,.08), transparent 35%),
            #03080d;
    }

    .topbar,
    .hero,
    .about,
    .presenters-section,
    footer {
        width: calc(100% - 24px);
    }


    /* -------------------------
       MENU
       ------------------------- */

    .topbar {
        min-height: auto;

        padding: 14px 0;

        display: grid;

        grid-template-columns: 1fr auto;

        gap: 10px;
    }

    .brand {
        width: 75px;
    }

    .brand img {
        width: 70px;
    }

    .topbar nav {
        grid-column: 1 / -1;
        grid-row: 2;

        width: 100%;

        margin: 0;

        display: flex;
        flex-wrap: wrap;

        justify-content: center;

        gap: 8px 14px;

        padding-top: 8px;
    }

    .topbar nav a {
        font-size: 11px;
    }

    .live-pill {
        font-size: 9px;
        padding: 6px 10px;
    }


    /* -------------------------
       HERO
       ------------------------- */

    .hero {
        display: flex;
        flex-direction: column;

        align-items: stretch;

        gap: 28px;

        padding: 25px 0 45px;

        min-height: 0;
    }

    .hero-visual {
        order: -1;

        width: 100%;
    }

    .visual-frame {
        width: min(100%, 330px);

        margin: 0 auto;

        border-radius: 22px;
    }

    .visual-frame img {
        width: 82%;
    }

    .orb {
        width: 200px;
        height: 200px;
    }

    .hero h1 {
        font-size: clamp(43px, 14vw, 60px);

        letter-spacing: -2px;
    }

    .lead {
        margin-top: 18px;

        font-size: 14px;
    }


    /* -------------------------
       PLAYER
       ------------------------- */

    .radio-player {
        border-radius: 16px;
    }

    .player-head {
        min-height: 50px;

        padding: 0 13px;
    }

    .station {
        gap: 8px;
    }

    .station em {
        display: none;
    }

    .station b,
    .online {
        font-size: 9px;
    }

    .player-content {
        display: flex;
        flex-direction: column;

        gap: 20px;

        padding: 20px 15px 55px;
    }

    .disc-area {
        order: 1;
    }

    .data-area {
        order: 2;

        width: 100%;
    }

    .disc {
        width: 125px;
        height: 125px;
    }

    #playButton {
        width: 52px;
        height: 52px;
    }

    #radio .avatar-fixed {
        top: 14px !important;
        right: 14px !important;
    }

    #radio .avatar-full {
        width: 60px !important;
        height: 60px !important;

        min-width: 60px !important;
        min-height: 60px !important;

        max-width: 60px !important;
        max-height: 60px !important;
    }

    #radio .avatar-full iframe {
        transform: scale(.1866667) !important;
    }


    /* -------------------------
       DANE
       ------------------------- */

    .song-row {
        padding-bottom: 13px;
    }

    .text-window strong {
        font-size: 13px;
    }

    .data-row {
        grid-template-columns: 1fr 1fr;

        gap: 8px;
    }

    .data-box {
        min-height: 65px;

        padding: 9px;
    }

    .listeners-box {
        grid-column: 1 / -1;

        text-align: left;
    }

    .listeners-box strong {
        display: inline-block;

        margin-left: 5px;
    }


    /* -------------------------
       KONTROLKI
       ------------------------- */

    .controls {
        flex-wrap: wrap;

        margin-top: 12px;
    }

    .play-btn {
        flex: 1 1 auto;
    }

    #volume {
        width: 90px;
    }

    #status {
        width: 100%;

        margin: 2px 0 0;

        text-align: center;
    }


    /* -------------------------
       EQUALIZER
       ------------------------- */

    .equalizer {
        left: 15px;
        bottom: 16px;
    }


    /* -------------------------
       O NAS
       ------------------------- */

    .about {
        padding: 20px 0 40px;
    }

    .about h2 {
        font-size: 28px;
    }

    .about-box {
        padding: 18px;
    }

    .about-box p {
        font-size: 13px;
    }


    /* -------------------------
       PARTNERZY
       ------------------------- */

    .sdm-partners {
        padding: 15px !important;

        border-radius: 14px !important;
    }

    .sdm-partners-row {
        flex-wrap: wrap !important;
    }
}


/* =========================================================
   BARDZO MAŁE TELEFONY
   ========================================================= */

@media (max-width: 420px) {

    .topbar,
    .hero,
    .about,
    .presenters-section,
    footer {
        width: calc(100% - 18px);
    }

    .hero h1 {
        font-size: 42px;
    }

    .player-content {
        padding-left: 11px;
        padding-right: 11px;
    }

    .data-row {
        grid-template-columns: 1fr;
    }

    .listeners-box {
        grid-column: auto;
    }

    .controls {
        gap: 6px;
    }

    .play-btn {
        font-size: 10px;
    }

    #volume {
        width: 75px;
    }
}

/* ===== AVATAR DJ - POPRAWKA ===== */

#radio .avatar-fixed {
    top: 55px !important;
    right: 18px !important;
    left: auto !important;
    bottom: auto !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;

    width: 100px !important;
    height: auto !important;

    z-index: 50 !important;
}

/* okrągła ramka avatara */
#radio .avatar-fixed .avatar-full {
    width: 82px !important;
    height: 82px !important;

    min-width: 82px !important;
    min-height: 82px !important;

    border-radius: 50% !important;

    padding: 3px !important;

    overflow: hidden !important;

    border: 2px solid #20d5ff !important;

    box-sizing: border-box !important;

    background: #06121c !important;

    box-shadow:
        0 0 8px rgba(32,213,255,.45),
        0 0 18px rgba(32,213,255,.18) !important;
}

/* napis pod avatarem */
#radio .avatar-fixed > span {
    display: block !important;

    margin-top: 7px !important;

    width: max-content !important;

    color: #20d5ff !important;

    font-size: 9px !important;
    font-weight: 800 !important;

    letter-spacing: .5px !important;

    text-shadow: 0 0 6px rgba(32,213,255,.4) !important;
}

#radio .listeners-box{
    min-width:0 !important;
    width:auto !important;
    flex:1 1 0 !important;
    box-sizing:border-box !important;
}

#radio .listeners-box .label{
    white-space:nowrap !important;
    text-align:center !important;
    font-size:9px !important;
}

#radio .listeners-box #listeners{
    display:block !important;
    width:100% !important;
    text-align:center !important;
    margin-top:8px !important;
    font-size:22px !important;
    font-weight:800 !important;
}

.online-frame {
    width: 500px;
    margin: 12px auto 0;
    padding: 8px;
    box-sizing: border-box;

    border: 1px solid #123b4a;
    border-radius: 10px;

    background: #080f18;

    display: flex;
    justify-content: center;
    align-items: center;

    overflow: hidden;
}

.online-frame iframe {
    display: block;
    width: 500px;
    max-width: 100%;
    height: 20px;
    border: 0;
}

.pozdrawienia-box {
    width: 575px !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 14px 18px !important;
    box-sizing: border-box !important;

    border: 1px solid rgba(0,190,255,.35) !important;
    border-radius: 10px !important;

    background: linear-gradient(135deg,#07121b,#0b1d29) !important;

    box-shadow:
        0 0 10px rgba(32,213,255,.18),
        inset 0 0 12px rgba(32,213,255,.04) !important;
}

.pozdrawienia-header {
    margin-bottom: 8px !important;
    text-align: center !important;
    color: #20d5ff !important;
}

.pozdrawienia-text {
    text-align: center !important;
    color: #20d5ff !important;
}

.next-show-box {
    display: block !important;
    width: 575px !important;
    max-width: 100% !important;
    min-height: 60px !important;

    margin: 14px auto !important;
    padding: 14px 20px !important;

    box-sizing: border-box !important;

    border: 1px solid #07536b !important;
    border-radius: 12px !important;

    background: #07131c !important;

    box-shadow: 0 0 12px rgba(0, 200, 255, .18) !important;

    text-align: center !important;
}

.next-show-title {
    display: block !important;

    margin: 0 0 8px 0 !important;
    padding: 0 !important;

    color: #20d5ff !important;

    font-size: 12px !important;
    font-weight: 800 !important;
}

.next-show-box #nextShow {
    display: block !important;

    color: #fff !important;

    font-size: 14px !important;
    font-weight: 700 !important;

    line-height: 1.5 !important;
}


/* =========================================================
   SDM — ANIMOWANE NAPISY + PODŚWIETLENIE SŁUCHACZY
   ========================================================= */

/* Płynny ruch długich napisów */
#radio .song-row .text-window strong.sdm-moving {
    animation: sdmSongMove 8s ease-in-out infinite !important;
    will-change: transform;
}

#radio .dj-box .text-window strong.sdm-moving {
    animation: sdmDJMove 6s ease-in-out infinite !important;
    will-change: transform;
}

#radio .show-box .text-window strong.sdm-moving {
    animation: sdmShowMove 8s ease-in-out infinite !important;
    will-change: transform;
}

/* Mocne, ale eleganckie podświetlenie liczby słuchaczy */
#radio .listeners-box #listeners {
    position: relative;
    display: block !important;
    width: 100% !important;
    margin-top: 8px !important;
    text-align: center !important;

    color: #ffffff !important;
    font-size: 22px !important;
    font-weight: 900 !important;
    line-height: 1.1;

    text-shadow:
        0 0 5px rgba(255,255,255,.95),
        0 0 12px rgba(180,60,255,.95),
        0 0 25px rgba(150,30,255,.75);

    animation: sdmListenersGlow 1.7s ease-in-out infinite;
    will-change: transform, text-shadow;
}

/* Delikatna poświata całego boxa */
#radio .listeners-box {
    border-color: rgba(170,60,255,.35) !important;
    box-shadow:
        inset 0 0 18px rgba(150,40,255,.045),
        0 0 14px rgba(150,40,255,.06);
    transition: border-color .3s ease, box-shadow .3s ease;
}

#radio.playing .listeners-box {
    border-color: rgba(190,70,255,.55) !important;
    box-shadow:
        inset 0 0 22px rgba(150,40,255,.08),
        0 0 22px rgba(150,40,255,.12);
}

@keyframes sdmListenersGlow {
    0%, 100% {
        transform: scale(1);
        text-shadow:
            0 0 5px rgba(255,255,255,.95),
            0 0 12px rgba(180,60,255,.85),
            0 0 25px rgba(150,30,255,.60);
    }

    50% {
        transform: scale(1.10);
        text-shadow:
            0 0 6px rgba(255,255,255,1),
            0 0 16px rgba(210,90,255,1),
            0 0 34px rgba(160,30,255,.95),
            0 0 48px rgba(120,20,255,.55);
    }
}

@media (prefers-reduced-motion: reduce) {
    #radio .song-row .text-window strong.sdm-moving,
    #radio .dj-box .text-window strong.sdm-moving,
    #radio .show-box .text-window strong.sdm-moving,
    #radio .listeners-box #listeners {
        animation: none !important;
    }
}

/* PODŚWIETLENIE LICZBY SŁUCHACZY */
#radio .listeners-box #listeners {
    display: block !important;
    text-align: center !important;
    color: #fff !important;
    font-size: 22px !important;
    font-weight: 900 !important;

    text-shadow:
        0 0 5px #fff,
        0 0 12px #b43cff,
        0 0 25px #9b20ff,
        0 0 40px #7615ff;

    animation: listenersGlow 1.6s ease-in-out infinite;
}

#radio .listeners-box {
    border-color: rgba(180, 60, 255, .55) !important;
    box-shadow:
        0 0 15px rgba(150, 40, 255, .15),
        inset 0 0 20px rgba(150, 40, 255, .06);
}

@keyframes listenersGlow {
    0%, 100% {
        transform: scale(1);
        text-shadow:
            0 0 5px #fff,
            0 0 12px #b43cff,
            0 0 25px #9b20ff;
    }

    50% {
        transform: scale(1.1);
        text-shadow:
            0 0 7px #fff,
            0 0 18px #d06cff,
            0 0 35px #a020ff,
            0 0 50px #7615ff;
    }
}