/* ===== CSS VARIABLES ===== */
:root {
    /* Backgrounds */
    --bg-body:        #0e0e0e;
    --bg-sidebar:     #111111;
    --bg-header:      #0f0f0f;
    --bg-card:        #1a1a1a;
    --bg-card-hover:  #222222;
    --bg-cell:        #1e1e1e;
    --bg-cell-hover:  #2a2a2a;
    --bg-input:       #1a1a1a;
    --bg-league-header: #151515;

    /* Text */
    --text-primary:   #ffffff;
    --text-secondary: #999999;
    --text-muted:     #666666;
    --text-dim:       #444444;

    /* Accent */
    --accent:         #448aff;
    --accent-dim:     #2979ff;
    --accent-glow:    rgba(68, 138, 255, 0.15);
    --accent-soft:    rgba(68, 138, 255, 0.08);

    /* Status */
    --live-green:     #448aff;
    --final-gray:     #666666;
    --positive-odds:  #4caf50;
    --negative-odds:  #ef5350;

    /* Borders */
    --border:         #2a2a2a;
    --border-light:   #333333;

    /* Layout */
    --sidebar-width:  220px;
    --header-height:  52px;
    --max-width:      1400px;

    /* Typography */
    --font-main:      'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-odds:      'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-main);
    background: var(--bg-body);
    color: var(--text-primary);
    line-height: 1.5;
    min-height: 100vh;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ===== HEADER ===== */
.header {
    background: var(--bg-header);
    border-bottom: 1px solid var(--border);
    height: var(--header-height);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 16px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 24px;
}

.logo {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.5px;
    flex-shrink: 0;
}

.logo span {
    color: var(--accent);
}

/* Sport Quick Tabs */
.sport-tabs {
    display: flex;
    gap: 2px;
    flex: 1;
    overflow-x: auto;
    scrollbar-width: none;
}

.sport-tabs::-webkit-scrollbar {
    display: none;
}

.sport-tab {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 6px;
    white-space: nowrap;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.15s;
    cursor: pointer;
}

.sport-tab:hover {
    color: var(--text-primary);
    background: var(--bg-card);
}

.sport-tab.active {
    color: var(--accent);
    background: var(--accent-soft);
}

.sport-tab .mdi {
    font-size: 16px;
}

.sport-tab .tab-count {
    font-size: 11px;
    color: var(--text-muted);
    background: var(--bg-cell);
    padding: 1px 6px;
    border-radius: 8px;
}

/* Header Right */
.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.header-select {
    background: var(--bg-cell);
    border: 1px solid var(--border);
    color: var(--text-primary);
    padding: 5px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-family: var(--font-main);
    cursor: pointer;
}

.header-select:focus {
    outline: 1px solid var(--accent);
}

.header-nav-links {
    display: flex;
    gap: 4px;
}

.header-nav-link {
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    color: var(--text-secondary);
    transition: all 0.15s;
}

.header-nav-link:hover {
    color: var(--text-primary);
    background: var(--bg-card);
}

.header-nav-link.active {
    color: var(--accent);
}

/* Mobile menu toggle */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 24px;
    cursor: pointer;
    padding: 4px;
}

/* ===== MAIN LAYOUT ===== */
.page-layout {
    display: flex;
    max-width: var(--max-width);
    margin: 0 auto;
    min-height: calc(100vh - var(--header-height));
}

/* ===== SIDEBAR ===== */
.sidebar {
    width: var(--sidebar-width);
    background: var(--bg-sidebar);
    border-right: 1px solid var(--border);
    position: sticky;
    top: var(--header-height);
    height: calc(100vh - var(--header-height));
    overflow-y: auto;
    flex-shrink: 0;
    scrollbar-width: thin;
    scrollbar-color: var(--border) transparent;
}

.sidebar::-webkit-scrollbar {
    width: 4px;
}

.sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.sidebar::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 2px;
}

.sidebar-section {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.sidebar-section:last-child {
    border-bottom: none;
}

.sidebar-title {
    padding: 0 16px 8px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    font-size: 13px;
    color: var(--text-secondary);
    transition: all 0.15s;
    cursor: pointer;
}

.sidebar-item:hover {
    color: var(--text-primary);
    background: var(--bg-card);
}

.sidebar-item.active {
    color: var(--accent);
    background: var(--accent-soft);
}

.sidebar-item .mdi {
    font-size: 18px;
    width: 22px;
    text-align: center;
}

.sidebar-item .item-name {
    flex: 1;
}

.sidebar-item .item-count {
    font-size: 11px;
    color: var(--text-muted);
    background: var(--bg-cell);
    padding: 1px 6px;
    border-radius: 8px;
    min-width: 20px;
    text-align: center;
}

/* Live badge in sidebar */
.sidebar-item.live-item {
    color: var(--accent);
}

.sidebar-item.live-item .mdi {
    color: var(--accent);
}

.sidebar-item.live-item .item-count {
    background: var(--accent-glow);
    color: var(--accent);
}

/* ===== MAIN CONTENT ===== */
.main-content {
    flex: 1;
    min-width: 0;
    padding: 16px 20px;
}

/* ===== DATE NAVIGATION ===== */
.date-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.date-btn {
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    background: var(--bg-card);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.15s;
}

.date-btn:hover {
    color: var(--text-primary);
    border-color: var(--border-light);
}

.date-btn.active {
    color: var(--accent);
    border-color: var(--accent);
    background: var(--accent-soft);
}

.date-label {
    font-weight: 500;
}

.date-value {
    color: var(--text-muted);
    font-size: 12px;
    margin-left: 4px;
}

.show-all-toggle {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-secondary);
}

/* Toggle switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 36px;
    height: 20px;
    cursor: pointer;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    inset: 0;
    background: var(--bg-cell);
    border-radius: 10px;
    border: 1px solid var(--border);
    transition: all 0.2s;
}

.toggle-slider::before {
    content: '';
    position: absolute;
    height: 14px;
    width: 14px;
    left: 2px;
    bottom: 2px;
    background: var(--text-muted);
    border-radius: 50%;
    transition: all 0.2s;
}

.toggle-switch input:checked + .toggle-slider {
    background: var(--accent-soft);
    border-color: var(--accent);
}

.toggle-switch input:checked + .toggle-slider::before {
    transform: translateX(16px);
    background: var(--accent);
}

/* ===== LEAGUE SECTION ===== */
.league-section {
    margin-bottom: 20px;
}

.league-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--bg-league-header);
    border: 1px solid var(--border);
    border-radius: 8px 8px 0 0;
}

.league-icon {
    font-size: 16px;
    color: var(--text-muted);
}

.league-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    flex: 1;
}

.league-updated {
    font-size: 11px;
    color: var(--text-muted);
}

/* ===== ODDS TABLE HEADERS ===== */
.odds-table-header {
    display: grid;
    grid-template-columns: 70px 1fr 120px 120px 120px 50px;
    padding: 6px 14px;
    background: var(--bg-card);
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: var(--text-muted);
}

.odds-table-header .col-time { }
.odds-table-header .col-event { }
.odds-table-header .col-ml { text-align: center; }
.odds-table-header .col-total { text-align: center; }
.odds-table-header .col-spread { text-align: center; }
.odds-table-header .col-more { text-align: center; }

/* ===== GAME ROW ===== */
.game-row {
    display: grid;
    grid-template-columns: 70px 1fr 120px 120px 120px 50px;
    align-items: center;
    padding: 10px 14px;
    background: var(--bg-card);
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    transition: background 0.15s;
    cursor: pointer;
}

.game-row:hover {
    background: var(--bg-card-hover);
}

.game-row:last-child {
    border-radius: 0 0 8px 8px;
}

/* Time column */
.game-time-col {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.4;
}

.game-time-col .time-value {
    font-weight: 500;
}

.game-time-col .time-period {
    font-size: 11px;
    color: var(--text-muted);
}

/* Live badge */
.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    background: var(--accent-glow);
    border: 1px solid rgba(68, 138, 255, 0.3);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.live-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.final-badge {
    font-size: 11px;
    font-weight: 600;
    color: var(--final-gray);
    text-transform: uppercase;
}

/* Event column */
.game-teams {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.team-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.team-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.team-name.winner {
    font-weight: 700;
}

.team-score {
    font-size: 14px;
    font-weight: 700;
    font-family: var(--font-odds);
    min-width: 24px;
    text-align: right;
}

.team-score.winner {
    color: var(--accent);
}

/* Odds cells */
.odds-cell {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
}

.odds-value {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--bg-cell);
    border-radius: 4px;
    padding: 4px 8px;
    min-width: 90px;
    text-align: center;
    transition: background 0.15s;
}

.odds-value:hover {
    background: var(--bg-cell-hover);
}

.odds-value.best-odds {
    background: var(--accent-glow);
    border: 1px solid rgba(68, 138, 255, 0.25);
}

.odds-number {
    font-family: var(--font-odds);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    font-variant-numeric: tabular-nums;
}

.odds-point {
    font-family: var(--font-odds);
    font-size: 11px;
    color: var(--text-secondary);
    font-variant-numeric: tabular-nums;
}

.odds-source {
    font-size: 9px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-top: 1px;
}

.odds-empty {
    color: var(--text-dim);
    font-size: 12px;
}

/* More markets badge */
.more-markets {
    display: flex;
    align-items: center;
    justify-content: center;
}

.more-badge {
    padding: 4px 8px;
    background: var(--bg-cell);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    transition: background 0.15s;
}

.game-row:hover .more-badge {
    background: var(--accent-glow);
}

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 0 12px;
    font-size: 12px;
    color: var(--text-muted);
}

.breadcrumbs a {
    color: var(--text-secondary);
    transition: color 0.15s;
}

.breadcrumbs a:hover {
    color: var(--accent);
}

.breadcrumbs .sep {
    color: var(--text-dim);
}

.breadcrumbs .current {
    color: var(--text-primary);
}

/* ===== IN-PLAY SECTION ===== */
.in-play-section {
    margin-bottom: 20px;
}

.in-play-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--accent-soft);
    border: 1px solid rgba(68, 138, 255, 0.2);
    border-radius: 8px 8px 0 0;
}

.in-play-header .mdi {
    color: var(--accent);
    font-size: 18px;
}

.in-play-header h2 {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
}

.in-play-header .live-count {
    font-size: 11px;
    background: var(--accent-glow);
    color: var(--accent);
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 600;
}

/* ===== GAME DETAIL PAGE ===== */
.game-detail-header {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 20px;
}

.game-detail-league {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.game-detail-matchup {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-bottom: 16px;
}

.game-detail-team {
    text-align: center;
    flex: 1;
    max-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.game-detail-team .team-name {
    font-size: 18px;
    font-weight: 700;
    white-space: normal;
    line-height: 1.3;
}

.game-detail-team .team-score {
    font-size: 40px;
    font-weight: 800;
    font-family: var(--font-odds);
    font-variant-numeric: tabular-nums;
    margin-top: 8px;
    line-height: 1;
}

.game-detail-vs {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 600;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
}

.game-detail-info {
    text-align: center;
    font-size: 13px;
    color: var(--text-secondary);
}

/* Best odds cards */
.best-odds-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.best-odds-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 16px;
}

.best-odds-card-title {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.best-odds-card-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
}

.best-odds-card-team {
    font-size: 13px;
    color: var(--text-primary);
}

.best-odds-card-value {
    font-family: var(--font-odds);
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
}

.best-odds-card-book {
    font-size: 10px;
    color: var(--text-muted);
}

/* Comparison table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.comparison-table th {
    padding: 10px 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: var(--text-muted);
    background: var(--bg-league-header);
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.comparison-table th:first-child {
    text-align: left;
}

.comparison-table td {
    padding: 8px 12px;
    font-size: 13px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--text-primary);
}

.comparison-table .odds-val {
    font-family: var(--font-odds);
    font-weight: 500;
    font-variant-numeric: tabular-nums;
}

.comparison-table .best-val {
    color: var(--accent);
    font-weight: 700;
}

/* Tabs */
.detail-tabs {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.detail-tab {
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: all 0.15s;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
}

.detail-tab:hover {
    color: var(--text-primary);
}

.detail-tab.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* ===== SCORES PAGE ===== */
.scores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 12px;
}

.score-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 16px;
    transition: border-color 0.15s;
}

.score-card:hover {
    border-color: var(--border-light);
}

.score-card.live {
    border-left: 3px solid var(--accent);
}

.score-card.final {
    opacity: 0.8;
}

.score-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.score-card-league {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.score-card-team {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
}

.score-card-team .team-name {
    font-size: 14px;
}

.score-card-team .team-score {
    font-size: 18px;
}

/* ===== LINE MOVEMENT ===== */
.line-movement-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.line-movement-table th {
    padding: 8px 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-muted);
    background: var(--bg-league-header);
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.line-movement-table td {
    padding: 8px 12px;
    font-size: 13px;
    border-bottom: 1px solid var(--border);
}

.line-movement-table .odds-val {
    font-family: var(--font-odds);
}

.move-up { color: var(--positive-odds); }
.move-down { color: var(--negative-odds); }

/* ===== NO GAMES STATE ===== */
.no-games {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.no-games .mdi {
    font-size: 48px;
    margin-bottom: 12px;
    display: block;
}

.no-games p {
    font-size: 15px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-sidebar);
    border-top: 1px solid var(--border);
    padding: 32px 20px;
    margin-top: auto;
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.footer-column h3 {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 6px;
}

.footer-column a {
    font-size: 12px;
    color: var(--text-secondary);
    transition: color 0.15s;
}

.footer-column a:hover {
    color: var(--accent);
}

.footer-copyright {
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.footer-disclaimer {
    max-width: 800px;
    margin: 16px auto 0;
    font-size: 10px;
    color: var(--text-dim);
    line-height: 1.6;
    text-align: center;
}

/* ===== LOADING ===== */
.loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 24px;
    color: var(--text-muted);
    font-size: 13px;
}

.loading .mdi-spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ===== DRAW ROW (Soccer) ===== */
.draw-row {
    border-top: 1px dashed var(--border);
    padding: 4px 0;
}

.draw-row .team-name {
    color: var(--text-secondary);
    font-style: italic;
}

/* ===== COUNTDOWN ===== */
.countdown {
    font-family: var(--font-odds);
    font-size: 12px;
    color: var(--text-muted);
    font-variant-numeric: tabular-nums;
}

/* Large countdown on game detail page */
.countdown-large {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 8px 20px;
    background: var(--accent-soft);
    border: 1px solid rgba(68, 138, 255, 0.25);
    border-radius: 8px;
    font-size: 20px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    color: var(--accent);
    letter-spacing: 0.5px;
}

.countdown-large .mdi {
    font-size: 20px;
}

/* Countdown in game rows */
.game-time-countdown {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.game-time-countdown .countdown {
    font-size: 11px;
    font-weight: 600;
    color: var(--accent);
}

/* ===== SPORT FILTER PILLS ===== */
.sport-filter-pills {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.filter-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    background: var(--bg-card);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.15s;
    white-space: nowrap;
}

.filter-pill:hover {
    color: var(--text-primary);
    border-color: var(--border-light);
}

.filter-pill.active {
    color: var(--accent);
    border-color: var(--accent);
    background: var(--accent-soft);
}

.filter-pill .mdi {
    font-size: 15px;
}

.pill-count {
    font-size: 11px;
    color: var(--text-muted);
    background: var(--bg-cell);
    padding: 1px 6px;
    border-radius: 8px;
}

.filter-pill.active .pill-count {
    background: var(--accent-glow);
    color: var(--accent);
}

/* ===== SECTION TITLE ===== */
.section-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}
