/* Lean-back Desi Radio surface; existing Music product styles remain separate. */
:root {
    color-scheme: dark;
    --radio-bg: #120f0d;
    --radio-panel: #1d1814;
    --radio-border: rgba(255, 255, 255, 0.12);
    --radio-text: #fffaf5;
    --radio-muted: #bfb4aa;
    --radio-accent: #ff8a1f;
    --radio-accent-strong: #f26a12;
}

* { box-sizing: border-box; }

html, body { min-height: 100%; }

body {
    margin: 0;
    background: var(--radio-bg);
    color: var(--radio-text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a { color: inherit; }

.radio-header,
.radio-footer {
    width: min(100% - 32px, 1040px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.radio-header {
    min-height: 76px;
    border-bottom: 1px solid var(--radio-border);
}

.radio-home-link {
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 850;
    letter-spacing: -0.04em;
}

.radio-brand-america { color: var(--radio-text); }
.radio-brand-desi { color: var(--radio-accent); }

.radio-section-name,
.radio-footer {
    color: var(--radio-muted);
    font-size: 0.82rem;
    font-weight: 650;
}

.radio-main {
    min-height: calc(100vh - 148px);
    min-height: calc(100svh - 148px);
    display: grid;
    place-items: center;
    padding: 48px 16px 64px;
}

.radio-player {
    width: min(100%, 660px);
    padding: clamp(28px, 6vw, 56px);
    background: var(--radio-panel);
    border: 1px solid var(--radio-border);
    border-radius: 24px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.radio-kicker {
    margin: 0 0 10px;
    color: var(--radio-accent);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

h1 {
    margin: 0;
    font-size: clamp(2.3rem, 7vw, 4.7rem);
    line-height: 0.98;
    letter-spacing: -0.065em;
}

.radio-intro {
    max-width: 500px;
    margin: 20px 0 34px;
    color: var(--radio-muted);
    font-size: clamp(1rem, 2.5vw, 1.12rem);
    line-height: 1.65;
}

.radio-updated {
    margin: -0.25rem 0 1rem;
    color: var(--radio-muted);
    font-size: 0.78rem;
    letter-spacing: 0.02em;
}

.radio-language-label {
    display: block;
    margin-bottom: 8px;
    color: var(--radio-muted);
    font-size: 0.76rem;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.radio-language {
    width: 100%;
    min-height: 50px;
    padding: 0 44px 0 15px;
    color: var(--radio-text);
    background: #15110f;
    border: 1px solid var(--radio-border);
    border-radius: 12px;
    font: inherit;
    font-weight: 650;
}

.radio-language:focus-visible,
.radio-play-pause:focus-visible,
.radio-skip-button:focus-visible,
.radio-home-link:focus-visible,
.radio-footer a:focus-visible {
    outline: 3px solid rgba(255, 138, 31, 0.45);
    outline-offset: 3px;
}

.radio-now-playing {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 38px 0 12px;
    color: var(--radio-muted);
    font-size: 0.82rem;
    font-weight: 650;
}

.radio-status-mark {
    width: 8px;
    height: 8px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--radio-accent);
    box-shadow: 0 0 0 5px rgba(255, 138, 31, 0.12);
}

.radio-headline {
    min-height: 3.2em;
    margin: 0 0 32px;
    font-size: clamp(1.35rem, 4vw, 2rem);
    line-height: 1.28;
    letter-spacing: -0.025em;
}

.radio-controls {
    display: flex;
    align-items: center;
    gap: 14px;
}

.radio-play-pause {
    min-width: 150px;
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 26px;
    border: 0;
    border-radius: 999px;
    color: #1a1008;
    background: var(--radio-accent);
    font: inherit;
    font-weight: 850;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(242, 106, 18, 0.22);
}

.radio-play-pause:hover:not(:disabled) { background: #ff9b3d; }
.radio-play-pause:active:not(:disabled) { transform: translateY(1px); }
.radio-play-pause:disabled { cursor: not-allowed; opacity: 0.48; box-shadow: none; }

.radio-skip-button {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    display: inline-grid;
    place-items: center;
    padding: 0;
    border: 1px solid var(--radio-border);
    border-radius: 50%;
    color: var(--radio-text);
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
}

.radio-skip-button:hover:not(:disabled) { background: rgba(255, 255, 255, 0.12); }
.radio-skip-button:active:not(:disabled) { transform: translateY(1px); }
.radio-skip-button:disabled { cursor: not-allowed; opacity: 0.35; }
.radio-skip-button svg { width: 24px; height: 24px; fill: currentColor; }

.radio-play-icon {
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 11px solid currentColor;
}

.radio-play-pause[data-state="playing"] .radio-play-icon {
    width: 11px;
    height: 14px;
    border: 0;
    background: linear-gradient(90deg, currentColor 0 35%, transparent 35% 65%, currentColor 65% 100%);
}

.radio-message {
    min-height: 1.4em;
    margin: 22px 0 0;
    color: var(--radio-muted);
    font-size: 0.88rem;
    line-height: 1.45;
}

.radio-footer {
    min-height: 72px;
    border-top: 1px solid var(--radio-border);
}

.radio-footer a { text-underline-offset: 3px; }

@media (max-width: 520px) {
    .radio-header, .radio-footer { width: min(100% - 28px, 1040px); }
    .radio-section-name { display: none; }
    .radio-main { place-items: start center; padding-top: 28px; }
    .radio-player { border-radius: 20px; }
    .radio-controls { justify-content: center; gap: 12px; }
    .radio-play-pause { min-width: 0; flex: 1 1 auto; }
    .radio-skip-button { width: 48px; height: 48px; flex-basis: 48px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
