:root {
    --bg: #110e0c;
    --bg-elevated: #1c1714;
    --surface: rgba(255, 245, 235, 0.04);
    --accent: #e07a3a;
    --accent-light: #f4a261;
    --accent-glow: rgba(224, 122, 58, 0.35);
    --accent-soft: #c45c28;
    --warm: #e9c46a;
    --text: #faf6f1;
    --text-muted: #9a8f87;
    --border: rgba(244, 162, 97, 0.12);
    --radius: 16px;
    --font-body: "DM Sans", system-ui, sans-serif;
    --font-display: "Playfair Display", Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    min-height: 100vh;
    font-family: var(--font-body);
    color: var(--text);
    background:
        radial-gradient(ellipse 80% 50% at 50% -10%, rgba(224, 122, 58, 0.12), transparent),
        radial-gradient(ellipse 60% 40% at 100% 80%, rgba(233, 196, 106, 0.06), transparent),
        var(--bg);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

button, input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    font: inherit;
    color: inherit;
    border: none;
    background: none;
    padding: 0;
    margin: 0;
}

a { color: var(--accent-light); text-decoration: none; }
a:hover { color: var(--text); }

.container {
    width: min(400px, calc(100% - 2.5rem));
    margin-inline: auto;
}

.ambient {
    position: fixed;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    filter: blur(110px);
    opacity: 0.18;
    pointer-events: none;
    z-index: 0;
}

.ambient--left { top: 40px; left: -90px; background: var(--accent); }
.ambient--right { right: -70px; bottom: 80px; background: var(--warm); }

/* ── Header ── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(14px);
    background: rgba(17, 14, 12, 0.88);
    border-bottom: 1px solid var(--border);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 56px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: inherit;
}

.brand__mark {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--accent), var(--accent-soft));
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text);
}

.brand__text { line-height: 1.15; }
.brand__text strong { font-family: var(--font-display); font-size: 1rem; }
.brand__text small { color: var(--text-muted); font-size: 0.68rem; }

.site-nav { display: none; gap: 1.2rem; font-size: 0.82rem; color: var(--text-muted); }
.site-nav a { color: inherit; }
.site-nav a:hover { color: var(--accent-light); }

.menu-toggle {
    display: grid;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
    color: var(--text-muted);
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 1.5px;
    background: currentColor;
    border-radius: 999px;
}

.site-header.is-open .site-nav {
    display: flex;
    position: absolute;
    inset: 100% 0 auto;
    flex-direction: column;
    padding: 1rem;
    background: rgba(17, 14, 12, 0.97);
    border-bottom: 1px solid var(--border);
}

main { position: relative; z-index: 1; }

/* ── Section ── */
.podcast-section { padding: 3rem 0 2rem; }

.section-head {
    margin-bottom: 2.5rem;
    text-align: center;
}

.section-head h1 {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.section-head__sub {
    margin: 0.3rem 0 0;
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ── Player ── */
.player-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.disc {
    position: relative;
    width: 220px;
    height: 220px;
    flex-shrink: 0;
}

.disc__spin {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    animation: spin 16s linear infinite;
    animation-play-state: paused;
    will-change: transform;
}

.player-card.is-playing .disc__spin {
    animation-play-state: running;
}

.disc__grooves {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background:
        repeating-radial-gradient(circle at center, #141414 0 1.5px, #1e1e1e 1.5px 3px),
        radial-gradient(circle at center, #2a2420 30%, #0c0a09 72%);
    box-shadow:
        0 0 0 1px rgba(255, 240, 220, 0.05),
        0 24px 48px rgba(0, 0, 0, 0.5),
        0 0 80px var(--accent-glow);
}

.disc__label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, var(--accent-light), var(--accent-soft));
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #1a1008;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
    pointer-events: none;
}

.disc__controls {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border-radius: 50%;
    background: rgba(10, 8, 6, 0.48);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 2;
}

.ctrl {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: opacity 0.15s ease, transform 0.15s ease;
    -webkit-tap-highlight-color: transparent;
}

.ctrl svg { fill: currentColor; display: block; }

.ctrl--skip {
    width: 40px;
    height: 40px;
    color: rgba(250, 246, 241, 0.7);
}

.ctrl--skip svg { width: 22px; height: 22px; }
.ctrl--skip:active { transform: scale(0.9); opacity: 0.6; }

.ctrl--play {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--accent-light), var(--accent));
    color: #1a1008;
    box-shadow: 0 4px 24px var(--accent-glow);
}

.ctrl--play svg { width: 26px; height: 26px; }
.ctrl--play:active { transform: scale(0.93); }

.ctrl--play .icon-pause,
.ctrl--play.is-playing .icon-play { display: none; }
.ctrl--play.is-playing .icon-pause { display: block; }

.player-card__body {
    width: 100%;
    text-align: center;
}

.player-card__title {
    margin: 0 0 1.5rem;
    font-size: 0.88rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--text-muted);
}

.player-progress {
    display: grid;
    grid-template-columns: 32px 1fr 32px;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.player-time {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-variant-numeric: tabular-nums;
}

.player-progress__track {
    position: relative;
    height: 3px;
    border-radius: 999px;
    background: rgba(255, 240, 220, 0.1);
    cursor: pointer;
}

.player-progress__fill {
    height: 100%;
    width: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--accent-soft), var(--accent-light));
    pointer-events: none;
}

.ctrl--mute {
    width: 28px;
    height: 28px;
    color: var(--text-muted);
    margin: 0 auto 0.5rem;
}

.ctrl--mute svg { width: 16px; height: 16px; }
#btn-mute .icon-muted, #btn-mute.is-muted .icon-volume { display: none; }
#btn-mute.is-muted .icon-muted { display: block; }

.volume-range {
    display: block;
    width: 120px;
    height: 3px;
    margin: 0 auto;
    border-radius: 999px;
    background: rgba(255, 240, 220, 0.1);
    cursor: pointer;
}

.volume-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent-light);
}

.volume-range::-moz-range-thumb {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 50%;
    background: var(--accent-light);
}

.page-meta {
    margin: 2.5rem 0 0;
    text-align: center;
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* ── News ── */
.news-section {
    padding: 2rem 0 3rem;
    border-top: 1px solid var(--border);
}

.news-heading {
    margin: 0 0 0.85rem;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-align: center;
}

.news-grid { display: grid; gap: 0.5rem; }

.news-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 1rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--surface);
    transition: border-color 0.2s ease;
}

.news-card:hover {
    border-color: rgba(244, 162, 97, 0.22);
}

.news-card h3 {
    margin: 0;
    font-size: 0.82rem;
    font-weight: 400;
    line-height: 1.4;
    color: var(--text);
}

.news-card time {
    flex-shrink: 0;
    font-size: 0.68rem;
    color: var(--text-muted);
}

.site-footer {
    padding: 1.25rem 0 2rem;
    border-top: 1px solid var(--border);
}

.site-footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.72rem;
    color: var(--text-muted);
}

.site-footer a { color: var(--text-muted); }
.site-footer a:hover { color: var(--accent-light); }

@keyframes spin {
    to { transform: rotate(360deg); }
}

@media (min-width: 640px) {
    .site-nav { display: flex; }
    .menu-toggle { display: none; }
    .disc { width: 240px; height: 240px; }
    .ctrl--play { width: 64px; height: 64px; }
}
