/* THE ROCK STREET JOURNAL — Puzzles-Inspired Redesign */

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-size: 17px;
    background: #0a0a0a;
    color: #e0e0e0;
    line-height: 1.6;
}

a { color: #c0392b; text-decoration: none; transition: color 0.2s ease; }
a:hover { color: #e74c3c; text-decoration: none; }

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px 40px;
}

/* === ACCENT BAR (Puzzles-style top line) === */
.accent-bar {
    height: 4px;
    background: #000;
}

/* ===========================
   TOP NAV (Puzzles-style logo + menu + dropdowns)
   =========================== */
.topnav {
    background: #000;
    border-bottom: 1px solid #1a1a1a;
    position: sticky;
    top: 0;
    z-index: 100;
}

.topnav-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
}

.topnav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.topnav-logo img {
    height: 36px;
    width: auto;
    max-width: 280px;
    display: block;
}

.topnav-menu {
    display: flex;
    align-items: center;
    gap: 0;
}

.topnav-link {
    color: #aaa;
    font-size: 0.72em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 18px 16px;
    transition: color 0.2s ease, background 0.2s ease;
    white-space: nowrap;
}

.topnav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
    text-decoration: none;
}

/* LIVE radio button */
.topnav-live {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
}

.topnav-live-icon {
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.topnav-live.playing {
    color: #c0392b;
}

.topnav-live.playing .topnav-live-icon {
    opacity: 1;
    color: #c0392b;
}

.topnav-live-spectrum {
    display: flex;
    align-items: flex-end;
    gap: 1px;
    height: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.topnav-live.playing .topnav-live-spectrum {
    opacity: 1;
}

.topnav-live-spectrum span {
    width: 2px;
    height: 3px;
    background: #c0392b;
    border-radius: 1px;
    animation: navSpectrumPulse 0.6s ease-in-out infinite alternate;
}

.topnav-live-spectrum span:nth-child(1) { animation-delay: 0s; }
.topnav-live-spectrum span:nth-child(2) { animation-delay: 0.12s; }
.topnav-live-spectrum span:nth-child(3) { animation-delay: 0.06s; }
.topnav-live-spectrum span:nth-child(4) { animation-delay: 0.18s; }
.topnav-live-spectrum span:nth-child(5) { animation-delay: 0.09s; }

@keyframes navSpectrumPulse {
    0% { height: 3px; }
    100% { height: 14px; }
}

.topnav-live-volume {
    opacity: 0.5;
    transition: opacity 0.2s ease;
    display: flex;
    align-items: center;
}

.topnav-live-volume:hover {
    opacity: 1;
}

.topnav-live-vol-wrap {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.topnav-vol-slider {
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 30px;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    padding: 0 10px;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.topnav-vol-slider input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 80px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    cursor: pointer;
}

.topnav-vol-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
}

/* Mobile radio indicator — next to hamburger */
.topnav-mobile-radio {
    display: none;
    align-items: center;
    gap: 4px;
    margin-right: 8px;
    color: #c0392b;
    cursor: pointer;
}

.topnav-mobile-radio .topnav-mobile-spectrum {
    opacity: 1;
}

@media (max-width: 768px) {
    .topnav-mobile-radio.active {
        display: flex;
    }
}

/* Dropdown container */
.topnav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.topnav-has-sub::after {
    content: ' \25BE';
    font-size: 0.8em;
    opacity: 0.5;
}

.topnav-sub {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background: #111;
    border: 1px solid #222;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    z-index: 200;
    padding: 6px 0;
}

.topnav-dropdown:hover .topnav-sub {
    display: block;
}

.topnav-sub a {
    display: block;
    padding: 8px 18px;
    color: #999;
    font-size: 0.72em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.15s ease, background 0.15s ease, padding-left 0.15s ease;
}

.topnav-sub a:hover {
    color: #fff;
    background: rgba(192, 57, 43, 0.12);
    padding-left: 22px;
    text-decoration: none;
}

/* Mobile hamburger */
.topnav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.topnav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #aaa;
    transition: background 0.2s ease;
}

.topnav-toggle:hover span {
    background: #fff;
}

@media (max-width: 768px) {
    .topnav-menu {
        display: none;
        position: absolute;
        top: 56px;
        left: 0;
        right: 0;
        background: #0f0f0f;
        border-bottom: 1px solid #222;
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 0;
        z-index: 200;
    }

    .topnav-menu.open {
        display: flex;
    }

    .topnav-toggle {
        display: flex;
    }

    .topnav-link {
        padding: 12px 20px;
        width: 100%;
        text-align: left;
    }

    .topnav-dropdown {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
    }

    .topnav-sub {
        display: none;
        position: static;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background: #0a0a0a;
        padding-left: 20px;
    }

    .topnav-dropdown:hover .topnav-sub {
        display: none;
    }

    .topnav-dropdown.open .topnav-sub {
        display: block;
    }
}

/* Mobile pills — homepage only, matches mosaic-badge style */
.mobile-pills {
    display: none !important;
}

@media (max-width: 768px) {
    .mobile-pills {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
        padding: 0 20px;
        margin: -10px auto 12px;
        max-width: 1440px;
    }

    .mobile-pills a.mobile-pill,
    .mobile-pills button.mobile-pill {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 4px 12px;
        border-radius: 3px;
        font-size: 0.58em;
        font-weight: 700;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        text-decoration: none;
        transition: opacity 0.15s ease;
        cursor: pointer;
        border: none;
        background: rgba(40, 40, 40, 0.9);
    }

    .mobile-pills a.mobile-pill:hover,
    .mobile-pills button.mobile-pill:hover {
        opacity: 0.85;
        text-decoration: none;
    }

    .mobile-pills .mobile-pill-radio { color: #3498db !important; }
    .mobile-pills .mobile-pill-news { color: #c0392b !important; }
    .mobile-pills .mobile-pill-peel { color: #228B22 !important; }
    .mobile-pills .mobile-pill-sunra { color: #9b59b6 !important; }
    .mobile-pills .mobile-pill-sinclair { color: #D4AF37 !important; }
    .mobile-pills .mobile-pill-special { color: #e84393 !important; }
}

/* ===========================
   ANNOUNCEMENT SLIDER
   =========================== */
.announcement-slider {
    position: relative;
    max-width: 1440px;
    margin: 0 auto 20px;
    padding: 0 20px;
    overflow: hidden;
}

.slider-track {
    position: relative;
    aspect-ratio: 4 / 1;
    border-radius: 6px;
    overflow: hidden;
}

.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    text-decoration: none;
    opacity: 0;
    transition: opacity 0.6s ease;
    cursor: pointer;
}

.slider-slide.active {
    opacity: 1;
    z-index: 1;
}

.slider-img {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 100%;
    width: auto;
    max-width: 75%;
    object-fit: contain;
    object-position: right bottom;
    z-index: 1;
    pointer-events: none;
}

.slider-sunra .slider-img,
.slider-special .slider-img {
    max-width: 85%;
}

/* Interbeing treatment images — scaled up, full vivid */
.slider-sunra .slider-img,
.slider-live .slider-img,
.tier2-hero-peel .slider-img,
.tier2-hero-sunra .slider-img,
.tier2-hero-sinclair .slider-img {
    transform: scale(1.2);
    transform-origin: right bottom;
    opacity: 1;
    filter: none;
    mix-blend-mode: normal;
}

.slider-radio .slider-img,
.slider-special .slider-img {
    transform: scale(1.3);
    transform-origin: right bottom;
    opacity: 1;
    filter: none;
    mix-blend-mode: normal;
}


/* Slide color themes */
.slider-sunra {
    background: linear-gradient(135deg, #1a0a2e 0%, #2a1a4e 50%, #1a0a2e 100%);
    border: 1px solid rgba(180, 100, 220, 0.7);
    border-radius: 8px;
}

.slider-radio {
    background: linear-gradient(135deg, #0a0a1a 0%, #10102a 50%, #0a0a1a 100%);
    border: 1px solid #3498db;
    border-radius: 8px;
}

.slider-live {
    background: linear-gradient(135deg, #0a1a0a 0%, #1a3a1a 50%, #0f2a0f 100%);
    border: 1px solid #22c55e;
    border-radius: 8px;
}

.slider-sinclair {
    background: linear-gradient(135deg, #1a1500 0%, #2a2200 50%, #1a1500 100%);
    border: 1px solid #D4AF37;
    border-radius: 8px;
}

.slider-special {
    background: linear-gradient(135deg, #1a0a0a 0%, #2a1010 50%, #1a0a0a 100%);
    border: 1px solid #c0392b;
    border-radius: 8px;
}

.slider-event {
    background: linear-gradient(135deg, #1a0a2e 0%, #2a1a4e 50%, #1a0a2e 100%);
    border: 1px solid #D4AF37;
    border-radius: 8px;
}

.slider-feature {
    background: linear-gradient(135deg, #1a0a0a 0%, #2a1010 50%, #1a0a0a 100%);
    border: 1px solid #c0392b;
    border-radius: 8px;
}

.slider-overlay {
    padding: 25px 35px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.slider-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    display: inline-block;
    font-size: 0.58em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 4px 12px;
    border-radius: 3px;
    width: 130px;
    text-align: left;
    z-index: 5;
}

.slider-live .slider-badge {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid #22c55e;
}

.slider-event .slider-badge {
    background: rgba(212, 175, 55, 0.2);
    color: #D4AF37;
    border: 1px solid #D4AF37;
}

.slider-feature .slider-badge {
    background: rgba(192, 57, 43, 0.2);
    color: #e74c3c;
    border: 1px solid #c0392b;
}

.slider-radio .slider-badge {
    background: rgba(52, 152, 219, 0.2);
    color: #3498db;
    border: 1px solid #3498db;
}

.live-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    margin-right: 4px;
    animation: live-pulse 2s infinite;
}

.slider-title {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.6em;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    line-height: 1.2;
}

.slider-desc {
    color: #bbb;
    font-size: 0.85em;
    max-width: 600px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.slider-play {
    display: inline-block;
    font-size: 0.6em;
    vertical-align: middle;
    margin-left: 8px;
    opacity: 0.8;
}

.slider-cta {
    color: #fff;
    font-size: 0.75em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.slider-slide:hover .slider-cta {
    opacity: 1;
}

/* Slider navigation dots */
.slider-dots {
    position: absolute;
    top: 12px;
    right: 32px;
    display: flex;
    gap: 8px;
    z-index: 5;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid #555;
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: all 0.2s ease;
}

.slider-dot.active {
    background: #c0392b;
    border-color: #c0392b;
}

.slider-dot:hover {
    border-color: #c0392b;
}

/* Slider arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: 1px solid #333;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.4em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 2;
    padding: 0;
    line-height: 1;
}

.slider-arrow:hover {
    background: rgba(192, 57, 43, 0.7);
    border-color: #c0392b;
}

.slider-prev { left: 30px; }
.slider-next { right: 30px; }

@media (max-width: 768px) {
    .slider-track { aspect-ratio: 3 / 1; }
    .slider-title { font-size: 1.2em; }
    .slider-overlay { padding: 20px; }
    .slider-arrow { display: none; }
    .slider-desc { display: none; }
}

@media (max-width: 480px) {
    .slider-track { aspect-ratio: 2 / 1; }
    .slider-title { font-size: 1em; }
    .slider-desc { font-size: 0.75em; }
}

/* ===========================
   PUZZLE NAV (color-coded homepage nav)
   =========================== */
.puzzle-nav {
    display: flex;
    justify-content: center;
    gap: 0;
    max-width: 1440px;
    margin: 0 auto 20px;
    padding: 0 20px;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
    background: #0f0f0f;
}

.pnav-item {
    color: #888;
    font-size: 0.72em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 12px 18px;
    transition: color 0.2s ease, background 0.2s ease;
    border-bottom: 3px solid transparent;
}

.pnav-item:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.03);
    text-decoration: none;
}

.pnav-peel { color: #228B22; border-bottom-color: #228B22; }
.pnav-peel:hover { color: #2ecc71; }
.pnav-sinclair { color: #D4AF37; border-bottom-color: #D4AF37; }
.pnav-sinclair:hover { color: #f1c40f; }
.pnav-sunra { color: #9b59b6; border-bottom-color: #9b59b6; }
.pnav-sunra:hover { color: #bb77d6; }
.pnav-music { color: #e74c3c; border-bottom-color: #e74c3c; }
.pnav-music:hover { color: #ff6b5b; }
.pnav-live { color: #22c55e; border-bottom-color: #22c55e; }
.pnav-live:hover { color: #4ade80; }

@media (max-width: 768px) {
    .puzzle-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    .pnav-item {
        padding: 8px 12px;
        font-size: 0.65em;
    }
}

/* ===========================
   MOSAIC GRID (Puzzles-style image cards)
   =========================== */
.mosaic-section {
    max-width: 1440px;
    margin: 0 auto 25px;
    padding: 0 20px;
}

.mosaic-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.mosaic-card {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    display: block;
    text-decoration: none;
    border: 1px solid #1a1a1a;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 1 / 1;
}

.mosaic-card img,
.mosaic-card video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, opacity 0.3s ease;
}

.mosaic-vimeo-iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 177.78%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.mosaic-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
    text-decoration: none;
}

.mosaic-card:hover img,
.mosaic-card:hover video {
    transform: scale(1.05);
    opacity: 0.7;
}

/* Mute button on video cards */
.mosaic-mute-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
}
.mosaic-mute-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* Speaker button on ALL cards */
.mosaic-speaker-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, opacity 0.2s ease;
    opacity: 0.5;
}
.mosaic-speaker-btn.active {
    opacity: 1;
}
.mosaic-speaker-btn.inactive {
    opacity: 0.35;
    cursor: default;
}
.mosaic-speaker-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}
.mosaic-speaker-btn.inactive:hover {
    background: rgba(0, 0, 0, 0.6);
}

/* Volume slider (vertical, below speaker) */
.mosaic-volume-wrap {
    position: absolute;
    top: 50px;
    right: 8px;
    z-index: 20;
    background: rgba(0, 0, 0, 0.75);
    border-radius: 6px;
    padding: 10px 6px;
    width: 36px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mosaic-volume-slider {
    writing-mode: vertical-lr;
    direction: rtl;
    -webkit-appearance: none;
    appearance: none;
    width: 6px;
    height: 80px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 3px;
    outline: none;
    cursor: pointer;
}
.mosaic-volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
}
.mosaic-volume-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    border: none;
    cursor: pointer;
}

/* Hide any stray play-buttons.js injections inside mosaic cards */
.mosaic-card .play-btn { display: none !important; }

/* Center play button on ALL cards */
.mosaic-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.2s ease, background 0.2s ease;
}
.mosaic-play-btn:hover {
    opacity: 0.85;
    background: rgba(0, 0, 0, 0.6);
}
.mosaic-play-btn svg {
    margin-left: 2px;
}

/* Audio visualizer canvas — replaces play button when audio is playing */
.mosaic-visualizer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    cursor: pointer;
    border-radius: 50%;
    pointer-events: auto;
}

/* "MORE" link — sits below description in overlay, never clipped by line-clamp */
.mosaic-more-btn {
    display: block;
    font-size: 0.85em;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: opacity 0.2s ease;
    white-space: nowrap;
    cursor: pointer;
    margin-top: 0.3em;
    pointer-events: auto;
}
.mosaic-more-btn:hover {
    opacity: 0.8;
}

/* Mobile title arrow — small white triangle, mobile only */
.mosaic-title-arrow {
    display: none;
}
.mosaic-title {
    -webkit-tap-highlight-color: transparent;
    outline: none;
    background: transparent !important;
}
@media (max-width: 768px) {
    .mosaic-title-arrow {
        display: inline;
        font-size: 0.5em;
        color: #fff !important;
        opacity: 0.7;
        margin-left: 4px;
        vertical-align: middle;
        background: transparent !important;
        border: none !important;
        padding: 0;
        margin: 0 0 0 4px;
        -webkit-tap-highlight-color: transparent;
        -webkit-appearance: none;
        outline: none !important;
        box-shadow: none !important;
        line-height: 1;
    }
}

/* Card sizes */
.mosaic-tall {
    grid-row: span 2;
}

.mosaic-wide {
    grid-column: span 2;
}

.mosaic-featured {
    grid-column: span 2;
    grid-row: span 2;
}

.mosaic-featured .mosaic-title {
    font-size: 1.4em;
}

.mosaic-featured .mosaic-desc {
    font-size: 0.95em;
    display: block;
}

.mosaic-featured .mosaic-badge {
    font-size: 0.7em;
    padding: 4px 10px;
}

.mosaic-featured .mosaic-overlay {
    padding: 20px;
    padding-top: 60px;
}

/* Overlay */
.mosaic-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    padding-top: 40px;
    background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.mosaic-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.58em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 4px 12px;
    border-radius: 3px;
    width: 130px;
    text-align: left;
    color: #fff;
    background: rgba(192, 57, 43, 0.85);
    z-index: 3;
}

.mosaic-badge-sinclair { background: rgba(184, 140, 20, 0.9); color: #fff; }
.mosaic-badge-sunra { background: rgba(180, 100, 220, 0.9); }
.mosaic-badge-peel { background: rgba(34, 139, 34, 0.85); }
.mosaic-badge-rfm { background: rgba(52, 152, 219, 0.85); }
.mosaic-badge-special { background: rgba(192, 57, 43, 0.85); }
.mosaic-badge-start { background: rgba(192, 57, 43, 0.85); }
.mosaic-badge-tiktok { background: rgba(255, 0, 127, 0.9); color: #fff; }
.mosaic-badge-live { background: rgba(34, 197, 94, 0.85); }

.mosaic-noimg {
    background: #2a2a2a;
}

.mosaic-number {
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.65em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.mosaic-title {
    color: #fff;
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.3em;
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.mosaic-desc {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.75em;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.8em;
}

/* Voice-specific card accent borders */
.mosaic-sinclair { border-color: rgba(212, 175, 55, 0.3); }
.mosaic-sinclair:hover { border-color: #D4AF37; }
.mosaic-sunra { border-color: rgba(180, 100, 220, 0.5); }
.mosaic-sunra:hover { border-color: #b564dc; }
.mosaic-peel { border-color: rgba(34, 139, 34, 0.3); }
.mosaic-peel:hover { border-color: #228B22; }
.mosaic-rfm { border-color: rgba(52, 152, 219, 0.3); }
.mosaic-rfm:hover { border-color: #3498db; }
.mosaic-special { border-color: rgba(192, 57, 43, 0.3); }
.mosaic-special:hover { border-color: #c0392b; }
.mosaic-start { border-color: rgba(192, 57, 43, 0.3); }
.mosaic-start:hover { border-color: #c0392b; }
.mosaic-tiktok { border-color: rgba(255, 255, 255, 0.1); }
.mosaic-tiktok:hover { border-color: #fff; }

/* Mosaic footer */
.mosaic-footer {
    text-align: center;
    margin-top: 15px;
    padding-top: 12px;
    border-top: 1px solid #1a1a1a;
    font-size: 0.75em;
}

.mosaic-footer a {
    color: #888;
    margin: 0 12px;
}
.mosaic-footer a:hover { color: #e74c3c; }

.mosaic-footer-stat {
    color: #555;
    margin-right: 10px;
}

/* Mosaic responsive */
@media (max-width: 1024px) {
    .mosaic-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .mosaic-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .mosaic-wide { grid-column: span 1; }
    .mosaic-tall { grid-row: span 1; }
    .mosaic-featured { grid-column: span 1; grid-row: span 1; }
    .mosaic-title { font-size: 0.95em; }
    .mosaic-desc { display: none; }
    .mosaic-overlay { padding: 12px; }
    .mosaic-speaker-btn { display: flex; width: 36px; height: 36px; }
    .mosaic-play-btn { display: flex; width: 56px; height: 56px; }
}

/* ===========================
   HOME LISTS (sidebar-style lists below mosaic)
   =========================== */
.home-lists {
    max-width: 1440px;
    margin: 0 auto;
    padding: 30px 20px 0;
}

.home-lists-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.home-list-title {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1em;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 10px;
    border-bottom: 2px solid #555;
    margin-bottom: 12px;
}

.home-list-items {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: list-counter;
}

ol.home-list-items .home-list-item {
    counter-increment: list-counter;
}

ol.home-list-items .home-list-item::before {
    content: counter(list-counter) ".";
    color: #c0392b;
    font-weight: 700;
    font-size: 0.75em;
    margin-right: 8px;
    min-width: 18px;
    display: inline-block;
}

.home-list-item {
    padding: 6px 0;
    border-bottom: 1px solid #333;
    font-size: 0.8em;
    line-height: 1.4;
}

.home-list-item a {
    color: #999;
}

.home-list-item a:hover {
    color: #fff;
}

.home-list-play {
    color: #555;
    margin-right: 6px;
    vertical-align: middle;
    display: inline-block;
}

.home-list-meta {
    display: block;
    color: #555;
    font-size: 0.85em;
    margin-top: 2px;
}

.home-list-play {
    color: #22c55e;
    font-size: 0.75em;
    margin-right: 4px;
}

.home-list-date {
    display: inline-block;
    font-size: 0.75em;
    font-weight: 700;
    color: #c0392b;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 8px;
    min-width: 50px;
}

@media (max-width: 1024px) {
    .home-lists-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .home-lists-grid {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   COMPACT HEADER (inner pages)
   =========================== */
.compact-header {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1440px;
    margin: 0 auto;
    padding: 12px 20px;
    border-bottom: 2px solid #1a1a1a;
    background: #0a0a0a;
    position: sticky;
    top: 0;
    z-index: 100;
}

.compact-title {
    color: #c0392b;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.1em;
    font-weight: 700;
    white-space: nowrap;
    text-decoration: none;
}

.compact-title:hover { text-decoration: none; color: #fff; }

.compact-nav {
    display: flex;
    gap: 18px;
    font-size: 0.75em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.compact-nav a { color: #777; }
.compact-nav a:hover { color: #e74c3c; text-decoration: none; }

/* ===========================
   WIDE HEADER LOGO (homepage)
   =========================== */
.header-logo-wide {
    text-align: center;
    padding: 20px 0;
}

.header-logo-wide a {
    display: block;
}

.header-logo-wide img {
    width: 100%;
    max-width: 1100px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* ===========================
   MARDI GRAS BANNER
   =========================== */
.mardi-gras-banner {
    margin: 0 0 15px;
}

.mardi-gras-banner a {
    display: block;
}

.mardi-gras-banner img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===========================
   TIKTOK VIDEO GRID
   =========================== */
.tiktok-grid {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    max-width: 1440px;
    margin: 0 auto 20px;
    padding: 0 20px;
}

.tiktok-grid a {
    flex: 1;
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    border: 1px solid #1a1a1a;
}

/* Aspect ratio container using padding-bottom (universal browser support) */
.tiktok-grid a::before {
    content: '';
    display: block;
    padding-bottom: 177.78%; /* 16:9 vertical = 16/9 * 100 = 177.78% */
}

.tiktok-grid img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.2s ease;
}

.tiktok-grid a::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-40%, -50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 25px 0 25px 42px;
    border-color: transparent transparent transparent rgba(255, 255, 255, 0.5);
    z-index: 2;
    pointer-events: none;
    filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.4));
}

.tiktok-grid a:hover::after {
    border-color: transparent transparent transparent rgba(255, 255, 255, 0.85);
}

.tiktok-grid a:hover img {
    opacity: 0.8;
}

/* Mobile: 3x2 grid */
@media (max-width: 768px) {
    .tiktok-grid {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .tiktok-grid a {
        flex: 0 0 calc(33.333% - 7px);
        max-width: calc(33.333% - 7px);
    }
}

/* ===========================
   MASTHEAD (homepage mid-page)
   =========================== */
.masthead {
    text-align: center;
    padding: 20px 0 15px;
    margin: 10px 0 20px;
}

.masthead-rule {
    height: 1px;
    background: #333;
    margin: 0 auto;
}

.masthead-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3em;
    font-weight: 900;
    color: #800000;
    letter-spacing: 2px;
    margin: 12px 0 8px;
    line-height: 1.1;
}

.masthead-logo-link {
    display: block;
    margin: 12px auto 8px;
}

.masthead-logo {
    display: block;
    max-width: 400px;
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.masthead-nav {
    font-size: 0.78em;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    padding: 12px 0;
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
    text-align: center;
}

.masthead-nav a {
    color: #888;
    padding: 6px 4px;
    transition: color 0.2s ease, border-bottom 0.2s ease;
}
.masthead-nav a:hover {
    color: #e74c3c;
    text-decoration: none;
    border-bottom: 2px solid #c0392b;
    padding-bottom: 4px;
}
.masthead-nav-sep { color: #222; margin: 0 10px; }

/* ===========================
   EDITORS BAR (homepage persona links)
   =========================== */
.editors-bar {
    text-align: center;
    font-size: 0.82em;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 14px 0;
    margin-bottom: 10px;
    background: #111;
    border-radius: 4px;
}

.editors-label {
    color: #666;
    margin-right: 12px;
}

.editors-bar .editor-link {
    color: #c0392b;
    font-weight: 700;
    transition: color 0.2s ease;
}

.editors-bar .editor-link:hover {
    color: #e74c3c;
}

.editors-bar .editor-sep {
    color: #333;
    margin: 0 12px;
}

/* ===========================
   THE VOICES (homepage content showcase)
   =========================== */
/* Start Here */
.start-here {
    margin: 0 0 15px;
    padding: 15px 0;
}
.start-here-title {
    color: #c0392b;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 0.8em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 15px;
}
.start-here-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
}
.start-here-item {
    background: #111;
    border: 1px solid #1a1a1a;
    border-radius: 6px;
    padding: 15px;
    transition: border-color 0.2s ease, transform 0.2s ease;
}
.start-here-item:hover {
    border-color: #c0392b;
    transform: translateY(-2px);
}
.start-here-name {
    display: block;
    color: #e0e0e0;
    font-weight: 700;
    font-size: 0.82em;
    margin-bottom: 6px;
}
.start-here-name:hover { color: #e74c3c; }
.start-here-desc {
    display: block;
    color: #666;
    font-size: 0.72em;
    line-height: 1.5;
}
@media (max-width: 768px) {
    .start-here-grid { grid-template-columns: 1fr; gap: 10px; }
}

.voices-section {
    margin: 0 0 25px;
    padding: 20px 0;
}

.voices-title {
    color: #c0392b;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.voices-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #c0392b;
    margin: 10px auto 0;
}

.voices-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 15px;
}

.voices-card {
    background: #111;
    border: 1px solid #1a1a1a;
    border-radius: 6px;
    padding: 20px;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    overflow: hidden;
}

.voices-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #c0392b;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.voices-card:hover {
    transform: translateY(-3px);
    border-color: #333;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.voices-card:hover::before {
    transform: scaleX(1);
}

/* Color-coded top bars per voice */
.voices-card.voice-sinclair::before { background: #D4AF37; }
.voices-card.voice-sunra::before { background: #9b59b6; }
.voices-card.voice-peel::before { background: #228B22; }
.voices-card.voice-rfm::before { background: #3498db; }

.voices-card-name {
    display: block;
    color: #e0e0e0;
    font-weight: 700;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.voices-card-name:hover { color: #fff; }

.voices-card-stat {
    display: block;
    color: #c0392b;
    font-size: 0.72em;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.voices-card-desc {
    display: block;
    color: #777;
    font-size: 0.75em;
    line-height: 1.5;
    margin-bottom: 12px;
}

.voices-card-cta {
    display: inline-block;
    color: #c0392b;
    font-size: 0.7em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid #c0392b;
    padding: 4px 12px;
    border-radius: 3px;
    transition: all 0.2s ease;
}

.voices-card-cta:hover {
    background: #c0392b;
    color: #fff;
}

.voices-footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #1a1a1a;
    font-size: 0.75em;
}

.voices-footer a { color: #888; }
.voices-footer a:hover { color: #e74c3c; }
.voices-footer-sep { color: #333; margin: 0 10px; }
.voices-footer-stat { color: #555; }

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

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

/* ===========================
   FEATURED SECTION
   =========================== */
.featured-section {
    margin-bottom: 5px;
}

.featured-lead {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.featured-lead-image {
    flex: 0 0 45%;
    max-width: 45%;
}

.featured-lead-image img {
    width: 100%;
    height: auto;
    display: block;
}

.featured-lead-text {
    flex: 1;
}

.featured-lead-headline {
    font-size: 1.6em;
    font-weight: bold;
    color: #888;
    line-height: 1.2;
    display: block;
    margin-bottom: 8px;
}

.featured-lead-headline:hover { color: #fff; }

.peel-commentary {
    color: #228B22;
    font-style: italic;
    font-size: 1em;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.peel-commentary-inline {
    color: #228B22;
    font-style: italic;
    font-size: 0.8em;
    display: block;
    text-transform: uppercase;
}

.featured-sub {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 10px;
    padding-top: 10px;
    border-top: 1px solid #1a1a1a;
}

.featured-sub-thumb {
    width: 80px;
    height: 55px;
    object-fit: cover;
    flex-shrink: 0;
}

.featured-sub-link {
    color: #888;
    font-size: 0.9em;
    font-weight: bold;
    line-height: 1.3;
}

.featured-sub-link:hover { color: #fff; }

/* ===========================
   3-COLUMN HEADLINES
   =========================== */
.headline-columns {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
    margin-top: 10px;
}

.headline-col {
    background: #111;
    border: 1px solid #1a1a1a;
    border-radius: 6px;
    padding: 15px;
    transition: border-color 0.2s ease;
}

.headline-col:hover {
    border-color: #333;
}

.headline-col-center {
    border-left: 1px solid #1a1a1a;
    border-right: 1px solid #1a1a1a;
}

.headline-item {
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid #1a1a1a;
    line-height: 1.35;
}

.headline-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.headline-item a {
    color: #999;
    font-size: 0.88em;
    font-weight: bold;
    transition: color 0.2s ease;
}

.headline-item a:hover { color: #fff; }

.col-image {
    margin: 10px 0 14px;
    border-radius: 4px;
    overflow: hidden;
}

.col-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.col-image:hover img {
    transform: scale(1.03);
}

/* Column category headers — color-coded */
.col-header {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 0.85em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 8px 12px;
    margin: -15px -15px 15px -15px;
    border-radius: 5px 5px 0 0;
    position: relative;
}

.col-header-music {
    color: #e74c3c;
    background: linear-gradient(90deg, rgba(231, 76, 60, 0.1) 0%, transparent 100%);
    border-bottom: 2px solid #e74c3c;
}

.col-header-protest {
    color: #3498db;
    background: linear-gradient(90deg, rgba(52, 152, 219, 0.1) 0%, transparent 100%);
    border-bottom: 2px solid #3498db;
}

.col-header-street {
    color: #27ae60;
    background: linear-gradient(90deg, rgba(39, 174, 96, 0.1) 0%, transparent 100%);
    border-bottom: 2px solid #27ae60;
}

/* Category-colored headline links */
.col-header-music ~ .headline-item a { color: #c0847e; }
.col-header-music ~ .headline-item a:hover { color: #e74c3c; }
.col-header-music ~ .col-image + .headline-item a,
.col-header-music ~ .headline-item:first-of-type a { color: #c0847e; }

.col-header-protest ~ .headline-item a { color: #7eaec0; }
.col-header-protest ~ .headline-item a:hover { color: #3498db; }

.col-header-street ~ .headline-item a { color: #7eaa8e; }
.col-header-street ~ .headline-item a:hover { color: #27ae60; }

/* ===========================
   NEWS FROM THE LOWER EAST SIDE
   =========================== */
.les-section {
    margin-top: 25px;
    padding: 20px;
    background: #111;
    border: 1px solid #1a1a1a;
    border-radius: 6px;
    border-left: 4px solid #e67e22;
}

.les-header {
    text-align: left;
    margin-bottom: 15px;
}

.les-title {
    color: #e67e22;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1em;
    font-weight: 700;
    letter-spacing: 3px;
}

.les-feed {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 20px;
}

.les-item {
    padding: 6px 0;
    border-bottom: 1px solid #0a0a0a;
    line-height: 1.3;
}

.les-item a {
    color: #c0a07e;
    font-size: 0.9em;
    font-weight: bold;
}

.les-item a:hover { color: #e67e22; }

.les-source {
    display: block;
    color: #555;
    font-size: 0.7em;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

/* ===========================
   FROM THE EDITOR
   =========================== */
.editor-section {
    border-top: 2px solid #222;
    margin-top: 25px;
    padding-top: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.editor-title {
    color: #c0392b;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-align: center;
    position: relative;
}

.editor-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: #c0392b;
    margin: 8px auto 0;
}

/* Editors section (homepage) */
.editors-section {
    border-top: 2px solid #333;
    margin-top: 30px;
    padding: 20px 0;
    text-align: center;
}

.editors-title {
    color: #800000;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.editors-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.editor-link {
    color: #ff0000;
    text-decoration: none;
    font-size: 1em;
    letter-spacing: 1px;
    transition: color 0.2s;
}

.editor-link:hover {
    color: #fff;
    text-decoration: underline;
}

.editor-sep {
    color: #555;
}

/* Section titles (used on feed page) */
.section-title {
    color: #800000;
    font-size: 1.2em;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 30px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #800000;
}

/* Category tabs (feed page) */
.category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 20px;
}

.cat-tab {
    background: #111;
    color: #888;
    border: 1px solid #333;
    padding: 5px 14px;
    font-family: 'Courier New', monospace;
    font-size: 0.75em;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
}

.cat-tab:hover { color: #fff; border-color: #666; }
.cat-tab.active { color: #800000; border-color: #800000; background: #1a0000; }

/* RSS feed items (single-column, feed page) */
.rss-feed {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.rss-item {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #111;
}

.rss-source {
    color: #800000;
    font-size: 0.8em;
    text-transform: uppercase;
    white-space: nowrap;
    min-width: 100px;
}

.rss-title {
    color: #888;
    flex: 1;
    font-size: 1em;
}

.rss-title:hover { color: #fff; }

.rss-time {
    color: #555;
    font-size: 0.7em;
    white-space: nowrap;
}

.empty-feed { color: #555; font-style: italic; }

.more-link {
    margin-top: 15px;
    text-align: right;
    font-size: 0.85em;
}

/* Blog post excerpts */
.post-excerpt {
    padding: 15px;
    margin-bottom: 12px;
    background: #111;
    border: 1px solid #1a1a1a;
    border-left: 3px solid #c0392b;
    border-radius: 4px;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.post-excerpt:hover {
    border-color: #333;
    border-left-color: #e74c3c;
    transform: translateX(3px);
}

.post-excerpt h3 { font-size: 0.95em; margin-bottom: 5px; }
.post-excerpt h3 a { color: #ccc; }
.post-excerpt h3 a:hover { color: #fff; }
.post-excerpt time { color: #555; font-size: 0.72em; text-transform: uppercase; letter-spacing: 1px; }
.post-excerpt p { color: #888; font-size: 0.8em; margin-top: 6px; line-height: 1.5; }

/* Full blog post */
.post-header {
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #800000;
}

.post-header h1 {
    color: #800000;
    font-size: 1.8em;
    margin-bottom: 5px;
}

.post-header time {
    color: #555;
    font-size: 0.8em;
}

.post-tags { margin-top: 8px; }

.tag {
    display: inline-block;
    background: #1a0000;
    color: #800000;
    border: 1px solid #800000;
    padding: 2px 8px;
    font-size: 0.65em;
    letter-spacing: 1px;
    margin-right: 5px;
}

.post-body {
    font-size: 1em;
    line-height: 1.8;
    color: #ddd;
}

.post-body p { margin-bottom: 15px; }
.post-body h2 { color: #800000; margin: 30px 0 10px; }
.post-body h3 { color: #800000; margin: 20px 0 10px; }
.post-body blockquote {
    border-left: 4px solid #800000;
    padding-left: 20px;
    margin: 20px 0;
    color: #aaa;
    font-style: italic;
}

.post-body pre {
    background: #0a0a0a;
    padding: 15px;
    border: 1px solid #333;
    overflow-x: auto;
    color: #228B22;
    white-space: pre-wrap;
    margin: 15px 0;
}

.post-body strong { color: #fff; }

.post-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 0.85em;
}

/* ===========================
   TIER 3 — Post Detail Pages
   =========================== */
.tier3-layout {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.tier3-grid {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 20px;
    margin-bottom: 40px;
}

.tier3-card-col {
    position: sticky;
    top: 80px;
    align-self: start;
}

.tier3-card {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #333;
    background: #111;
    aspect-ratio: 1 / 1;
}

.tier3-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tier3-card-number {
    position: absolute;
    bottom: 12px;
    right: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 4em;
    font-weight: 900;
    line-height: 1;
    opacity: 0.9;
    text-shadow: 0 2px 12px rgba(0,0,0,0.8);
}

.tier3-card-actions {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    align-items: center;
    justify-content: flex-end;
}
.tier3-card-actions .card-action-btn {
    padding: 6px 10px;
    font-size: 0.8em;
}
.tier3-grid-icon {
    display: flex;
    align-items: center;
    opacity: 0.5;
    transition: opacity 0.2s;
}

.tier3-grid-icon:hover {
    opacity: 1;
}

.tier3-content-col {
    min-width: 0;
}

.tier3-player {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.tier3-player audio {
    display: none;
}

.tier3-progress {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 0;
}

.tier3-time-current,
.tier3-time-total {
    font-family: 'Inter', sans-serif;
    font-size: 0.75em;
    color: #888;
    white-space: nowrap;
    min-width: 32px;
}

.tier3-progress-bar {
    flex: 1;
    height: 4px;
    background: #333;
    border-radius: 2px;
    cursor: pointer;
    position: relative;
}

.tier3-progress-fill {
    height: 100%;
    border-radius: 2px;
    background: var(--editor-color, #c0392b);
    width: 0%;
    transition: width 0.1s linear;
}

.tier3-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.86em;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.15;
}

.tier3-date {
    display: block;
    font-size: 0.8em;
    color: #888;
    font-family: 'Inter', sans-serif;
    margin-bottom: 24px;
}

.tier3-body {
    font-size: 1em;
    line-height: 1.7;
    color: #ccc;
}

.tier3-body audio { display: none; }
.tier3-body p { margin-bottom: 1.2em; }
.tier3-body hr { border: none; border-top: 1px solid #333; margin: 2em 0; }
.tier3-body strong { color: #fff; }
.tier3-body a { color: var(--editor-color, #c0392b); }
.tier3-body a:hover { opacity: 0.8; }

.tier3-bottom-grid {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 20px;
    margin-top: 40px;
}

.tier3-bottom-spacer {
    /* Column 1 stays clean */
}

.tier3-bottom-img {
    border-radius: 6px;
    overflow: hidden;
}

.tier3-bottom-img img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.tier3-footer {
    max-width: 1440px;
    margin: 30px auto 0;
    padding: 20px;
    font-size: 0.85em;
    border-top: 1px solid #333;
}
.tier3-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.tier3-nav-link {
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.2s;
    max-width: 40%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.tier3-nav-link:hover { opacity: 1; }
.tier3-nav-older { text-align: left; }
.tier3-nav-newer { text-align: right; }
.tier3-nav-grid {
    flex-shrink: 0;
    opacity: 0.5;
    transition: opacity 0.2s;
}
.tier3-nav-grid:hover { opacity: 1; }

@media (max-width: 768px) {
    .tier3-layout { padding: 0 20px; }
    .tier3-grid { grid-template-columns: 1fr; }
    .tier3-card-col { position: static; max-width: 280px; margin: 0 auto; }
    .tier3-card-number { font-size: 2.5em; }
    .tier3-card-actions { justify-content: flex-start; }
    .tier3-bottom-grid { grid-template-columns: 1fr; }
    .tier3-bottom-spacer { display: none; }
    .tier3-footer { padding: 20px; }
}

/* Manifesto / About */
.manifesto {
    padding: 30px 0;
    border-bottom: 1px solid #1a1a1a;
}

.manifesto h2 {
    color: #800000;
    font-size: 1.5em;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.manifesto p {
    font-size: 1em;
    margin-bottom: 12px;
    color: #ddd;
}

.highlight {
    color: #800000;
    font-weight: bold;
}

.quote {
    border-left: 4px solid #800000;
    padding-left: 20px;
    margin: 25px 0;
    font-style: italic;
    color: #aaa;
}

.quote cite {
    display: block;
    margin-top: 8px;
    color: #666;
    font-style: normal;
}

/* Links section */
.links-section {
    text-align: center;
    padding: 30px 0;
}

.links-section h2 {
    color: #800000;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.link-btn {
    display: inline-block;
    padding: 12px 25px;
    margin: 8px;
    background: #800000;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
}

.link-btn:hover { background: #600000; text-decoration: none; }

.hashtag {
    color: #800000;
    font-weight: bold;
    font-size: 1.3em;
    margin-top: 15px;
}

/* Research Archives */
.research-section {
    padding: 30px 0;
    border-bottom: 1px solid #1a1a1a;
}

.research-header {
    color: #800000;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.8em;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 2px solid #800000;
}

.research-intro {
    color: #888;
    font-style: italic;
    margin-bottom: 25px;
}

.research-category {
    margin-bottom: 25px;
}

.research-category h3 {
    color: #800000;
    font-size: 1.1em;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    padding-bottom: 5px;
    border-bottom: 1px solid #333;
}

.research-subsection {
    margin-bottom: 15px;
    padding-left: 15px;
}

.research-subsection h4 {
    color: #aaa;
    font-size: 0.9em;
    margin-bottom: 8px;
}

.research-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.research-links li {
    padding: 6px 0;
    border-bottom: 1px solid #0a0a0a;
    color: #888;
    font-size: 0.95em;
}

.research-links li:last-child {
    border-bottom: none;
}

.research-links a {
    color: #800000;
}

.research-links a:hover {
    color: #fff;
}

.research-links.books-list li {
    color: #ddd;
    font-style: italic;
}

.research-links.timeline li {
    padding: 8px 0;
}

.research-links.timeline strong {
    color: #800000;
    margin-right: 8px;
}

.research-note {
    color: #666;
    font-size: 0.85em;
    margin-top: 8px;
    padding-left: 15px;
    border-left: 2px solid #333;
}

/* Archive */
.archive { padding: 30px 0; }

.archive h2 {
    color: #800000;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.archive-intro {
    color: #888;
    margin-bottom: 20px;
}

.archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.archive-item {
    background: #111;
    padding: 10px;
    border: 1px solid #333;
}

.archive-item img {
    width: 100%;
    height: auto;
    display: block;
}

.archive-item p {
    color: #aaa;
    font-size: 0.8em;
    margin-top: 8px;
    text-align: center;
}

.archive-posts { margin: 20px 0 40px; }
.archive-post-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 6px 0;
    border-bottom: 1px solid #333;
}
.archive-post-item a { color: #e0e0e0; text-decoration: none; }
.archive-post-item a:hover { color: #fff; text-decoration: underline; }
.archive-post-date { color: #777; font-size: 0.8em; white-space: nowrap; margin-left: 12px; }

/* Lyrics */
.lyrics {
    white-space: pre-line;
    background: #000;
    padding: 20px;
    border: 1px solid #333;
    color: #228B22;
    font-family: 'Courier New', monospace;
    margin: 15px 0;
}

/* Audio players — ensure all visible players are properly sized and clickable */
audio[controls] {
    width: 100%;
    max-width: 600px;
    height: 40px;
    display: block;
    margin: 10px 0;
    border-radius: 4px;
}

/* Footer */
.site-footer {
    border-top: 2px solid #333;
    background: #000;
    color: #666;
    font-size: 0.82em;
}

.site-footer .footer-inner,
.site-footer .footer-bottom {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
}

.site-footer .footer-inner {
    padding-top: 40px;
}

.site-footer .footer-bottom {
    padding-bottom: 20px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col a {
    color: #888;
    font-size: 0.9em;
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: #fff;
    text-decoration: none;
}

.footer-heading {
    color: #777;
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.85em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.footer-brand .footer-logo-link {
    display: block;
    margin-bottom: 10px;
}

.footer-logo-img {
    max-width: 240px;
    height: auto;
    display: block;
}

.footer-tagline {
    color: #555;
    font-size: 0.85em;
    margin-bottom: 10px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    color: #666;
    font-size: 0.8em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-socials a:hover { color: #c0392b; }

.footer-bottom {
    border-top: 1px solid #1a1a1a;
    padding-top: 15px;
    text-align: center;
}

.footer-bottom p { margin: 4px 0; color: #444; }

.footer-quote {
    color: #333;
    font-style: italic;
    margin-top: 8px;
}

@media (max-width: 768px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
    .footer-brand { grid-column: span 2; }
}

@media (max-width: 480px) {
    .footer-inner { grid-template-columns: 1fr; }
    .footer-brand { grid-column: span 1; }
}

/* Blue Milk Radio Player */
.radio-player {
    background: #0a0a0a;
    border: 1px solid #228B22;
    padding: 15px 20px;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.radio-label {
    color: #228B22;
    font-size: 1em;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.radio-player audio {
    display: none;
}

.radio-link {
    color: #555;
    font-size: 0.75em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.radio-link:hover {
    color: #228B22;
}

.radio-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}

.radio-btn {
    background: transparent;
    border: 2px solid #228B22;
    color: #228B22;
    width: 40px;
    height: 40px;
    font-size: 1.1em;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.radio-btn:hover {
    background: #228B22;
    color: #000;
}

.volume-wrapper {
    position: relative;
}

.volume-popup {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    background: #0a0a0a;
    border: 1px solid #228B22;
    padding: 10px 15px;
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.volume-popup.show {
    opacity: 1;
    visibility: visible;
}

.volume-popup::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #228B22;
}

.volume-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100px;
    height: 6px;
    background: #333;
    border-radius: 3px;
    cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    background: #228B22;
    border-radius: 50%;
    cursor: pointer;
}

.volume-slider::-moz-range-thumb {
    width: 14px;
    height: 14px;
    background: #228B22;
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

.radio-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.punk-lunch-active {
    color: #ff4500;
    animation: punk-pulse 1s ease-in-out infinite alternate;
}

@keyframes punk-pulse {
    from { text-shadow: 0 0 5px #ff4500; }
    to { text-shadow: 0 0 15px #ff4500, 0 0 25px #ff0000; }
}

/* Old footer classes removed — using new footer-inner grid */

/* ===========================
   JOHN SINCLAIR PAGE
   =========================== */
.sinclair-page {
    background: linear-gradient(180deg, #0a0a1a 0%, #000 100%);
    min-height: 100vh;
}

.sinclair-hero {
    text-align: center;
    padding: 60px 20px 40px;
    background: linear-gradient(180deg, #1a1a3a 0%, #0a0a1a 100%);
    border-bottom: 2px solid #D4AF37;
}

.sinclair-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3em;
    color: #D4AF37;
    letter-spacing: 4px;
    margin-bottom: 10px;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.sinclair-subtitle {
    color: #8888cc;
    font-size: 1em;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.sinclair-tagline {
    color: #aaa;
    font-style: italic;
    font-size: 1.1em;
}

.sinclair-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    background: #0a0a1a;
    border-bottom: 1px solid #333;
}

.sinclair-nav a {
    color: #8888cc;
    text-transform: uppercase;
    font-size: 0.8em;
    letter-spacing: 1px;
}

.sinclair-nav a:hover {
    color: #D4AF37;
}

.sinclair-section {
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto;
    border-bottom: 1px solid #1a1a2a;
}

.sinclair-section-title {
    font-family: 'Playfair Display', Georgia, serif;
    color: #D4AF37;
    font-size: 1.5em;
    letter-spacing: 2px;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 1px solid #333;
}

.sinclair-content {
    color: #ccc;
}

.sinclair-timeline {
    border-left: 2px solid #3a3a6a;
    padding-left: 25px;
    margin-left: 10px;
}

.sinclair-timeline .timeline-item {
    margin-bottom: 20px;
    position: relative;
}

.sinclair-timeline .timeline-item::before {
    content: '';
    position: absolute;
    left: -31px;
    top: 5px;
    width: 12px;
    height: 12px;
    background: #3a3a6a;
    border-radius: 50%;
}

.sinclair-timeline .highlight-item::before {
    background: #D4AF37;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.sinclair-timeline .timeline-year {
    color: #D4AF37;
    font-weight: bold;
    display: block;
    font-size: 0.9em;
}

.sinclair-timeline .timeline-event {
    color: #aaa;
    font-size: 0.95em;
    line-height: 1.5;
}

.sinclair-quote {
    background: #0a0a1a;
    border-left: 4px solid #D4AF37;
    padding: 20px;
    margin: 25px 0;
    font-family: 'Special Elite', 'Courier New', monospace;
}

.sinclair-quote p {
    color: #D4AF37;
    font-style: italic;
    font-size: 1.1em;
    margin: 0;
}

.sinclair-quote.highlight-quote {
    background: linear-gradient(90deg, #1a1a0a 0%, #0a0a1a 100%);
}

.sinclair-quote cite {
    display: block;
    color: #888;
    font-size: 0.85em;
    margin-top: 10px;
    font-style: normal;
}

.sinclair-text-block {
    margin-bottom: 25px;
}

.sinclair-text-block h3 {
    color: #8888cc;
    font-size: 1.1em;
    margin-bottom: 10px;
}

.sinclair-text-block p {
    color: #aaa;
    line-height: 1.7;
    margin-bottom: 10px;
}

.sinclair-list {
    list-style: none;
    padding: 0;
}

.sinclair-list li {
    color: #aaa;
    padding: 8px 0;
    border-bottom: 1px solid #1a1a2a;
}

.sinclair-list li em {
    color: #D4AF37;
}

.poem-card {
    background: #0a0a15;
    border: 1px solid #3a3a6a;
    padding: 20px;
    margin-bottom: 20px;
}

.poem-card h3 {
    color: #8888cc;
    font-size: 1em;
    margin-bottom: 15px;
}

.poem-card .poem-text {
    color: #D4AF37;
    font-family: 'Special Elite', 'Courier New', monospace;
    white-space: pre-wrap;
    line-height: 1.6;
    font-size: 0.9em;
}

.radio-booth {
    background: linear-gradient(135deg, #0a0a15 0%, #15152a 100%);
    border: 1px solid #3a3a6a;
    padding: 25px;
    margin: 20px 0;
}

.audio-placeholder {
    text-align: center;
    padding: 30px;
    background: #050510;
    border: 1px dashed #3a3a6a;
    margin-top: 20px;
}

.audio-placeholder p {
    color: #666;
    margin: 5px 0;
}

.coming-soon-note {
    color: #666;
    font-style: italic;
    text-align: center;
    margin-top: 20px;
    padding: 10px;
    border: 1px dashed #333;
}

/* Audio Rant Player */
.audio-rant {
    background: #050510;
    border: 1px solid #3a3a6a;
    padding: 25px;
    margin-top: 20px;
    text-align: center;
}

.audio-rant-title {
    color: #0f0;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.3em;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.audio-rant audio {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.sinclair-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin: 25px 0;
}

.sinclair-btn {
    display: inline-block;
    padding: 12px 25px;
    background: transparent;
    border: 2px solid #D4AF37;
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85em;
    transition: all 0.3s ease;
}

.sinclair-btn:hover {
    background: #D4AF37;
    color: #000;
}

.sinclair-footer {
    text-align: center;
    padding: 40px 20px;
    border-top: 2px solid #D4AF37;
    background: #0a0a1a;
}

.sinclair-footer p {
    color: #8888cc;
    margin: 5px 0;
}

/* Audio Transmissions */
.audio-transmissions {
    margin-top: 30px;
}

.audio-transmissions h3 {
    color: #D4AF37;
    font-size: 1.1em;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border-bottom: 1px solid #3a3a6a;
    padding-bottom: 10px;
}

.audio-transmission {
    background: #050510;
    border: 1px solid #3a3a6a;
    padding: 20px;
    margin-bottom: 15px;
}

.audio-transmission h4 {
    font-family: 'Special Elite', 'Courier New', monospace;
    color: #D4AF37;
    font-size: 1.1em;
    margin-bottom: 5px;
}

.audio-transmission .subtitle {
    color: #8888cc;
    font-size: 0.85em;
    font-style: italic;
    margin-bottom: 15px;
}

.audio-transmission audio {
    width: 100%;
    height: 40px;
    margin-bottom: 8px;
    filter: sepia(20%) saturate(70%) hue-rotate(15deg);
}

.audio-transmission audio::-webkit-media-controls-panel {
    background: #1a1a2a;
}

.audio-transmission .duration {
    color: #666;
    font-size: 0.8em;
    text-align: right;
}

/* ===========================
   SUN RA PAGE
   =========================== */
.sunra-page {
    background: #0a051a;
    min-height: 100vh;
}

.sunra-hero {
    position: relative;
    text-align: center;
    padding: 80px 20px 60px;
    background: radial-gradient(ellipse at center, #1a0a2e 0%, #0a051a 70%);
    border-bottom: 2px solid #D4AF37;
    overflow: hidden;
}

.cosmic-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #fff, transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 90px 40px, #fff, transparent),
        radial-gradient(2px 2px at 160px 120px, rgba(255,255,255,0.9), transparent),
        radial-gradient(1px 1px at 230px 80px, #fff, transparent),
        radial-gradient(2px 2px at 300px 150px, rgba(255,255,255,0.7), transparent);
    background-size: 350px 200px;
    animation: starfield 60s linear infinite;
    opacity: 0.5;
}

@keyframes starfield {
    from { background-position: 0 0; }
    to { background-position: 350px 200px; }
}

.sunra-title {
    position: relative;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3em;
    color: #D4AF37;
    letter-spacing: 6px;
    margin-bottom: 10px;
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.5), 0 0 80px rgba(212, 175, 55, 0.2);
}

.sunra-subtitle {
    position: relative;
    color: #00BFFF;
    font-size: 1em;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.sunra-hero-quote {
    position: relative;
    color: #D4AF37;
    font-style: italic;
    font-size: 1.2em;
    max-width: 600px;
    margin: 0 auto;
    border: none;
    padding: 0;
}

.sunra-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    background: #0a051a;
    border-bottom: 1px solid #1a0a2e;
}

.sunra-nav a {
    color: #00BFFF;
    text-transform: uppercase;
    font-size: 0.75em;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.sunra-nav a:hover {
    color: #D4AF37;
}

.sunra-section {
    padding: 50px 20px;
    max-width: 1000px;
    margin: 0 auto;
    border-bottom: 1px solid #1a0a2e;
}

.sunra-section-title {
    font-family: 'Playfair Display', Georgia, serif;
    color: #D4AF37;
    font-size: 1.6em;
    letter-spacing: 3px;
    margin-bottom: 30px;
    text-align: center;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.sunra-content {
    color: #ccc;
}

.sunra-arc-note {
    text-align: center;
    color: #888;
    margin-bottom: 40px;
    font-size: 0.95em;
}

.sunra-arc-header {
    font-family: 'Playfair Display', Georgia, serif;
    color: #D4AF37;
    font-size: 1.2em;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 50px;
    margin-bottom: 5px;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.sunra-arc-desc {
    color: #888;
    font-size: 0.9em;
    margin-bottom: 25px;
}

.sunra-lead {
    font-size: 1.15em;
    color: #00BFFF;
    text-align: center;
    margin-bottom: 30px;
    font-style: italic;
}

.equation-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.equation-card {
    background: linear-gradient(135deg, #1a0a2e 0%, #0f0520 100%);
    border: 1px solid #D4AF37;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.equation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.equation-quote {
    color: #D4AF37;
    font-size: 1.1em;
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}

.poem-constellation {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.cosmic-poem {
    background: #0f0520;
    border: 1px solid #3a1a5e;
    padding: 25px;
}

.cosmic-poem h3 {
    color: #00BFFF;
    font-size: 1em;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.cosmic-poem .poem-text {
    color: #D4AF37;
    font-family: 'Courier New', monospace;
    white-space: pre-wrap;
    line-height: 1.7;
    font-size: 0.9em;
    background: transparent;
    border: none;
    padding: 0;
}

.source-note {
    text-align: center;
    color: #666;
    font-style: italic;
    margin-top: 25px;
}

.sunra-text-block {
    margin-bottom: 30px;
}

.sunra-text-block h3 {
    color: #00BFFF;
    font-size: 1.1em;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.sunra-text-block p {
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 12px;
}


.sunra-list {
    list-style: none;
    padding: 0;
}

.sunra-list li {
    color: #aaa;
    padding: 10px 0;
    border-bottom: 1px solid #1a0a2e;
}

.sunra-list li strong {
    color: #D4AF37;
}

.sunra-list li em {
    color: #00BFFF;
}

.arkestra-history {
    display: grid;
    gap: 25px;
}

.discography-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.album-card {
    background: linear-gradient(135deg, #1a0a2e 0%, #0f0520 100%);
    border: 1px solid #3a1a5e;
    padding: 20px;
    transition: border-color 0.3s ease;
}

.album-card:hover {
    border-color: #D4AF37;
}

.album-card h4 {
    color: #D4AF37;
    font-size: 1em;
    margin-bottom: 5px;
}

.album-year {
    color: #00BFFF;
    font-size: 0.85em;
    display: block;
    margin-bottom: 10px;
}

.album-card p {
    color: #888;
    font-size: 0.9em;
    line-height: 1.5;
}

.cosmic-timeline {
    border-left: 2px solid #3a1a5e;
    padding-left: 30px;
    margin-left: 15px;
}

.cosmic-timeline .timeline-item {
    margin-bottom: 25px;
    position: relative;
}

.cosmic-timeline .timeline-item::before {
    content: '';
    position: absolute;
    left: -36px;
    top: 5px;
    width: 14px;
    height: 14px;
    background: #3a1a5e;
    border-radius: 50%;
    border: 2px solid #0a051a;
}

.cosmic-timeline .cosmic-event::before {
    background: #D4AF37;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

.cosmic-timeline .timeline-year {
    color: #D4AF37;
    font-weight: bold;
    display: block;
    font-size: 0.95em;
}

.cosmic-timeline .timeline-event {
    color: #aaa;
    font-size: 0.95em;
    line-height: 1.6;
}

.transmission-notice {
    background: linear-gradient(135deg, #1a0a2e 0%, #0f0520 100%);
    border: 1px dashed #D4AF37;
    padding: 30px;
    text-align: center;
    margin: 20px 0;
}

.transmission-notice p {
    color: #888;
    margin: 10px 0;
}

.archive-links {
    display: grid;
    gap: 25px;
}

.archive-item {
    background: #0f0520;
    border: 1px solid #3a1a5e;
    padding: 25px;
}

.archive-item h4 {
    color: #D4AF37;
    font-size: 1em;
    margin-bottom: 10px;
}

.archive-item p {
    color: #888;
    margin-bottom: 15px;
}

.sunra-btn {
    display: inline-block;
    padding: 10px 20px;
    background: transparent;
    border: 2px solid #D4AF37;
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8em;
    transition: all 0.3s ease;
}

.sunra-btn:hover {
    background: #D4AF37;
    color: #0a051a;
}

.sunra-footer {
    text-align: center;
    padding: 50px 20px;
    background: radial-gradient(ellipse at center, #1a0a2e 0%, #0a051a 70%);
    border-top: 2px solid #D4AF37;
}

/* Sun Ra Audio Transmissions */
.sunra-audio.audio-transmissions h3 {
    color: #D4AF37;
    font-family: 'Special Elite', 'Courier New', monospace;
    font-size: 1.2em;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    border-bottom: 1px solid #3a1a5e;
    padding-bottom: 10px;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.sunra-audio .audio-transmission {
    background: linear-gradient(135deg, #0a051a 0%, #1a0a2e 100%);
    border: 1px solid #3a1a5e;
    padding: 25px;
    margin-bottom: 20px;
}

.sunra-audio .audio-transmission h4 {
    font-family: 'Special Elite', 'Courier New', monospace;
    color: #D4AF37;
    font-size: 1.2em;
    margin-bottom: 8px;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.sunra-audio .audio-transmission .subtitle {
    color: #00BFFF;
    font-size: 0.9em;
    font-style: italic;
    margin-bottom: 18px;
}

.sunra-audio .audio-transmission audio {
    width: 100%;
    height: 45px;
    margin-bottom: 10px;
    border-radius: 4px;
    filter: sepia(30%) saturate(80%) hue-rotate(220deg);
}

.sunra-audio .audio-transmission .duration {
    color: #666;
    font-size: 0.8em;
    text-align: right;
}

.sunra-sign-off {
    color: #D4AF37;
    font-size: 1em;
    margin-bottom: 5px;
}

.sunra-tagline {
    color: #00BFFF;
    font-size: 0.9em;
    margin-bottom: 15px;
}

.sunra-final-quote {
    color: #D4AF37;
    font-style: italic;
    font-size: 1.2em;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

/* ===========================
   DAVID PEEL PAGE
   =========================== */
.peel-page {
    background: linear-gradient(180deg, #0a1a0a 0%, #000 100%);
    min-height: 100vh;
}

.peel-hero {
    text-align: center;
    padding: 60px 20px 40px;
    background: linear-gradient(180deg, #1a2a1a 0%, #0a1a0a 100%);
    border-bottom: 2px solid #228B22;
}

.peel-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3.5em;
    color: #228B22;
    letter-spacing: 6px;
    margin-bottom: 10px;
    text-shadow: 0 0 30px rgba(34, 139, 34, 0.4);
}

.peel-subtitle {
    color: #ffa500;
    font-size: 1em;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.peel-hero-quote {
    color: #aaa;
    font-style: italic;
    font-size: 1.1em;
    max-width: 600px;
    margin: 0 auto;
    border: none;
    padding: 0;
}

.peel-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    background: #0a1a0a;
    border-bottom: 1px solid #1a2a1a;
}

.peel-nav a {
    color: #ffa500;
    text-transform: uppercase;
    font-size: 0.8em;
    letter-spacing: 1px;
}

.peel-nav a:hover {
    color: #228B22;
}

.peel-section {
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto;
    border-bottom: 1px solid #1a2a1a;
}

.peel-section-title {
    font-family: 'Playfair Display', Georgia, serif;
    color: #228B22;
    font-size: 1.5em;
    letter-spacing: 2px;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 1px solid #333;
}

.peel-content {
    color: #ccc;
}

.peel-lead {
    font-size: 1.1em;
    color: #ffa500;
    text-align: center;
    margin-bottom: 30px;
    font-style: italic;
}

.peel-timeline {
    border-left: 2px solid #1a3a1a;
    padding-left: 25px;
    margin-left: 10px;
}

.peel-timeline .timeline-item {
    margin-bottom: 20px;
    position: relative;
}

.peel-timeline .timeline-item::before {
    content: '';
    position: absolute;
    left: -31px;
    top: 5px;
    width: 12px;
    height: 12px;
    background: #1a3a1a;
    border-radius: 50%;
}

.peel-timeline .highlight-item::before {
    background: #228B22;
    box-shadow: 0 0 10px rgba(34, 139, 34, 0.5);
}

.peel-timeline .timeline-year {
    color: #228B22;
    font-weight: bold;
    display: block;
    font-size: 0.9em;
}

.peel-timeline .timeline-event {
    color: #aaa;
    font-size: 0.95em;
    line-height: 1.5;
}

.peel-quote {
    background: #0a1a0a;
    border-left: 4px solid #228B22;
    padding: 20px;
    margin: 25px 0;
    font-family: 'Courier New', monospace;
}

.peel-quote p {
    color: #228B22;
    font-style: italic;
    font-size: 1.1em;
    margin: 0;
}

.peel-quote.highlight-quote {
    background: linear-gradient(90deg, #1a2a0a 0%, #0a1a0a 100%);
}

.peel-quote cite {
    display: block;
    color: #888;
    font-size: 0.85em;
    margin-top: 10px;
    font-style: normal;
}

.peel-text-block {
    margin-bottom: 25px;
}

.peel-text-block h3 {
    color: #ffa500;
    font-size: 1.1em;
    margin-bottom: 10px;
}

.peel-text-block p {
    color: #aaa;
    line-height: 1.7;
    margin-bottom: 10px;
}

.peel-list {
    list-style: none;
    padding: 0;
}

.peel-list li {
    color: #aaa;
    padding: 8px 0;
    border-bottom: 1px solid #1a2a1a;
}

.peel-list li em {
    color: #228B22;
}

/* Peel Discography */
.peel-discography .album-card {
    background: linear-gradient(135deg, #1a2a1a 0%, #0a150a 100%);
    border: 1px solid #1a3a1a;
}

.peel-discography .album-card:hover {
    border-color: #228B22;
}

.peel-discography .album-card h4 {
    color: #228B22;
}

.peel-discography .album-year {
    color: #ffa500;
}

/* Peel Lyrics */
.lyrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.lyric-card {
    background: #0a150a;
    border: 1px solid #1a3a1a;
    padding: 20px;
}

.lyric-card h3 {
    color: #ffa500;
    font-size: 1em;
    margin-bottom: 15px;
}

.lyrics-text {
    color: #228B22;
    font-family: 'Courier New', monospace;
    white-space: pre-wrap;
    line-height: 1.5;
    font-size: 0.85em;
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
}

.lyric-year {
    display: block;
    color: #666;
    font-size: 0.8em;
    margin-top: 15px;
    text-align: right;
}

/* Peel Audio */
.peel-audio.audio-transmissions h3 {
    color: #228B22;
    font-family: 'Courier New', monospace;
    font-size: 1.1em;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border-bottom: 1px solid #1a3a1a;
    padding-bottom: 10px;
}

.peel-audio .audio-transmission {
    background: linear-gradient(135deg, #0a1a0a 0%, #1a2a1a 100%);
    border: 1px solid #1a3a1a;
    padding: 25px;
    margin-bottom: 20px;
}

.peel-audio .audio-transmission h4 {
    font-family: 'Courier New', monospace;
    color: #228B22;
    font-size: 1.1em;
    margin-bottom: 8px;
}

.peel-audio .audio-transmission .subtitle {
    color: #ffa500;
    font-size: 0.9em;
    font-style: italic;
    margin-bottom: 15px;
}

.peel-audio .audio-transmission audio {
    width: 100%;
    height: 45px;
    margin-bottom: 10px;
    filter: sepia(20%) saturate(70%) hue-rotate(80deg);
}

/* Peel Archives */
.peel-archives .archive-item {
    background: #0a150a;
    border: 1px solid #1a3a1a;
}

.peel-archives .archive-item h4 {
    color: #228B22;
}

.peel-btn {
    display: inline-block;
    padding: 10px 20px;
    background: transparent;
    border: 2px solid #228B22;
    color: #228B22;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8em;
    margin-right: 10px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.peel-btn:hover {
    background: #228B22;
    color: #000;
}

.peel-footer {
    text-align: center;
    padding: 40px 20px;
    border-top: 2px solid #228B22;
    background: #0a1a0a;
}

.peel-sign-off {
    color: #228B22;
    font-size: 1em;
    margin-bottom: 5px;
}

.peel-tagline {
    color: #ffa500;
    font-size: 0.9em;
    margin-bottom: 15px;
}

.peel-final-quote {
    color: #228B22;
    font-style: italic;
    font-size: 1.1em;
    text-shadow: 0 0 15px rgba(34, 139, 34, 0.3);
}

/* ===========================
   MOBILE
   =========================== */
@media (max-width: 768px) {
    .masthead-title { font-size: 2em; }
    .masthead-logo { max-width: 300px; }

    .featured-lead {
        flex-direction: column;
    }

    .featured-lead-image {
        flex: none;
        max-width: 100%;
    }

    .headline-columns {
        grid-template-columns: 1fr;
    }

    .headline-col {
        border-right: none;
        border-bottom: 1px solid #222;
        padding: 10px 0;
    }

    .headline-col-center {
        border-left: none;
        border-right: none;
    }

    .les-feed {
        grid-template-columns: 1fr;
    }

    .compact-header {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .rss-item { flex-wrap: wrap; }
    .rss-source { min-width: auto; }
    .rss-time { width: 100%; }

    /* Sinclair page mobile */
    .sinclair-title { font-size: 2em; letter-spacing: 2px; }
    .sinclair-nav { gap: 10px; }
    .sinclair-nav a { font-size: 0.7em; }
    .sinclair-section { padding: 30px 15px; }
    .sinclair-section-title { font-size: 1.2em; }
    .sinclair-timeline { padding-left: 20px; margin-left: 5px; }
    .poem-card .poem-text { font-size: 0.85em; }

    /* Sun Ra page mobile */
    .sunra-title { font-size: 2em; letter-spacing: 3px; }
    .sunra-hero { padding: 50px 15px 40px; }
    .sunra-hero-quote { font-size: 1em; }
    .sunra-nav { gap: 10px; }
    .sunra-nav a { font-size: 0.7em; }
    .sunra-section { padding: 35px 15px; }
    .sunra-section-title { font-size: 1.3em; }
    .equation-cards { grid-template-columns: 1fr; }
    .poem-constellation { grid-template-columns: 1fr; }
    .discography-grid { grid-template-columns: 1fr; }
    .cosmic-timeline { padding-left: 20px; margin-left: 5px; }

    /* Peel page mobile */
    .peel-title { font-size: 2em; letter-spacing: 3px; }
    .peel-hero { padding: 50px 15px 40px; }
    .peel-nav { gap: 10px; }
    .peel-nav a { font-size: 0.7em; }
    .peel-section { padding: 30px 15px; }
    .peel-section-title { font-size: 1.2em; }
    .peel-timeline { padding-left: 20px; margin-left: 5px; }
    .lyrics-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .masthead-title { font-size: 1.5em; letter-spacing: 1px; }
    .masthead-logo { max-width: 250px; }
    .featured-lead-headline { font-size: 1.2em; }

    /* Sinclair page small screens */
    .sinclair-title { font-size: 1.5em; }
    .sinclair-subtitle { font-size: 0.85em; }
    .sinclair-quote p { font-size: 0.95em; }

    /* Sun Ra page small screens */
    .sunra-title { font-size: 1.5em; letter-spacing: 2px; }
    .sunra-subtitle { font-size: 0.85em; }
    .equation-quote { font-size: 0.95em; }

    /* Peel page small screens */
    .peel-title { font-size: 1.5em; letter-spacing: 2px; }
    .peel-subtitle { font-size: 0.85em; }
    .peel-quote p { font-size: 0.95em; }
    .lyrics-text { font-size: 0.8em; }
}

/* ===========================
   ABOVE THE FOLD - Logo + Story Side by Side
   =========================== */
.above-fold {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 2px solid #333;
    margin-bottom: 15px;
}

.above-fold-logo {
    flex: 0 0 300px;
}

.above-fold-logo .masthead-logo {
    width: 100%;
    max-width: 300px;
}

.above-fold-story {
    flex: 1;
}

.above-fold-story .featured-lead-image-small {
    float: right;
    width: 200px;
    margin: 0 0 10px 15px;
}

.above-fold-story .featured-lead-image-small img {
    width: 100%;
    height: auto;
    display: block;
}

.above-fold-story .featured-lead-headline {
    font-size: 1.5em;
    line-height: 1.3;
    display: block;
    margin-bottom: 10px;
}

.above-fold-story .peel-commentary {
    font-size: 1em;
    clear: both;
}

/* Mobile: Stack logo and story */
@media (max-width: 768px) {
    .above-fold {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .above-fold-logo {
        flex: none;
    }
    
    .above-fold-story .featured-lead-image-small {
        float: none;
        width: 100%;
        max-width: 300px;
        margin: 0 auto 15px;
    }
}

/* Live Broadcast Banner */
.live-banner {
    display: block;
    background: #0a1a0a;
    border: 1px solid #22c55e;
    border-radius: 6px;
    padding: 14px 20px;
    margin: 0 0 12px;
    text-decoration: none;
    text-align: center;
}
.live-banner:hover { background: #0f2a0f; }
.live-banner .episode-banner-cta { color: #22c55e; }
.live-banner-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #22c55e;
    animation: live-pulse 2s infinite;
}
@keyframes live-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Episode Banner */
.episode-banner {
    display: block;
    background: #1a0a2e;
    border: 1px solid #D4AF37;
    border-radius: 6px;
    padding: 12px 20px;
    margin: 0 0 12px;
    text-decoration: none;
    text-align: center;
}
.episode-banner:hover { background: #2a1a3e; }
.episode-banner-inner { display: flex; align-items: center; justify-content: center; gap: 15px; flex-wrap: wrap; }
.episode-banner-tag { background: #D4AF37; color: #000; font-weight: bold; font-size: 12px; padding: 2px 8px; text-transform: uppercase; }
.episode-banner-title { color: #fff; font-size: 14px; font-weight: bold; }
.episode-banner-cta { color: #D4AF37; font-size: 14px; font-weight: bold; }

/* ===========================
   PLAY BUTTONS — site-wide
   =========================== */
.play-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 22px;
    min-width: 32px;
    background: #00aa00;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-right: 8px;
    vertical-align: middle;
    transition: background 0.15s;
    padding: 0;
}
.play-btn:hover { background: #00cc00; }
.play-btn.is-playing { background: #cc8800; }
.play-btn.is-playing:hover { background: #dd9900; }

.site-player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #111;
    border-top: 2px solid #00aa00;
    padding: 8px 16px;
    display: none;
    align-items: center;
    gap: 12px;
    z-index: 9999;
    font-family: 'Courier New', monospace;
    font-size: 13px;
}
.site-player.active { display: flex; }
.site-player-title {
    color: #00aa00;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.site-player-btn {
    background: #00aa00;
    color: #000;
    border: none;
    padding: 4px 14px;
    font-weight: bold;
    cursor: pointer;
    font-family: inherit;
    font-size: 12px;
}
.site-player-btn:hover { background: #00cc00; }

/* ===========================
   RESPONSIVE — Headlines & Layout
   =========================== */
@media (max-width: 900px) {
    .headline-columns {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .headline-col-center {
        border-left: none;
        border-right: none;
    }
    .les-feed {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px 30px;
    }
    .masthead-nav {
        font-size: 0.7em;
        letter-spacing: 1px;
    }
    .masthead-nav-sep {
        margin: 0 5px;
    }
    .editors-bar {
        font-size: 0.72em;
    }
}

/* ===========================
   FEED PAGE (Headlines mosaic cards)
   =========================== */
.feed-page {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.feed-page .announcement-slider {
    padding: 0;
    margin-left: 0;
    margin-right: 0;
}

.tier2-hero-headlines {
    position: relative;
    aspect-ratio: 4 / 1;
    border-radius: 6px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a0a0a 0%, #2a1010 50%, #1a0a0a 100%);
    border: 1px solid #c0392b;
    display: flex;
    align-items: flex-end;
    transition: background 0.4s ease, border-color 0.4s ease;
}

.tier2-hero-headlines .slider-overlay { position: relative; z-index: 2; padding: 25px 35px; width: 100%; }

.tier2-hero-headlines[data-cat="music"] { background: linear-gradient(135deg, #1a0a1a 0%, #2a102a 50%, #1a0a1a 100%); border-color: #9b59b6; }
.tier2-hero-headlines[data-cat="protest"] { background: linear-gradient(135deg, #0a0a1a 0%, #10102a 50%, #0a0a1a 100%); border-color: #3498db; }
.tier2-hero-headlines[data-cat="street"] { background: linear-gradient(135deg, #0a1a0a 0%, #102a10 50%, #0a1a0a 100%); border-color: #27ae60; }
.tier2-hero-headlines[data-cat="zeitgeist"] { background: linear-gradient(135deg, #1a1a0a 0%, #2a2a10 50%, #1a1a0a 100%); border-color: #f1c40f; }

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 20px;
    border-bottom: 1px solid #222;
}

.cat-tab {
    background: none;
    border: none;
    color: #777;
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.72em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 10px 18px;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.cat-tab:hover { color: #fff; }
.cat-tab.active { color: #c0392b; border-bottom-color: #c0392b; }

.feed-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    max-width: 1440px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .feed-grid {
        grid-template-columns: 1fr;
        max-width: 720px;
    }
}

.feed-card {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    display: block;
    text-decoration: none;
    border: 1px solid #1a1a1a;
    aspect-ratio: 1 / 1;
    background: #111;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feed-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, opacity 0.3s ease;
}

.feed-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
    text-decoration: none;
}

.feed-card:hover img {
    transform: scale(1.05);
    opacity: 0.7;
}

.feed-card-noimg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #2a2a2a;
}

.feed-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 50%, transparent 100%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.feed-card-source {
    position: absolute;
    top: 10px;
    left: 10px;
    display: inline-block;
    font-size: 0.58em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 4px 12px;
    border-radius: 3px;
    width: 130px;
    text-align: left;
    color: #fff;
    background: rgba(192, 57, 43, 0.85);
    z-index: 3;
}

.feed-card[data-category="music"] .feed-card-source { background: rgba(155, 89, 182, 0.85); }
.feed-card[data-category="protest"] .feed-card-source { background: rgba(52, 152, 219, 0.85); }
.feed-card[data-category="street"] .feed-card-source { background: rgba(39, 174, 96, 0.85); }
.feed-card[data-category="zeitgeist"] .feed-card-source { background: rgba(241, 196, 15, 0.85); }

.feed-card-title {
    color: #fff;
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.9em;
    font-weight: 700;
    line-height: 1.25;
    text-shadow: 0 2px 6px rgba(0,0,0,0.5);
}

.feed-loadmore {
    text-align: center;
    padding: 25px 0;
}

.feed-loadmore-btn {
    background: none;
    border: 1px solid #333;
    color: #888;
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.75em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 10px 30px;
    cursor: pointer;
    border-radius: 4px;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.feed-loadmore-btn:hover {
    color: #fff;
    border-color: #c0392b;
}

@media (max-width: 1024px) {
    .feed-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .feed-grid { grid-template-columns: 1fr; }
    .cat-tab { padding: 8px 12px; font-size: 0.65em; }
    .tier2-hero-headlines { aspect-ratio: 2 / 1; }
}
@media (max-width: 480px) {
    .feed-grid { grid-template-columns: 1fr; gap: 6px; }
    .feed-card-title { font-size: 0.75em; }
}

/* ===========================
   PAGE TITLE + SCHEDULE
   =========================== */
.page-title {
    color: #c0392b;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2em;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-align: center;
    margin: 30px 0 10px;
}

.page-lead {
    text-align: center;
    color: #777;
    font-size: 0.85em;
    margin-bottom: 30px;
}

.schedule-page {
    max-width: 800px;
    margin: 0 auto;
}

.schedule-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.schedule-item {
    background: #111;
    border: 1px solid #1a1a1a;
    border-left: 3px solid #333;
    border-radius: 4px;
    padding: 18px;
    transition: border-color 0.2s ease;
}

.schedule-item:hover {
    border-color: #444;
    border-left-color: #c0392b;
}

.schedule-featured {
    border-left-color: #D4AF37;
}

.schedule-featured:hover {
    border-left-color: #f1c40f;
}

.schedule-date {
    display: inline-block;
    color: #c0392b;
    font-size: 0.68em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 6px;
}

.schedule-item h3 {
    font-size: 1em;
    margin-bottom: 4px;
}

.schedule-item h3 a {
    color: #ccc;
}

.schedule-item h3 a:hover {
    color: #fff;
}

.schedule-item p {
    color: #777;
    font-size: 0.82em;
}

.schedule-note {
    text-align: center;
    margin-top: 30px;
    color: #555;
    font-size: 0.8em;
}

/* ===========================
   EDITOR PAGES (mosaic-style opener + archive)
   =========================== */
.editor-hero {
    margin-bottom: 30px;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}
.editor-hero-inner {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 40px 30px;
    background: linear-gradient(135deg, rgba(20,20,20,0.95) 0%, rgba(10,10,10,0.98) 100%);
    border: 1px solid #1a1a1a;
    border-radius: 6px;
}
.editor-hero-img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}
.editor-hero-text {
    flex: 1;
}
.editor-hero-text .mosaic-badge {
    display: inline-block;
    margin-bottom: 12px;
}
.editor-hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.4em;
    font-weight: 900;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.1;
}
.editor-hero-subtitle {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1em;
    color: #888;
    margin-bottom: 12px;
}
.editor-hero-quote {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 1.05em;
    color: #aaa;
    border-left: 3px solid #333;
    padding-left: 16px;
    margin: 0;
}
.editor-peel .editor-hero-inner { border-color: rgba(34, 139, 34, 0.3); }
.editor-sinclair .editor-hero-inner { border-color: rgba(184, 140, 20, 0.3); }
.editor-sunra .editor-hero-inner { border-color: rgba(180, 100, 220, 0.3); }

.editor-content {
    margin-bottom: 40px;
}

.editor-archive {
    margin-top: 20px;
}
.editor-archive-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.4em;
    font-weight: 700;
    color: #c0392b;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #1a1a1a;
}
.editor-archive-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.editor-archive-item {
    display: flex;
    align-items: baseline;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid #111;
    text-decoration: none;
    transition: background 0.2s;
}
.editor-archive-item:hover {
    background: rgba(255,255,255,0.02);
    text-decoration: none;
}
.editor-archive-date {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.75em;
    color: #555;
    min-width: 70px;
    flex-shrink: 0;
}
.editor-archive-name {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95em;
    font-weight: 600;
    color: #ddd;
    flex-shrink: 0;
}
.editor-archive-excerpt {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.8em;
    color: #666;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    flex: 1;
    min-width: 0;
}
.editor-archive-count {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.75em;
    color: #555;
    margin-top: 20px;
    text-align: right;
}
@media (max-width: 768px) {
    .editor-hero-inner {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    .editor-hero-quote { border-left: none; padding-left: 0; text-align: center; }
    .editor-hero-title { font-size: 1.8em; }
    .editor-archive-item { flex-wrap: wrap; }
    .editor-archive-excerpt { width: 100%; padding-left: 86px; }
}

/* ===========================
   TIER 2 PAGES (editor overview)
   =========================== */
.tier2-hero-sunra {
    position: relative;
    aspect-ratio: 4 / 1;
    border-radius: 6px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a0a2e 0%, #2a1a4e 50%, #1a0a2e 100%);
    border: 1px solid rgba(180, 100, 220, 0.7);
    display: flex;
    align-items: flex-end;
}

.tier2-hero-sunra .slider-img {
    max-width: 85%;
}

.tier2-hero-sunra .slider-overlay {
    position: relative;
    z-index: 2;
    padding: 25px 35px;
    width: 100%;
}

.tier2-hero-sunra .mosaic-badge {
    z-index: 3;
}

/* Show More Button */
.mosaic-show-more {
    text-align: center;
    padding: 20px 0;
}

.mosaic-load-btn {
    background: transparent;
    border: 1px solid #555;
    color: #999;
    padding: 10px 30px;
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.85em;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.mosaic-load-btn:hover {
    border-color: #999;
    color: #fff;
}

/* Archive Section */
/* Full Catalog hero panel */
.listen-hero {
    max-width: 1400px;
    margin: 30px auto 0;
    padding: 30px 20px;
    background: #0a0a0a;
    border: 1px solid #333;
    border-radius: 8px;
    text-align: center;
}
.listen-hero h1 {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-size: 2em;
    font-weight: 700;
    letter-spacing: 3px;
    color: #fff;
    margin: 0 0 8px;
}
.listen-subtitle {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.9em;
    color: #666;
    margin: 0;
}
/* Rotation playlist — live highlight + big rows */
.rotation-live {
    background: rgba(255, 255, 255, 0.05);
}
.rotation-live a,
.rotation-live .tier2-archive-num,
.rotation-live .tier2-archive-desc,
.rotation-live .archive-duration {
    color: #fff !important;
}
.rotation-live::before {
    content: '▶ ';
    color: #c0392b;
    font-size: 0.7em;
    margin-right: 4px;
}
.rotation-big-row {
    padding: 16px 0;
    border-bottom: 2px solid #444;
}
.rotation-big-row a {
    font-weight: 700;
    color: #ccc;
}

/* Scheduled show — replaces row content during active show */
.show-override {
    background: rgba(192, 57, 43, 0.15) !important;
    border-left: 3px solid #c0392b;
}
.show-override a {
    color: #fff !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.show-override .tier2-archive-num {
    color: #c0392b !important;
}
.show-override .tier2-archive-desc {
    color: rgba(255, 255, 255, 0.7) !important;
}
.show-override .archive-duration {
    color: rgba(255, 255, 255, 0.7) !important;
}

.listen-footer {
    max-width: 1440px;
    margin: 40px auto;
    padding: 20px;
    text-align: center;
    font-size: 0.8em;
    color: #555;
}
.listen-footer a {
    color: #888;
}

.tier2-archive {
    max-width: 1440px;
    margin: 30px auto;
    padding: 0 20px;
}

.tier2-archive-title {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1em;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 10px;
    border-bottom: 2px solid #555;
    margin-bottom: 12px;
}

.tier2-archive-item {
    padding: 8px 0;
    border-bottom: 1px solid #333;
    font-size: 0.85em;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tier2-archive-item a {
    color: #999;
    text-decoration: none;
    transition: color 0.2s ease;
}

.tier2-archive-item:hover a,
.tier2-archive-item:hover .tier2-archive-num,
.tier2-archive-item:hover .tier2-archive-desc,
.tier2-archive-item:hover .archive-duration,
.tier2-archive-item:hover .archive-play-btn {
    color: #fff;
    border-color: #fff;
}

.tier2-archive-num {
    color: #555;
    font-weight: 700;
    margin-right: 10px;
    min-width: 35px;
    display: inline-block;
}

.tier2-archive-desc {
    color: #555;
    font-size: 0.85em;
    flex: 1;
    padding: 0 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tier2-archive-meta {
    color: #555;
    font-size: 0.85em;
    white-space: nowrap;
}

/* Archive Mini Player */
.archive-mini-player {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
    flex-shrink: 0;
    width: 80px;
    justify-content: flex-end;
}

.archive-play-btn {
    background: none;
    border: 1px solid #555;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #888;
    padding: 0;
    flex-shrink: 0;
    transition: border-color 0.2s, color 0.2s;
}

.archive-play-btn:hover {
    border-color: #fff;
    color: #fff;
}

.archive-play-btn.is-playing {
    border-color: #c0392b;
    color: #c0392b;
}

.archive-duration {
    font-family: 'Inter', sans-serif;
    font-size: 0.75em;
    color: #666;
    min-width: 36px;
    text-align: right;
}


/* MORE link on mosaic cards */
.mosaic-more {
    font-weight: 700;
    font-size: 0.9em;
    letter-spacing: 0.5px;
}

.mosaic-more-sunra { color: rgba(180, 100, 220, 1); }
.mosaic-more-peel { color: #228B22; }
.mosaic-more-sinclair { color: #D4AF37; }
.mosaic-more-rfm { color: #3498db; }
.mosaic-more-special { color: #c0392b; }

.tier2-hero-peel {
    position: relative;
    aspect-ratio: 4 / 1;
    border-radius: 6px;
    overflow: hidden;
    background: linear-gradient(135deg, #0a1a0a 0%, #1a3a1a 50%, #0f2a0f 100%);
    border: 1px solid #228B22;
    display: flex;
    align-items: flex-end;
}

.tier2-hero-peel .slider-img { max-width: 75%; }
.tier2-hero-peel .slider-overlay { position: relative; z-index: 2; padding: 25px 35px; width: 100%; }
.tier2-hero-peel .mosaic-badge { z-index: 3; }

.tier2-hero-sinclair {
    position: relative;
    aspect-ratio: 4 / 1;
    border-radius: 6px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1500 0%, #2a2200 50%, #1a1500 100%);
    border: 1px solid rgba(184, 140, 20, 0.7);
    display: flex;
    align-items: flex-end;
}

.tier2-hero-sinclair .slider-img { max-width: 85%; }
.tier2-hero-sinclair .slider-overlay { position: relative; z-index: 2; padding: 25px 35px; width: 100%; }
.tier2-hero-sinclair .mosaic-badge { z-index: 3; }

.tier2-hero-radio {
    position: relative;
    aspect-ratio: 4 / 1;
    border-radius: 6px;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a1a 0%, #10102a 50%, #0a0a1a 100%);
    border: 1px solid #3498db;
    display: flex;
    align-items: flex-end;
}

.tier2-hero-radio .slider-img { max-width: 75%; }
.tier2-hero-radio .slider-overlay { position: relative; z-index: 2; padding: 25px 35px; width: 100%; }
.tier2-hero-radio .mosaic-badge { z-index: 3; }

.tier2-hero-special {
    position: relative;
    aspect-ratio: 4 / 1;
    border-radius: 6px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a0a0a 0%, #2a1010 50%, #1a0a0a 100%);
    border: 1px solid #c0392b;
    display: flex;
    align-items: flex-end;
}

.tier2-hero-special .slider-img { max-width: 85%; }
.tier2-hero-special .slider-overlay { position: relative; z-index: 2; padding: 25px 35px; width: 100%; }
.tier2-hero-special .mosaic-badge { z-index: 3; }

.tier2-hero-rfm {
    position: relative;
    aspect-ratio: 4 / 1;
    border-radius: 6px;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a1a 0%, #101028 50%, #0a0a1a 100%);
    border: 1px solid #3498db;
    display: flex;
    align-items: flex-end;
}

.tier2-hero-rfm .slider-img { max-width: 85%; }
.tier2-hero-rfm .slider-overlay { position: relative; z-index: 2; padding: 25px 35px; width: 100%; }
.tier2-hero-rfm .mosaic-badge { z-index: 3; }

.tier2-hero-videos {
    position: relative;
    aspect-ratio: 4 / 1;
    border-radius: 6px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a0a1a 0%, #28102a 50%, #1a0a1a 100%);
    border: 1px solid #ff2d95;
    display: flex;
    align-items: flex-end;
}
.tier2-hero-videos .slider-img { max-width: 85%; }
.tier2-hero-videos .slider-overlay { position: relative; z-index: 2; padding: 25px 35px; width: 100%; }
.tier2-hero-videos .mosaic-badge { z-index: 3; }
.mosaic-badge-videos { background: rgba(255, 45, 149, 0.85); }
.mosaic-videos { border-color: #ff2d95; }
.mosaic-more-videos { color: #ff2d95; }

/* Panel Audio Player */
.panel-player {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.panel-play-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
    padding: 0;
}

.panel-play-btn:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.15);
}

.panel-play-btn svg {
    width: 14px;
    height: 14px;
    fill: rgba(255, 255, 255, 0.8);
    margin-left: 2px;
}

.panel-play-btn.playing svg {
    margin-left: 0;
}

.panel-play-btn:hover svg {
    fill: #fff;
}

.panel-volume {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.panel-volume-icon {
    width: 20px;
    height: 20px;
    fill: rgba(255, 255, 255, 0.5);
    transition: fill 0.2s ease;
}

.panel-volume:hover .panel-volume-icon {
    fill: rgba(255, 255, 255, 0.8);
}

.panel-volume-slider {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 100px;
    background: rgba(0, 0, 0, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    padding: 8px 0;
    display: none;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
}

/* slider display controlled by JS click handler */

.panel-volume-slider input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    writing-mode: vertical-lr;
    direction: rtl;
    width: 3px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    cursor: pointer;
}

.panel-volume-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
}
.panel-volume-slider input[type="range"]::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    border: none;
    cursor: pointer;
}

.panel-spectrum {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 20px;
}

.panel-spectrum-bar {
    width: 3px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 1px;
    transition: height 0.1s ease;
    height: 4px;
}

.panel-spectrum.active .panel-spectrum-bar {
    animation: spectrumPulse 0.6s ease-in-out infinite alternate;
}

.panel-spectrum.active .panel-spectrum-bar:nth-child(1) { animation-delay: 0s; }
.panel-spectrum.active .panel-spectrum-bar:nth-child(2) { animation-delay: 0.1s; }
.panel-spectrum.active .panel-spectrum-bar:nth-child(3) { animation-delay: 0.05s; }
.panel-spectrum.active .panel-spectrum-bar:nth-child(4) { animation-delay: 0.15s; }
.panel-spectrum.active .panel-spectrum-bar:nth-child(5) { animation-delay: 0.08s; }
.panel-spectrum.active .panel-spectrum-bar:nth-child(6) { animation-delay: 0.12s; }
.panel-spectrum.active .panel-spectrum-bar:nth-child(7) { animation-delay: 0.03s; }
.panel-spectrum.active .panel-spectrum-bar:nth-child(8) { animation-delay: 0.18s; }

@keyframes spectrumPulse {
    0% { height: 4px; }
    100% { height: 20px; }
}

/* Editor-specific spectrum colors */
.tier2-hero-sunra .panel-spectrum-bar { background: rgba(180, 100, 220, 0.6); }
.tier2-hero-sunra .panel-spectrum.active .panel-spectrum-bar { background: rgba(180, 100, 220, 0.9); }
.tier2-hero-sunra .panel-play-btn { border-color: rgba(180, 100, 220, 0.6); }
.tier2-hero-sunra .panel-play-btn:hover { border-color: #b564dc; }

.tier2-hero-peel .panel-spectrum-bar { background: rgba(34, 139, 34, 0.6); }
.tier2-hero-peel .panel-spectrum.active .panel-spectrum-bar { background: rgba(34, 139, 34, 0.9); }
.tier2-hero-peel .panel-play-btn { border-color: rgba(34, 139, 34, 0.6); }
.tier2-hero-peel .panel-play-btn:hover { border-color: #228B22; }

.tier2-hero-sinclair .panel-spectrum-bar { background: rgba(184, 140, 20, 0.6); }
.tier2-hero-sinclair .panel-spectrum.active .panel-spectrum-bar { background: rgba(184, 140, 20, 0.9); }
.tier2-hero-sinclair .panel-play-btn { border-color: rgba(184, 140, 20, 0.6); }
.tier2-hero-sinclair .panel-play-btn:hover { border-color: #D4AF37; }

.tier2-hero-radio .panel-spectrum-bar { background: rgba(52, 152, 219, 0.6); }
.tier2-hero-radio .panel-spectrum.active .panel-spectrum-bar { background: rgba(52, 152, 219, 0.9); }
.tier2-hero-radio .panel-play-btn { border-color: rgba(52, 152, 219, 0.6); }
.tier2-hero-radio .panel-play-btn:hover { border-color: #3498db; }

.tier2-hero-special .panel-spectrum-bar { background: rgba(192, 57, 43, 0.6); }
.tier2-hero-special .panel-spectrum.active .panel-spectrum-bar { background: rgba(192, 57, 43, 0.9); }
.tier2-hero-special .panel-play-btn { border-color: rgba(192, 57, 43, 0.6); }
.tier2-hero-special .panel-play-btn:hover { border-color: #c0392b; }

@media (max-width: 768px) {
    .tier2-hero-sunra,
    .tier2-hero-peel,
    .tier2-hero-sinclair,
    .tier2-hero-radio,
    .tier2-hero-special,
    .tier2-hero-rfm,
    .tier2-hero-videos {
        aspect-ratio: 2 / 1;
    }
    .panel-play-btn {
        width: 30px;
        height: 30px;
    }
    .panel-play-btn svg {
        width: 12px;
        height: 12px;
    }
    .panel-spectrum { height: 16px; }
    .panel-spectrum-bar { width: 2px; }
    @keyframes spectrumPulse {
        0% { height: 3px; }
        100% { height: 16px; }
    }
}

/* ===========================
   CARD LINK ICON (inside pill, far right)
   =========================== */
.mosaic-link-btn {
    background: none;
    border: none;
    padding: 0;
    margin: 0 -4px 0 4px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s ease;
    line-height: 1;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.mosaic-link-btn:hover {
    opacity: 1;
}

/* Link copied popup */
.mosaic-link-toast {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 30;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.75em;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 4px;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.3s ease;
}
.mosaic-link-toast.fade {
    opacity: 0;
}
.mosaic-card.link-copied {
    border-color: #22c55e !important;
    box-shadow: 0 0 0 2px #22c55e;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.mosaic-card.link-fade {
    border-color: #1a1a1a !important;
    box-shadow: none;
    transition: border-color 0.5s ease, box-shadow 0.5s ease;
}
.mosaic-link-btn svg {
    width: 18px;
    height: 18px;
}

/* ===========================
   CARD HEART BUTTON (bottom right, pinned)
   =========================== */
.mosaic-heart-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 10;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: opacity 0.2s ease;
    opacity: 0.5;
    line-height: 1;
    width: 24px;
    height: 24px;
}
.mosaic-heart-btn:hover {
    opacity: 0.85;
}
.mosaic-heart-btn.liked {
    opacity: 0.75;
}
.mosaic-heart-btn svg {
    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.5));
    width: 24px;
    height: 24px;
}
.mosaic-heart-count {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0,0,0,0.7);
    pointer-events: none;
    margin-bottom: 2px;
    white-space: nowrap;
}

/* Ensure description doesn't overrun into heart area */
.mosaic-desc {
    padding-right: 40px;
}

/* Heart stays visible on mobile even when desc is hidden */
@media (max-width: 768px) {
    .mosaic-heart-btn {
        bottom: 10px;
        right: 10px;
    }
}

/* ===========================
   CARD LANDING PAGE (Option B)
   =========================== */
.card-landing {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}
.card-landing-inner {
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
}
.card-landing-image {
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}
.card-landing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.card-landing-image:hover img {
    transform: scale(1.03);
}
.card-landing-info {
    padding: 25px;
}
.card-landing-info .mosaic-badge {
    position: static;
    display: inline-block;
    margin-bottom: 15px;
}
.card-landing-info h1 {
    font-family: 'Inter', sans-serif;
    font-size: 2em;
    font-weight: 700;
    margin: 0 0 10px;
    color: #fff;
}
.card-landing-info p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1em;
    line-height: 1.5;
    margin: 0 0 20px;
}
.card-landing-btn {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.2s ease;
}
.card-landing-btn:hover {
    background: rgba(255,255,255,0.2);
}
.card-landing-actions {
    display: flex;
    gap: 16px;
    margin-top: 16px;
    align-items: center;
}
.card-action-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    padding: 8px 14px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.85em;
    transition: background 0.2s, border-color 0.2s;
}
.card-action-btn:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.3);
}
.card-heart-btn.liked {
    border-color: rgba(231,76,60,0.4);
}
.card-heart-count {
    font-size: 0.9em;
    opacity: 0.9;
}
.card-share-label {
    font-size: 0.9em;
}
.card-landing-media {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #000;
}
.card-landing-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}
.card-landing-vimeo {
    padding-bottom: 100%;
    position: relative;
}
.card-landing-vimeo iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
}
.card-play-btn {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2;
    transition: opacity 0.3s ease;
}
.card-play-btn:hover svg circle {
    fill: rgba(0,0,0,0.6);
}
.card-audio-module {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.06);
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 20px;
}
.card-audio-play {
    background: none;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    padding: 0;
    line-height: 0;
}
.card-audio-play:hover svg circle {
    fill: rgba(255,255,255,0.2);
}
.card-audio-progress {
    flex: 1;
    height: 4px;
    background: rgba(255,255,255,0.15);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
}
.card-audio-bar {
    height: 100%;
    background: #fff;
    border-radius: 2px;
    width: 0;
    transition: width 0.1s linear;
}
.card-audio-time {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    min-width: 36px;
    text-align: right;
}
.card-audio-volume-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
}
.card-audio-speaker {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    line-height: 0;
    opacity: 0.7;
}
.card-audio-speaker:hover {
    opacity: 1;
}
.card-audio-volume {
    width: 60px;
    height: 3px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    outline: none;
}
.card-audio-volume::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
}
@media (max-width: 480px) {
    .card-audio-volume-wrap { display: none; }
    .card-audio-module { gap: 8px; padding: 10px 12px; }
}
.card-related {
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 0 20px;
}
.card-related-title {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}
.card-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.card-related-item {
    display: block;
    text-decoration: none;
    border-radius: 6px;
    overflow: hidden;
    background: #1a1a1a;
    transition: transform 0.2s ease;
}
.card-related-item:hover {
    transform: scale(1.03);
}
.card-related-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}
.card-related-name {
    display: block;
    padding: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
@media (max-width: 480px) {
    .card-related-grid { gap: 8px; }
    .card-related-name { font-size: 11px; padding: 8px; }
}

/* ===========================
   RSJ TV — CRT Television
   =========================== */
.tv-page {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
}

.tv-page:-webkit-full-screen,
.tv-page:fullscreen {
    max-width: 100%;
    padding: 0;
    background: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.crt-cabinet {
    background: linear-gradient(135deg, #5c3d2e 0%, #8b6844 20%, #6b4c35 40%, #7a5a3e 60%, #5c3d2e 80%, #6b4c35 100%);
    border-radius: 16px;
    padding: 24px 24px 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 2px solid #4a3425;
}

.crt-bezel {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 12px;
    border: 3px solid #111;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8);
}

.crt-screen-wrap {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 */
    border-radius: 8px;
    overflow: hidden;
}

.crt-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(100, 140, 200, 0.15), inset 0 0 60px rgba(0, 0, 0, 0.5);
}

.crt-screen.off {
    background: #0a0a0a;
}

.crt-screen.off #tvPlayer,
.crt-screen.off .crt-channel-badge,
.crt-screen.off .crt-now-playing {
    display: none;
}

#tvPlayer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#tvPlayer iframe {
    width: 100% !important;
    height: 100% !important;
}

/* Scanlines overlay */
.crt-scanlines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
    background: repeating-linear-gradient(
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.08) 2px,
        rgba(0, 0, 0, 0.08) 4px
    );
}

/* Static noise */
.crt-static {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.1s;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
    background-size: 256px 256px;
}

.crt-static.active {
    opacity: 1;
    animation: staticFlicker 0.05s infinite;
}

@keyframes staticFlicker {
    0% { background-position: 0 0; }
    25% { background-position: 128px 64px; }
    50% { background-position: 64px 128px; }
    75% { background-position: 192px 32px; }
    100% { background-position: 32px 192px; }
}

/* Channel badge */
.crt-channel-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 6;
    color: #fff;
    font-family: 'Courier New', monospace;
    font-size: 1.4em;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    opacity: 0;
    transition: opacity 0.3s;
}

/* Now playing */
.crt-now-playing {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    z-index: 6;
    opacity: 0;
    transition: opacity 0.5s;
}

.crt-np-title {
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 0.85em;
    padding: 6px 12px;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
}

/* Commercial overlay */
.crt-commercial-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 8;
    background: radial-gradient(ellipse at center, #1a0a2e 0%, #0a0014 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s;
}

.crt-commercial-overlay.active {
    opacity: 1;
}

.crt-commercial-text {
    text-align: center;
    color: #fff;
}

.crt-commercial-label {
    display: block;
    font-size: 0.7em;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #9b59b6;
    margin-bottom: 12px;
}

.crt-commercial-title {
    display: block;
    font-size: 1.3em;
    font-weight: 600;
}

/* Power off animation */
.crt-poweroff {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 15;
    background: #000;
    display: none;
    align-items: center;
    justify-content: center;
}

.crt-poweroff.active {
    display: flex;
}

.crt-poweroff-line {
    width: 100%;
    height: 2px;
    background: rgba(200, 220, 255, 0.6);
    box-shadow: 0 0 20px rgba(100, 150, 255, 0.4);
    animation: powerOff 0.5s ease-out forwards;
}

@keyframes powerOff {
    0% { width: 100%; height: 2px; opacity: 1; }
    50% { width: 40%; height: 2px; opacity: 0.8; }
    100% { width: 4px; height: 4px; border-radius: 50%; opacity: 0; }
}

/* Controls bar */
.crt-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 8px 6px;
}

.crt-brand {
    font-family: 'Inter', sans-serif;
    font-size: 0.6em;
    font-weight: 700;
    letter-spacing: 3px;
    color: #b89970;
    text-transform: uppercase;
}

.crt-buttons {
    display: flex;
    align-items: center;
    gap: 6px;
}

.crt-btn {
    background: #3a2a1e;
    border: 1px solid #4a3828;
    color: #b89970;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1em;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s;
}

.crt-btn:hover {
    background: #4a3828;
    color: #d4b896;
}

.crt-btn-power {
    color: #c0392b;
}

.crt-channel-display,
.crt-vol-display {
    font-family: 'Courier New', monospace;
    font-size: 0.75em;
    color: #b89970;
    min-width: 36px;
    text-align: center;
}

/* Channel guide */
.tv-guide {
    margin-top: 20px;
}

.tv-guide-title {
    font-size: 0.75em;
    letter-spacing: 2px;
    color: #555;
    margin-bottom: 10px;
}

.tv-guide-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 6px;
}

.tv-guide-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: #111;
    border: 1px solid #222;
    border-left: 3px solid #555;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.15s;
    color: #aaa;
    font-size: 0.8em;
}

.tv-guide-item:hover {
    background: #1a1a1a;
    color: #fff;
}

.tv-guide-item.active {
    background: #1a1a1a;
    border-color: #444;
    color: #fff;
}

.tv-guide-num {
    font-family: 'Courier New', monospace;
    font-weight: bold;
    min-width: 36px;
}

.tv-guide-name {
    flex: 1;
    font-weight: 600;
}

.tv-guide-count {
    color: #555;
    font-size: 0.85em;
}

/* Responsive */
@media (max-width: 768px) {
    .tv-page { padding: 10px; }
    .crt-cabinet { padding: 12px 12px 8px; border-radius: 10px; }
    .crt-bezel { padding: 8px; }
    .crt-controls { flex-direction: column; gap: 8px; }
    .crt-brand { font-size: 0.5em; }
    .tv-guide-list { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .crt-cabinet { padding: 8px 8px 6px; }
    .crt-bezel { padding: 4px; }
    .crt-btn { width: 28px; height: 28px; font-size: 0.85em; }
}
