:root {
    --ink: #061018;
    --ink-soft: #0b1922;
    --paper: #eef2e9;
    --paper-muted: #b6c0b8;
    --line: rgba(238, 242, 233, 0.14);
    --amber: #f4a340;
    --amber-soft: #ffc97b;
    --coral: #ff614f;
    --teal: #69b7aa;
    --online: #ff5443;
    --offline: #7c8587;
    --radius: 28px;
    --content: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    color: var(--paper);
    background:
        radial-gradient(circle at 78% 9%, rgba(19, 72, 81, 0.4), transparent 31rem),
        linear-gradient(180deg, #07121a 0%, var(--ink) 48%, #08151b 100%);
    font-family: Inter, "Segoe UI", system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -1;
    content: "";
    pointer-events: none;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

button,
input {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

a {
    color: inherit;
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
    outline: 3px solid var(--amber);
    outline-offset: 4px;
}

.skip-link,
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link:focus {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 20;
    width: auto;
    height: auto;
    margin: 0;
    padding: 10px 14px;
    clip: auto;
    color: var(--ink);
    background: var(--paper);
    border-radius: 8px;
}

.site-header {
    position: relative;
    z-index: 10;
    display: flex;
    width: min(var(--content), calc(100% - 48px));
    min-height: 92px;
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    border-bottom: 1px solid var(--line);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-mark,
.brand-logo {
    width: 42px;
    height: 42px;
    border-radius: 50%;
}

.brand-mark {
    display: grid;
    place-items: center;
    color: var(--ink);
    background: var(--amber);
    font-family: Georgia, serif;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: -1px;
}

.brand-logo {
    display: block;
    flex: 0 0 auto;
    object-fit: cover;
    border: 1px solid rgba(238, 242, 233, 0.2);
    box-shadow: 0 0 0 3px rgba(244, 163, 64, 0.08);
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    font-size: 14px;
    letter-spacing: 0.03em;
}

.brand small {
    margin-top: 2px;
    color: var(--paper-muted);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: clamp(18px, 3vw, 42px);
}

.main-nav a {
    position: relative;
    color: var(--paper-muted);
    font-size: 13px;
    font-weight: 650;
    text-decoration: none;
}

.main-nav a::after {
    position: absolute;
    right: 0;
    bottom: -9px;
    left: 0;
    height: 2px;
    content: "";
    background: var(--amber);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
}

.main-nav a:hover {
    color: var(--paper);
}

.main-nav a:hover::after {
    transform: scaleX(1);
}

main,
footer {
    width: min(var(--content), calc(100% - 48px));
    margin-inline: auto;
}

.hero {
    display: grid;
    min-height: 690px;
    padding: 72px 0 82px;
    grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
    align-items: center;
    gap: clamp(52px, 8vw, 112px);
}

.eyebrow,
.section-kicker {
    margin: 0;
    color: var(--amber-soft);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
}

.eyebrow span {
    width: 22px;
    height: 1px;
    background: var(--amber);
}

.hero h1 {
    max-width: 620px;
    margin: 22px 0 24px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(58px, 7vw, 102px);
    font-weight: 500;
    letter-spacing: -0.065em;
    line-height: 0.88;
}

.hero h1 em {
    color: var(--amber);
    font-weight: 500;
}

.hero-lead {
    max-width: 560px;
    margin: 0;
    color: var(--paper-muted);
    font-size: 16px;
    line-height: 1.75;
}

.status-strip {
    display: inline-flex;
    min-height: 48px;
    margin-top: 34px;
    padding: 0 18px;
    align-items: center;
    gap: 13px;
    color: var(--paper-muted);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 12px;
    font-variant-numeric: tabular-nums;
}

.status-strip b {
    color: var(--paper);
    font-weight: 750;
}

.status-state {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-state i {
    width: 8px;
    height: 8px;
    background: var(--offline);
    border-radius: 50%;
}

.status-strip.is-live .status-state i {
    background: var(--online);
    box-shadow: 0 0 0 5px rgba(255, 84, 67, 0.13), 0 0 18px rgba(255, 84, 67, 0.65);
    animation: pulse 2s infinite;
}

.status-strip.is-live #status-label {
    color: #ff7869;
}

.status-divider {
    width: 1px;
    height: 16px;
    background: var(--line);
}

.player-card {
    position: relative;
    overflow: hidden;
    background: #dce2d7;
    border-radius: var(--radius);
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.35);
}

.cover-wrap {
    position: relative;
    aspect-ratio: 1.82 / 1;
    overflow: hidden;
}

.cover-wrap::after {
    position: absolute;
    inset: 45% 0 0;
    content: "";
    background: linear-gradient(transparent, rgba(5, 14, 20, 0.55));
}

.cover-wrap img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center 63%;
}

.cover-stamp {
    position: absolute;
    top: 20px;
    right: 22px;
    z-index: 1;
    color: rgba(238, 242, 233, 0.93);
    font-family: Georgia, serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 0.78;
    text-align: right;
}

.player-body {
    padding: 24px 26px 22px;
    color: var(--ink);
}

.player-heading,
.player-controls {
    display: flex;
    align-items: center;
}

.player-heading {
    justify-content: space-between;
}

.player-body .section-kicker {
    color: #78551f;
}

.on-air {
    padding: 6px 9px;
    color: #4d5a55;
    background: rgba(6, 16, 24, 0.07);
    border-radius: 999px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.track-copy {
    min-height: 82px;
    padding: 12px 0 18px;
}

.track-copy h2 {
    margin: 0;
    overflow: hidden;
    color: #0a171c;
    font-family: Georgia, serif;
    font-size: clamp(24px, 3.1vw, 36px);
    font-weight: 600;
    letter-spacing: -0.035em;
    line-height: 1.08;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.track-copy p {
    margin: 7px 0 0;
    overflow: hidden;
    color: #617069;
    font-size: 13px;
    font-weight: 650;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.player-controls {
    gap: 18px;
}

.play-button {
    position: relative;
    width: 58px;
    height: 58px;
    flex: 0 0 auto;
    cursor: pointer;
    color: var(--paper);
    background: var(--ink);
    border: 0;
    border-radius: 50%;
    box-shadow: 0 8px 22px rgba(6, 16, 24, 0.2);
    transition: transform 160ms ease, opacity 160ms ease;
}

.play-button:hover:not(:disabled) {
    transform: scale(1.06);
}

.play-button:disabled {
    cursor: not-allowed;
    opacity: 0.42;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 51%;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 12px solid currentColor;
    transform: translate(-38%, -50%);
}

.play-button.is-playing .play-icon {
    width: 12px;
    height: 16px;
    border: 0;
    border-right: 4px solid currentColor;
    border-left: 4px solid currentColor;
    transform: translate(-50%, -50%);
}

.play-button.is-loading:disabled {
    cursor: wait;
    opacity: 1;
}

.play-button.is-loading .play-icon {
    width: 23px;
    height: 23px;
    border: 3px solid rgba(238, 242, 233, 0.25);
    border-top-color: currentColor;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: player-spin 760ms linear infinite;
}

.signal {
    display: flex;
    height: 30px;
    flex: 1;
    align-items: center;
    gap: 4px;
}

.signal span {
    width: 3px;
    height: 7px;
    background: #87938e;
    border-radius: 99px;
}

.signal span:nth-child(2),
.signal span:nth-child(7) { height: 13px; }
.signal span:nth-child(3),
.signal span:nth-child(6) { height: 20px; }
.signal span:nth-child(4),
.signal span:nth-child(5) { height: 27px; }

.player-card.is-playing .signal span {
    background: #173943;
    animation: equalize 850ms ease-in-out infinite alternate;
}

.player-card.is-playing .signal span:nth-child(2n) { animation-delay: -320ms; }
.player-card.is-playing .signal span:nth-child(3n) { animation-delay: -600ms; }

.volume-control {
    display: flex;
    width: 145px;
    align-items: center;
    gap: 9px;
}

.volume-icon {
    color: #56655f;
    font-size: 8px;
    font-weight: 850;
    letter-spacing: 0.12em;
}

.volume-control input {
    width: 100%;
    accent-color: var(--ink);
    cursor: pointer;
}

.player-message {
    margin: 14px 0 0;
    color: #6c7974;
    font-size: 11px;
}

.content-section {
    scroll-margin-top: 28px;
    padding: 108px 0;
    border-top: 1px solid var(--line);
}

.section-intro {
    display: grid;
    margin-bottom: 48px;
    grid-template-columns: 0.72fr 1.2fr 1.1fr;
    gap: 28px;
    align-items: start;
}

.section-intro h2,
.about-copy h2,
.history-heading h2 {
    margin: 0;
    font-family: Georgia, serif;
    font-size: clamp(42px, 5vw, 70px);
    font-weight: 500;
    letter-spacing: -0.045em;
    line-height: 0.98;
}

.section-intro > p:last-child,
.about-copy > p,
.history-heading > p {
    margin: 0;
    color: var(--paper-muted);
    font-size: 15px;
    line-height: 1.75;
}

.schedule-grid {
    display: grid;
    grid-template-columns: 1.55fr repeat(3, 0.75fr);
    gap: 12px;
}

.schedule-grid article {
    min-height: 250px;
    padding: 27px;
    border: 1px solid var(--line);
    border-radius: 20px;
}

.schedule-featured {
    display: flex;
    justify-content: space-between;
    gap: 28px;
    color: var(--ink);
    background: var(--amber);
    border-color: transparent !important;
}

.schedule-time {
    font-family: Georgia, serif;
    font-size: 22px;
    font-style: italic;
}

.schedule-featured > div:last-child {
    align-self: end;
}

.schedule-tag,
.note-number,
.option-index {
    color: #70460f;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.schedule-featured h3,
.schedule-note h3,
.listen-options h3 {
    margin: 12px 0 10px;
    font-family: Georgia, serif;
    font-size: 26px;
    font-weight: 600;
}

.schedule-featured p,
.schedule-note p,
.listen-options p {
    margin: 0;
    font-size: 13px;
    line-height: 1.65;
}

.schedule-note {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: rgba(255, 255, 255, 0.025);
}

.schedule-note .note-number {
    margin-bottom: auto;
    color: var(--amber-soft);
}

.schedule-note p {
    color: var(--paper-muted);
}

.about-section {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(50px, 10vw, 140px);
    align-items: center;
}

.about-quote {
    position: relative;
    padding: 42px 0 42px 54px;
    border-left: 1px solid var(--amber);
}

.quote-mark {
    display: block;
    height: 45px;
    color: var(--amber);
    font-family: Georgia, serif;
    font-size: 76px;
    line-height: 1;
}

.about-quote blockquote {
    margin: 20px 0 0;
    font-family: Georgia, serif;
    font-size: clamp(30px, 4vw, 52px);
    font-style: italic;
    letter-spacing: -0.035em;
    line-height: 1.15;
}

.about-copy .section-kicker {
    margin-bottom: 20px;
}

.about-copy > p {
    margin-top: 28px;
}

.about-facts {
    display: flex;
    margin-top: 36px;
    padding-top: 24px;
    gap: 28px;
    border-top: 1px solid var(--line);
}

.about-facts span {
    color: var(--paper-muted);
    font-size: 11px;
}

.about-facts b {
    display: block;
    margin-bottom: 2px;
    color: var(--paper);
    font-family: Georgia, serif;
    font-size: 26px;
    font-weight: 500;
}

.section-intro.compact {
    grid-template-columns: 0.55fr 0.8fr 1.1fr;
}

.listen-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.listen-options article {
    min-width: 0;
    min-height: 370px;
    padding: 28px;
    border-right: 1px solid var(--line);
}

.listen-options article:last-child {
    border-right: 0;
}

.listen-options .option-index {
    color: var(--amber-soft);
}

.listen-options p {
    color: var(--paper-muted);
}

.text-button {
    display: inline-block;
    margin-top: 34px;
    padding: 0 0 6px;
    cursor: pointer;
    color: var(--paper);
    background: none;
    border: 0;
    border-bottom: 1px solid var(--amber);
    font-size: 12px;
    font-weight: 750;
    line-height: 1.5;
    text-align: left;
    text-decoration: none;
}

.text-button span {
    display: inline-block;
    margin-left: 7px;
    color: var(--amber);
    transition: transform 160ms ease;
}

.text-button:hover span {
    transform: translate(2px, -2px);
}

.local-hint {
    display: inline-block;
    margin-top: 34px;
    padding: 8px 11px;
    color: var(--amber-soft);
    background: rgba(244, 163, 64, 0.09);
    border-radius: 6px;
    font-family: Consolas, monospace;
    font-size: 11px;
}

.external-players {
    display: grid;
    margin: 28px 0 0;
    padding: 0;
    grid-template-columns: repeat(4, minmax(42px, 1fr));
    gap: 10px;
    list-style: none;
}

.game-platforms {
    display: grid;
    margin: 24px 0 0;
    padding: 0;
    grid-template-columns: repeat(3, minmax(54px, 1fr));
    gap: 8px;
    list-style: none;
}

.game-platforms li {
    display: grid;
    min-width: 0;
    padding: 10px 4px 9px;
    place-items: center;
    align-content: start;
    gap: 7px;
    background: rgba(238, 242, 233, 0.04);
    border: 1px solid var(--line);
    border-radius: 12px;
}

.game-platforms img {
    display: block;
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.game-platforms span {
    color: var(--paper-muted);
    font-size: 8px;
    font-weight: 750;
    letter-spacing: 0.02em;
    line-height: 1.3;
    text-align: center;
}

.guide-link {
    margin-top: 22px;
}

.option-actions {
    display: grid;
    margin-top: 22px;
    justify-items: start;
    gap: 12px;
}

.option-actions .text-button {
    margin-top: 0;
}

.external-players li {
    display: grid;
    min-width: 0;
    padding: 10px 4px 8px;
    place-items: center;
    gap: 7px;
    background: rgba(238, 242, 233, 0.04);
    border: 1px solid var(--line);
    border-radius: 12px;
}

.external-players img {
    display: block;
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.external-players span {
    overflow: hidden;
    max-width: 100%;
    color: var(--paper-muted);
    font-size: 9px;
    font-weight: 750;
    letter-spacing: 0.04em;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.android-section {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: clamp(44px, 8vw, 110px);
    align-items: center;
}

.android-copy .section-kicker {
    margin-bottom: 20px;
}

.android-copy h2 {
    margin: 0;
    font-family: Georgia, serif;
    font-size: clamp(46px, 6vw, 76px);
    font-weight: 500;
    letter-spacing: -0.045em;
    line-height: 0.96;
}

.android-copy > p:last-child {
    max-width: 510px;
    margin: 30px 0 0;
    color: var(--paper-muted);
    font-size: 15px;
    line-height: 1.75;
}

.android-download-card {
    display: grid;
    padding: clamp(28px, 4vw, 48px);
    grid-template-columns: auto minmax(0, 1fr);
    gap: 30px;
    align-items: start;
    background: linear-gradient(145deg, rgba(244, 163, 64, 0.13), rgba(105, 183, 170, 0.07));
    border: 1px solid rgba(244, 163, 64, 0.3);
    border-radius: var(--radius);
}

.android-download-card > img {
    display: block;
    width: 92px;
    height: 92px;
    object-fit: cover;
    border: 1px solid rgba(238, 242, 233, 0.18);
    border-radius: 24px;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
}

.android-label {
    color: var(--amber-soft);
    font-size: 9px;
    font-weight: 850;
    letter-spacing: 0.15em;
}

.android-download-card h3 {
    margin: 12px 0 12px;
    font-family: Georgia, serif;
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 500;
    letter-spacing: -0.025em;
    line-height: 1.08;
}

.android-download-card p {
    margin: 0;
    color: var(--paper-muted);
    font-size: 13px;
    line-height: 1.65;
}

.android-actions {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.download-button {
    display: grid;
    min-height: 72px;
    padding: 15px 18px;
    place-content: center;
    gap: 3px;
    color: var(--ink);
    background: var(--amber);
    border: 1px solid var(--amber);
    border-radius: 14px;
    text-align: center;
    text-decoration: none;
    transition: transform 160ms ease, background 160ms ease;
}

.download-button:not(.is-disabled):hover {
    background: var(--amber-soft);
    transform: translateY(-2px);
}

.download-button span {
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.06em;
}

.download-button small {
    font-size: 8px;
    font-weight: 750;
    letter-spacing: 0.12em;
}

.download-button.is-disabled {
    cursor: not-allowed;
    color: #7f8a86;
    background: rgba(238, 242, 233, 0.045);
    border-color: var(--line);
}

.history-heading {
    display: flex;
    margin-bottom: 40px;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
}

.history-heading .section-kicker {
    margin-bottom: 16px;
}

.history-heading > p {
    padding-bottom: 8px;
    font-size: 13px;
}

.history-list {
    border-top: 1px solid var(--line);
}

.history-item {
    display: grid;
    min-height: 92px;
    padding: 17px 4px;
    grid-template-columns: 72px 52px minmax(0, 1fr) auto;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid var(--line);
    transition: background 150ms ease, padding 150ms ease;
}

.history-item:hover {
    padding-right: 14px;
    padding-left: 14px;
    background: rgba(255, 255, 255, 0.025);
}

.history-time,
.history-index {
    color: #7f8d88;
    font-size: 11px;
    font-variant-numeric: tabular-nums;
}

.history-index {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.history-track {
    min-width: 0;
}

.history-song {
    overflow: hidden;
    font-family: Georgia, serif;
    font-size: 20px;
    font-weight: 500;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.history-artist {
    margin-top: 4px;
    overflow: hidden;
    color: var(--paper-muted);
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.history-type {
    color: #81908b;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.empty-state {
    padding: 44px 0;
    color: var(--paper-muted);
    text-align: center;
}

.history-more {
    display: block;
    min-width: 150px;
    margin: 34px auto 0;
    padding: 12px 18px;
    cursor: pointer;
    color: var(--paper);
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.history-more:hover {
    color: var(--ink);
    background: var(--paper);
}

footer {
    display: grid;
    padding: 46px 0;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    border-top: 1px solid var(--line);
    color: var(--paper-muted);
    font-size: 11px;
}

footer p {
    margin: 0;
    text-align: center;
}

footer > a:last-child {
    justify-self: end;
    text-decoration: none;
}

.footer-brand .brand-mark,
.footer-brand .brand-logo {
    width: 34px;
    height: 34px;
    font-size: 13px;
}

.footer-links {
    display: flex;
    justify-self: end;
    gap: 18px;
}

.footer-links a {
    text-decoration: none;
}

.footer-cookie-settings {
    padding: 0;
    cursor: pointer;
    color: inherit;
    background: transparent;
    border: 0;
    font: inherit;
}

.footer-links a:hover,
.footer-cookie-settings:hover,
.privacy-content a:hover,
.cookie-actions a:hover {
    color: var(--paper);
}

.privacy-main {
    padding: 92px 0 110px;
}

.privacy-main > article {
    scroll-margin-top: 28px;
}

.privacy-main > article + article {
    margin-top: 96px;
    padding-top: 96px;
    border-top: 1px solid var(--line);
}

.privacy-heading {
    max-width: 820px;
    padding-bottom: 52px;
    border-bottom: 1px solid var(--line);
}

.privacy-heading h1 {
    margin: 18px 0 16px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 500;
    letter-spacing: -0.055em;
    line-height: 0.95;
}

.privacy-heading > p:last-child,
.privacy-content p {
    color: var(--paper-muted);
    line-height: 1.75;
}

.privacy-content {
    display: grid;
    max-width: 860px;
    gap: 0;
}

.privacy-content section {
    padding: 38px 0;
    border-bottom: 1px solid var(--line);
}

.privacy-content h2 {
    margin: 0 0 14px;
    font-size: clamp(1.25rem, 3vw, 1.7rem);
}

.privacy-content p {
    margin: 0 0 12px;
}

.privacy-content a,
.cookie-actions a {
    color: var(--amber-soft);
}

.cookie-notice {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 50;
    width: min(430px, calc(100% - 32px));
    padding: 18px;
    color: var(--paper);
    background: rgba(9, 24, 33, 0.97);
    border: 1px solid rgba(244, 163, 64, 0.34);
    border-radius: 18px;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.38);
    backdrop-filter: blur(16px);
}

.cookie-notice[hidden] {
    display: none;
}

.cookie-notice strong {
    font-size: 0.92rem;
}

.cookie-notice p {
    margin: 7px 0 0;
    color: var(--paper-muted);
    font-size: 0.78rem;
    line-height: 1.55;
}

.cookie-actions {
    display: flex;
    margin-top: 14px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 0.76rem;
}

.cookie-actions button {
    padding: 9px 14px;
    cursor: pointer;
    color: var(--ink);
    background: var(--amber);
    border: 0;
    border-radius: 999px;
    font-weight: 800;
}

.cookie-choice-buttons {
    display: flex;
    gap: 8px;
}

.cookie-actions .cookie-button-secondary {
    color: var(--paper);
    background: transparent;
    border: 1px solid var(--line);
}

.cookie-actions .cookie-button-secondary:hover {
    border-color: var(--amber);
}

.blog-main {
    padding: 88px 0 110px;
}

.blog-hero {
    display: grid;
    padding-bottom: 66px;
    grid-template-columns: 1.45fr 0.55fr;
    align-items: end;
    gap: 48px;
}

.blog-hero .eyebrow {
    grid-column: 1 / -1;
    margin-bottom: -12px;
}

.blog-hero h1 {
    margin: 0;
    font-family: Georgia, serif;
    font-size: clamp(58px, 8vw, 108px);
    font-weight: 500;
    letter-spacing: -0.055em;
    line-height: 0.87;
}

.blog-hero h1 em {
    color: var(--amber);
    font-weight: 500;
}

.blog-hero > p:last-child {
    margin: 0 0 5px;
    color: var(--paper-muted);
    font-size: 15px;
    line-height: 1.75;
}

.blog-categories {
    display: flex;
    overflow-x: auto;
    padding: 18px 0;
    gap: 9px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    scrollbar-width: none;
}

.blog-categories::-webkit-scrollbar { display: none; }

.blog-categories a {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 9px;
    padding: 9px 14px;
    color: var(--paper-muted);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 750;
    text-decoration: none;
}

.blog-categories a:hover,
.blog-categories a.is-active {
    color: var(--ink);
    background: var(--amber);
    border-color: var(--amber);
}

.blog-categories span {
    display: grid;
    min-width: 19px;
    height: 19px;
    padding: 0 5px;
    place-items: center;
    color: inherit;
    background: rgba(6, 16, 24, 0.12);
    border-radius: 99px;
    font-size: 9px;
}

.blog-grid {
    display: grid;
    padding-top: 42px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.blog-card {
    display: flex;
    min-height: 320px;
    padding: clamp(26px, 4vw, 42px);
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.024);
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.blog-card:hover {
    border-color: rgba(244, 163, 64, 0.42);
    background: rgba(244, 163, 64, 0.045);
    transform: translateY(-3px);
}

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    color: var(--amber-soft);
    font-size: 9px;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.blog-card-meta time { color: #7d8b86; }

.blog-card h2 {
    margin: 38px 0 16px;
    font-family: Georgia, serif;
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1.04;
}

.blog-card h2 a { text-decoration: none; }
.blog-card > p { margin: 0; color: var(--paper-muted); font-size: 13px; line-height: 1.7; }

.blog-read-more {
    display: inline-flex;
    margin-top: auto;
    padding-top: 30px;
    align-items: center;
    gap: 9px;
    color: var(--paper);
    font-size: 11px;
    font-weight: 800;
    text-decoration: none;
}

.blog-read-more span { color: var(--amber); transition: transform 160ms ease; }
.blog-read-more:hover span { transform: translateX(4px); }

.blog-empty {
    padding: clamp(34px, 6vw, 72px);
    grid-column: 1 / -1;
    text-align: center;
    border: 1px dashed rgba(238, 242, 233, 0.2);
    border-radius: 24px;
}

.blog-empty > span { color: var(--amber); font-size: 10px; font-weight: 850; letter-spacing: 0.14em; text-transform: uppercase; }
.blog-empty h2 { margin: 18px 0 12px; font-family: Georgia, serif; font-size: clamp(28px, 4vw, 44px); font-weight: 500; }
.blog-empty p { margin: 0; color: var(--paper-muted); }

.blog-article-main {
    width: min(880px, calc(100% - 48px));
    padding: 88px 0 118px;
}

.blog-article-header {
    padding-bottom: 54px;
    border-bottom: 1px solid var(--line);
}

.blog-article-header > a {
    color: var(--amber-soft);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.14em;
    text-decoration: none;
    text-transform: uppercase;
}

.blog-article-header h1 {
    margin: 24px 0 22px;
    font-family: Georgia, serif;
    font-size: clamp(48px, 8vw, 86px);
    font-weight: 500;
    letter-spacing: -0.05em;
    line-height: 0.96;
}

.blog-article-header p {
    max-width: 720px;
    margin: 0 0 26px;
    color: var(--paper-muted);
    font-size: 17px;
    line-height: 1.7;
}

.blog-article-header time { color: #7d8b86; font-size: 11px; }

.blog-article-content {
    padding: 54px 0;
    color: #d9e0d8;
    font-family: Georgia, serif;
    font-size: 19px;
    line-height: 1.82;
}

.blog-article-content h2,
.blog-article-content h3,
.blog-article-content h4 {
    color: var(--paper);
    line-height: 1.15;
}

.blog-article-content h2 { margin: 2.2em 0 0.7em; font-size: 36px; }
.blog-article-content h3 { margin: 1.9em 0 0.6em; font-size: 28px; }
.blog-article-content h4 { margin: 1.7em 0 0.5em; font-size: 22px; }
.blog-article-content p { margin: 0 0 1.35em; }
.blog-article-content a { color: var(--amber-soft); }
.blog-article-content blockquote { margin: 2em 0; padding: 6px 0 6px 28px; color: var(--paper); border-left: 2px solid var(--amber); font-size: 1.25em; font-style: italic; }
.blog-article-content code { padding: 2px 6px; color: var(--amber-soft); background: rgba(255,255,255,0.06); border-radius: 5px; }
.blog-article-content pre { overflow-x: auto; padding: 18px; background: rgba(0,0,0,0.28); border-radius: 12px; }
.blog-article-content pre code { padding: 0; background: none; }

.blog-article-footer {
    padding-top: 28px;
    border-top: 1px solid var(--line);
}

.blog-article-footer a { color: var(--amber-soft); font-size: 12px; font-weight: 800; text-decoration: none; }

@keyframes pulse {
    50% { opacity: 0.55; }
}

@keyframes equalize {
    from { transform: scaleY(0.45); }
    to { transform: scaleY(1); }
}

@keyframes player-spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@media (max-width: 980px) {
    .site-header {
        min-height: 82px;
    }

    .main-nav {
        max-width: 62%;
        overflow-x: auto;
        padding: 18px 0;
        scrollbar-width: none;
    }

    .main-nav::-webkit-scrollbar { display: none; }
    .main-nav a { flex: 0 0 auto; }

    .hero {
        min-height: 0;
        padding-top: 58px;
        grid-template-columns: 1fr;
    }

    .hero-copy {
        max-width: 700px;
    }

    .player-card {
        display: grid;
        grid-template-columns: 0.8fr 1.2fr;
    }

    .cover-wrap { aspect-ratio: auto; }
    .player-body { align-self: center; }

    .section-intro,
    .section-intro.compact {
        grid-template-columns: 0.5fr 1fr;
    }

    .android-section {
        grid-template-columns: 1fr;
    }

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

    .section-intro > p:last-child {
        grid-column: 2;
    }

    .listen-options {
        grid-template-columns: repeat(2, 1fr);
    }

    .listen-options article {
        border-bottom: 1px solid var(--line);
    }

    .listen-options article:nth-child(2n) {
        border-right: 0;
    }

    .listen-options article:nth-last-child(-n + 2) {
        border-bottom: 0;
    }

    .schedule-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .schedule-featured {
        min-height: 220px !important;
        grid-column: 1 / -1;
    }

    .about-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .site-header,
    main,
    footer {
        width: min(100% - 30px, var(--content));
    }

    .site-header {
        display: block;
        padding-top: 18px;
    }

    .main-nav {
        max-width: none;
        margin-top: 8px;
        gap: 24px;
    }

    .hero {
        padding: 46px 0 68px;
        gap: 44px;
    }

    .hero h1 {
        font-size: clamp(55px, 17vw, 82px);
    }

    .status-strip {
        width: 100%;
        padding: 0 13px;
        justify-content: center;
        gap: 8px;
        font-size: 10px;
    }

    .player-card {
        display: block;
    }

    .cover-wrap {
        aspect-ratio: 1.35 / 1;
    }

    .content-section {
        padding: 78px 0;
    }

    .section-intro,
    .section-intro.compact {
        display: block;
    }

    .section-intro h2 {
        margin-top: 16px;
    }

    .section-intro > p:last-child {
        margin-top: 22px;
    }

    .schedule-grid,
    .listen-options {
        display: block;
    }

    .android-download-card {
        grid-template-columns: 1fr;
    }

    .android-actions {
        grid-column: 1;
        grid-template-columns: 1fr;
    }

    .blog-main {
        padding-top: 58px;
    }

    .blog-hero {
        padding-bottom: 46px;
        gap: 28px;
    }

    .blog-hero .eyebrow { margin-bottom: 0; }
    .blog-grid { grid-template-columns: 1fr; }
    .blog-card { min-height: 280px; }
    .blog-article-main { width: min(100% - 30px, 880px); padding-top: 58px; }
    .blog-article-content { font-size: 17px; }

    .schedule-grid article {
        min-height: 190px;
        margin-bottom: 10px;
    }

    .schedule-note {
        min-height: 165px !important;
    }

    .listen-options article:nth-child(n) {
        min-height: 220px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .listen-options article:last-child { border-bottom: 0; }

    .about-quote {
        padding-left: 28px;
    }

    .about-facts {
        gap: 20px;
    }

    .history-heading {
        display: block;
    }

    .history-heading > p {
        margin-top: 18px;
    }

    .history-item {
        grid-template-columns: 48px minmax(0, 1fr) auto;
        gap: 12px;
    }

    .history-index { display: none; }
    .history-song { font-size: 17px; }

    footer {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    footer p { text-align: left; }
    footer > a:last-child,
    .footer-links { align-self: flex-start; }

    .footer-links {
        justify-self: start;
        flex-wrap: wrap;
    }

    .privacy-main {
        padding: 68px 0 86px;
    }

    .cookie-notice {
        right: 16px;
        bottom: 16px;
    }

    .cookie-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .cookie-choice-buttons {
        width: 100%;
    }

    .cookie-choice-buttons button {
        flex: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
