/* ============================================================
   NORTH WOLLO RADIO — DARK THEME REFINEMENT PATCH
   Deep slate + amber gold + crimson accent — premium broadcast feel
   Add this AFTER index.css (and after light-theme-patch.css if used)
   Only activates on default (dark) body — does NOT touch body.light-theme
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+Ethiopic:wdth,wght@75,700;100,400;100,700&family=Playfair+Display:wght@700;900&family=DM+Sans:wght@400;500;600&display=swap');

/* ── Root: richer, deeper dark palette ── */
:root {
    --bg-deep:            #080e17;
    --bg-card:            #0f1923;
    --bg-card-hover:      #152030;
    --accent:             #e8a020;          /* warm amber-gold */
    --accent-hover:       #f5b940;
    --accent-light:       rgba(232,160,32,0.12);
    --text-main:          #edf2f7;
    --text-dim:           #7a95ab;
    --glass:              rgba(8,14,23,0.92);
    --border-color:       rgba(255,255,255,0.07);
    --border-color-light: rgba(255,255,255,0.04);
    --input-bg:           #0a1520;
    --input-border:       #253545;
    --shadow-sm:          0 2px 10px rgba(0,0,0,0.35);
    --shadow-md:          0 6px 24px rgba(0,0,0,0.5);
    --shadow-lg:          0 16px 48px rgba(0,0,0,0.6);
    --card-bg:            #0f1923;
    --modal-bg:           #0f1923;
    --ticker-bg:          linear-gradient(90deg, #c0300a, #e84020);
    --hero-bg:            linear-gradient(to right, rgba(8,14,23,0.95), rgba(8,14,23,0.45));
    --section-bg:         transparent;
    --icon-bg:            rgba(255,255,255,0.04);
    --icon-color:         #e8a020;
    --gradient-card:      linear-gradient(145deg, #0f1923, #090f18);
    --white:              #ffffff;
    --black:              #080e17;
}

/* ── Body: true deep navy-black, subtle noise texture ── */
body:not(.light-theme) {
    font-family: 'DM Sans', system-ui, sans-serif;
    background-color: #060c14;
    background-image:
        radial-gradient(ellipse at 20% 10%, rgba(232,160,32,0.04) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 80%, rgba(200,50,20,0.04) 0%, transparent 55%);
    background-attachment: fixed;
    color: var(--text-main);
}

/* ════════════════════════════════
   HEADER
   ════════════════════════════════ */
body:not(.light-theme) header {
    background: rgba(6, 12, 20, 0.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(232,160,32,0.15);
    box-shadow: 0 1px 0 rgba(232,160,32,0.08), 0 4px 24px rgba(0,0,0,0.4);
}

body:not(.light-theme) .logo {
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.5px;
}

body:not(.light-theme) .logo span {
    color: var(--accent);
    text-shadow: 0 0 20px rgba(232,160,32,0.4);
}

body:not(.light-theme) .logo img {
    border: 2px solid var(--accent);
    box-shadow: 0 0 12px rgba(232,160,32,0.3);
}

body:not(.light-theme) nav a {
    color: #8fa9bd;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    transition: color 0.2s;
}

body:not(.light-theme) nav a:hover,
body:not(.light-theme) nav a.active {
    color: var(--accent);
}

/* ════════════════════════════════
   HERO
   ════════════════════════════════ */
body:not(.light-theme) .hero {
    background:
        linear-gradient(
            105deg,
            rgba(6,12,20,0.97) 0%,
            rgba(6,12,20,0.80) 45%,
            rgba(6,12,20,0.30) 100%
        ),
        url('https://images.unsplash.com/photo-1598488035139-bdbb2231ce04?auto=format&fit=crop&w=1400&q=80');
    background-size: cover;
    background-position: center;
    border-radius: 0 0 32px 32px;
    border-bottom: 1px solid rgba(232,160,32,0.12);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

body:not(.light-theme) .hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(255,255,255,0.007) 2px,
        rgba(255,255,255,0.007) 4px
    );
    pointer-events: none;
}

body:not(.light-theme) .hero h1 {
    font-family: 'Playfair Display', serif;
    color: #ffffff;
    font-size: 3.2rem;
    text-shadow: 0 2px 12px rgba(0,0,0,0.8);
    position: relative;
    z-index: 1;
}

body:not(.light-theme) .hero p {
    color: rgba(237,242,247,0.8);
    position: relative;
    z-index: 1;
}

body:not(.light-theme) .live-indicator {
    background: rgba(200,40,20,0.22);
    border: 1px solid rgba(200,40,20,0.4);
    color: #ff6b6b;
    backdrop-filter: blur(8px);
    position: relative;
    z-index: 1;
}

body:not(.light-theme) .play-btn-hero {
    background: var(--accent);
    color: #080e17;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(232,160,32,0.35), 0 0 0 1px rgba(232,160,32,0.2);
    position: relative;
    z-index: 1;
}

body:not(.light-theme) .play-btn-hero:hover {
    background: var(--accent-hover);
    box-shadow: 0 6px 28px rgba(232,160,32,0.5);
    transform: scale(1.04);
}

/* ════════════════════════════════
   NEWS TICKER
   ════════════════════════════════ */
body:not(.light-theme) .news-ticker {
    background: linear-gradient(90deg, #c0300a 0%, #e84020 100%);
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(200,48,10,0.35);
    color: #fff;
}

/* ════════════════════════════════
   GENRE ROW
   ════════════════════════════════ */
body:not(.light-theme) .genre-row {
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    gap: 0.7rem;
    padding: 0.9rem 0;
}

body:not(.light-theme) .genre-item {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    color: #8fa9bd;
    font-size: 0.88rem;
    font-weight: 500;
    border-radius: 6px;
    padding: 0.5rem 1rem;
    transition: all 0.2s ease;
}

body:not(.light-theme) .genre-item:hover {
    background: rgba(232,160,32,0.1);
    border-color: rgba(232,160,32,0.3);
    color: var(--accent);
    transform: none;
}

body:not(.light-theme) .genre-item.active {
    background: var(--accent);
    border-color: var(--accent);
    color: #080e17;
    font-weight: 700;
    box-shadow: 0 3px 12px rgba(232,160,32,0.3);
}

/* ════════════════════════════════
   CARDS — layered dark glass
   ════════════════════════════════ */
body:not(.light-theme) .bento-card,
body:not(.light-theme) .program-card,
body:not(.light-theme) .sidebar-card,
body:not(.light-theme) .main-feature-card {
    background: #0f1923;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.04);
    transition: all 0.25s ease;
}

body:not(.light-theme) .bento-card:hover,
body:not(.light-theme) .program-card:hover,
body:not(.light-theme) .sidebar-card:hover,
body:not(.light-theme) .main-feature-card:hover {
    border-color: rgba(232,160,32,0.25);
    box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 0 1px rgba(232,160,32,0.1);
    transform: translateY(-4px);
}

/* Sidebar headings */
body:not(.light-theme) .sidebar-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--text-main);
    font-size: 1rem;
    font-weight: 700;
    padding-bottom: 0.6rem;
    margin-bottom: 0.8rem;
    border-bottom: 1px solid rgba(232,160,32,0.2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ════════════════════════════════
   VIDEO / FEATURE
   ════════════════════════════════ */
body:not(.light-theme) .video-embed-container {
    background: #000;
    border-radius: 12px 12px 0 0;
}

body:not(.light-theme) .feature-content {
    background: #0f1923;
    border-top: 2px solid var(--accent);
    padding: 1.3rem 1.5rem !important;
}

body:not(.light-theme) .feature-content h2 {
    font-family: 'Playfair Display', serif;
    color: #edf2f7 !important;
    font-size: 1.4rem !important;
    line-height: 1.3;
}

body:not(.light-theme) .feature-category {
    background: linear-gradient(90deg, #c0300a, #e84020);
    color: #fff;
    border-radius: 4px;
    font-size: 0.72rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

body:not(.light-theme) .feature-excerpt {
    color: #8fa9bd;
    line-height: 1.65;
}

body:not(.light-theme) .feature-meta {
    color: #6a8599;
    font-size: 0.85rem;
}

body:not(.light-theme) .audio-badge {
    background: rgba(232,160,32,0.08);
    border: 1px solid rgba(232,160,32,0.18);
    color: var(--accent);
    border-radius: 5px;
}

/* ════════════════════════════════
   PROGRAM GRID
   ════════════════════════════════ */
body:not(.light-theme) .program-title {
    font-family: 'Playfair Display', serif;
    color: #edf2f7;
    font-size: 1.05rem !important;
    line-height: 1.35;
    font-weight: 700;
}

body:not(.light-theme) .program-thumb {
    background: #0a1520;
    border-radius: 10px;
    overflow: hidden;
}

body:not(.light-theme) .program-meta {
    color: #6a8599;
    font-size: 0.82rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 0.5rem;
    margin-top: 0.5rem;
}

body:not(.light-theme) .play-overlay {
    background: var(--accent);
    color: #080e17;
    box-shadow: 0 3px 12px rgba(232,160,32,0.4);
}

/* ════════════════════════════════
   TEXT NEWS ITEMS
   ════════════════════════════════ */
body:not(.light-theme) .text-news-item {
    border-bottom: 1px solid rgba(255,255,255,0.04);
    border-radius: 8px;
    padding: 0.75rem 0.5rem;
    margin: 0 -0.5rem;
}

body:not(.light-theme) .text-news-item:hover {
    background: rgba(255,255,255,0.03);
}

body:not(.light-theme) .text-news-item p {
    color: #d4e0ea;
    font-size: 0.92rem;
    line-height: 1.4;
}

body:not(.light-theme) .text-news-item small {
    color: var(--accent);
    font-size: 0.78rem;
}

body:not(.light-theme) .news-icon {
    background: rgba(232,160,32,0.08);
    border: 1px solid rgba(232,160,32,0.15);
    border-radius: 8px;
    color: var(--accent);
}

body:not(.light-theme) .text-news-item:hover .news-icon {
    background: var(--accent);
    color: #080e17;
    border-color: var(--accent);
}

/* ════════════════════════════════
   MARKET WIDGET
   ════════════════════════════════ */
body:not(.light-theme) .market-widget li {
    border-bottom: 1px solid rgba(255,255,255,0.04);
    color: #c5d8e8;
    font-size: 0.88rem;
    padding: 0.5rem 0;
}

/* ════════════════════════════════
   POLL CARD
   ════════════════════════════════ */
body:not(.light-theme) .poll-card {
    border: 1px solid rgba(232,160,32,0.2) !important;
    background: linear-gradient(145deg, #0f1923, #0b1520) !important;
}

body:not(.light-theme) .poll-option {
    background: rgba(255,255,255,0.04);
    border-radius: 8px;
}

body:not(.light-theme) .poll-option:hover {
    background: rgba(232,160,32,0.1);
}

body:not(.light-theme) .poll-fill {
    background: rgba(232,160,32,0.18);
}

body:not(.light-theme) .poll-text {
    color: #c5d8e8;
}

/* ════════════════════════════════
   SHOUTOUTS
   ════════════════════════════════ */
body:not(.light-theme) .shoutout-msg {
    background: rgba(255,255,255,0.03);
    border-left: 3px solid var(--accent);
    color: #8fa9bd;
    border-radius: 6px;
}

/* ════════════════════════════════
   PODCAST / FAVORITES CARD
   ════════════════════════════════ */
body:not(.light-theme) .podcast-highlights-card {
    background: linear-gradient(145deg, #101e2e, #090f18) !important;
    border: 1px solid rgba(232,160,32,0.12) !important;
    border-radius: 16px;
}

body:not(.light-theme) .podcast-highlights-card h3 {
    font-family: 'Playfair Display', serif !important;
    color: var(--text-main) !important;
    border-bottom: 1px solid rgba(232,160,32,0.2);
    padding-bottom: 0.5rem;
}

body:not(.light-theme) .podcast-desc   { color: #b0c8db; }
body:not(.light-theme) .podcast-subtitle { color: #6a8599; letter-spacing: 0.5px; }

body:not(.light-theme) .podcast-chips span {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    color: #8fa9bd;
}

body:not(.light-theme) .podcast-play-btn {
    background: var(--accent);
    color: #080e17;
    font-weight: 700;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(232,160,32,0.3);
}

body:not(.light-theme) .podcast-play-btn:hover {
    background: var(--accent-hover);
    box-shadow: 0 5px 20px rgba(232,160,32,0.45);
    transform: translateY(-2px);
}

/* ════════════════════════════════
   COMMENT SECTION
   ════════════════════════════════ */
body:not(.light-theme) .comment-section {
    background: rgba(0,0,0,0.25);
    border: 1px solid rgba(255,255,255,0.05);
    border-left: 3px solid var(--accent);
    border-radius: 10px;
}

body:not(.light-theme) .comment-section p {
    color: #8fa9bd;
}

body:not(.light-theme) .comment-input-row input {
    background: #0a1520;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
    color: #edf2f7;
}

body:not(.light-theme) .comment-input-row input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(232,160,32,0.1);
}

body:not(.light-theme) .comment-input-row button {
    background: var(--accent);
    color: #080e17;
}

body:not(.light-theme) .comment-input-row button:hover {
    background: var(--accent-hover);
    box-shadow: 0 3px 10px rgba(232,160,32,0.35);
}

/* ════════════════════════════════
   TABS
   ════════════════════════════════ */
body:not(.light-theme) .program-tabs {
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

body:not(.light-theme) .tab-btn {
    color: #6a8599;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    border-bottom: 3px solid transparent;
    padding-bottom: 0.5rem;
}

body:not(.light-theme) .tab-btn:hover { color: var(--accent); }

body:not(.light-theme) .tab-btn.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

/* ════════════════════════════════
   SECTION TITLE
   ════════════════════════════════ */
body:not(.light-theme) .section-title {
    font-family: 'Playfair Display', serif;
    border-left: 5px solid var(--accent);
    color: var(--text-main);
    font-size: 1.6rem;
    padding-left: 1rem;
    margin: 2.5rem 0 1.2rem;
}

/* ════════════════════════════════
   DROPDOWN
   ════════════════════════════════ */
body:not(.light-theme) .dropdown-btn {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    color: #8fa9bd;
    border-radius: 6px;
    font-size: 0.88rem;
}

body:not(.light-theme) .dropdown-btn:hover {
    border-color: rgba(232,160,32,0.3);
    color: var(--accent);
}

body:not(.light-theme) .dropdown-content {
    background: #0d1a26;
    border: 1px solid rgba(232,160,32,0.12);
    border-radius: 10px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.7);
}

body:not(.light-theme) .dropdown-content span {
    color: #8fa9bd;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-size: 0.88rem;
}

body:not(.light-theme) .dropdown-content span:hover {
    background: rgba(232,160,32,0.08);
    color: var(--accent);
    padding-left: 20px;
}

body:not(.light-theme) .dropdown-content span.active {
    background: var(--accent);
    color: #080e17;
    font-weight: 700;
}

/* ════════════════════════════════
   LOCAL STATIONS + FOOTER
   ════════════════════════════════ */
body:not(.light-theme) .local-stations {
    background: linear-gradient(135deg, #0f1923, #0a1420);
    border: 1px solid rgba(232,160,32,0.1);
    border-radius: 14px;
}

body:not(.light-theme) .local-stations h4 {
    color: var(--accent) !important;
}

body:not(.light-theme) .station-list {
    color: #8fa9bd;
}

body:not(.light-theme) .footer {
    border-top: 1px solid rgba(255,255,255,0.06);
    color: #4d6a7d;
}

body:not(.light-theme) .footer-links a {
    color: #4d6a7d;
}

body:not(.light-theme) .footer-links a:hover { color: var(--accent); }

/* ════════════════════════════════
   STICKY PLAYER BAR
   ════════════════════════════════ */
body:not(.light-theme) .player-bar {
    background: rgba(8,14,23,0.97);
    border: 1px solid rgba(232,160,32,0.12);
    border-top: 2px solid var(--accent);
    backdrop-filter: blur(20px);
    box-shadow: 0 -8px 40px rgba(0,0,0,0.6);
    border-radius: 20px;
}

body:not(.light-theme) .track-meta b   { color: var(--text-main); }
body:not(.light-theme) .track-meta span { color: var(--text-dim); }

body:not(.light-theme) .play-btn {
    background: var(--accent);
    color: #080e17;
    box-shadow: 0 3px 16px rgba(232,160,32,0.4);
}

body:not(.light-theme) .play-btn:hover {
    background: var(--accent-hover);
    color: #080e17;
    transform: scale(1.1);
    box-shadow: 0 5px 22px rgba(232,160,32,0.55);
}

body:not(.light-theme) .bar { background: var(--accent); }

/* ════════════════════════════════
   SCHEDULE SECTION
   ════════════════════════════════ */
body:not(.light-theme) .schedule-scroll-container {
    background: #0f1923;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

body:not(.light-theme) .schedule-table th {
    background: #0b1520;
    color: var(--accent);
    border-bottom: 2px solid rgba(232,160,32,0.25);
    font-size: 0.82rem;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

body:not(.light-theme) .schedule-table td {
    border-bottom: 1px solid rgba(255,255,255,0.04);
    color: #b0c8db;
    font-size: 0.88rem;
}

body:not(.light-theme) .schedule-table tr:hover {
    background: rgba(232,160,32,0.04);
}

body:not(.light-theme) .schedule-table td:nth-child(2) { color: #6a8599; }
body:not(.light-theme) .schedule-table td:nth-child(3) { color: var(--accent); }
body:not(.light-theme) .schedule-table td:nth-child(4) { color: #edf2f7; }

body:not(.light-theme) .day-column {
    background: #0f1923;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
}

body:not(.light-theme) .day-header {
    background: linear-gradient(135deg, rgba(232,160,32,0.9), rgba(220,130,15,0.9));
    color: #080e17;
    font-weight: 700;
}

body:not(.light-theme) .schedule-item {
    background: rgba(255,255,255,0.02);
    border-left: 3px solid var(--accent);
    border-radius: 6px;
}

body:not(.light-theme) .schedule-item:hover {
    background: rgba(232,160,32,0.06);
}

body:not(.light-theme) .schedule-program { color: #d4e0ea; }
body:not(.light-theme) .schedule-host    { color: #6a8599; }

body:not(.light-theme) .today-card {
    background: #0d1a26;
    border: 1px solid rgba(232,160,32,0.1);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}

body:not(.light-theme) .today-time    { color: var(--accent); }
body:not(.light-theme) .today-program { color: #edf2f7; }
body:not(.light-theme) .today-host    { color: #6a8599; }

body:not(.light-theme) .today-schedule {
    background: linear-gradient(135deg, rgba(232,160,32,0.06), rgba(8,14,23,0.9));
    border: 1px solid rgba(232,160,32,0.15);
    border-radius: 14px;
}

body:not(.light-theme) .today-header { color: var(--text-main); }
body:not(.light-theme) .today-header span { color: var(--accent); }

body:not(.light-theme) .daily-schedule {
    background: #0f1923;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 14px;
}

body:not(.light-theme) .daily-item {
    background: rgba(255,255,255,0.02);
    border-radius: 10px;
    border-left: 4px solid var(--accent);
}

body:not(.light-theme) .daily-item:hover {
    background: rgba(232,160,32,0.05);
}

body:not(.light-theme) .daily-program    { color: #edf2f7; }
body:not(.light-theme) .daily-program-en { color: #6a8599; }
body:not(.light-theme) .daily-host       { color: #6a8599; }

body:not(.light-theme) .view-btn {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    color: #6a8599;
    border-radius: 8px;
}

body:not(.light-theme) .view-btn.active {
    background: var(--accent);
    color: #080e17;
    border-color: var(--accent);
}

body:not(.light-theme) .view-btn:hover {
    border-color: rgba(232,160,32,0.3);
    color: var(--accent);
    transform: translateY(-1px);
}

body:not(.light-theme) .day-btn {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    color: #6a8599;
    border-radius: 6px;
}

body:not(.light-theme) .day-btn.active {
    background: var(--accent);
    color: #080e17;
    border-color: var(--accent);
}

body:not(.light-theme) .day-btn:hover {
    border-color: rgba(232,160,32,0.3);
    color: var(--accent);
}

body:not(.light-theme) .schedule-tab-bar {
    background: rgba(15,25,35,0.8);
    border: 1px solid rgba(255,255,255,0.05);
    border-left: 5px solid var(--accent);
    border-radius: 12px;
}

body:not(.light-theme) .schedule-tab-bar h2 {
    color: var(--text-main);
    font-family: 'Playfair Display', serif;
}

body:not(.light-theme) .schedule-badge {
    background: rgba(232,160,32,0.1);
    border: 1px solid rgba(232,160,32,0.2);
    color: var(--accent);
}

/* ════════════════════════════════
   REACTION / FEATURE EXTRAS
   ════════════════════════════════ */
body:not(.light-theme) .reaction-btn {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    color: #8fa9bd;
    border-radius: 8px;
}

body:not(.light-theme) .reaction-btn:hover {
    background: var(--accent);
    color: #080e17;
    border-color: var(--accent);
}

body:not(.light-theme) .feature-tag {
    background: rgba(232,160,32,0.1);
    border: 1px solid rgba(232,160,32,0.2);
    color: var(--accent);
    border-radius: 4px;
}

body:not(.light-theme) .program-creative-fill span {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    color: #6a8599;
}

/* ════════════════════════════════
   SCROLLBAR
   ════════════════════════════════ */
body:not(.light-theme) ::-webkit-scrollbar { width: 6px; height: 6px; }
body:not(.light-theme) ::-webkit-scrollbar-track { background: #080e17; }
body:not(.light-theme) ::-webkit-scrollbar-thumb {
    background: rgba(232,160,32,0.2);
    border-radius: 3px;
}
body:not(.light-theme) ::-webkit-scrollbar-thumb:hover {
    background: rgba(232,160,32,0.45);
}

/* ════════════════════════════════
   MODALS
   ════════════════════════════════ */
body:not(.light-theme) .news-modal-content {
    background: #0f1923;
    border: 1px solid rgba(232,160,32,0.15);
    box-shadow: 0 24px 64px rgba(0,0,0,0.8);
    border-radius: 16px;
}

/* ════════════════════════════════
   HELPER CLASSES
   ════════════════════════════════ */
body:not(.light-theme) .theme-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
}

body:not(.light-theme) .highlight-item {
    background: rgba(232,160,32,0.05) !important;
    border: 1px solid rgba(232,160,32,0.12) !important;
}

body:not(.light-theme) .theme-input {
    background: #0a1520;
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--text-main);
}

body:not(.light-theme) .theme-input:focus {
    border-color: var(--accent);
}
