/* ═══════════════════════════════════════════════════════════════
   PredForge — Dark MOBA Theme
   Color palette from Figma:
     --pf-bg-dark:      #000000    (main background — pure black)
     --pf-bg-surface:   #0a0a0a    (cards, panels)
     --pf-bg-sidebar:   linear-gradient(91.15deg, #010101 0.82%, #000000 98.85%)
     --pf-bg-topbar:    #000000    (top bar — pure black)
     --pf-border:       rgba(1, 83, 178, 0.5)   (blue-tinted borders)
     --pf-accent:       #0153B2    (blue accent — primary)
     --pf-accent-hover: #0168D9    (accent hover)
     --pf-purple:       #7c3aed    (secondary accent — buttons, badges)
     --pf-orange:       #f59e0b    (warnings, streaks)
     --pf-green:        #10b981    (success, online)
     --pf-red:          #ef4444    (danger, decline)
     --pf-text:         #e2e8f0    (primary text)
     --pf-text-muted:   #94a3b8    (secondary text)
     --pf-text-dim:     #64748b    (dimmed text)
   ═══════════════════════════════════════════════════════════════ */

:root {
    --pf-bg-dark: #000000;
    --pf-bg-surface: #0a0a0a;
    --pf-bg-sidebar: #010101;
    --pf-bg-topbar: #000000;
    --pf-bg-input: #0a0a0a;
    --pf-border: rgba(1, 83, 178, 0.5);
    --pf-border-light: rgba(1, 83, 178, 0.3);
    --pf-accent: #0153B2;
    --pf-accent-hover: #0168D9;
    --pf-accent-glow: rgba(1, 83, 178, 0.15);
    --pf-purple: #7c3aed;
    --pf-purple-hover: #8b5cf6;
    --pf-orange: #f59e0b;
    --pf-green: #10b981;
    --pf-red: #ef4444;
    --pf-blue: #0153B2;
    --pf-text: #e2e8f0;
    --pf-text-muted: #94a3b8;
    --pf-text-dim: #64748b;
    --pf-sidebar-width: 250px;
    --pf-sidebar-collapsed: 64px;
    --pf-topbar-height: 75px;
    --pf-radius: 12px;
    --pf-radius-sm: 8px;
    --pf-transition: 0.2s ease;
}

/* ── Reset & Base ── */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    color: var(--pf-text);
    background: var(--pf-bg-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--pf-accent);
    text-decoration: none;
}

a:hover {
    color: var(--pf-accent-hover);
}

/* ── Loading Screen ── */

.loading-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: #000000;
}

.loading-logo {
    font-size: 3rem;
    font-weight: 800;
    color: var(--pf-accent);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.loading-text {
    color: var(--pf-text-muted);
    font-size: 1rem;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* ── App Shell ── */

.app-shell {
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
}

.app-body {
    display: flex;
    flex: 1;
    overflow: hidden;
}

/* ── Top Bar (full-width, above sidebar) ── */

.topbar {
    height: var(--pf-topbar-height);
    min-height: var(--pf-topbar-height);
    background: #000000;
    border-bottom: 1px solid rgba(1, 83, 178, 0.5);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    z-index: 200;
    flex-shrink: 0;
}

.topbar-brand {
    display: flex;
    align-items: center;
}

.topbar-brand-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.topbar-logo {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.topbar-brand-text {
    font-size: 18px;
    font-weight: 800;
    color: var(--pf-text);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ── Sidebar (below topbar) ── */

.sidebar {
    width: var(--pf-sidebar-width);
    min-width: var(--pf-sidebar-width);
    height: 100%;
    background: linear-gradient(91.15deg, #010101 0.82%, #000000 98.85%);
    border-right: 1px solid rgba(1, 83, 178, 0.5);
    box-shadow: 5px 0px 10px rgba(1, 83, 178, 0.15);
    display: flex;
    flex-direction: column;
    transition: width var(--pf-transition), min-width var(--pf-transition);
    overflow: hidden;
    z-index: 100;
}

.sidebar.collapsed {
    width: var(--pf-sidebar-collapsed);
    min-width: var(--pf-sidebar-collapsed);
}

/* Sidebar Toggle Arrows */
.sidebar-toggle-area {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 10px 14px;
    gap: 0;
    flex-shrink: 0;
    width: 100%;
    background: none;
    border: none;
    color: var(--pf-text-dim);
    cursor: pointer;
    transition: color var(--pf-transition);
}

.sidebar-toggle-area:hover {
    color: var(--pf-text-muted);
}

.sidebar.collapsed .sidebar-toggle-area {
    justify-content: center;
}

.sidebar-toggle-area svg {
    margin-right: -6px;
}

/* Sidebar Nav */
.sidebar-nav {
    flex: 1;
    padding: 0;
    overflow-y: auto;
    overflow-x: hidden;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 16px;
    height: 50px;
    border-left: 2px solid transparent;
    color: var(--pf-text-muted);
    cursor: pointer;
    transition: all var(--pf-transition);
    white-space: nowrap;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
}

.nav-item:hover {
    background: linear-gradient(90deg, #3A3D3D 0%, rgba(58, 61, 61, 0) 50%);
    border-left: 2px solid #0153B2;
    color: var(--pf-text);
}

.nav-item.active {
    background: linear-gradient(90deg, #3A3D3D 0%, rgba(58, 61, 61, 0) 50%);
    border-left: 2px solid #0153B2;
    color: var(--pf-text);
}

.nav-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
}

.nav-label {
    overflow: hidden;
    opacity: 1;
    transition: opacity var(--pf-transition);
}

.sidebar.collapsed .nav-label {
    opacity: 0;
    width: 0;
}

/* Sidebar Footer */
.sidebar-footer {
    padding: 12px;
    flex-shrink: 0;
}

.sidebar-powered-by {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 8px;
    font-size: 11px;
    color: var(--pf-text-dim);
    white-space: nowrap;
    overflow: hidden;
}

.sidebar-powered-label {
    opacity: 1;
    transition: opacity var(--pf-transition);
    overflow: hidden;
}

.sidebar.collapsed .sidebar-powered-label {
    opacity: 0;
    width: 0;
}

.sidebar-signallogic-text {
    color: var(--pf-accent);
    font-weight: 600;
    opacity: 1;
    transition: opacity var(--pf-transition);
    overflow: hidden;
}

.sidebar.collapsed .sidebar-signallogic-text {
    opacity: 0;
    width: 0;
}

/* ── Page Content ── */

.page-content {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
    background: var(--pf-bg-dark);
    min-width: 0;
}

.topbar-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.topbar-icon-btn {
    position: relative;
    background: none;
    border: none;
    color: var(--pf-text-muted);
    cursor: pointer;
    font-size: 18px;
    padding: 6px;
    border-radius: var(--pf-radius-sm);
    transition: all var(--pf-transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.topbar-icon-btn:hover {
    color: var(--pf-text);
    background: rgba(255, 255, 255, 0.05);
}

.notification-badge {
    position: absolute;
    top: 0;
    right: 0;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    background: var(--pf-red);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.topbar-user {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 4px;
    border-radius: var(--pf-radius-sm);
    transition: background var(--pf-transition);
    color: var(--pf-text-muted);
}

.topbar-user:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--pf-text);
}

.topbar-avatar-icon {
    display: block;
}

/* ── Page Content ── */

.page-content {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
    background: var(--pf-bg-dark);
}

/* ── Cards ── */

.pf-card {
    background: var(--pf-bg-surface);
    border: 1px solid var(--pf-border);
    border-radius: var(--pf-radius);
    padding: 20px;
    transition: border-color var(--pf-transition);
}

.pf-card:hover {
    border-color: var(--pf-border-light);
}

.pf-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.pf-card-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--pf-text);
}

.pf-card-accent {
    border-color: var(--pf-accent);
    border-width: 1px 1px 1px 3px;
}

/* ── Grid Layouts ── */

.grid-row {
    display: grid;
    gap: 16px;
    margin-bottom: 16px;
}

.grid-1 { grid-template-columns: 1fr; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1200px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

/* ── Stat Cards ── */

.stat-card {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.stat-icon.orange { background: rgba(245, 158, 11, 0.15); color: var(--pf-orange); }
.stat-icon.green  { background: rgba(16, 185, 129, 0.15); color: var(--pf-green); }
.stat-icon.blue   { background: rgba(59, 130, 246, 0.15); color: var(--pf-blue); }
.stat-icon.purple { background: rgba(124, 58, 237, 0.15); color: var(--pf-purple); }
.stat-icon.accent { background: var(--pf-accent-glow); color: var(--pf-accent); }

.stat-label {
    font-size: 12px;
    color: var(--pf-text-muted);
    margin-bottom: 2px;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--pf-text);
    line-height: 1;
}

/* ── Badges ── */

.badge {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-active  { background: rgba(16, 185, 129, 0.15); color: var(--pf-green); }
.badge-pending { background: rgba(245, 158, 11, 0.15); color: var(--pf-orange); }
.badge-error   { background: rgba(239, 68, 68, 0.15); color: var(--pf-red); }
.badge-info    { background: rgba(59, 130, 246, 0.15); color: var(--pf-blue); }
.badge-accent  { background: var(--pf-accent-glow); color: var(--pf-accent); }

/* ── Buttons ── */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 16px;
    border: 1px solid transparent;
    border-radius: var(--pf-radius-sm);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--pf-transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--pf-accent);
    color: var(--pf-bg-dark);
    border-color: var(--pf-accent);
}

.btn-primary:hover {
    background: var(--pf-accent-hover);
    border-color: var(--pf-accent-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--pf-text-muted);
    border-color: var(--pf-border);
}

.btn-secondary:hover {
    color: var(--pf-text);
    border-color: var(--pf-border-light);
    background: rgba(255, 255, 255, 0.03);
}

.btn-success {
    background: var(--pf-green);
    color: #fff;
}

.btn-success:hover {
    background: #0ea472;
}

.btn-danger {
    background: transparent;
    color: var(--pf-red);
    border-color: var(--pf-red);
}

.btn-danger:hover {
    background: rgba(239, 68, 68, 0.1);
}

.btn-purple {
    background: var(--pf-purple);
    color: #fff;
}

.btn-purple:hover {
    background: var(--pf-purple-hover);
}

/* ── Progress Bar ── */

.progress-bar {
    height: 6px;
    background: var(--pf-border);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--pf-accent), var(--pf-blue));
    border-radius: 3px;
    transition: width 0.4s ease;
}

/* ── Scrollbar ── */

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: var(--pf-border-light);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--pf-text-dim);
}

/* ── Blazor Error UI ── */

#blazor-error-ui {
    background: var(--pf-bg-surface);
    border-top: 2px solid var(--pf-red);
    bottom: 0;
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
    color: var(--pf-text);
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

#blazor-error-ui .reload {
    color: var(--pf-accent);
    margin-left: 8px;
}

.blazor-error-boundary {
    background: var(--pf-red);
    padding: 1rem;
    color: white;
    border-radius: var(--pf-radius-sm);
}

.blazor-error-boundary::after {
    content: "An error has occurred.";
}

/* ── Text Utilities ── */

.text-accent { color: var(--pf-accent); }
.text-muted  { color: var(--pf-text-muted); }
.text-dim    { color: var(--pf-text-dim); }
.text-green  { color: var(--pf-green); }
.text-red    { color: var(--pf-red); }
.text-orange { color: var(--pf-orange); }
.text-purple { color: var(--pf-purple); }
.text-blue   { color: var(--pf-blue); }

.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.fs-sm  { font-size: 12px; }
.fs-lg  { font-size: 18px; }
.fs-xl  { font-size: 24px; }

.mt-1 { margin-top: 4px; }
.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 16px; }
.mb-1 { margin-bottom: 4px; }
.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 16px; }
.gap-1 { gap: 4px; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 16px; }

.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.flex-col { flex-direction: column; display: flex; }

/* ── Dashboard Grid ── */

.dashboard-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dashboard-row-full {
    width: 100%;
}

.dashboard-row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 900px) {
    .dashboard-row-2col {
        grid-template-columns: 1fr;
    }
}

/* ── Draft Tool ── */

.draft-phases {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.draft-phase {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--pf-radius-sm);
    font-size: 13px;
}

.draft-phase-active {
    border-color: var(--pf-orange);
    background: rgba(245,158,11,0.08);
    box-shadow: 0 0 8px rgba(245,158,11,0.2);
}

.draft-phase-done {
    opacity: 0.6;
}

.draft-phase-number {
    font-weight: 700;
    font-size: 11px;
    color: var(--pf-text-dim);
    min-width: 18px;
    text-align: center;
}

.badge-red   { background: rgba(239, 68, 68, 0.15); color: var(--pf-red); }
.badge-green { background: rgba(16, 185, 129, 0.15); color: var(--pf-green); }

/* ── Draft Timer Bar ── */

.draft-timer-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 20px;
    background: linear-gradient(91.55deg, #202B38 0%, #090909 100%);
    border: 1px solid var(--pf-border);
    border-radius: var(--pf-radius);
    margin-bottom: 16px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.draft-timer-bonus {
    border-color: var(--pf-orange);
    box-shadow: 0 0 12px rgba(245,158,11,0.2);
}

.draft-timer-critical {
    border-color: var(--pf-red);
    box-shadow: 0 0 16px rgba(239,68,68,0.3);
    animation: timer-pulse 0.8s ease-in-out infinite;
}

@keyframes timer-pulse {
    0%, 100% { box-shadow: 0 0 16px rgba(239,68,68,0.3); }
    50%      { box-shadow: 0 0 24px rgba(239,68,68,0.5); }
}

.draft-timer-left {
    display: flex;
    flex-direction: column;
    min-width: 120px;
}

.draft-timer-center {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.draft-timer-seconds {
    font-size: 28px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    color: var(--pf-text);
}

.draft-timer-critical .draft-timer-seconds {
    color: var(--pf-red);
}

.draft-timer-bonus .draft-timer-seconds {
    color: var(--pf-orange);
}

.draft-timer-progress {
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.08);
    border-radius: 2px;
    overflow: hidden;
}

.draft-timer-fill {
    height: 100%;
    background: var(--pf-accent);
    border-radius: 2px;
    transition: width 1s linear;
}

.draft-timer-bonus .draft-timer-fill {
    background: var(--pf-orange);
}

.draft-timer-critical .draft-timer-fill {
    background: var(--pf-red);
}

.draft-timer-right {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 160px;
    text-align: right;
}

.draft-bonus-display {
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: flex-end;
}

/* ── Draft Hero Grid ── */

.draft-hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 8px;
    max-height: 400px;
    overflow-y: auto;
    padding: 4px;
}

.draft-hero-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 4px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--pf-radius-sm);
    cursor: pointer;
    transition: all var(--pf-transition);
}

.draft-hero-card:hover {
    border-color: var(--pf-accent);
    background: rgba(1,83,178,0.08);
}

.draft-hero-selected {
    border-color: var(--pf-accent);
    background: rgba(1,83,178,0.15);
    box-shadow: 0 0 12px rgba(1,83,178,0.3);
}

.draft-hero-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.1);
}

.draft-hero-selected .draft-hero-icon {
    border-color: var(--pf-accent);
}

.draft-hero-icon-placeholder {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--pf-text-dim);
    border: 2px solid rgba(255,255,255,0.1);
}

.draft-hero-name {
    font-size: 11px;
    text-align: center;
    color: var(--pf-text-muted);
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 80px;
}

.draft-hero-selected .draft-hero-name {
    color: var(--pf-text);
    font-weight: 600;
}

/* ── Draft Confirm Bar ── */

.draft-confirm-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--pf-border);
    border-radius: var(--pf-radius-sm);
}

/* ── Draft Complete Screen ── */

.draft-complete-header {
    text-align: center;
    padding: 16px 0 8px;
}

.draft-lobby-code-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px;
    margin-bottom: 20px;
    background: linear-gradient(91.55deg, #202B38 0%, #090909 100%);
    border: 1px solid var(--pf-border);
    border-radius: var(--pf-radius);
    box-shadow: 0 0 20px rgba(1,83,178,0.3);
}

.draft-lobby-code {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 12px;
    font-family: 'Consolas', 'Courier New', monospace;
    color: var(--pf-text);
    text-shadow: 0 0 12px rgba(1,83,178,0.5);
    padding-left: 12px; /* offset for letter-spacing on last char */
}

.btn-sm {
    padding: 4px 12px;
    font-size: 12px;
}

.draft-result-heroes {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.draft-result-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 10px 8px;
    border-radius: var(--pf-radius-sm);
    min-width: 80px;
}

.draft-result-ban {
    background: rgba(239,68,68,0.06);
    border: 1px solid rgba(239,68,68,0.2);
}

.draft-result-pick {
    background: rgba(16,185,129,0.06);
    border: 1px solid rgba(16,185,129,0.2);
}

.draft-result-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.1);
}

.draft-result-ban .draft-result-icon {
    border-color: rgba(239,68,68,0.4);
    opacity: 0.7;
}

.draft-result-pick .draft-result-icon {
    border-color: rgba(16,185,129,0.4);
}

.draft-result-icon-placeholder {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--pf-text-dim);
    border: 2px solid rgba(255,255,255,0.1);
}

.draft-result-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--pf-text-muted);
    text-align: center;
}

.draft-result-pick .draft-result-name {
    color: var(--pf-text);
}

.draft-result-ban .draft-result-name {
    text-decoration: line-through;
    color: var(--pf-text-dim);
}

/* ── Updates Feed ── */

.updates-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.update-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(255,255,255,0.02);
    border: 1px solid transparent;
    border-radius: var(--pf-radius-sm);
    cursor: pointer;
    transition: all var(--pf-transition);
}

.update-item:hover {
    background: rgba(1,83,178,0.06);
    border-color: var(--pf-border-light);
}

.update-unread {
    background: rgba(1,83,178,0.05);
    border-color: var(--pf-border);
}

.update-icon {
    font-size: 22px;
    flex-shrink: 0;
    width: 36px;
    text-align: center;
}

.update-body {
    flex: 1;
    min-width: 0;
}

.update-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--pf-accent);
    flex-shrink: 0;
}

.update-action {
    flex-shrink: 0;
}
