/* ====================================================================
   OLD-WORLD BROADCAST - MASTER STYLESHEET
   Theme: Dark Fallout Terminal (Flat CRT look)
   ==================================================================== */

/* --------------------------------------------------------------------
   1. ROOT VARIABLES
-------------------------------------------------------------------- */
:root {
    --frame-bg: #252d29;
    --frame-border: #111;

    /* CRT */
    --crt-screen: #031307;         /* dark phosphor background */
    --crt-text: #49ff6b;           /* primary terminal green */
    --crt-text-soft: #93f7a1;      /* softer secondary green */
    --crt-scanline: rgba(0, 0, 0, 0.35);

    /* Right panel */
    --right-width: 320px;
    --panel-bg: #2d3530;

    /* Vintage accent tones */
    --accent-light: #f3dca8;
    --accent-mid: #dcd3b3;
    --accent-dark: #b6782c;

    /* Buttons */
    --power-start: #f58535;
    --power-end: #e25b19;
    --power-border: #b23d0f;

    /* Cards / lists */
    --card-bg: rgba(0, 0, 0, 0.65);          /* flat, terminal-like */
    --card-bg-hover: rgba(0, 0, 0, 0.85);
    --card-border: rgba(96, 176, 96, 0.35);
    --card-border-hover: rgba(130, 220, 130, 0.6);

    --crt-font-main: "Nova Mono", monospace;
}

/* --------------------------------------------------------------------
   2. GLOBAL RESET & FONT OVERRIDE
-------------------------------------------------------------------- */
html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    background: #000;
    color: #fff;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
                 sans-serif;
}

/* Global OWB terminal font override */
body,
.crt-screen,
.crt-menu,
.crt-title,
.crt-panel,
#pjax-terminal,
#np-track,
.nowplaying-block,
.radio-bar,
button,
input,
textarea {
    font-family: var(--crt-font-main) !important;
    letter-spacing: 0.6px;
}

/* --------------------------------------------------------------------
   3. OUTER FRAME & MAIN LAYOUT
-------------------------------------------------------------------- */
.owb-frame {
    min-height: 100vh;
    background: radial-gradient(circle at top, #3b4b42 0, #050807 60%);
    padding: 16px;
    box-sizing: border-box;

    display: flex;
    justify-content: center;
    align-items: stretch;
}

.owb-main {
    display: flex;
    width: 100%;
    max-width: 1200px;

    background: var(--frame-bg);
    border: 4px solid var(--frame-border);
    border-radius: 24px;
    overflow: hidden;

    box-shadow: 0 0 30px rgba(0, 0, 0, 0.85);
}

/* --------------------------------------------------------------------
   4. LEFT PANEL – CRT TERMINAL
-------------------------------------------------------------------- */
.crt-panel {
    flex: 1;
    padding: 20px;
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
}

.crt-inner {
    flex: 1 1 auto;
    background: #000;
    border-radius: 18px;
    padding: 12px 12px 20px 12px !important; /* bottom bezel space */
    display: flex;
    flex-direction: column;
}

/* Ensure first PJAX child hugs top */
#pjax-terminal > *:first-child {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* --------------------------------------------------------------------
   5. TOP NAV BAR
-------------------------------------------------------------------- */
.crt-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;

    font-family: "Courier New", monospace;
    font-size: 16px;
    font-weight: bold;
    color: var(--crt-text);

    padding: 18px 10px 14px 10px;
    backdrop-filter: blur(0.4px);

    transform: perspective(800px) translateZ(-4px);
}

.crt-topbar a {
    color: var(--crt-text);
    text-decoration: none;
}

.crt-topbar a:hover {
    text-decoration: underline;
}

.crt-title {
    font-weight: bold;
}

/* --------------------------------------------------------------------
   6. CRT SCREEN AREA
-------------------------------------------------------------------- */
.crt-screen {
    flex: 1 1 auto;
    position: relative;
    overflow-y: auto;
    box-sizing: border-box;

    background: var(--crt-screen);
    border-radius: 14px;
    backdrop-filter: blur(0.4px);
    transform: perspective(800px) translateZ(-4px);
    white-space: pre-line;
    padding: 4px 12px 20px 12px !important;

    box-shadow:
        inset 0 0 38px rgba(0, 0, 0, 0.9),
        inset 0 0 0 12px rgba(0, 0, 0, 0.25);
}

/* Scanline overlay */
.crt-screen::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;

    background-image: linear-gradient(var(--crt-scanline) 1px, transparent 1px);
    background-size: 100% 3px;
    mix-blend-mode: soft-light;
}

/* --------------------------------------------------------------------
   7. TERMINAL TEXT & CURSOR
-------------------------------------------------------------------- */
.crt-text {
    font-family: "Courier New", monospace;
    font-size: 15px;
    line-height: 1.32em;
    white-space: pre-wrap;
    color: var(--crt-text);
    text-shadow: 0 0 6px rgba(62, 255, 130, 0.9);
}

/* Blinking green cursor */
.crt-text::after {
    content: "\258C";
    animation: crt-cursor 1s steps(1, end) infinite;
}

@keyframes crt-cursor {
    0%,
    50% { opacity: 1; }
    51%,
    100% { opacity: 0; }
}

/* --------------------------------------------------------------------
   8. RIGHT SIDE – RADIO BAR
-------------------------------------------------------------------- */
.radio-bar {
    width: var(--right-width);
    background: var(--panel-bg);
    border-left: 3px solid #141a16;

    padding: 20px 16px;
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    align-items: center;

    position: relative;
}

.radio-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.radio-flex-spacer {
    flex: 1;
}

/* Mascot */
.mascot-img {
    width: 100%;
    height: auto;
}

/* NOW PLAYING BLOCK */
.nowplaying-block {
    text-align: center;
    margin-bottom: 10px;
}

.np-label {
    font-size: 12px;
    letter-spacing: 0.13em;
    color: var(--accent-mid);
    opacity: 0.7;
}

.np-track {
    font-size: 15px;
    margin-top: 3px;
    color: var(--accent-light);
}

/* Now playing track text (centered, non-marquee by default) */
#np-track {
    white-space: normal;
    text-align: center;
    line-height: 1.25;
    max-width: 180px;
    margin: 0 auto;
    display: block;

    font-size: 15px;
    color: #e6d9b3;
    text-shadow: 0 0 6px rgba(255, 180, 80, 0.45);
}
/* REQUESTED BY / MESSAGE under NOW PLAYING */
.np-line {
    font-size: 11px;                     /* smaller text */
    color: #6fbf7a;                      /* dim pip-boy green */
    opacity: 0.72;                       /* faded CRT look */
    margin-top: 2px;
    margin-bottom: 2px;
    white-space: pre-line;
    text-shadow: 0 0 3px rgba(20, 255, 100, 0.18); /* subtle glow */
}

/* Optional marquee scroll for long titles (class-based) */
#np-track.scroll {
    white-space: nowrap;
    display: inline-block;
    animation: npmarquee 12s linear infinite;
}

@keyframes npmarquee {
    0%   { transform: translateX(0); }
    15%  { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Terminal reveal effect */
.np-reveal {
    opacity: 0;
    animation: npfade 0.6s forwards ease-out;
}

@keyframes npfade {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* --------------------------------------------------------------------
   9. VU METER PANEL
-------------------------------------------------------------------- */
.vu-panel {
    margin-top: auto;
    width: 220px;
    padding: 4px;

    background: #393838;
    border: 2px solid #292928;
    border-radius: 6px;

    display: flex;
    flex-direction: column;
    gap: 6px;

    box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.6);
}

.vu-meter-box {
    background: #c29057;
    padding: 2px;
    border-radius: 4px;
    position: relative;
}

.vu-img {
    width: 100%;
    border-radius: 3px;
}

/* VU needle overlay */
.vu-needle {
    position: absolute;
    bottom: 22px;
    left: 50%;
    width: 4px;
    height: 70px;
    background: #675643;
    transform-origin: bottom center;
    transform: rotate(-40deg);
    border-radius: 2px;
    box-shadow: 0 0 4px rgba(255, 200, 120, 0.6);
}

/* Volume slider block */
.vu-volume-box {
    background: #90704b;
    padding: 2px;
}

.vu-volume {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: #c29057;
}

/* Slider knob */
.vu-volume::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;

    background: #f4e4b2;
    border: 2px solid #1c1c1c;
    border-radius: 50%;

    cursor: pointer;
}

/* --------------------------------------------------------------------
   10. POWER BUTTON
-------------------------------------------------------------------- */
.power-btn {
    margin-top: auto;
    width: 100%;
    padding: 10px 12px;

    background: linear-gradient(var(--power-start), var(--power-end));
    border-radius: 18px;
    border: 3px solid var(--power-border);

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;

    text-transform: uppercase;
    letter-spacing: 0.16em;

    color: #ffe8c3;
    cursor: pointer;

    box-shadow:
        0 4px 10px rgba(0, 0, 0, 0.7),
        inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.power-icon {
    font-size: 32px;
}

/* Lit state */
.power-btn.on {
    box-shadow:
        0 0 16px rgba(255, 170, 80, 0.9),
        inset 0 0 8px rgba(255, 200, 150, 0.4);
}

/* --------------------------------------------------------------------
   11. SEARCH BARS (Requests / OWB lists)
-------------------------------------------------------------------- */
.owb-search,
.req-search {
    width: 98%;
    background: rgba(0, 255, 0, 0.05);
    color: #9fe89f;
    border: 1px solid rgba(0, 255, 0, 0.3);
    padding: 8px 10px;
    margin-bottom: 16px;
    outline: none;
    font-family: var(--crt-font-main);
    font-size: 14px;
}

.req-wrapper {
    width: 100%;
    padding: 10px 0;
}

/* --------------------------------------------------------------------
   12. GRIDS & CARDS (Random 8, Requests, etc.)
   Style A1: Pure terminal blocks (flat, minimal borders)
-------------------------------------------------------------------- */
/* Shared grid layout */
.owb-song-grid,
.req-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
    padding: 10px 0;
}

/* Generic card for song lists + requests */
.song-card,
.req-card {
    margin: 0;
    padding: 8px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    text-align: center;
    cursor: pointer;

    display: flex;
    flex-direction: column;
    transition: background 0.15s ease, border-color 0.15s ease, text-shadow 0.15s ease;
}

/* Hover – subtle phosphor glow, still very terminal */
.song-card:hover,
.req-card:hover {
    background: var(--card-bg-hover);
    border-color: var(--card-border-hover);
    text-shadow: 0 0 6px rgba(120, 255, 140, 0.4);
}

/* Shared artwork block (blurred + green-tinted) */
.song-art,
.req-card .req-art {
    width: 100%;
    height: 120px;
    margin: 0 0 8px 0;

    background-size: cover;
    background-position: center;

    filter: blur(2px) brightness(0.5) sepia(1) hue-rotate(80deg);
    border: 1px solid rgba(0, 255, 0, 0.25);
}

/* Titles / artists – unified terminal text */
.song-title,
.song-artist,
.req-title,
.req-artist {
    font-family: var(--crt-font-main);
    font-size: 12px;
    color: var(--crt-text-soft);
    white-space: normal;
    line-height: 1.3;
    margin-top: 6px;
}

/* --------------------------------------------------------------------
   13. PAGINATION (Requests + OWB lists)
-------------------------------------------------------------------- */
.req-pages,
.owb-pagination {
    margin: 25px 0 40px;
    padding: 5px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    font-family: var(--crt-font-main);
}

/* Bracket-style buttons (terminal-like) */
.req-page-btn,
.page-btn {
    cursor: pointer;
    font-size: 11px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 4px 8px;
    position: relative;

    color: #12ff55;
}

/* Brackets around the page numbers */
.req-page-btn::before,
.req-page-btn::after,
.page-btn::before,
.page-btn::after {
    color: #12ff55;
    opacity: 0.8;
    font-weight: bold;
}

.req-page-btn::before,
.page-btn::before {
    content: "[";
    margin-right: 2px;
}

.req-page-btn::after,
.page-btn::after {
    content: "]";
    margin-left: 2px;
}

/* Hover – light phosphor glow */
.req-page-btn:hover,
.page-btn:hover {
    text-shadow: 0 0 4px #12ff55;
}

/* Active page */
.req-page-btn.active,
.page-btn.active {
    color: #000;
    text-shadow: none;
    background: #12ff55;
    border-radius: 2px;
}

.req-page-btn.active::before,
.req-page-btn.active::after,
.page-btn.active::before,
.page-btn.active::after {
    color: #000;
}

/* --------------------------------------------------------------------
   14. REQUEST MODAL
-------------------------------------------------------------------- */
/* ===============================
   REQUEST MODAL — CRT STYLE
================================= */

.req-modal-box {
    position: relative;
    width: 420px;
    max-width: 95%;

    background: rgba(0, 20, 0, 0.82); /* darker + dimmer */
    border: 1px solid rgba(0,255,0,0.25);
    border-radius: 12px; /* curved edges */
    padding: 20px;

    box-shadow:
        0 0 18px rgba(0,255,70,0.15),
        inset 0 0 25px rgba(0,255,70,0.08),
        inset 0 0 4px rgba(0,255,70,0.15);

    color: #7eff9c;
    font-family: "Nova Mono", monospace;
}

/* Dim all text in the modal for authenticity */
.req-modal-box * {
    color: #7cff90 !important;
}

/* Header */
.req-modal-header {
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(0,255,0,0.15);
}

.req-modal-close {
    background: none;
    border: none;
    color: #77ff88 !important;
    cursor: pointer;
    font-size: 16px;
}

/* Inputs */
#req-name,
#req-message {
    width: 100%;
    background: rgba(0,255,0,0.05);
    border: 1px solid rgba(0,255,0,0.25);
    border-radius: 8px; /* match modal */
    color: #9cffb2;
    padding: 6px;
    margin-bottom: 12px;
    font-family: "Nova Mono", monospace;
}

/* Submit button */
.req-submit {
    width: 100%;
    padding: 10px;
    border-radius: 8px;

    background: rgba(0,255,0,0.07);
    border: 1px solid rgba(0,255,0,0.35);

    color: #7eff9c;
    cursor: pointer;

    text-align: center;
    letter-spacing: 1px;
}

.req-submit:hover {
    background: rgba(0,255,0,0.15);
    box-shadow: 0 0 8px rgba(0,255,50,0.25);
}

/* Success / error messages */
/* Request success / error message */
.req-status {
    margin-top: 10px;
    padding: 10px;

    background: rgba(0, 20, 0, 0.85); /* dark phosphor */
    color: #8aff9d;                   /* bright pip-boy green */

    font-family: "Nova Mono", monospace;
    font-size: 15px;
    letter-spacing: 1px;

    border-radius: 8px;
    box-shadow:
        0 0 18px rgba(0,255,0,0.20),
        inset 0 0 22px rgba(0,255,0,0.12);

    white-space: pre-line; /* keeps linebreaks in messages */
}

/* Hide until needed */
.req-status.hidden {
    display: none;
}

/* Extra colour tuning for errors */
.req-status.error {
    color: #ffb6b6;
    background: rgba(30, 0, 0, 0.85);
    box-shadow:
        0 0 14px rgba(255,80,80,0.2),
        inset 0 0 18px rgba(255,40,40,0.15);
}

/* Extra colour tuning for success */
.req-status.success {
    color: #9effb0;
}

/* Slight CRT curve illusion */
.req-modal-box::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 14px;
    pointer-events: none;
    box-shadow: inset 0 0 22px rgba(0,255,0,0.12);
}
/* Fullscreen dark overlay */
#req-modal {
    position: fixed;
    top: 0;
    left: 0;

    width: 100vw;
    height: 100vh;

    background: rgba(0, 0, 0, 0.75); /* CRT-dark overlay */
    backdrop-filter: blur(2px);

    display: flex;
    justify-content: center;
    align-items: center;

    z-index: 9999;
}

/* Hide when not active */
#req-modal.hidden {
    display: none;
}

/* --------------------------------------------------------------------
   15. LIKE BUTTON (Pip-Boy style)
-------------------------------------------------------------------- */
.pip-like {
    background: none;
    border: none;
    color: #7c827a; /* Pip-Boy amber-ish */
    font-family: var(--crt-font-main);
    font-size: 13px;
    padding: 0;
    margin: 0 4px 0 0;
    cursor: pointer;
    line-height: 1;
    opacity: 0.85;
    transition: opacity 0.15s, transform 0.15s;
}

.pip-like:hover {
    opacity: 1;
    transform: scale(1.1);
}

.like-count {
    font-family: var(--crt-font-main);
    font-size: 8px;
    color: #7c827a;
    opacity: 0.85;
}
#np-like-count {
    font-family: var(--crt-font-main);
    font-size: 12px;
    color: #7c827a;
    opacity: 0.85;
}
/* --------------------------------------------------------------------
   16. CRT PAGE TRANSITIONS & EFFECTS
-------------------------------------------------------------------- */
.crt-fade {
    opacity: 0;
    transition: opacity 0.35s ease-out;
}

.crt-visible {
    opacity: 1;
    transition: opacity 0.35s ease-in;
}

/* Scanline sweep animation overlay */
.crt-scanline {
    position: absolute;
    left: 0;
    top: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        rgba(255, 255, 255, 0.06),
        rgba(255, 255, 255, 0)
    );
    pointer-events: none;
    transform: translateY(0);
    animation: crtScan 0.45s linear 1;
}

@keyframes crtScan {
    0%   { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

/* Retro CRT character flicker */
.crt-char-flicker {
    animation: crtFlicker 0.13s steps(2, end) 1;
}

@keyframes crtFlicker {
    0%   { opacity: 0.4; }
    40%  { opacity: 1; }
    60%  { opacity: 0.6; }
    100% { opacity: 1; }
}

/* --------------------------------------------------------------------
   17. RESPONSIVE
-------------------------------------------------------------------- */
@media (max-width: 900px) {
    .owb-main {
        flex-direction: column;
        max-width: 100%;
    }

    .radio-bar {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        gap: 12px;
    }

    .mascot-img {
        width: 120px;
    }

    .vu-panel {
        width: 180px;
    }

    .power-btn {
        width: auto;
        padding: 8px 10px;
    }
}
.crt-text {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.2em !important;
}

/* remove natural spacing caused by block divs between terminal lines */
.crt-text > div {
    margin: 0 !important;
    padding: 0 !important;
}
/* Remove cursor globally */
.crt-text::after {
    content: "";
    animation: none;
}

/* Cursor ONLY on main boot typing block */
#crt-home::after {
    content: "\258C";
    animation: crt-cursor 1s steps(1, end) infinite;
}
/* Make all generated lists green CRT text */
/* =============================================
   CRT LIST OUTPUT (Requested / Recent / Upcoming)
============================================= */

.owb-list {
    font-size: 0.80rem;       /* smaller text */
    line-height: 1.35rem;     /* tighter CRT spacing */
    color: rgba(0, 255, 140, 0.65); /* softer dim green */
    margin-left: 20px;        /* indent to align with CRT text */
    white-space: pre-line;    /* preserves > formatting */
    font-family: var(--crt-font, 'VT323', monospace);
}

/* Stronger dimming on > symbol */
.owb-list::before,
.owb-list span.arrow {
    color: rgba(0, 255, 140, 0.45);
}
/* =============================================
   CRT UPDATE FLICKER EFFECT
============================================= */

.crt-update {
    animation: crtUpdateFlash 0.22s linear;
}

@keyframes crtUpdateFlash {
    0%   { opacity: 0.2; filter: brightness(150%); }
    40%  { opacity: 1;   filter: brightness(100%); }
    60%  { opacity: 0.85; }
    100% { opacity: 1;   filter: none; }
}
/* Subtle CRT refresh flicker */
/* Strong visible CRT phosphor flash */
.crt-flicker {
    animation: crtFlashAnim 1.5s ease-out;
}

@keyframes crtFlashAnim {
    0%   { opacity: 0.3; filter: brightness(260%) contrast(180%); }
    20%  { opacity: 1;   filter: brightness(200%); }
    60%  { opacity: 0.9; filter: brightness(150%); }
    100% { opacity: 1;   filter: brightness(100%); }
}

.crt-flicker-active {
    animation: crtFlashAnim 1.3s ease-out forwards;
    color: #7cff96 !important;  /* override white fallback */
}

@keyframes crtFlashAnim {
    0% {
        opacity: 0.2;
        color: #63ff7d;                               /* bright green */
        filter: brightness(280%) contrast(200%) saturate(180%);
    }
    15% {
        opacity: 1;
        color: #9cffb2;
        filter: brightness(220%);
    }
    40% {
        opacity: 0.9;
        filter: brightness(150%);
    }
    70% {
        opacity: 1;
        color: #8cff9f;
        filter: brightness(120%);
    }
    100% {
        opacity: 1;
        color: #7cff96;                               /* final CRT green */
        filter: brightness(100%);
    }
}
.crt-text, 
#home-random, 
#home-topreq,
#home-recent,
#home-upcoming {
    color: #7cff96 !important;    /* soft pipboy green */
}
/* ================================
   PIP-BOY LIST BLOCK (FINAL FIXED)
================================ */

/* List wrapper */
.pip-list {
    margin: 0;
    padding: 0;
}

/* Each row */
.pip-row {
    display: flex;
    align-items: center;
    padding: 4px 0;          /* small vertical spacing */
    gap: 18px;
}

/* Remove ALL forced height */
.pip-row,
.pip-row * {
    min-height: 0 !important;
    line-height: 1.2 !important;
}

/* Artwork container */
.pip-thumb img {
    width: 110px;
    height: 110px;
    object-fit: cover;

    /* Same blur as Request cards */
    filter: blur(2px) brightness(0.55) sepia(1) hue-rotate(80deg);
    opacity: 0.75;

    border: 1px solid rgba(0,255,0,0.25);
}

/* Text block */
.pip-info {
    line-height: 1.1;
}

/* Song title */
.pip-title {
    font-size: 14px;
    color: #a9dba9;
}

/* Artist */
.pip-artist {
    font-size: 11px;
    color: #9ecf9e;
    opacity: 0.7;
}

/* Like count */
.pip-count {
    margin-left: auto;
    font-size: 12px;
    color: #9ccf9c;
}

/* Divider between rows */
.pip-divider {
    height: 1px;
    margin: 6px 0;   /* MUCH tighter */
    background: rgba(0,255,0,0.12);
}
/* Kill CRT spacing inside liked results */
#liked-grid {
    white-space: normal !important;
    line-height: 1.1em !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Tighten rows further */
#liked-grid .pip-row {
    padding: 4px 0 !important;
    min-height: 70px !important;
}

/* Divider spacing */
#liked-grid .pip-divider {
    margin: 4px 0 !important;
}
/* ==========================================
   FEATURED EVENT (OWB CRT STYLE)
========================================== */

.pip-featured-row {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px !important;
}

.pip-featured-info {
    margin-left: 0 !important;
    padding-left: 0 !important;
    color: var(--crt-green);
}

/* Featured Artwork */
.pip-featured-art img {
    width: 240px;
    height: 240px;
    object-fit: cover;
    filter: blur(2px) brightness(0.5) sepia(1) hue-rotate(80deg);
    opacity: 0.75;
    border: 1px solid rgba(0,255,0,0.25);
}

/* Titles + Labels */
.pip-featured-title {
    font-size: 18px;
    margin-bottom: 6px;
    color: var(--crt-green);
}

.pip-featured-cat,
.pip-featured-time {
    font-size: 14px;
    color: var(--crt-green);
    opacity: 0.85;
}

/* ==========================================
   COUNTDOWN — SINGLE CLEAN VERSION
========================================== */

/* --- SAFE COUNTDOWN STYLING --- */

/* Container */
#pip-sched-countdown {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 22px;
    margin-top: 20px;
    color: var(--crt-green) !important;
}

/* Numbers and units */
#pip-sched-countdown span {
    min-width: 22px;
    text-align: right;
    display: inline-block;
    white-space: nowrap;
    color: var(--crt-green) !important;
}

.owb-popup {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(70,255,70,0.15);
    border: 1px solid #5aff5a;
    padding: 12px 18px;
    color: #5aff5a;
    font-family: 'Nova Mono', monospace;
    text-shadow: 0 0 6px #5aff5a;
    letter-spacing: 1px;
    font-size: 15px;
    border-radius: 4px;
    z-index: 9999;
    animation: owbPopIn 0.25s ease-out;
}

.owb-popup.hide {
    opacity: 0;
    transition: opacity .35s ease-out;
}

@keyframes owbPopIn {
    from { transform: translateX(-50%) scale(0.9); opacity: 0; }
    to   { transform: translateX(-50%) scale(1);   opacity: 1; }
}
