/* design-refresh.css
   Эволюционный апдейт визуала поверх styles.css.
   Подключается ПОСЛЕ styles.css в index.html, чтобы переопределять
   нужные правила. Если что-то пойдёт не так — достаточно убрать один
   <link>, и сайт вернётся к прежнему виду.
*/

:root {
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    --gradient-emerald: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
    --gradient-orange: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    --gradient-text: linear-gradient(135deg, #fff 0%, #cbd5e1 100%);

    --ring: 0 0 0 3px rgba(99, 102, 241, 0.25);
    --ring-emerald: 0 0 0 3px rgba(16, 185, 129, 0.25);
}

/* ===== Background — мягкий шум + новые orb-ы ===== */
body {
    background-image:
        radial-gradient(circle at 12% 18%, rgba(99, 102, 241, 0.14) 0%, transparent 45%),
        radial-gradient(circle at 88% 22%, rgba(236, 72, 153, 0.10) 0%, transparent 50%),
        radial-gradient(circle at 50% 110%, rgba(16, 185, 129, 0.08) 0%, transparent 55%);
}

/* ===== Sidebar logo ===== */
.logo span {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ===== Page title — нежнее градиент ===== */
.header-title-group h1 {
    background: linear-gradient(135deg, #ffffff 0%, #a5b4fc 60%, #c4b5fd 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.025em;
}

/* ===== Select / search — focus ring ===== */
.glass-select:focus,
.search-bar input:focus {
    outline: none;
    border-color: rgba(99, 102, 241, 0.6) !important;
    box-shadow: var(--ring);
}
.glass-select { transition: all 0.18s ease; }
.glass-select:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
}

/* ===== Search bar — pill shape ===== */
.search-bar { border-radius: 999px; }
.search-bar input { border-radius: 999px; }

/* ============================================================
   Subscriptions page
   ============================================================ */
/* По умолчанию любая .page скрыта правилом из styles.css.
   Здесь задаём только КАК отображать страницу когда она активна. */
#page-subscriptions.active {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.subs-hero {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 24px;
}
.subs-hero-icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    display: grid; place-items: center;
    background: linear-gradient(135deg, #6366f1, #ec4899);
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 10px 28px rgba(139, 92, 246, 0.35);
    flex-shrink: 0;
}
.subs-hero-text h2 {
    margin: 0 0 4px;
    background: linear-gradient(135deg, #fff 0%, #c4b5fd 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.subs-hero-text p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.5;
}
.subs-form,
.subs-quick,
.subs-manage {
    padding: 22px 24px;
}
.subs-form h3,
.subs-quick h3,
.subs-manage h3 {
    margin: 0 0 6px;
    font-size: 1.05rem;
}
.subs-hint {
    margin: 0 0 14px;
    color: var(--text-muted);
    font-size: 0.85rem;
}
.subs-input-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
#subs-keyword-input {
    flex: 1;
    min-width: 220px;
    padding: 12px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
    color: var(--text-main);
    font-family: var(--font-main);
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
#subs-keyword-input:focus {
    border-color: rgba(99, 102, 241, 0.6);
    box-shadow: var(--ring);
}
.subs-subscribe-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, #229ED9 0%, #6366f1 100%);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 10px 24px rgba(34, 158, 217, 0.35);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.subs-subscribe-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(99, 102, 241, 0.4);
}
.subs-warning {
    margin-top: 10px;
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.35);
    color: #fcd34d;
    font-size: 0.85rem;
}
.subs-warning code {
    background: rgba(0,0,0,0.3);
    padding: 1px 6px;
    border-radius: 4px;
}

.subs-quick-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
    margin-top: 12px;
}
.subs-quick-card {
    display: block;
    padding: 16px;
    border-radius: 14px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    color: var(--text-main);
    text-decoration: none;
    transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
.subs-quick-card:hover {
    transform: translateY(-3px);
    background: rgba(99, 102, 241, 0.08);
    border-color: rgba(99, 102, 241, 0.4);
}
.subs-quick-disabled {
    pointer-events: none;
    opacity: 0.5;
}
.subs-quick-label { font-weight: 600; font-size: 0.95rem; }
.subs-quick-hint  { color: var(--text-muted); font-size: 0.75rem; margin-top: 2px; }
.subs-quick-kw {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--accent-light);
    background: rgba(99,102,241,0.12);
    padding: 4px 10px;
    border-radius: 999px;
}

.subs-commands {
    list-style: none;
    padding: 0;
    margin: 12px 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
}
.subs-commands li code {
    background: rgba(99,102,241,0.18);
    color: #c4b5fd;
    padding: 2px 8px;
    border-radius: 6px;
    margin-right: 6px;
}

/* Кнопка в модалке лота */
.subs-modal-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 8px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, #229ED9, #6366f1);
    color: #fff;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    transition: transform 0.15s ease;
}
.subs-modal-btn:hover { transform: scale(1.04); }

/* ===== Stat cards ===== */
.stat-card,
.m-stat-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.stat-card::before,
.m-stat-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(99,102,241,0.12), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.stat-card:hover::before,
.m-stat-card:hover::before { opacity: 1; }
.stat-card:hover,
.m-stat-card:hover {
    transform: translateY(-3px);
    border-color: rgba(99, 102, 241, 0.35);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.5), 0 0 24px rgba(99, 102, 241, 0.18);
}

/* Большие числа — градиентный текст */
.stat-card .stat-value,
.stat-value,
.m-stat-value {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-variant-numeric: tabular-nums;
}

/* Иконка слева — округлый чип */
.stat-card .stat-icon,
.m-stat-icon {
    background: linear-gradient(135deg, rgba(99,102,241,0.18), rgba(139,92,246,0.10));
    border: 1px solid rgba(99, 102, 241, 0.25);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

/* ===== Status badges — pill + dot ===== */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px 4px 8px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1;
    border: 1px solid currentColor;
    background-clip: padding-box;
    white-space: nowrap;
}
.status-badge::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 0 2px rgba(255,255,255,0.05);
    flex-shrink: 0;
}

/* ===== Data table ===== */
.data-table thead th {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-dim);
    border-bottom: 1px solid var(--border-light);
    background: rgba(255, 255, 255, 0.015);
}
.data-table thead th.sortable {
    cursor: pointer;
    user-select: none;
    transition: color 0.15s ease, background 0.15s ease;
}
.data-table thead th.sortable:hover {
    color: #fff;
    background: rgba(99, 102, 241, 0.07);
}
.data-table thead th.sortable i { opacity: 0.4; transition: opacity 0.15s ease; }
.data-table thead th.sortable:hover i { opacity: 1; color: var(--accent-light); }

.data-table tbody tr {
    transition: background 0.15s ease;
    cursor: pointer;
}
.data-table tbody tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.015);
}
.data-table tbody tr:hover td {
    background: rgba(99, 102, 241, 0.06);
}
.data-table tbody td {
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    vertical-align: middle;
}

/* Зелёные «минималки» — выраженнее, но компактнее */
.data-table .text-emerald.font-bold {
    color: var(--emerald);
    text-shadow: 0 0 18px rgba(16, 185, 129, 0.2);
}

/* ===== Sortable indicators — стрелки направления ===== */
.data-table thead th.sort-asc i::before  { content: "\f0de"; color: var(--accent-light); opacity: 1; }
.data-table thead th.sort-desc i::before { content: "\f0dd"; color: var(--accent-light); opacity: 1; }

/* ===== Pagination buttons ===== */
.pagination button {
    transition: all 0.15s ease;
}
.pagination button:hover:not(:disabled) {
    transform: translateY(-1px);
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 6px 16px rgba(99, 102, 241, 0.18);
}
.pagination button.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 6px 18px rgba(99, 102, 241, 0.35);
}

/* ===== Nav-item active — глубже акцент ===== */
.nav-item.active {
    background: linear-gradient(90deg, rgba(99,102,241,0.18), rgba(139,92,246,0.05) 60%, transparent);
    border-left-width: 3px;
    box-shadow: inset 0 0 24px rgba(99, 102, 241, 0.08);
}

/* ===== Modal polish ===== */
.modal-content { border: 1px solid var(--border-light); }
.modal-title {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ===== Mobile-friendly stack ===== */
@media (max-width: 900px) {
    .filter-group { width: 100%; }
    .glass-select { flex: 1 1 calc(50% - 6px); min-width: 0; }
}

/* ===== Subtle entry animation для таблицы ===== */
#table-body tr {
    animation: rowFadeIn 0.25s ease both;
}
@keyframes rowFadeIn {
    from { opacity: 0; transform: translateY(4px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   Kepler — AI ассистент в углу
   ============================================================ */

.kepler-toggle {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1000;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px 12px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.12);
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
    cursor: pointer;
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.35), 0 0 0 1px rgba(255,255,255,0.04) inset;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.kepler-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 44px rgba(139, 92, 246, 0.5);
}
.kepler-toggle i { font-size: 1.05rem; }
.kepler-toggle-glow {
    position: absolute;
    inset: -6px;
    border-radius: 999px;
    background: radial-gradient(60% 60% at 50% 50%, rgba(139, 92, 246, 0.45), transparent 70%);
    z-index: -1;
    animation: keplerPulse 2.6s ease-in-out infinite;
}
@keyframes keplerPulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50%      { opacity: 0.7; transform: scale(1.08); }
}

.kepler-panel {
    position: fixed;
    right: 24px;
    bottom: 92px;
    width: 380px;
    max-width: calc(100vw - 32px);
    height: min(70vh, 560px);
    background: rgba(15, 19, 32, 0.92);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 24px 64px rgba(0,0,0,0.55);
    display: flex;
    flex-direction: column;
    z-index: 999;
    opacity: 0;
    transform: translateY(12px) scale(0.98);
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
}
.kepler-panel.kepler-open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.kepler-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 16px 12px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.kepler-avatar {
    width: 38px; height: 38px;
    border-radius: 12px;
    display: grid; place-items: center;
    background: linear-gradient(135deg, #6366f1, #ec4899);
    color: #fff;
    box-shadow: 0 6px 18px rgba(139, 92, 246, 0.4);
}
.kepler-title h3 {
    font-size: 1rem;
    margin: 0;
    background: linear-gradient(135deg, #fff, #c4b5fd);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.kepler-subtitle {
    font-size: 0.72rem;
    color: var(--text-dim);
    letter-spacing: 0.02em;
}
.kepler-close {
    margin-left: auto;
    width: 32px; height: 32px;
    border-radius: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    color: var(--text-muted);
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}
.kepler-close:hover { background: rgba(255,255,255,0.08); color: #fff; }

.kepler-messages {
    flex: 1;
    overflow-y: auto;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.kepler-msg {
    max-width: 86%;
    padding: 10px 14px;
    border-radius: 14px;
    font-size: 0.9rem;
    line-height: 1.5;
    word-wrap: break-word;
    animation: rowFadeIn 0.18s ease both;
}
.kepler-msg-bot {
    background: rgba(99, 102, 241, 0.10);
    border: 1px solid rgba(99, 102, 241, 0.18);
    color: #e2e8f0;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}
.kepler-msg-user {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.35), rgba(236, 72, 153, 0.25));
    color: #fff;
    align-self: flex-end;
    border: 1px solid rgba(255,255,255,0.08);
    border-bottom-right-radius: 4px;
}
.kepler-msg code {
    background: rgba(0,0,0,0.3);
    padding: 1px 6px;
    border-radius: 4px;
    font-size: 0.85em;
}
.kepler-typing {
    display: inline-flex;
    gap: 4px;
    align-items: center;
    padding: 12px 14px;
}
.kepler-typing span {
    width: 6px; height: 6px;
    background: currentColor;
    border-radius: 50%;
    opacity: 0.5;
    animation: keplerTyping 1.2s infinite ease-in-out;
}
.kepler-typing span:nth-child(2) { animation-delay: 0.15s; }
.kepler-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes keplerTyping {
    0%, 80%, 100% { transform: translateY(0); opacity: 0.4; }
    40%           { transform: translateY(-4px); opacity: 1; }
}

.kepler-suggestions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    padding: 0 16px 10px;
}
.kepler-chip {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--text-main);
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 0.78rem;
    cursor: pointer;
    transition: all 0.15s ease;
}
.kepler-chip:hover {
    background: rgba(99, 102, 241, 0.18);
    border-color: rgba(99, 102, 241, 0.4);
    transform: translateY(-1px);
}

.kepler-form {
    display: flex;
    gap: 8px;
    padding: 12px 14px 14px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.kepler-form input {
    flex: 1;
    padding: 11px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
    color: var(--text-main);
    font-family: var(--font-main);
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.kepler-form input:focus {
    border-color: rgba(99, 102, 241, 0.6);
    box-shadow: var(--ring);
}
.kepler-form button {
    width: 42px; height: 42px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #6366f1, #ec4899);
    color: #fff;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.kepler-form button:hover {
    transform: scale(1.06);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
}

@media (max-width: 520px) {
    .kepler-panel {
        right: 12px; left: 12px;
        width: auto;
        bottom: 80px;
        height: 70vh;
    }
    .kepler-toggle-label { display: none; }
}

/* ============================================================
   Watchlist — мини-колокольчик в шапке «Все лоты» + popover
   ============================================================ */
.section-header-actions {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.watch-bell {
    position: relative;
    width: 36px; height: 36px;     /* совпадает по высоте с .btn-export */
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.04);
    color: var(--text-main);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease, color 0.15s ease;
}
.watch-bell:hover {
    background: rgba(99,102,241,0.16);
    transform: translateY(-1px);
    color: #fff;
}
.watch-bell-empty {
    color: var(--text-dim);
}
.watch-bell-empty:hover { color: var(--text-muted); }
.watch-bell-active {
    background: linear-gradient(135deg, rgba(99,102,241,0.35), rgba(236,72,153,0.25));
    border-color: rgba(99,102,241,0.45);
    box-shadow: 0 0 18px rgba(99,102,241,0.35);
    color: #fff;
}
.watch-bell-active:hover { background: linear-gradient(135deg, rgba(99,102,241,0.45), rgba(236,72,153,0.35)); }

/* Toast при клике на пустую звонилку */
.watch-empty-hint {
    position: fixed;
    z-index: 1100;
    padding: 10px 14px;
    background: rgba(15, 19, 32, 0.96);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    color: var(--text-muted);
    font-size: 0.82rem;
    max-width: 320px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.4);
    animation: rowFadeIn 0.2s ease both;
}
.watch-bell-count {
    position: absolute;
    top: -4px; right: -4px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    background: linear-gradient(135deg, #ef4444, #f59e0b);
    color: #fff;
    font-size: 0.66rem;
    font-weight: 700;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(239,68,68,0.45);
}
.watch-bell-count[hidden] { display: none; }

.watch-popover {
    position: fixed;
    z-index: 1100;
    max-height: min(70vh, 540px);
    overflow-y: auto;
    background: rgba(15, 19, 32, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(99, 102, 241, 0.35);
    border-radius: 16px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.55), 0 0 36px rgba(99, 102, 241, 0.18);
    padding: 0;
    animation: rowFadeIn 0.18s ease both;
}
.watch-popover-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-family: var(--font-heading);
}
.watch-popover-head strong {
    color: #fff;
    font-size: 0.95rem;
}
.watch-popover-when {
    display: block;
    color: var(--text-dim);
    font-size: 0.72rem;
    font-weight: 500;
    font-family: var(--font-main);
    margin-top: 2px;
}
.watch-popover-close {
    width: 28px; height: 28px;
    border-radius: 8px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    color: var(--text-muted);
    cursor: pointer;
}
.watch-popover-close:hover { color: #fff; background: rgba(255,255,255,0.08); }

.watch-popover-body {
    padding: 12px 16px 14px;
}
.watch-entry { margin-bottom: 12px; }
.watch-entry:last-child { margin-bottom: 0; }
.watch-entry-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 6px;
    font-size: 0.85rem;
}
.watch-entry-summary {
    color: var(--text-muted);
    font-size: 0.75rem;
}
.watch-section { margin: 4px 0; }
.watch-tag {
    display: inline-block;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 999px;
    margin-right: 6px;
    font-weight: 600;
}
.watch-tag-add    { background: rgba(16,185,129,0.18); color: #6ee7b7; border: 1px solid rgba(16,185,129,0.3); }
.watch-tag-change { background: rgba(99,102,241,0.18); color: #a5b4fc; border: 1px solid rgba(99,102,241,0.3); }
.watch-tag-remove { background: rgba(245,158,11,0.18); color: #fcd34d; border: 1px solid rgba(245,158,11,0.3); }
.watch-popover ul {
    list-style: none;
    padding-left: 0;
    margin: 6px 0 0;
    font-size: 0.78rem;
    color: #e2e8f0;
}
.watch-popover ul li {
    padding: 4px 0;
    border-top: 1px solid rgba(255,255,255,0.04);
}
.watch-popover ul li:first-child { border-top: none; }
.watch-popover a { color: var(--accent-light); text-decoration: none; }
.watch-popover a:hover { text-decoration: underline; }
.watch-diff {
    display: inline-block;
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-right: 6px;
}
.watch-diff s { opacity: 0.7; }
.watch-diff strong { color: #fff; }
