/* Auto-extracted from index.html — MOTO Radio + nav dock */
:root {
    --ca-bar-bottom: 52px;
    --moto-strip-h: 96px;
}

/* Dock host — desktop + mobile rules from index */
        @media (min-width: 901px) {
            nav {
                justify-content: flex-start;
                gap: clamp(0.35rem, 1vw, 0.85rem);
            }
            .nav-links {
                flex: 1;
                justify-content: center;
                gap: 1.15rem;
                min-width: 0;
            }
            .nav-right {
                margin-left: auto;
                flex-shrink: 0;
            }
            .moto-radio-dock-host {
                display: none;
                align-items: center;
                flex-shrink: 1;
                min-width: 0;
                max-width: min(240px, 28vw);
            }
            html.moto-radio-docked .moto-radio-dock-host {
                display: flex;
            }
        }

        /* Mobil / tablet: dock host yalnızca kaydırınca (moto-radio-docked) görünür */
        @media (max-width: 900px) {
            .moto-radio-dock-host {
                display: none;
                flex: 1;
                min-width: 0;
                max-width: min(200px, 46vw);
                align-items: center;
                justify-content: center;
            }
            html.moto-radio-docked .moto-radio-dock-host {
                display: flex !important;
            }
        }

/* MOTO Radio strip + docked */
        /* MOTO Radio — CA altında, nav’ın altında; gürültü katmanının üstünde */
        .moto-radio-strip.moto-radio-card {
            position: fixed;
            top: var(--ca-bar-bottom);
            left: 0;
            right: 0;
            z-index: 10101;
            transform: translateZ(0);
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
            pointer-events: auto;
            padding: 4px 0.5rem 8px;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
            background: linear-gradient(180deg, rgba(6, 5, 12, 0.55) 0%, rgba(6, 5, 12, 0.15) 70%, transparent 100%);
            border-bottom: none;
            box-sizing: border-box;
        }
        .moto-radio-strip-shell {
            max-width: min(92vw, 440px);
            width: 100%;
            margin: 0 auto;
            padding: 7px 12px 9px;
            border-radius: 14px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(14, 12, 22, 0.82);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            box-shadow:
                0 4px 28px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(0, 0, 0, 0.35),
                inset 0 1px 0 rgba(255, 255, 255, 0.07);
            transition: border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
        }
        .moto-radio-card.is-live .moto-radio-strip-shell {
            border-color: rgba(57, 255, 20, 0.42);
            background: rgba(10, 18, 14, 0.88);
            box-shadow:
                0 0 0 1px rgba(57, 255, 20, 0.22),
                0 4px 32px rgba(0, 0, 0, 0.45),
                0 0 24px rgba(57, 255, 20, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.08);
        }
        .moto-radio-strip-inner {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: stretch;
            gap: 4px;
        }
        .moto-radio-strip-top {
            display: flex;
            align-items: center;
            gap: 0.45rem 0.55rem;
            width: 100%;
            flex-wrap: nowrap;
        }
        .moto-radio-strip-main {
            flex: 1;
            min-width: 0;
        }
        .moto-radio-strip-bottom {
            width: 100%;
            min-width: 0;
        }
        .moto-radio-strip-row1 {
            display: flex;
            align-items: center;
            gap: 0.3rem 0.45rem;
            flex-wrap: wrap;
            min-height: 0;
        }
        .moto-radio-brand {
            font-family: 'Bangers', Impact, sans-serif;
            font-size: clamp(0.78rem, 2.2vw, 0.95rem);
            letter-spacing: 0.08em;
            text-transform: uppercase;
            background: linear-gradient(90deg, #fff, var(--neon-green), var(--hot-pink));
            background-size: 200% 100%;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: motoRadioBrand 4s ease-in-out infinite;
            flex-shrink: 0;
        }
        @keyframes motoRadioBrand {
            0%,
            100% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
        }
        .moto-radio-lcd-mini {
            display: inline-flex;
            align-items: baseline;
            gap: 0.35rem;
            padding: 0.15rem 0.45rem 0.12rem;
            border-radius: 4px;
            background: linear-gradient(180deg, #0d1a12 0%, #050807 100%);
            border: 1px solid rgba(57, 255, 20, 0.28);
            box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.75);
            font-family: 'Share Tech Mono', ui-monospace, monospace;
            flex-shrink: 0;
        }
        .moto-radio-freq {
            font-size: clamp(0.72rem, 2vw, 0.88rem);
            color: #5dff7a;
            text-shadow: 0 0 10px rgba(57, 255, 20, 0.45);
            letter-spacing: 0.04em;
        }
        .moto-radio-fm {
            font-size: 0.45rem;
            letter-spacing: 0.16em;
            color: rgba(93, 255, 122, 0.75);
        }
        .moto-radio-listen {
            font-size: clamp(0.58rem, 1.6vw, 0.68rem);
            font-weight: 800;
            font-style: italic;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.55);
            white-space: nowrap;
            flex-shrink: 0;
        }
        .moto-radio-card.is-live .moto-radio-listen {
            color: rgba(255, 215, 0, 0.95);
            text-shadow: 0 0 12px rgba(255, 215, 0, 0.35);
        }
        /* Mobil menü barında sabit İngilizce "Listen" (i18n satırı gizlenir) */
        .moto-radio-listen-en {
            display: none;
            font-family: 'Outfit', sans-serif;
            font-weight: 800;
            font-style: italic;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            white-space: nowrap;
            flex-shrink: 0;
            color: rgba(255, 255, 255, 0.92);
            text-shadow: 0 0 14px rgba(57, 255, 20, 0.3);
        }
        .moto-radio-card.is-live .moto-radio-listen-en {
            color: rgba(255, 215, 0, 0.98);
            text-shadow: 0 0 12px rgba(255, 215, 0, 0.4);
        }
        .moto-radio-onair {
            font-size: 0.48rem;
            font-weight: 800;
            letter-spacing: 0.14em;
            padding: 0.2em 0.4em;
            border-radius: 3px;
            color: rgba(0, 0, 0, 0.85);
            background: #2a2a2a;
            opacity: 0.35;
            transition: opacity 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
            flex-shrink: 0;
        }
        .moto-radio-card.is-live .moto-radio-onair {
            opacity: 1;
            color: rgba(2, 18, 6, 0.96);
            background: linear-gradient(180deg, #7fff9a 0%, var(--neon-green) 42%, #15802e 100%);
            box-shadow:
                0 0 16px rgba(57, 255, 20, 0.75),
                0 0 32px rgba(57, 255, 20, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.45);
            animation: motoRadioOnAirPulse 0.75s ease-in-out infinite;
        }
        @keyframes motoRadioOnAirPulse {
            0%,
            100% {
                filter: brightness(1);
                box-shadow:
                    0 0 12px rgba(57, 255, 20, 0.55),
                    0 0 22px rgba(57, 255, 20, 0.28),
                    inset 0 1px 0 rgba(255, 255, 255, 0.4);
            }
            50% {
                filter: brightness(1.45);
                box-shadow:
                    0 0 22px rgba(57, 255, 20, 0.95),
                    0 0 42px rgba(57, 255, 20, 0.55),
                    inset 0 1px 0 rgba(255, 255, 255, 0.55);
            }
        }
        .moto-radio-card.is-live .moto-radio-lcd-mini {
            border-color: rgba(57, 255, 20, 0.5);
            box-shadow:
                inset 0 1px 6px rgba(0, 0, 0, 0.75),
                0 0 12px rgba(57, 255, 20, 0.2);
        }
        /* Chart / equalizer — “hit parade” vibe while playing */
        .moto-radio-chart {
            display: flex;
            align-items: flex-end;
            justify-content: flex-end;
            gap: 2px;
            height: 18px;
            flex-shrink: 0;
            padding: 0 2px;
            margin-left: auto;
        }
        .moto-radio-bar {
            width: 3px;
            border-radius: 2px;
            height: 100%;
            transform-origin: bottom center;
            transform: scaleY(0.22);
            background: linear-gradient(180deg, rgba(57, 255, 20, 0.95) 0%, rgba(255, 20, 147, 0.85) 100%);
            opacity: 0.28;
            transition: opacity 0.35s ease;
        }
        .moto-radio-card.is-live .moto-radio-bar {
            opacity: 1;
            animation: motoRadioBarHit 0.55s ease-in-out infinite alternate;
        }
        .moto-radio-card.is-live .moto-radio-bar:nth-child(1) {
            animation-delay: 0s;
            animation-duration: 0.38s;
        }
        .moto-radio-card.is-live .moto-radio-bar:nth-child(2) {
            animation-delay: 0.07s;
            animation-duration: 0.52s;
        }
        .moto-radio-card.is-live .moto-radio-bar:nth-child(3) {
            animation-delay: 0.03s;
            animation-duration: 0.44s;
        }
        .moto-radio-card.is-live .moto-radio-bar:nth-child(4) {
            animation-delay: 0.12s;
            animation-duration: 0.6s;
        }
        .moto-radio-card.is-live .moto-radio-bar:nth-child(5) {
            animation-delay: 0.05s;
            animation-duration: 0.41s;
        }
        .moto-radio-card.is-live .moto-radio-bar:nth-child(6) {
            animation-delay: 0.15s;
            animation-duration: 0.48s;
        }
        .moto-radio-card.is-live .moto-radio-bar:nth-child(7) {
            animation-delay: 0.09s;
            animation-duration: 0.55s;
        }
        .moto-radio-card.is-live .moto-radio-bar:nth-child(8) {
            animation-delay: 0.02s;
            animation-duration: 0.35s;
        }
        .moto-radio-card.is-live .moto-radio-bar:nth-child(9) {
            animation-delay: 0.11s;
            animation-duration: 0.5s;
        }
        .moto-radio-card.is-live .moto-radio-bar:nth-child(10) {
            animation-delay: 0.06s;
            animation-duration: 0.42s;
        }
        .moto-radio-card.is-live .moto-radio-bar:nth-child(11) {
            animation-delay: 0.14s;
            animation-duration: 0.58s;
        }
        .moto-radio-card.is-live .moto-radio-bar:nth-child(12) {
            animation-delay: 0.04s;
            animation-duration: 0.46s;
        }
        @keyframes motoRadioBarHit {
            0% {
                transform: scaleY(0.18);
            }
            100% {
                transform: scaleY(1);
            }
        }
        .moto-radio-btn {
            border: none;
            cursor: pointer;
            padding: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(180deg, #3a3038 0%, #151018 100%);
            color: #fff;
            box-shadow: 0 2px 0 #0a080c, 0 0 0 1px rgba(255, 255, 255, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.12);
            transition: transform 0.15s ease, box-shadow 0.15s ease;
            flex-shrink: 0;
        }
        .moto-radio-btn:focus-visible {
            outline: 2px solid var(--neon-green);
            outline-offset: 3px;
        }
        .moto-radio-btn:active {
            transform: translateY(2px);
            box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
        }
        .moto-radio-btn--play {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: linear-gradient(165deg, #4a2840 0%, #120810 100%);
            box-shadow:
                0 0 0 1px rgba(255, 20, 147, 0.35),
                0 2px 0 #0a0608,
                inset 0 1px 0 rgba(255, 255, 255, 0.12);
        }
        .moto-radio-btn--play:hover {
            box-shadow:
                0 0 0 1px rgba(57, 255, 20, 0.45),
                0 2px 0 #0a0608,
                inset 0 1px 0 rgba(255, 255, 255, 0.14);
        }
        .moto-radio-btn--play svg {
            width: 11px;
            height: 11px;
            fill: #fff;
        }
        .moto-radio-ic-pause {
            display: none;
        }
        .moto-radio-card.is-live .moto-radio-btn--play {
            box-shadow:
                0 0 0 1px rgba(57, 255, 20, 0.55),
                0 0 14px rgba(57, 255, 20, 0.25),
                0 2px 0 #0a0608,
                inset 0 1px 0 rgba(255, 255, 255, 0.12);
        }
        .moto-radio-card.is-live .moto-radio-ic-play {
            display: none;
        }
        .moto-radio-card.is-live .moto-radio-ic-pause {
            display: block;
        }
        .moto-radio-btn.h-radio-shake {
            animation: motoRadioShake 0.08s ease-in-out 4;
        }
        @keyframes motoRadioShake {
            0%,
            100% {
                transform: translateX(0);
            }
            50% {
                transform: translateX(-4px);
            }
        }
        .moto-radio-progress-wrap {
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 0;
        }
        .moto-radio-hype-lane {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            min-height: 2.5rem;
            padding: 4px 0 12px;
            pointer-events: none;
            box-sizing: border-box;
        }
        .moto-radio-card:not(.is-live) .moto-radio-hype-lane {
            min-height: 0;
            max-height: 0;
            padding: 0;
            margin: 0;
            overflow: hidden;
        }
        .moto-radio-hype-bubble {
            width: 100%;
            max-width: 100%;
            padding: 0 6px;
            box-sizing: border-box;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .moto-radio-hype-text {
            width: 100%;
            max-width: 100%;
            font-family: 'Bangers', Impact, 'Arial Black', sans-serif;
            font-size: clamp(0.62rem, 3.1vw, 0.84rem);
            font-style: normal;
            font-weight: 400;
            letter-spacing: 0.07em;
            line-height: 1.32;
            color: #fff;
            text-align: center;
            text-transform: uppercase;
            white-space: normal;
            overflow: hidden;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 2;
            line-clamp: 2;
            word-break: break-word;
            hyphens: auto;
            text-shadow:
                0 0 12px rgba(255, 20, 147, 0.95),
                0 0 20px rgba(57, 255, 20, 0.5),
                0 2px 4px rgba(0, 0, 0, 0.95);
            opacity: 0;
            transition: opacity 0.35s ease;
        }
        .moto-radio-card.is-live .moto-radio-hype-text {
            opacity: 1;
            animation: motoHypeDance 0.85s ease-in-out infinite;
        }
        @keyframes motoHypeDance {
            0%,
            100% {
                transform: translateY(0) rotate(-1.2deg);
                filter: brightness(1);
            }
            50% {
                transform: translateY(-4px) rotate(1.2deg);
                filter: brightness(1.1);
            }
        }
        .moto-radio-progress-rail {
            height: 4px;
            border-radius: 999px;
            background: rgba(0, 0, 0, 0.6);
            box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.7);
            overflow: hidden;
        }
        .moto-radio-progress-fill {
            height: 100%;
            width: 0%;
            border-radius: 999px;
            background: linear-gradient(90deg, var(--hot-pink), var(--neon-green));
            background-size: 200% 100%;
            transition: width 0.08s linear;
        }
        .moto-radio-card.is-live .moto-radio-progress-fill {
            animation: motoRadioProg 2s linear infinite;
        }
        @keyframes motoRadioProg {
            0% {
                background-position: 0% 50%;
            }
            100% {
                background-position: 200% 50%;
            }
        }
        .moto-radio-time {
            display: flex;
            justify-content: space-between;
            margin-top: 5px;
            font-size: 0.44rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            color: rgba(255, 255, 255, 0.32);
            font-variant-numeric: tabular-nums;
        }
        .moto-radio-time span:last-child {
            color: rgba(57, 255, 20, 0.5);
        }

        /* Kaydırınca radyo nav içinde — tüm genişlikler; çerçevesiz, küçük */
        html.moto-radio-docked nav {
            top: var(--ca-bar-bottom);
            margin-top: -1px;
            padding: calc(0.5rem + 1px) 1.5rem 0.5rem;
            border-top: none;
            box-shadow: none;
        }
        html.moto-radio-docked nav.scrolled {
            padding: calc(0.5rem + 1px) 1.5rem 0.5rem;
        }
        html.moto-radio-docked #motoRadioCard > audio {
            position: absolute !important;
            left: -9999px !important;
            top: 0 !important;
            width: 4px !important;
            height: 4px !important;
            opacity: 0 !important;
            pointer-events: none !important;
            margin: 0 !important;
        }
        html.moto-radio-docked #motoRadioCard.moto-radio-strip.moto-radio-card {
            position: relative !important;
            top: auto !important;
            left: auto !important;
            right: auto !important;
            width: 100% !important;
            max-width: 100%;
            z-index: 1;
            padding: 0;
            margin: 0;
            background: transparent !important;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 0;
        }
        html.moto-radio-docked .moto-radio-strip-shell {
            width: 100%;
            max-width: 100%;
            padding: 3px 8px 5px;
            border-radius: 999px;
            border: none !important;
            box-shadow: none !important;
            background: transparent !important;
            backdrop-filter: none;
            -webkit-backdrop-filter: none;
        }
        /* Masaüstü: dock’ta sadece mini kontrol; başlık/metin gizli */
        @media (min-width: 901px) {
            html.moto-radio-docked .moto-radio-brand,
            html.moto-radio-docked .moto-radio-listen,
            html.moto-radio-docked .moto-radio-listen-en,
            html.moto-radio-docked .moto-radio-hype-lane {
                display: none !important;
            }
        }
        html.moto-radio-docked .moto-radio-card:not(.is-live) .moto-radio-onair {
            display: none !important;
        }
        html.moto-radio-docked .moto-radio-card.is-live .moto-radio-onair {
            display: inline-flex !important;
            align-items: center;
            font-size: 0.46rem;
            letter-spacing: 0.12em;
            padding: 0.14em 0.42em 0.12em;
            vertical-align: middle;
            animation: motoRadioOnAirPulse 0.75s ease-in-out infinite;
        }
        html.moto-radio-docked .moto-radio-lcd-mini {
            display: inline-flex !important;
            align-items: baseline;
            gap: 0.2rem;
            padding: 0.08rem 0.32rem 0.06rem;
            border: none;
            background: rgba(0, 0, 0, 0.35);
        }
        html.moto-radio-docked .moto-radio-fm {
            display: none;
        }
        html.moto-radio-docked .moto-radio-freq {
            font-size: 0.7rem;
        }
        html.moto-radio-docked .moto-radio-strip-inner {
            gap: 2px;
            justify-content: center;
        }
        html.moto-radio-docked .moto-radio-strip-top {
            gap: 0.35rem;
        }
        html.moto-radio-docked .moto-radio-chart {
            height: 16px;
            gap: 2px;
            margin-left: 0;
        }
        html.moto-radio-docked .moto-radio-bar {
            width: 2px;
        }
        html.moto-radio-docked .moto-radio-btn--play {
            width: 30px;
            height: 30px;
        }
        html.moto-radio-docked .moto-radio-btn--play svg {
            width: 11px;
            height: 11px;
        }
        html.moto-radio-docked .moto-radio-progress-rail {
            height: 3px;
            background: rgba(0, 0, 0, 0.45);
        }
        html.moto-radio-docked .moto-radio-time {
            display: none;
        }
        html.moto-radio-docked .moto-radio-strip-bottom {
            margin-top: 0;
        }

        @media (max-width: 900px) {
            html.moto-radio-docked nav {
                padding: 0.4rem 0.55rem 0.42rem;
                justify-content: space-between;
                gap: 0.35rem;
            }
            html.moto-radio-docked nav.scrolled {
                padding: 0.38rem 0.55rem 0.4rem;
            }
            html.moto-radio-docked .moto-radio-btn--play {
                width: 28px;
                height: 28px;
            }
            html.moto-radio-docked .moto-radio-btn--play svg {
                width: 10px;
                height: 10px;
            }
            html.moto-radio-docked .moto-radio-chart {
                height: 14px;
                gap: 1px;
            }
            html.moto-radio-docked .moto-radio-bar {
                width: 2px;
            }
            html.moto-radio-docked .moto-radio-freq {
                font-size: 0.62rem;
            }
            html.moto-radio-docked .moto-radio-lcd-mini {
                padding: 0.06rem 0.26rem 0.05rem;
            }
            html.moto-radio-docked .moto-radio-progress-rail {
                height: 2px;
            }
            html.moto-radio-docked .moto-radio-listen {
                display: none !important;
            }
            html.moto-radio-docked .moto-radio-brand {
                display: inline-flex !important;
                font-size: 0.58rem;
                letter-spacing: 0.05em;
                max-width: min(38vw, 6.8rem);
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap;
            }
            html.moto-radio-docked .moto-radio-listen-en {
                display: inline-flex !important;
                align-items: center;
                font-size: 0.5rem;
                letter-spacing: 0.08em;
                margin-left: 3px;
            }
            html.moto-radio-docked .moto-radio-strip-row1 {
                gap: 0.2rem 0.35rem;
            }
            /* Hype/progress satırı menüde kapalı */
            html.moto-radio-docked .moto-radio-strip-bottom {
                display: none !important;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .moto-radio-brand,
            .moto-radio-onair,
            html.moto-radio-docked .moto-radio-card.is-live .moto-radio-onair,
            .moto-radio-progress-fill {
                animation: none !important;
            }
            .moto-radio-brand {
                -webkit-text-fill-color: rgba(255, 255, 255, 0.9);
                color: rgba(255, 255, 255, 0.9);
                background: none;
            }
            .moto-radio-chart .moto-radio-bar {
                animation: none !important;
            }
            .moto-radio-card.is-live .moto-radio-bar {
                opacity: 0.75;
                transform: scaleY(0.55);
            }
            .moto-radio-card.is-live .moto-radio-hype-text {
                animation: none !important;
                filter: none !important;
            }
        }

@media (max-width: 900px) {
            /* MOTO Radio — tablet / mobil ortak: güvenli alan, cam kart, dokunma */
            .moto-radio-strip.moto-radio-card {
                padding: 7px max(0.5rem, env(safe-area-inset-left, 0px)) 11px
                    max(0.5rem, env(safe-area-inset-right, 0px));
                background: linear-gradient(
                    180deg,
                    rgba(8, 6, 16, 0.96) 0%,
                    rgba(8, 6, 16, 0.62) 45%,
                    rgba(8, 6, 16, 0.2) 100%
                );
            }
            .moto-radio-strip-shell {
                max-width: min(calc(100vw - 1rem), 440px);
                padding: 10px 12px 12px;
                border-radius: 18px;
                border: 1px solid rgba(255, 255, 255, 0.12);
                box-shadow:
                    0 10px 36px rgba(0, 0, 0, 0.55),
                    0 0 0 1px rgba(0, 0, 0, 0.4),
                    inset 0 1px 0 rgba(255, 255, 255, 0.09);
            }
            .moto-radio-card.is-live .moto-radio-strip-shell {
                border-color: rgba(57, 255, 20, 0.45);
                box-shadow:
                    0 0 0 1px rgba(57, 255, 20, 0.28),
                    0 0 32px rgba(57, 255, 20, 0.14),
                    0 10px 36px rgba(0, 0, 0, 0.52),
                    inset 0 1px 0 rgba(255, 255, 255, 0.1);
            }
            .moto-radio-btn--play {
                width: 42px;
                height: 42px;
                min-width: 42px;
                min-height: 42px;
            }
            .moto-radio-btn--play svg {
                width: 14px;
                height: 14px;
            }
            .moto-radio-brand {
                font-size: clamp(0.82rem, 3.4vw, 0.95rem);
            }
            .moto-radio-lcd-mini {
                padding: 0.16rem 0.48rem 0.12rem;
            }
            .moto-radio-freq {
                font-size: clamp(0.76rem, 3.8vw, 0.9rem);
            }
            .moto-radio-chart {
                height: 20px;
                gap: 2px;
            }
            .moto-radio-chart .moto-radio-bar:nth-child(n + 9) {
                display: none;
            }
            .moto-radio-bar {
                width: 3px;
            }
            .moto-radio-hype-lane {
                min-height: 2.65rem;
                padding: 6px 0 12px;
            }
            .moto-radio-hype-bubble {
                padding: 0 6px;
            }
            .moto-radio-hype-text {
                font-size: clamp(0.62rem, 3.1vw, 0.8rem);
                line-height: 1.38;
            }
            .moto-radio-progress-rail {
                height: 5px;
            }
            .moto-radio-time {
                font-size: 0.5rem;
                margin-top: 6px;
            }

            /* Açılış: radyo tek satır, ince — hero üstü kalabalık olmasın */
            html:not(.moto-radio-docked) .moto-radio-strip-bottom {
                display: none !important;
            }
            html:not(.moto-radio-docked) .moto-radio-strip.moto-radio-card {
                padding: 3px max(0.45rem, env(safe-area-inset-left, 0px)) 6px
                    max(0.45rem, env(safe-area-inset-right, 0px));
                background: linear-gradient(
                    180deg,
                    rgba(8, 6, 16, 0.78) 0%,
                    rgba(8, 6, 16, 0.35) 55%,
                    transparent 100%
                );
            }
            html:not(.moto-radio-docked) .moto-radio-strip-shell {
                max-width: min(calc(100vw - 0.65rem), 400px);
                padding: 5px 9px 6px;
                border-radius: 11px;
                box-shadow: 0 3px 18px rgba(0, 0, 0, 0.42);
            }
            html:not(.moto-radio-docked) .moto-radio-card.is-live .moto-radio-strip-shell {
                box-shadow:
                    0 0 0 1px rgba(57, 255, 20, 0.22),
                    0 2px 16px rgba(57, 255, 20, 0.08),
                    0 3px 18px rgba(0, 0, 0, 0.4);
            }
            html:not(.moto-radio-docked) .moto-radio-strip-inner {
                gap: 0;
            }
            html:not(.moto-radio-docked) .moto-radio-chart {
                display: none !important;
            }
            html:not(.moto-radio-docked) .moto-radio-btn--play {
                width: 34px;
                height: 34px;
                min-width: 34px;
                min-height: 34px;
            }
            html:not(.moto-radio-docked) .moto-radio-btn--play svg {
                width: 11px;
                height: 11px;
            }
            html:not(.moto-radio-docked) .moto-radio-brand {
                font-size: clamp(0.74rem, 3.1vw, 0.88rem);
            }
            html:not(.moto-radio-docked) .moto-radio-lcd-mini {
                padding: 0.1rem 0.38rem 0.08rem;
            }
            html:not(.moto-radio-docked) .moto-radio-freq {
                font-size: clamp(0.7rem, 3.4vw, 0.82rem);
            }

            /* Mobil açılış: CA altında tam genişlik tek “uzun bar” */
            html:not(.moto-radio-docked) .moto-radio-strip.moto-radio-card {
                padding-left: 0 !important;
                padding-right: 0 !important;
                background: linear-gradient(
                    180deg,
                    rgba(12, 10, 22, 0.95) 0%,
                    rgba(12, 10, 22, 0.72) 55%,
                    rgba(12, 10, 22, 0.35) 100%
                ) !important;
            }
            html:not(.moto-radio-docked) .moto-radio-strip-shell {
                max-width: 100% !important;
                width: 100%;
                border-radius: 0 !important;
                border-left: none !important;
                border-right: none !important;
                padding-left: max(14px, env(safe-area-inset-left, 0px)) !important;
                padding-right: max(14px, env(safe-area-inset-right, 0px)) !important;
            }
}

@media (max-width: 600px) {
            .moto-radio-strip.moto-radio-card {
                padding: 9px max(0.35rem, env(safe-area-inset-left, 0px)) 14px
                    max(0.35rem, env(safe-area-inset-right, 0px));
            }
            html:not(.moto-radio-docked) .moto-radio-strip.moto-radio-card {
                padding: 3px 0 6px 0 !important;
            }
            .moto-radio-strip-shell {
                padding: 11px 13px 13px;
                border-radius: 22px;
                max-width: min(calc(100vw - 0.7rem), 100%);
                width: 100%;
            }
            html:not(.moto-radio-docked) .moto-radio-strip-shell {
                padding: 6px max(12px, env(safe-area-inset-left, 0px)) 7px
                    max(12px, env(safe-area-inset-right, 0px)) !important;
                border-radius: 0 !important;
                max-width: 100% !important;
                width: 100%;
                border-left: none !important;
                border-right: none !important;
            }
            .moto-radio-strip-inner {
                gap: 6px;
            }
            .moto-radio-strip-top {
                flex-wrap: nowrap;
                align-items: center;
                gap: 0.4rem;
            }
            .moto-radio-strip-row1 {
                gap: 0.22rem 0.32rem;
            }
            .moto-radio-listen {
                display: none;
            }
            .moto-radio-chart {
                display: flex;
                height: 19px;
                gap: 2px;
                margin-left: auto;
                padding: 0 1px;
            }
            html:not(.moto-radio-docked) .moto-radio-chart {
                display: none !important;
            }
            .moto-radio-chart .moto-radio-bar:nth-child(n + 7) {
                display: none;
            }
            .moto-radio-bar {
                width: 3px;
                border-radius: 2px;
            }
            .moto-radio-btn--play {
                width: 46px;
                height: 46px;
                min-width: 46px;
                min-height: 46px;
            }
            html:not(.moto-radio-docked) .moto-radio-btn--play {
                width: 32px;
                height: 32px;
                min-width: 32px;
                min-height: 32px;
            }
            .moto-radio-btn--play svg {
                width: 16px;
                height: 16px;
            }
            html:not(.moto-radio-docked) .moto-radio-btn--play svg {
                width: 11px;
                height: 11px;
            }
            .moto-radio-lcd-mini {
                padding: 0.2rem 0.52rem 0.15rem;
            }
            .moto-radio-freq {
                font-size: clamp(0.8rem, 4.2vw, 0.92rem);
            }
            .moto-radio-onair {
                font-size: 0.52rem;
                padding: 0.3em 0.48em;
            }
            .moto-radio-hype-lane {
                min-height: 2.75rem;
                padding: 8px 0 12px;
            }
            .moto-radio-hype-bubble {
                background: rgba(0, 0, 0, 0.32);
                border-radius: 12px;
                padding: 7px 10px;
                border: 1px solid rgba(255, 255, 255, 0.06);
            }
            .moto-radio-hype-text {
                font-size: clamp(0.64rem, 3.5vw, 0.8rem);
                letter-spacing: 0.06em;
                line-height: 1.4;
            }
            .moto-radio-progress-rail {
                height: 5px;
            }
            .moto-radio-time {
                font-size: 0.52rem;
                margin-top: 8px;
                letter-spacing: 0.14em;
            }
}

@media (max-width: 380px) {
            .moto-radio-fm { display: none; }
            .moto-radio-strip-shell {
                padding: 9px 10px 11px;
                border-radius: 18px;
            }
            html:not(.moto-radio-docked) .moto-radio-strip-shell {
                border-radius: 0 !important;
                max-width: 100% !important;
            }
            .moto-radio-btn--play {
                width: 44px;
                height: 44px;
                min-width: 44px;
                min-height: 44px;
            }
            html:not(.moto-radio-docked) .moto-radio-btn--play {
                width: 30px;
                height: 30px;
                min-width: 30px;
                min-height: 30px;
            }
            .moto-radio-btn--play svg {
                width: 15px;
                height: 15px;
            }
            html:not(.moto-radio-docked) .moto-radio-btn--play svg {
                width: 10px;
                height: 10px;
            }
            .moto-radio-chart {
                height: 17px;
            }
            html:not(.moto-radio-docked) .moto-radio-chart {
                display: none !important;
            }
            .moto-radio-chart .moto-radio-bar:nth-child(n + 6) {
                display: none;
            }
            .moto-radio-hype-text {
                font-size: clamp(0.58rem, 3.8vw, 0.74rem);
}

