:root {
    --ink: #0b0b0b;
    --muted: #4b5563;
    --paper: #f8f5ef;
    --accent: #f6c400;
    --accent-2: #ff5a00;
    --accent-3: #8be36b;
    --accent-4: #2c61ff;
    --accent-5: #ef4aa8;
    --card: #ffffff;
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
    --radius: 18px;
}

body {
    font-family: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
    color: var(--ink);
    background: radial-gradient(900px 600px at 8% 8%, rgba(246, 196, 0, 0.4) 0%, transparent 60%),
                radial-gradient(900px 600px at 92% 10%, rgba(239, 74, 168, 0.35) 0%, transparent 58%),
                radial-gradient(800px 520px at 90% 90%, rgba(44, 97, 255, 0.25) 0%, transparent 60%),
                linear-gradient(180deg, #fdf7e9 0%, #f6f0e6 60%, #f1ede7 100%);
    min-height: 100vh;
    margin: 0;
}

.site-shell {
    position: relative;
    overflow: hidden;
}

.site-shell::before,
.site-shell::after {
    content: "";
    position: fixed;
    border-radius: 999px;
    filter: blur(0px);
    opacity: 0.2;
    z-index: 0;
    pointer-events: none;
}

.site-shell::before {
    width: 420px;
    height: 420px;
    background: var(--accent-2);
    top: -120px;
    right: -120px;
}

.site-shell::after {
    width: 520px;
    height: 520px;
    background: var(--accent-4);
    bottom: -220px;
    left: -140px;
    /* Join the dance-floor colour cycle (matches the ~20s wave palette loop). The
       negative --dance-delay (set per release page from the cover colour) starts the
       loop on that colour; defaults to 0s elsewhere. */
    animation: dance-blob 20s linear infinite;
    animation-delay: var(--dance-delay, 0s);
}

/* Cycles the Coma brand palette, matching danceColor() in shader-background.js so
   the corner glow moves with the animated waves. */
@keyframes dance-blob {
    0%     { background-color: #ffdd00; }
    14.29% { background-color: #86cb00; }
    28.57% { background-color: #00a7d9; }
    42.86% { background-color: #d04289; }
    57.14% { background-color: #2651c1; }
    71.43% { background-color: #ffffff; }
    85.71% { background-color: #f89b46; }
    100%   { background-color: #ffdd00; }
}

@media (prefers-reduced-motion: reduce) {
    .site-shell::after {
        animation: none;
    }
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(12px);
    background: rgba(248, 250, 252, 0.8);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

/* Animated WebGL waves behind the whole page (see /js/shader-background.js).
   Fixed to the viewport, behind all content. The gradient is a fallback
   shown only when WebGL is unavailable. */
.page-shader {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    display: block;
    z-index: 0;
    background: linear-gradient(180deg, #fdf7e9 0%, #f1ede7 100%);
}

.topbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

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

.brand-logo {
    height: 57px;
    width: auto;
    display: block;
}

/* Default to the white logo (dark mode is the default); swap for light mode. */
.brand-logo-light {
    display: none;
}

body.theme-light .brand-logo-light {
    display: block;
}

body.theme-light .brand-logo-dark {
    display: none;
}

.page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 24px 80px;
    position: relative;
    z-index: 1;
}

/* While the album cover is enlarged on hover it grows upward toward the sticky
   nav. The cover is trapped in .page's stacking context (z-index 1), below the
   topbar (z-index 10), so lift the whole page above the topbar during the hover
   so the cover isn't clipped behind the nav. */
.page:has(.albumFlip:hover) {
    z-index: 20;
}

.section-card {
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 28px;
    margin-top: 28px;
}

.section-card.media {
    background: transparent!important;
    box-shadow: none;
    /* No top padding so the cover can sit flush with the top of the info box. */
    padding-top: 0;
    /* Reserve just enough room for the cover's (now quicker-fading) reflection
       so the section below sits close, matching the rhythm of cover-less pages. */
    padding-bottom: 32px;
}

/* Align the cover's top with the top of the info box (drop the album's default
   5vw top/bottom margin in this layout). */
.section-card.media .album {
    margin-top: 0;
    margin-bottom: 0;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.7rem;
    color: var(--muted);
    font-weight: 600;
}

.section-title {
    font-family: "Bebas Neue", "Space Grotesk", sans-serif;
    font-size: 2.2rem;
    margin: 8px 0 16px;
    letter-spacing: 0.04em;
}

table {
    width: 100%;
    border-collapse: collapse;
}

table th,
table td {
    padding: 12px 10px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

table th {
    text-align: left;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--muted);
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.06);
    color: var(--muted);
    font-size: 0.85rem;
}

.button-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 10px 10px 18px;
    border-radius: 999px;
    background: var(--ink);
    color: var(--card);;
    text-decoration: none;
    font-weight: 600;
}

.button-link:hover {
    color: var(--card);;
    opacity: 0.92;
}

.format-icon {
    width: 30px;
    height: 30px;
    flex: none;
    opacity: 0.5;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    align-items: start;
}

.video-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-snap-type: x mandatory;
}

.video-grid img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15);
}

.video-grid > div {
    background: rgba(248, 250, 252, 0.9);
    padding: 12px;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    min-width: 180px;
    scroll-snap-align: start;
}

.video-grid p {
    margin: 10px 0 0;
    font-size: 0.9rem;
}

.embed-container iframe {
    border-radius: 16px;
    box-shadow: var(--shadow);
}

#videoPlayer {
    margin-bottom: 18px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 14px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--muted);
    text-decoration: none;
}

.back-link:hover {
    color: var(--ink);
}

.release-title {
    font-family: "Bebas Neue", "Space Grotesk", sans-serif;
    font-size: clamp(2.2rem, 3vw, 3.2rem);
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}

.release-subtitle {
    font-size: 1.1rem;
    color: var(--muted);
    margin-bottom: 12px;
}

.release-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: space-between;
    margin-bottom: 18px;
}

.filter-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.filter-button {
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: #fff;
    color: var(--ink);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
}

.filter-button:hover {
    background: rgba(15, 23, 42, 0.06);
}

.filter-clear {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
}

/* Active format filter: inverted fill so it's obvious which format is currently
   filtering. Per-theme fills keep it readable in both themes. */
body.theme-light .filter-button.is-active {
    background: #111;
    color: #fff;
    border-color: #111;
}

body.theme-dark .filter-button.is-active {
    background: #f5f5f5;
    color: #141414;
    border-color: #f5f5f5;
}

.filter-input {
    border: 1px solid rgba(15, 23, 42, 0.15);
    border-radius: 999px;
    padding: 8px 14px;
    min-width: 220px;
}

.table-wrap {
    overflow-x: auto;
}

.table-clean tr.header {
    background: rgba(15, 23, 42, 0.04);
}

.release-link {
    color: var(--ink);
    text-decoration: none;
    font-weight: 600;
}

.release-link:hover {
    color: var(--accent);
}

.theme-toggle {
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: #fff;
    color: var(--ink);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
}

body.theme-dark {
    --ink: #f5f5f5;
    --muted: #cbd5f5;
    --paper: #0b0b0b;
    --card: #141414;
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

body.theme-dark {
    background: radial-gradient(900px 600px at 8% 8%, rgba(246, 196, 0, 0.18) 0%, transparent 60%),
                radial-gradient(900px 600px at 92% 10%, rgba(239, 74, 168, 0.18) 0%, transparent 58%),
                radial-gradient(800px 520px at 90% 90%, rgba(44, 97, 255, 0.18) 0%, transparent 60%),
                linear-gradient(180deg, #0b0b0b 0%, #111111 60%, #151515 100%);
}

body.theme-dark .topbar {
    background: rgba(12, 12, 12, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

body.theme-dark .page-shader {
    background: linear-gradient(180deg, #0b0b0b 0%, #151515 100%);
}

body.theme-dark .section-card,
body.theme-dark .video-grid > div {
    background: rgba(20, 20, 20, 0.95);
    border-color: rgba(255, 255, 255, 0.08);
}

body.theme-dark table th,
body.theme-dark table td {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

body.theme-dark .chip {
    background: rgba(255, 255, 255, 0.08);
    color: var(--muted);
}

body.theme-dark .filter-button {
    background: #1b1b1b;
    color: #f5f5f5;
    border-color: rgba(255, 255, 255, 0.12);
}

body.theme-dark .filter-input {
    background: #1b1b1b;
    color: #f5f5f5;
    border-color: rgba(255, 255, 255, 0.12);
}

body.theme-dark .release-link {
    color: #f5f5f5;
}

body.theme-dark .theme-toggle {
    background: #1b1b1b;
    color: #f5f5f5;
    border-color: rgba(255, 255, 255, 0.12);
}

body.theme-light {
    --ink: #0b0b0b;
    --muted: #4b5563;
    --paper: #f8f5ef;
    --card: #ffffff;
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

body.theme-light {
    background: radial-gradient(900px 600px at 8% 8%, rgba(246, 196, 0, 0.4) 0%, transparent 60%),
                radial-gradient(900px 600px at 92% 10%, rgba(239, 74, 168, 0.35) 0%, transparent 58%),
                radial-gradient(800px 520px at 90% 90%, rgba(44, 97, 255, 0.25) 0%, transparent 60%),
                linear-gradient(180deg, #fdf7e9 0%, #f6f0e6 60%, #f1ede7 100%);
}

body.theme-light .topbar {
    background: rgba(248, 250, 252, 0.8);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

body.theme-light .section-card,
body.theme-light .video-grid > div {
    background: var(--card);
    border-color: rgba(15, 23, 42, 0.06);
}

body.theme-light table th,
body.theme-light table td {
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

body.theme-light .chip {
    background: rgba(15, 23, 42, 0.06);
    color: var(--muted);
}

body.theme-light .filter-button {
    background: #fff;
    color: var(--ink);
    border-color: rgba(15, 23, 42, 0.12);
}

body.theme-light .filter-input {
    background: #fff;
    color: var(--ink);
    border-color: rgba(15, 23, 42, 0.15);
}

body.theme-light .release-link {
    color: var(--ink);
}

.page > section {
    opacity: 0;
    transform: translateY(14px);
    animation: rise 700ms ease forwards;
}

.page > section:nth-child(2) {
    animation-delay: 120ms;
}

.page > section:nth-child(3) {
    animation-delay: 220ms;
}

.page > section:nth-child(4) {
    animation-delay: 320ms;
}

@keyframes rise {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 960px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .topbar-inner {
        flex-direction: column;
        gap: 10px;
    }
}

/* ---- MobilePay donation widget ---- */
:root {
    --mobilepay: #5a78ff;
}

.donate {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 40;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.donate-fab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: none;
    border-radius: 999px;
    background: var(--mobilepay);
    color: #fff;
    font-family: inherit;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(90, 120, 255, 0.45);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.donate-fab:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(90, 120, 255, 0.55);
}

.donate-panel {
    order: -1; /* panel sits above the button and opens upward */
    position: relative;
    width: min(320px, calc(100vw - 40px));
    background: var(--card);
    color: var(--ink);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 22px;
}

.donate-panel:not([hidden]) {
    animation: donate-pop 0.22s ease;
}

@keyframes donate-pop {
    from { opacity: 0; transform: translateY(8px) scale(0.98); }
    to { opacity: 1; transform: none; }
}

.donate-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.06);
    color: var(--muted);
    cursor: pointer;
}

.donate-close:hover {
    background: rgba(15, 23, 42, 0.12);
}

.donate-title {
    font-family: "Bebas Neue", "Space Grotesk", sans-serif;
    font-size: 1.8rem;
    letter-spacing: 0.04em;
    margin: 6px 0 8px;
}

.donate-text {
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.5;
    margin: 0 0 16px;
}

.donate-amounts {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.donate-amount {
    flex: 1;
    text-align: center;
    padding: 9px 0;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.06);
    color: var(--muted);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: default;
}

.donate-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 14px;
    background: rgba(90, 120, 255, 0.12);
    margin-bottom: 12px;
}

.donate-number-label {
    font-size: 0.78rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.donate-number-value {
    font-family: "Bebas Neue", "Space Grotesk", sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.06em;
    color: var(--mobilepay);
}

.donate-copy {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 999px;
    background: var(--mobilepay);
    color: #fff;
    cursor: pointer;
    flex: none;
    transition: background 0.15s ease;
}

.donate-copy.is-copied {
    background: var(--accent-3);
}

.donate-steps {
    font-size: 0.82rem;
    color: var(--muted);
    text-align: center;
    line-height: 1.45;
    margin: 4px 0 0;
}

.donate-qr {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
}

.donate-qr img,
.donate-qr-ph {
    width: 148px;
    height: 148px;
    background: #fff;
    border-radius: 12px;
    padding: 8px;
    box-sizing: border-box;
}

.donate-qr-ph {
    display: none; /* revealed by the img onerror fallback */
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--muted);
    font-size: 0.8rem;
    border: 1px dashed rgba(15, 23, 42, 0.2);
}

.donate-qr-hint {
    font-size: 0.78rem;
    color: var(--muted);
}

.donate-note {
    margin-top: 12px;
    font-size: 0.72rem;
    color: var(--muted);
    text-align: center;
}

body.theme-dark .donate-panel {
    background: rgba(20, 20, 20, 0.96);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

body.theme-dark .donate-amount {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

body.theme-dark .donate-amount:hover {
    background: rgba(90, 120, 255, 0.3);
    color: #fff;
}

body.theme-dark .donate-close {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* Mobile: same-device QR scanning is pointless, so hide it and lean on the tap-to-pay button. */
@media (max-width: 640px) {
    .donate {
        right: 14px;
        bottom: 14px;
    }

    .donate-panel {
        width: min(300px, calc(100vw - 28px));
    }

    .donate-qr {
        display: none;
    }
}

/* ---- Front page / landing (cover wall) ---- */
.landing-hero {
    position: relative;
    min-height: calc(100vh - 170px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    border-radius: var(--radius);
    margin-top: 8px;
    isolation: isolate;
}

/* Drifting mosaic of every cover behind the hero text. Opaque so the animated
   waves don't show through it; edges fade out so it blends into the page. */
.cover-wall {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 1;
    display: flex;
    gap: 8px;
    align-items: flex-start;
    /* Fade only top/bottom (where the columns scroll in/out); keep left/right full. */
    -webkit-mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 88%, transparent);
    mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 88%, transparent);
    pointer-events: none;
}

/* Each column drifts vertically at its own speed and direction (parallax). */
.cw-col {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    animation: cw-scroll 80s linear infinite;
    will-change: transform;
}

.cw-col:nth-child(1) { animation-duration: 60s; }
.cw-col:nth-child(2) { animation-duration: 92s; }
.cw-col:nth-child(3) { animation-duration: 46s; }
.cw-col:nth-child(4) { animation-duration: 104s; }
.cw-col:nth-child(5) { animation-duration: 74s; }

.cw-tile {
    aspect-ratio: 1 / 1;
    background-size: cover;
    background-position: center;
    border-radius: 6px;
}

@keyframes cw-scroll {
    from { transform: translateY(0); }
    to   { transform: translateY(-50%); } /* tiles doubled per column, so -50% loops */
}

.landing-scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(ellipse at center, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.35) 72%),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.55));
}

body.theme-light .landing-scrim {
    background:
        radial-gradient(ellipse at center, rgba(255, 255, 255, 0.15) 0%, rgba(248, 245, 239, 0.5) 74%),
        linear-gradient(to bottom, rgba(248, 245, 239, 0.45), rgba(248, 245, 239, 0.72));
}

.landing-hero-inner {
    position: relative;
    z-index: 2;
    padding: 40px 24px;
    max-width: 820px;
}

.landing-title {
    font-family: "Bebas Neue", "Space Grotesk", sans-serif;
    font-size: clamp(3.5rem, 12vw, 9rem);
    line-height: 0.9;
    letter-spacing: 0.04em;
    margin: 0 0 14px;
}

/* Hero wordmark: the theme-swapped logo instead of plain text. */
.landing-logo {
    width: min(560px, 82%);
    height: auto;
    margin: 0 auto;
}

.landing-logo-light { display: none; }
.landing-logo-dark { display: block; }
body.theme-light .landing-logo-light { display: block; }
body.theme-light .landing-logo-dark { display: none; }

/* Topbar logo links to the front page. */
.brand-link {
    display: inline-flex;
    align-items: center;
}

.landing-tagline {
    font-size: clamp(1rem, 2.2vw, 1.35rem);
    color: var(--muted);
    max-width: 42ch;
    margin: 0 auto 26px;
    line-height: 1.5;
}

.landing-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Primary CTA: the site's pill, scaled up in Bebas, with a soft brand glow on hover. */
.rave-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 36px;
    border-radius: 999px;
    font-family: "Bebas Neue", "Space Grotesk", sans-serif;
    font-size: clamp(1.3rem, 3vw, 1.9rem);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: var(--ink);
    color: var(--card);
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.rave-btn::after {
    content: "\2192"; /* → */
    font-size: 0.85em;
    transition: transform 0.15s ease;
}

.rave-btn:hover {
    color: var(--card);
    transform: translateY(-2px);
    box-shadow: 0 10px 34px rgba(240, 66, 137, 0.28), 0 10px 46px rgba(0, 167, 217, 0.20);
}

.rave-btn:hover::after {
    transform: translateX(3px);
}

.rave-btn:active {
    transform: translateY(0) scale(0.99);
}

.landing-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: baseline;
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.landing-stats strong {
    font-family: "Bebas Neue", "Space Grotesk", sans-serif;
    font-size: 1.5rem;
    color: var(--ink);
    letter-spacing: 0.03em;
    margin-right: 5px;
}

.landing-body {
    line-height: 1.6;
    max-width: 65ch;
    color: var(--ink);
}

/* Roster ticker */
.roster-marquee {
    overflow: hidden;
    margin-top: 28px;
    padding: 14px 0;
    border-top: 1px solid rgba(127, 127, 127, 0.2);
    border-bottom: 1px solid rgba(127, 127, 127, 0.2);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.roster-track {
    display: inline-flex;
    gap: 34px;
    white-space: nowrap;
    animation: roster-scroll 60s linear infinite;
    will-change: transform;
}

.roster-item {
    font-family: "Bebas Neue", "Space Grotesk", sans-serif;
    font-size: 1.6rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
}

.roster-item::after {
    content: "\00b7";
    margin-left: 34px;
    color: var(--accent);
}

@keyframes roster-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* Clickable featured covers */
.landing-featured {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 14px;
    margin-bottom: 18px;
}

.lf-tile {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-decoration: none;
    color: var(--ink);
}

.lf-cover {
    aspect-ratio: 1 / 1;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.15s ease;
}

.lf-tile:hover .lf-cover {
    transform: translateY(-4px);
}

.lf-meta {
    display: flex;
    flex-direction: column;
    font-size: 0.8rem;
    line-height: 1.25;
    color: var(--muted);
}

.lf-meta strong {
    color: var(--ink);
    font-weight: 600;
}

@media (prefers-reduced-motion: reduce) {
    .cw-col,
    .rave-btn {
        animation: none;
    }
}
