        * { margin: 0; padding: 0; box-sizing: border-box; }

        /* ── Scrollbar ── */
        ::-webkit-scrollbar { width: 6px; height: 6px; }
        ::-webkit-scrollbar-track { background: transparent; }
        ::-webkit-scrollbar-thumb { background: #334155; border-radius: 3px; }
        ::-webkit-scrollbar-thumb:hover { background: #475569; }

        body {
            font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
            background: #0f0f1a;
            color: #e0e0e0;
            min-height: 100vh;
        }
        header {
            background: linear-gradient(135deg, rgba(26,26,46,0.94), rgba(22,33,62,0.94));
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            padding: 20px 30px;
            border-bottom: 1px solid rgba(15,52,96,0.6);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .header-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 12px;
        }
        .header-brand {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .header-brand img {
            width: 36px;
            height: 36px;
            border-radius: 8px;
        }
        header h1 {
            font-size: 1.6rem;
            color: #e94560;
        }
        .controls {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            align-items: center;
        }
        .controls.collapsed { display: none; }
        .search-wrap { position:relative; flex:1; min-width:220px; display:flex; align-items:center; }
        .search-icon { position:absolute; left:10px; top:50%; transform:translateY(-50%);
                       width:15px; height:15px; fill:#4a5568; pointer-events:none; flex-shrink:0; }
        .controls .search-wrap input[type="text"] {
            min-width: 0;
            width: 100%;
            padding: 8px 14px 8px 32px;
        }
        .controls input[type="text"] {
            flex: 1;
            min-width: 220px;
            padding: 8px 14px;
            border: 1px solid #333;
            border-radius: 6px;
            background: #1a1a2e;
            color: #e0e0e0;
            font-size: 0.95rem;
            transition: border-color 0.2s;
        }
        .controls input:focus { outline: none; border-color: #e94560; }
        .controls input.filter-active { border-color: #e9456066; }
        .controls select {
            padding: 8px 12px;
            border: 1px solid #333;
            border-radius: 6px;
            background: #1a1a2e;
            color: #e0e0e0;
            font-size: 0.95rem;
            cursor: pointer;
            transition: border-color 0.2s, color 0.2s;
        }
        .controls select.filter-active { border-color: #e9456066; color: #e0e0e0; }
        .stats {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 6px;
            padding: 6px 0 0 4px;
            font-size: 0.82rem;
        }
        .stat-chip { display:inline-flex; align-items:baseline; gap:3px; color:#bbb; }
        .stat-chip-label { font-size:.7rem; color:#4a5568; }
        .stat-chip-sep { color:#2d3748; margin:0 1px; font-size:.75rem; }
        .stat-chip-sync { font-size:.7rem; color:#475569; margin-left:4px; }
        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            padding: 24px;
        }
        .card {
            background: #1a1a2e;
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid #222;
            transition: transform 0.2s, border-color 0.2s;
            contain: content;
            content-visibility: auto;
            contain-intrinsic-size: 0 360px;
        }
        .card:hover {
            transform: translateY(-3px);
            border-color: var(--glow-border, #e94560);
            box-shadow: 0 8px 28px -4px var(--glow-color, rgba(233,69,96,0.2)),
                        0 4px 16px rgba(0,0,0,0.4);
        }
        .card-img-wrap {
            width: 100%;
            height: 180px;
            background: #111;
            position: relative;
            overflow: hidden;
        }
        .card-img-wrap::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(110deg, #111 30%, #1a1a2e 50%, #111 70%);
            background-size: 200% 100%;
            animation: none;
        }
        .card-img-wrap.shimmer::before {
            animation: shimmer 1.5s infinite;
        }
        .card-img-wrap.loaded::before { display: none; }
        /* Gradient overlay : fondu bas de l'image vers la carte */
        .card-img-wrap::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0; right: 0;
            height: 72px;
            background: linear-gradient(to bottom, transparent, #1a1a2e);
            pointer-events: none;
            z-index: 1;
        }
        @keyframes shimmer {
            0% { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }
        .card-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            opacity: 0;
            transition: opacity 0.3s;
        }
        .card-img.visible { opacity: 1; }
        .card-body { padding: 14px; }
        .card-title {
            font-size: 1.05rem;
            font-weight: 600;
            margin-bottom: 8px;
        }
        .card-title a {
            color: #e94560;
            text-decoration: none;
        }
        .card-title a:hover { text-decoration: underline; }
        .card-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-bottom: 8px;
        }
        .badge {
            display: inline-block;
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: 600;
        }
        .badge-en-cours  { background: #0d6efd22; color: #6ea8fe; border: 1px solid #0d6efd44; }
        .badge-termine   { background: #19875422; color: #63d99a; border: 1px solid #19875444; }
        .badge-abandonne { background: #dc354522; color: #f08090; border: 1px solid #dc354544; }
        .badge-type      { background: #6f42c122; color: #b197fc; border: 1px solid #6f42c144; }
        .badge-trad-type { background: #fd7e1422; color: #fdba74; border: 1px solid #fd7e1444; }
        .card-info {
            font-size: 0.82rem;
            color: #aaa;
            line-height: 1.6;
        }
        .card-info span { color: #ccc; }
        .card-tags {
            margin-top: 8px;
            font-size: 0.72rem;
            color: #666;
            line-height: 1.5;
        }
        .card-links {
            margin-top: 10px;
            display: flex;
            gap: 8px;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 5px 12px;
            border-radius: 5px;
            font-size: 0.8rem;
            text-decoration: none;
            font-weight: 500;
            transition: opacity 0.2s;
            white-space: nowrap;
        }
        .btn:hover { opacity: 0.8; }
        .btn-game { background: #e94560; color: #fff; }
        .btn-trad { color: #fff; }
        .btn-logo {
            width: 14px;
            height: 14px;
            object-fit: contain;
            flex-shrink: 0;
            filter: brightness(0) invert(1);
            display: block;
        }
        .btn-trad svg.btn-logo { fill: #fff; }
        .btn-integree {
            background: none;
            border: 1px solid #444;
            color: #888;
            cursor: default;
            pointer-events: none;
        }
        .btn-integree:hover { opacity: 1; }
        #loading {
            grid-column: 1 / -1;
            text-align: center;
            padding: 80px 20px;
            color: #888;
            font-size: 1.1rem;
        }
        #error {
            grid-column: 1 / -1;
            text-align: center;
            padding: 60px 20px;
            color: #f08090;
            font-size: 1rem;
            display: none;
        }
        .no-results {
            grid-column: 1 / -1;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 80px 20px;
            gap: 12px;
        }
        .empty-svg { width: 72px; height: 72px; opacity: .7; }
        .empty-title { font-size: 1rem; color: #888; text-align: center; }
        .empty-hint  { font-size: .82rem; color: #555; text-align: center; max-width: 320px; line-height: 1.5; }
        .empty-reset {
            background: none; border: 1px solid #333; color: #777;
            padding: 6px 18px; border-radius: 7px; cursor: pointer;
            font-size: .82rem; margin-top: 4px;
            transition: border-color .2s, color .2s;
        }
        .empty-reset:hover { border-color: #e94560; color: #e94560; }

        /* Reset button */
        .reset-btn {
            background: none;
            border: 1px solid #444;
            color: #aaa;
            padding: 6px 14px;
            border-radius: 6px;
            cursor: pointer;
            font-size: 0.85rem;
            transition: border-color 0.2s, color 0.2s;
        }
        .reset-btn:hover { border-color: #e94560; color: #e94560; }
        .reset-btn { display: none; }
        .reset-btn.visible { display: inline-block; }

        /* Toggle controls button (mobile) */
        .toggle-controls {
            display: none;
            background: none;
            border: 1px solid #444;
            color: #aaa;
            padding: 4px 10px;
            border-radius: 6px;
            cursor: pointer;
            font-size: 0.8rem;
            transition: border-color 0.2s, color 0.2s;
        }
        .toggle-controls:hover { border-color: #e94560; color: #e94560; }
        @media (max-width: 768px) {
            .toggle-controls { display: inline-block; }
        }

        /* Navigation tabs — pill style */
        .nav-tabs {
            display: flex;
            gap: 4px;
            margin-bottom: 12px;
            background: rgba(0,0,0,0.3);
            border-radius: 10px;
            padding: 4px;
            flex-wrap: wrap;
        }
        @media (max-width: 768px) {
            .nav-tabs { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none; }
            .nav-tabs::-webkit-scrollbar { display: none; }
        }
        .nav-tab {
            background: none;
            border: none;
            color: #888;
            padding: 7px 16px;
            font-size: 0.88rem;
            cursor: pointer;
            border-radius: 7px;
            transition: color 0.18s, background 0.18s;
            white-space: nowrap;
        }
        .nav-tab:hover { color: #ccc; background: rgba(255,255,255,0.06); }
        .nav-tab.active { background: #e94560; color: #fff; font-weight: 600; }

        /* MAJ panel */
        .maj-panel {
            display: none;
            padding: 24px;
            max-width: 900px;
            margin: 0 auto;
        }
        .maj-panel.visible { display: block; }
        .maj-panel h2 {
            font-size: 1.2rem;
            color: #e94560;
            margin-bottom: 16px;
        }
        .maj-loading {
            color: #888;
            text-align: center;
            padding: 40px;
        }
        .maj-date-group { margin-bottom: 18px; }
        .maj-date {
            font-size: 0.9rem;
            font-weight: 600;
            color: #ccc;
            margin-bottom: 8px;
            padding-bottom: 4px;
            border-bottom: 1px solid #222;
        }
        .maj-entry {
            display: flex;
            align-items: baseline;
            gap: 10px;
            padding: 5px 0;
            font-size: 0.88rem;
        }
        .maj-type {
            display: inline-block;
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 0.72rem;
            font-weight: 600;
            white-space: nowrap;
            flex-shrink: 0;
        }
        .maj-type-ajout { background: #19875422; color: #63d99a; border: 1px solid #19875444; }
        .maj-type-maj   { background: #0d6efd22; color: #6ea8fe; border: 1px solid #0d6efd44; }
        .maj-type-other { background: #6f42c122; color: #b197fc; border: 1px solid #6f42c144; }
        .maj-games { color: #bbb; }
        .game-link {
            color: #6ea8fe; cursor: pointer;
            border-bottom: 1px dotted #6ea8fe55;
            transition: color .15s, border-color .15s;
        }
        .game-link:hover { color: #93c5fd; border-bottom-color: #93c5fd; }

        /* ── Modal jeu ── */
        .modal-overlay {
            display:none; position:fixed; inset:0; z-index:500;
            background:rgba(0,0,0,.78);
            align-items:center; justify-content:center; padding:20px;
        }
        .modal-overlay.visible { display:flex; }
        .modal-box {
            background:#1a1a2e; border:1px solid #333; border-radius:12px;
            max-width:460px; width:100%; overflow:hidden; position:relative;
            box-shadow:0 24px 64px rgba(0,0,0,.7);
            animation:modal-pop .18s ease;
        }
        @keyframes modal-pop { from{transform:scale(.94);opacity:0} to{transform:scale(1);opacity:1} }
        .modal-close {
            position:absolute; top:10px; right:10px; z-index:2;
            background:rgba(0,0,0,.55); border:none; color:#aaa;
            width:28px; height:28px; border-radius:50%; cursor:pointer;
            font-size:.85rem; display:flex; align-items:center; justify-content:center;
            transition:background .15s, color .15s;
        }
        .modal-close:hover { background:#e94560; color:#fff; }
        .modal-img { width:100%; height:180px; background:#111; overflow:hidden; }
        .modal-img img { width:100%; height:100%; object-fit:cover; display:block; }
        .modal-body { padding:16px; }
        .modal-title { font-size:1.05rem; font-weight:700; margin-bottom:10px; }
        .modal-title a { color:#e94560; text-decoration:none; }
        .modal-title a:hover { text-decoration:underline; }
        .modal-meta { display:flex; flex-wrap:wrap; gap:6px; margin-bottom:10px; }
        .modal-info { font-size:.82rem; color:#aaa; line-height:1.7; margin-bottom:12px; }
        .modal-info span { color:#ccc; }
        .modal-links { display:flex; gap:8px; flex-wrap:wrap; }
        .modal-tags { margin-top:8px; font-size:.72rem; color:#555; line-height:1.5; }

        /* News panel */
        .news-panel { display:none; padding:20px 0; }
        .news-panel.visible { display:block; }
        .news-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 14px;
        }
        @media(max-width:900px) { .news-grid { grid-template-columns: repeat(2,1fr); } }
        @media(max-width:560px) { .news-grid { grid-template-columns: 1fr; } }

        .news-card {
            background: #111827;
            border: 1px solid #1f2d40;
            border-radius: 10px;
            overflow: hidden;
            cursor: pointer;
            text-decoration: none;
            color: inherit;
            display: flex;
            flex-direction: column;
            transition: transform .15s, border-color .15s;
        }
        .news-card:hover { transform: translateY(-2px); border-color: #2d4a6a; }

        .news-card-img-wrap { line-height: 0; }
        .news-card-img {
            width: 100%;
            aspect-ratio: 16/9;
            object-fit: cover;
            background: #0d1420;
            display: block;
        }
        .news-card-body { padding: 12px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
        .news-category {
            display: inline-block;
            padding: 2px 8px;
            border-radius: 4px;
            font-size: .68rem;
            font-weight: 700;
            width: fit-content;
        }
        .news-title {
            font-size: .85rem;
            font-weight: 600;
            color: #e2e8f0;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .news-meta {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: .72rem;
            color: #64748b;
            margin-top: auto;
            flex-wrap: wrap;
        }
        .news-meta span { display:flex; align-items:center; gap:3px; }
        .news-updated {
            font-size: .72rem;
            color: #475569;
            text-align: right;
            padding: 8px 12px 4px;
            border-top: 1px solid #1a2535;
        }

        /* Info panel */
        .info-panel {
            display: none;
            padding: 14px 24px;
            max-width: 800px;
            margin: 0 auto;
        }
        .info-panel.visible { display: block; }
        .info-loading {
            color: #888;
            text-align: center;
            padding: 20px;
        }

        /* Hero section */
        .info-hero {
            text-align: center;
            padding: 8px 20px 8px;
            margin-bottom: 12px;
        }
        .info-hero-icon {
            width: 44px;
            height: 44px;
            margin: 0 auto 8px;
        }
        .info-hero-icon img { width: 44px; height: 44px; border-radius: 12px; }
        .info-hero h2 {
            font-size: 1.25rem;
            color: #e0e0e0;
            margin-bottom: 4px;
        }
        .info-hero h2 span { color: #e94560; }
        .info-hero-sub {
            font-size: 0.85rem;
            color: #888;
            max-width: 520px;
            margin: 0 auto;
            line-height: 1.4;
        }

        /* About card */
        .info-about {
            background: linear-gradient(135deg, #1a1a2e, #16213e);
            border: 1px solid #0f3460;
            border-radius: 12px;
            padding: 12px 16px;
            margin-bottom: 12px;
            line-height: 1.5;
            font-size: 0.85rem;
            color: #bbb;
        }
        .info-about-title {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.95rem;
            font-weight: 600;
            color: #ccc;
            margin-bottom: 6px;
        }
        .info-about-title svg { width: 16px; height: 16px; fill: #e94560; flex-shrink: 0; }

        /* Features grid */
        .info-features {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
            gap: 10px;
            margin-bottom: 12px;
        }
        .info-feature {
            background: #1a1a2e;
            border: 1px solid #222;
            border-radius: 10px;
            padding: 10px 12px;
            text-align: center;
            transition: border-color 0.2s;
        }
        .info-feature:hover { border-color: #333; }
        .info-feature-icon {
            width: 32px;
            height: 32px;
            margin: 0 auto 6px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .info-feature-icon svg { width: 16px; height: 16px; }
        .info-feature-title {
            font-size: 0.82rem;
            font-weight: 600;
            color: #ccc;
            margin-bottom: 2px;
        }
        .info-feature-desc {
            font-size: 0.74rem;
            color: #777;
            line-height: 1.3;
        }

        /* Section title */
        .info-section-title {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.95rem;
            font-weight: 600;
            color: #ccc;
            margin-bottom: 10px;
        }
        .info-section-title svg { width: 16px; height: 16px; fill: #e94560; flex-shrink: 0; }

        /* Link cards */
        .info-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 10px;
            margin-bottom: 0;
        }
        .info-link-card {
            display: flex;
            align-items: center;
            gap: 10px;
            background: #1a1a2e;
            border: 1px solid #222;
            border-radius: 10px;
            padding: 10px 12px;
            text-decoration: none;
            transition: border-color 0.2s, transform 0.2s;
        }
        .info-link-card:hover { border-color: #e94560; transform: translateY(-2px); }
        .info-link-icon {
            width: 34px;
            height: 34px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .info-link-icon svg { width: 18px; height: 18px; }
        .info-link-text { min-width: 0; }
        .info-link-name {
            font-size: 0.88rem;
            font-weight: 600;
            color: #e0e0e0;
            margin-bottom: 1px;
        }
        .info-link-url {
            font-size: 0.72rem;
            color: #666;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        /* Back to top */
        .back-to-top {
            position: fixed;
            bottom: 28px;
            right: 28px;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: #e94560;
            color: #fff;
            border: none;
            cursor: pointer;
            font-size: 1.3rem;
            line-height: 44px;
            text-align: center;
            box-shadow: 0 4px 16px rgba(0,0,0,0.4);
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s, transform 0.3s;
            z-index: 200;
        }
        .back-to-top.visible {
            opacity: 1;
            pointer-events: auto;
        }
        .back-to-top:hover { transform: scale(1.1); }

        /* ── Progress bar ── */
        #pgbar { position:fixed; top:0; left:0; width:0; height:3px;
                 background:linear-gradient(90deg,#6ea8fe,#a78bfa);
                 z-index:9999; transition:width .3s ease,opacity .4s ease; pointer-events:none; }

        /* ── Skeleton loading ── */
        @keyframes sk-shine { to { background-position: -200% 0; } }
        .skeleton-grid { display:contents; }
        .sk-card { background:#1e2736; border-radius:10px; overflow:hidden; }
        .sk-img  { height:160px; background:linear-gradient(90deg,#243047 33%,#2e3f5a 50%,#243047 66%);
                   background-size:200%; animation:sk-shine 1.4s infinite; }
        .sk-line { height:12px; border-radius:6px; margin:8px 12px;
                   background:linear-gradient(90deg,#243047 33%,#2e3f5a 50%,#243047 66%);
                   background-size:200%; animation:sk-shine 1.4s infinite; }
        .sk-line.short { width:55%; }

        /* ── Card fade-in ── */
        @keyframes cardFadeIn { from { opacity:0; transform:translateY(12px); } to { opacity:1; transform:none; } }
        .card { animation: cardFadeIn .25s ease both; }

        /* ── Compteur animé ── */
        @keyframes stat-flash { 0% { color: #6ea8fe; } 100% { color: #888; } }
        .stats.stat-flash { animation: stat-flash .5s ease forwards; }

        /* ── Tag chips ── */
        .tag-chip { display:inline-block; background:#1e3a5f33; border:1px solid #6ea8fe44;
                    color:#93c5fd; border-radius:4px; padding:1px 6px; margin:2px;
                    font-size:.72rem; cursor:pointer; transition:background .15s; }
        .tag-chip:hover { background:#1e3a5f88; }

        /* ── Nouveau badge ── */
        .badge-new { background:#0f5132; color:#75b798; border:1px solid #20c99733; font-size:.68rem; }

        /* ── List mode ── */
        .list-mode { grid-template-columns: 1fr !important; }
        .list-mode .card { display:flex; flex-direction:row; contain:layout style; }
        .list-mode .card-img-wrap { width:90px; min-width:90px; height:auto; align-self:stretch; flex-shrink:0; }
        .list-mode .card-img { object-position:center top; }
        .list-mode .card-body { flex:1; min-width:0; padding:10px 14px; }
        .list-mode .card-title { white-space:nowrap; overflow:hidden; text-overflow:ellipsis; margin-bottom:6px; }
        .list-mode .card-meta { margin-bottom:0; }
        .list-mode .card-info { display:none; }
        .list-mode .card-tags { display:none; }
        .list-mode .card-links { margin-top:8px; }

        /* ── MAJ search ── */
        .maj-search-bar { padding:8px 0 4px; }
        #majSearch { width:100%; max-width:400px; padding:7px 12px; border-radius:8px;
                     background:#1e2736; border:1px solid #334155; color:#e2e8f0; font-size:.9rem; }

        /* ── Modal nav ── */
        .modal-nav { position:absolute; top:50%; transform:translateY(-50%); background:transparent;
                     border:none; color:#e2e8f066; font-size:1.4rem; border-radius:50%;
                     width:32px; height:32px; cursor:pointer; z-index:10; display:flex;
                     align-items:center; justify-content:center; transition:color .2s; }
        .modal-nav:hover { color:#e2e8f0; }
        .modal-prev { left:4px; } .modal-next { right:4px; }
        .modal-nav:disabled { opacity:.18; cursor:default; }

        /* ── Modal history ── */
        .modal-history { margin-top:14px; border-top:1px solid #334155; padding-top:10px; }
        .modal-history-title { font-size:.78rem; color:#64748b; text-transform:uppercase; letter-spacing:.06em; margin-bottom:6px; }
        .modal-history-entry { display:flex; gap:8px; align-items:baseline; font-size:.82rem; padding:3px 0; border-bottom:1px solid #1e273622; }
        .modal-history-entry .mh-date { color:#64748b; flex-shrink:0; }

        /* ── View toggle button ── */
        #viewToggle { background:none; border:1px solid #444; color:#aaa; padding:6px 10px;
                      border-radius:6px; cursor:pointer; font-size:0.85rem;
                      transition:border-color 0.2s, color 0.2s; }
        #viewToggle:hover { border-color:#e94560; color:#e94560; }

        #filterRecentBtn { background:none; border:1px solid #444; color:#aaa; padding:6px 12px;
                           border-radius:6px; cursor:pointer; font-size:0.85rem;
                           transition:border-color 0.2s, color 0.2s, background 0.2s; }
        #filterRecentBtn:hover { border-color:#63d99a; color:#63d99a; }
        #filterRecentBtn.active { background:#63d99a22; border-color:#63d99a; color:#63d99a; }

        /* ── Highlight ── */
        mark { background:#6ea8fe33; color:#93c5fd; border-radius:2px; padding:0 1px; }

        /* ── Active tags bar ── */
        #active-tags-bar { padding:0 24px; display:flex; flex-wrap:wrap; gap:6px;
                           align-items:center; min-height:0; }
        #active-tags-bar:empty { padding:0; }
        .active-tag { display:inline-flex; align-items:center; gap:4px; background:#1e3a5f66;
                      border:1px solid #6ea8fe66; color:#93c5fd; border-radius:4px;
                      padding:3px 8px; font-size:.75rem; margin:4px 0; }
        .active-tag-remove { cursor:pointer; opacity:.7; font-size:.9rem; line-height:1; border:none;
                             background:none; color:inherit; padding:0; }
        .active-tag-remove:hover { opacity:1; }
        .tag-chip-active { background:#1e3a5f88 !important; border-color:#6ea8fe99 !important; }

        /* ── Quick tags bar ── */
        #quick-tags-bar { padding:8px 24px 6px; display:flex; flex-wrap:wrap; gap:6px; align-items:center; }
        #quick-tags-bar:empty { padding:0; }
        #quick-tags-label { font-size:.68rem; color:#475569; font-weight:600; letter-spacing:.05em;
                            text-transform:uppercase; margin-right:4px; white-space:nowrap; flex-shrink:0; }
        .quick-tag { display:inline-flex; align-items:center; gap:4px; background:#1e3a5f22;
                     border:1px solid #6ea8fe33; color:#7eb8fd; padding:3px 10px 3px 8px;
                     border-radius:20px; cursor:pointer; font-size:.75rem;
                     transition:border-color 0.15s, color 0.15s, background 0.15s; }
        .quick-tag:hover { background:#1e3a5f55; border-color:#6ea8fe66; color:#93c5fd; }
        .quick-tag.active { background:#1e3a5f88; border-color:#6ea8fe99; color:#c7deff;
                            box-shadow:0 0 0 1px #6ea8fe33 inset; }
        .quick-tag-hash { opacity:.45; font-size:.8em; line-height:1; }
        .quick-tag-count { font-size:.65rem; color:#6ea8fe; font-weight:700; background:#6ea8fe18;
                           border-radius:10px; padding:0 5px; line-height:1.6; }

        /* ── Lightbox ── */
        #lightbox { display:none; position:fixed; inset:0; background:rgba(0,0,0,.92);
                    z-index:500; cursor:zoom-out; align-items:center; justify-content:center; }
        #lightbox.visible { display:flex; }
        #lightbox img { max-width:90vw; max-height:90vh; object-fit:contain; border-radius:4px;
                        box-shadow:0 8px 40px #000; }
        .lightbox-close { position:fixed; top:16px; right:20px; background:none; border:none;
                          color:#fff; font-size:1.8rem; cursor:pointer; opacity:.7; z-index:501; }
        .lightbox-close:hover { opacity:1; }
        .modal-img-zoomable { cursor:zoom-in !important; }

        /* ── Copy link button ── */
        #copyLinkBtn { background:none; border:1px solid #444; color:#aaa; padding:6px 10px;
                       border-radius:6px; cursor:pointer; font-size:0.85rem;
                       transition:border-color .2s, color .2s; }
        #copyLinkBtn:hover { border-color:#6ea8fe; color:#6ea8fe; }

        /* ── Badge décalé ── */
        .badge-decale { background:#7c3a0022; color:#fdba74; border:1px solid #92400e44; font-size:.68rem; }

        /* ── Stats panel ── */
        .stats-panel { display:none; padding:24px; max-width:900px; margin:0 auto; }
        .stats-panel.visible { display:block; }
        .stat-cards { display:grid; grid-template-columns:repeat(auto-fill,minmax(160px,1fr)); gap:12px; margin-bottom:32px; }
        .stat-card { background:#1a1a2e; border:1px solid #222; border-radius:10px; padding:16px; text-align:center; }
        .stat-card-value { font-size:2rem; font-weight:700; color:#e94560; }
        .stat-card-label { font-size:.78rem; color:#888; margin-top:4px; }
        .stat-section { margin-bottom:32px; }
        .stat-section-title { font-size:1rem; font-weight:600; color:#ccc; margin-bottom:14px;
                              border-bottom:1px solid #222; padding-bottom:6px; }
        .stat-bar-row { display:flex; align-items:center; gap:10px; margin-bottom:7px; font-size:.82rem; }
        .stat-bar-label { width:160px; color:#bbb; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; flex-shrink:0; }
        .stat-bar-wrap { flex:1; background:#1a1a2e; border-radius:4px; height:10px; overflow:hidden; border:1px solid #222; }
        .stat-bar-fill { height:100%; border-radius:4px; background:linear-gradient(90deg,#6ea8fe,#a78bfa); }
        .stat-bar-count { width:36px; text-align:right; color:#666; font-size:.78rem; flex-shrink:0; }
        .stat-donut-wrap   { display:flex; align-items:center; gap:20px; margin-top:6px; }
        .stat-donut-legend { display:flex; flex-direction:column; gap:7px; }
        .stat-donut-legend-item { display:flex; align-items:center; gap:8px; font-size:.78rem; }
        .stat-donut-dot  { width:10px; height:10px; border-radius:50%; flex-shrink:0; }
        .stat-donut-name { color:#888; }
        .stat-donut-cnt  { color:#ccc; font-weight:600; margin-left:auto; padding-left:12px; }

        /* ── Traducteurs panel ── */
        .trad-panel { display:none; padding:24px; max-width:1100px; margin:0 auto; }
        .trad-panel.visible { display:block; }
        .trad-search-bar-wrap { padding:0 0 16px; }
        #tradSearch { width:100%; max-width:400px; padding:7px 12px; border-radius:8px;
                      background:#1e2736; border:1px solid #334155; color:#e2e8f0; font-size:.9rem; }
        .trad-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(230px,1fr)); gap:14px; }
        .trad-card { background:#1a1a2e; border:1px solid #222; border-radius:10px; padding:16px;
                     cursor:pointer; transition:border-color .2s, transform .2s; }
        .trad-card:hover { border-color:#e94560; transform:translateY(-2px); }
        /* ── Traducteur avatar ── */
        .trad-avatar {
            width: 46px; height: 46px; border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-weight: 700; font-size: .9rem; color: #fff;
            margin: 0 auto 10px; letter-spacing: .03em;
            flex-shrink: 0; user-select: none;
        }
        .trad-avatar-img { object-fit: cover; display: block; }
        .trad-card-links { margin-top: 10px; display: flex; justify-content: center; gap: 6px; flex-wrap: wrap; }
        .trad-link {
            display: inline-flex; align-items: center; gap: 5px;
            padding: 4px 10px; border-radius: 5px; font-size: 0.75rem;
            font-weight: 600; text-decoration: none; transition: opacity .2s;
        }
        .trad-link:hover { opacity: .8; }
        .trad-link-f95     { background: #e9456022; color: #e94560; border: 1px solid #e9456044; }
        .trad-link-discord { background: #5865F222; color: #7289da; border: 1px solid #5865F244; }
        .trad-link-other   { background: #33445522; color: #94a3b8; border: 1px solid #33445544; }
        .trad-link-icon    { width: 13px; height: 13px; object-fit: contain; flex-shrink: 0; }
        .trad-card { text-align: center; }
        .trad-card-name { font-size:1rem; font-weight:700; color:#e94560; margin-bottom:10px; }
        .trad-card-stats { display:flex; gap:8px; margin-bottom:10px; }
        .trad-stat { flex:1; text-align:center; background:#0f0f1a; border-radius:8px; padding:8px 4px;
                     border:1px solid #16213e; }
        .trad-stat-value { font-size:1.25rem; font-weight:700; color:#6ea8fe; }
        .trad-stat-label { font-size:.65rem; color:#555; margin-top:2px; }
        .trad-card-meta { font-size:.78rem; color:#888; line-height:1.7; margin-top:6px; }
        .trad-card-meta span { color:#aaa; }
        .trad-loading { color:#888; text-align:center; padding:40px; }

        /* ── Traducteur modal ── */
        #trad-modal .modal-box { max-width:520px; display:flex; flex-direction:column; max-height:85vh; overflow:hidden; }
        #trad-modal .modal-body { overflow-y:auto; padding-top:20px; flex:1; }
        .trad-modal-name { font-size:1.1rem; font-weight:700; color:#e94560; margin-bottom:12px; }
        .trad-modal-stats { display:flex; gap:10px; margin-bottom:12px; }
        .trad-modal-stat { flex:1; text-align:center; background:#0f0f1a; border:1px solid #222;
                           border-radius:8px; padding:10px; }
        .trad-modal-stat-value { font-size:1.5rem; font-weight:700; color:#6ea8fe; }
        .trad-modal-stat-label { font-size:.7rem; color:#666; margin-top:2px; }
        .trad-modal-meta { font-size:.82rem; color:#888; margin-bottom:14px; line-height:1.7; }
        .trad-modal-meta span { color:#aaa; }
        .trad-games-section { margin-top:12px; }
        .trad-games-section + .trad-games-section { margin-top:16px; }
        .trad-games-title { font-size:.73rem; color:#64748b; text-transform:uppercase; letter-spacing:.06em;
                            margin-bottom:6px; border-bottom:1px solid #1e2736; padding-bottom:4px; }
        .trad-game-link { display:flex; align-items:center; justify-content:space-between; padding:5px 0;
                          border-bottom:1px solid #1e273611; font-size:.85rem; color:#6ea8fe;
                          text-decoration:none; transition:color .15s; }
        .trad-game-link:hover { color:#93c5fd; }
        .trad-game-statut { font-size:.7rem; color:#555; white-space:nowrap; margin-left:8px; flex-shrink:0; }
        .trad-modal-empty { font-size:.82rem; color:#555; padding:8px 0; font-style:italic; }

        /* ── Month chart ── */
        .stat-month-wrap { display:flex; align-items:flex-end; gap:3px; border-bottom:1px solid #1e2736; padding-bottom:4px; margin-top:8px; }
        .stat-month-col  { flex:1; min-width:0; display:flex; flex-direction:column; align-items:center; }
        .stat-month-bars { display:flex; align-items:flex-end; gap:1px; height:80px; width:100%; }
        .stat-month-bar  { flex:1; border-radius:2px 2px 0 0; min-height:2px; transition:height .3s ease; }
        .stat-month-bar-maj   { background:linear-gradient(to top,#6ea8fe,#a78bfa); }
        .stat-month-bar-ajout { background:#63d99a; }
        .stat-month-label { font-size:.55rem; color:#555; margin-top:3px; text-align:center; white-space:nowrap; }
        .stat-month-legend { display:flex; align-items:center; gap:8px; font-size:.75rem; color:#888; margin-bottom:6px; }
        .stat-month-legend-dot { width:10px; height:10px; border-radius:2px; display:inline-block; flex-shrink:0; }

        /* ── Stats extras ── */
        .stat-bar-clickable { cursor:pointer; }
        .stat-bar-clickable:hover .stat-bar-fill  { filter:brightness(1.25); }
        .stat-bar-clickable:hover .stat-bar-label { color:#e94560; }
        .stat-bar-pct { color:#555; font-size:.72rem; margin-left:4px; }
        .stat-section-hint { font-size:.72rem; color:#555; font-weight:400; }
        .stat-period-sel { background:#1e2736; border:1px solid #334155; color:#e2e8f0; border-radius:6px; padding:3px 8px; font-size:.78rem; cursor:pointer; }
        .stat-tags-wrap { display:flex; flex-wrap:wrap; gap:6px; margin-top:2px; }
        .stat-tag-chip { display:inline-flex; align-items:center; gap:6px; background:#1e3a5f33; border:1px solid #6ea8fe44; color:#93c5fd; border-radius:4px; padding:3px 10px; font-size:.78rem; cursor:pointer; transition:background .15s; }
        .stat-tag-chip:hover { background:#1e3a5f88; }
        .stat-tag-count { color:#6ea8fe; font-weight:700; font-size:.72rem; }

        /* ── Card placeholder (pas d'image) ── */
        .card-no-img { height:70px; display:flex; align-items:center; justify-content:center; padding:10px 14px; background:linear-gradient(135deg,#13131f,#1c2030); }
        .card-no-img-text { font-size:.72rem; font-weight:600; color:#334155; text-align:center; overflow:hidden; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; line-height:1.35; }

        /* ── Modal 2-colonnes sur desktop ── */
        .modal-content { display:flex; flex-direction:column; }
        @media (min-width:600px) {
            .modal-box { max-width:700px; }
            .modal-content.has-img { flex-direction:row; }
            .modal-content.has-img #modal-img { width:230px; min-width:230px; height:auto !important; min-height:200px; flex-shrink:0; }
            .modal-content.has-img #modal-img img { height:100%; min-height:200px; }
            .modal-content.has-img .modal-body { flex:1; min-width:0; overflow-y:auto; max-height:75vh; }
        }

        /* ── Timeline historique modal ── */
        .modal-history { padding-left:12px; border-left:2px solid #1e2736; border-top:none !important; margin-top:14px; padding-top:4px; }
        .modal-history-entry { position:relative; padding-left:10px; }
        .modal-history-entry::before { content:''; position:absolute; left:-16px; top:8px; width:6px; height:6px; background:#334155; border-radius:50%; border:1px solid #1e2736; }
        .modal-history-entry:first-child::before { background:#e94560; border-color:#e9456066; }

        /* ── Transitions d'onglets ── */
        @keyframes panel-fade { from { opacity:0; transform:translateY(5px); } to { opacity:1; transform:none; } }
        .maj-panel.visible, .info-panel.visible, .trad-panel.visible, .stats-panel.visible, .news-panel.visible { animation:panel-fade .2s ease; }
        .grid.fade-in { animation:panel-fade .2s ease; }

        /* ── Header actions ── */
        .header-actions { display:flex; align-items:center; gap:8px; }
        #lightToggle { background:none; border:1px solid #444; color:#aaa; width:32px; height:32px; border-radius:6px; cursor:pointer; font-size:.88rem; display:flex; align-items:center; justify-content:center; transition:border-color .2s,color .2s; flex-shrink:0; }
        #lightToggle:hover { border-color:#e94560; color:#e94560; }

        /* ── Bannière nouvelles MAJ ── */
        .news-banner { display:flex; align-items:center; gap:10px; background:#0d6efd18; border-bottom:1px solid #0d6efd33; padding:8px 24px; font-size:.82rem; color:#6ea8fe; flex-wrap:wrap; }
        .news-banner-text { flex:1; min-width:0; }
        .news-banner-see { background:#0d6efd2a; border:1px solid #0d6efd55; color:#6ea8fe; padding:3px 12px; border-radius:5px; cursor:pointer; font-size:.78rem; transition:background .15s; white-space:nowrap; }
        .news-banner-see:hover { background:#0d6efd44; }
        .news-banner-close { background:none; border:none; color:#475569; cursor:pointer; font-size:.9rem; padding:2px 6px; margin-left:auto; flex-shrink:0; }
        .news-banner-close:hover { color:#64748b; }

        /* ── Barre de filtres MAJ ── */
        .maj-controls { display:flex; align-items:center; gap:10px; flex-wrap:wrap; margin-bottom:12px; }
        .maj-type-filters { display:flex; gap:4px; flex-wrap:wrap; }
        .maj-type-btn { background:none; border:1px solid #334155; color:#64748b; padding:3px 10px; border-radius:5px; cursor:pointer; font-size:.76rem; transition:border-color .15s,color .15s,background .15s; white-space:nowrap; }
        .maj-type-btn.active { background:#0d6efd22; border-color:#0d6efd66; color:#6ea8fe; }
        .maj-type-btn:hover:not(.active) { border-color:#475569; color:#94a3b8; }
        .maj-group-btn { background:none; border:1px solid #334155; color:#64748b; padding:3px 10px; border-radius:5px; cursor:pointer; font-size:.76rem; transition:border-color .15s,color .15s; white-space:nowrap; }
        .maj-group-btn.active { border-color:#6ea8fe55; color:#6ea8fe; }
        .maj-group-btn:hover { border-color:#475569; color:#94a3b8; }
        .maj-count { font-size:.75rem; color:#475569; margin-left:auto; }

        /* ── Tri traducteurs ── */
        .trad-controls { display:flex; align-items:center; gap:10px; flex-wrap:wrap; padding-bottom:12px; }
        #tradSort { padding:6px 10px; border-radius:7px; background:#1e2736; border:1px solid #334155; color:#e2e8f0; font-size:.82rem; cursor:pointer; }

        /* ── Bouton partager jeu (modal) ── */
        .modal-share-btn { background:none; border:1px solid #334155; color:#64748b; padding:4px 12px; border-radius:5px; cursor:pointer; font-size:.75rem; transition:border-color .15s,color .15s; margin-top:4px; }
        .modal-share-btn:hover { border-color:#6ea8fe55; color:#6ea8fe; }
        .modal-share-btn.copied { border-color:#10b98166; color:#10b981; }

        /* ── Footer ── */
        footer { text-align:center; padding:18px 24px; color:#475569; font-size:.75rem; border-top:1px solid #1a2535; margin-top:16px; line-height:2; }
        footer a { color:#64748b; text-decoration:none; }
        footer a:hover { color:#94a3b8; text-decoration:underline; }
        .footer-sep { margin:0 8px; color:#334155; }
        #footer-sync { display:inline-flex; align-items:center; gap:4px; flex-wrap:wrap; justify-content:center; }
        #footer-sync span { white-space:nowrap; cursor:default; }

        /* ── Mode clair ── */
        .light { background:#f1f5f9; color:#1e293b; }
        .light header { background:linear-gradient(135deg,rgba(26,26,46,0.96),rgba(22,33,62,0.96)); backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px); }
        .light .nav-tabs { background:rgba(0,0,0,.12); }
        .light .controls input[type="text"], .light .controls select { background:#fff; color:#1e293b; border-color:#cbd5e1; }
        .light .controls input:focus { border-color:#e94560; }
        .light #lightToggle { border-color:#6665; color:#666; }
        .light .card { background:#fff; border-color:#e2e8f0; color:#1e293b; }
        .light .card:hover { border-color:#e94560; box-shadow:0 8px 28px -4px rgba(233,69,96,.15),0 4px 16px rgba(0,0,0,.08); }
        .light .card-img-wrap::after { background:linear-gradient(to bottom,transparent,#fff); }
        .light .card-no-img { background:linear-gradient(135deg,#f8fafc,#f1f5f9); }
        .light .card-no-img-text { color:#cbd5e1; }
        .light .card-title a { color:#e94560; }
        .light .card-info { color:#475569; }
        .light .card-info span { color:#1e293b; }
        .light .card-tags { color:#64748b; }
        .light .tag-chip { background:#dbeafe44; border-color:#3b82f644; color:#2563eb; }
        .light .tag-chip:hover { background:#dbeafe88; }
        .light .tag-chip-active { background:#dbeafe88 !important; border-color:#3b82f688 !important; }
        .light .active-tag { background:#dbeafe66; border-color:#6ea8fe66; color:#2563eb; }
        .light .active-tag-remove { color:inherit; }
        .light .stats { color:#475569; }
        .light .stat-chip { color:#334155; }
        .light .stat-chip-label { color:#94a3b8; }
        .light .stat-chip-sep { color:#cbd5e1; }
        .light .stat-chip-sync { color:#94a3b8; }
        .light .search-icon { fill:#94a3b8; }
        .light .controls input.filter-active { border-color:#e9456088; }
        .light .controls select.filter-active { border-color:#e9456088; color:#1e293b; }
        .light .reset-btn { border-color:#cbd5e1; color:#64748b; }
        .light .reset-btn:hover { border-color:#e94560; color:#e94560; }
        .light #viewToggle, .light #copyLinkBtn, .light #filterRecentBtn { border-color:#cbd5e1; color:#64748b; }
        .light #filterRecentBtn.active { background:#d1fae533; border-color:#059669; color:#059669; }
        .light #quick-tags-label { color:#94a3b8; }
        .light .quick-tag { background:#dbeafe33; border-color:#3b82f633; color:#3b82f6; }
        .light .quick-tag:hover { background:#dbeafe66; border-color:#3b82f666; color:#1d4ed8; }
        .light .quick-tag.active { background:#dbeafe99; border-color:#3b82f6; color:#1d4ed8;
                                   box-shadow:0 0 0 1px #3b82f633 inset; }
        .light .quick-tag-count { color:#2563eb; background:#3b82f618; }
        .light .modal-overlay { background:rgba(0,0,0,.55); }
        .light .modal-box { background:#fff; border-color:#e2e8f0; }
        .light .modal-close { background:rgba(0,0,0,.06); color:#475569; }
        .light .modal-close:hover { background:#e94560; color:#fff; }
        .light .modal-info { color:#475569; }
        .light .modal-info span { color:#1e293b; }
        .light .modal-tags { color:#64748b; }
        .light .modal-history { border-left-color:#e2e8f0; }
        .light .modal-history-title { color:#94a3b8; }
        .light .modal-history-entry { border-bottom-color:#f1f5f922; }
        .light .modal-history-entry::before { background:#cbd5e1; border-color:#e2e8f0; }
        .light .modal-history-entry:first-child::before { background:#e94560; }
        .light .modal-history-entry .mh-date { color:#94a3b8; }
        .light .modal-share-btn { border-color:#cbd5e1; color:#94a3b8; }
        .light .modal-share-btn:hover { border-color:#6ea8fe55; color:#2563eb; }
        .light .modal-nav { color:#e2e8f066; }
        .light .modal-nav:hover { color:#1e293b; }
        .light .maj-date { color:#475569; border-bottom-color:#e2e8f0; }
        .light .maj-games { color:#475569; }
        .light .game-link { color:#2563eb; border-bottom-color:#2563eb55; }
        .light .game-link:hover { color:#1d4ed8; }
        .light #majSearch { background:#fff; border-color:#e2e8f0; color:#1e293b; }
        .light .maj-type-btn { border-color:#e2e8f0; color:#64748b; }
        .light .maj-type-btn.active { background:#dbeafe33; border-color:#3b82f666; color:#2563eb; }
        .light .maj-group-btn { border-color:#e2e8f0; color:#64748b; }
        .light .maj-group-btn.active { border-color:#6ea8fe55; color:#2563eb; }
        .light .maj-count { color:#94a3b8; }
        .light .trad-card { background:#fff; border-color:#e2e8f0; }
        .light .trad-card:hover { border-color:#e94560; }
        .light .trad-card-name { color:#e94560; }
        .light .trad-stat { background:#f1f5f9; border-color:#e2e8f0; }
        .light .trad-stat-label { color:#94a3b8; }
        .light #tradSearch, .light #tradSort { background:#fff; border-color:#e2e8f0; color:#1e293b; }
        .light .trad-modal-stat { background:#f1f5f9; border-color:#e2e8f0; }
        .light .trad-modal-stat-label { color:#94a3b8; }
        .light .trad-modal-name { color:#e94560; }
        .light .trad-modal-meta { color:#64748b; }
        .light .trad-modal-meta span { color:#1e293b; }
        .light .trad-games-title { color:#94a3b8; border-bottom-color:#e2e8f0; }
        .light .trad-game-link { color:#2563eb; border-bottom-color:#e2e8f011; }
        .light .trad-game-link:hover { color:#1d4ed8; }
        .light .trad-game-statut { color:#94a3b8; }
        .light .trad-modal-empty { color:#94a3b8; }
        .light .info-about { background:linear-gradient(135deg,#f8fafc,#f1f5f9); border-color:#e2e8f0; color:#475569; }
        .light .info-about-title { color:#1e293b; }
        .light .info-feature { background:#fff; border-color:#e2e8f0; }
        .light .info-feature-title { color:#1e293b; }
        .light .info-feature-desc { color:#64748b; }
        .light .info-link-card { background:#fff; border-color:#e2e8f0; }
        .light .info-section-title { color:#1e293b; }
        .light .info-hero h2 { color:#1e293b; }
        .light .info-hero-sub { color:#64748b; }
        .light .stat-card { background:#fff; border-color:#e2e8f0; }
        .light .stat-card-label { color:#64748b; }
        .light .stat-section-title { color:#475569; border-bottom-color:#e2e8f0; }
        .light .stat-bar-label { color:#475569; }
        .light .stat-bar-wrap { background:#f1f5f9; border-color:#e2e8f0; }
        .light .stat-bar-count { color:#94a3b8; }
        .light .stat-bar-pct { color:#94a3b8; }
        .light .stat-bar-clickable:hover .stat-bar-label { color:#e94560; }
        .light .stat-section-hint { color:#94a3b8; }
        .light .stat-period-sel { background:#fff; border-color:#e2e8f0; color:#1e293b; }
        .light .stat-tag-chip { background:#dbeafe33; border-color:#3b82f644; color:#2563eb; }
        .light .stat-tag-chip:hover { background:#dbeafe88; }
        .light .stat-tag-count { color:#2563eb; }
        .light .stat-month-label { color:#94a3b8; }
        .light .stat-month-legend { color:#64748b; }
        .light .stat-month-wrap { border-bottom-color:#e2e8f0; }
        .light .news-card { background:#fff; border-color:#e2e8f0; }
        .light .news-card:hover { border-color:#cbd5e1; }
        .light .news-title { color:#1e293b; }
        .light .news-meta { color:#94a3b8; }
        .light .news-updated { color:#94a3b8; border-top-color:#e2e8f0; }
        .light .news-banner { background:#dbeafe2a; border-bottom-color:#3b82f633; color:#2563eb; }
        .light .news-banner-see { background:#dbeafe44; border-color:#3b82f655; color:#2563eb; }
        .light .news-banner-close { color:#94a3b8; }
        .light .sk-card { background:#e2e8f0; }
        .light .sk-img { background:linear-gradient(90deg,#e2e8f0 33%,#f1f5f9 50%,#e2e8f0 66%); background-size:200%; }
        .light .sk-line { background:linear-gradient(90deg,#e2e8f0 33%,#f1f5f9 50%,#e2e8f0 66%); background-size:200%; }
        .light footer { color:#94a3b8; border-top-color:#e2e8f0; }
        .light footer a { color:#64748b; }
        .light .no-results .empty-title { color:#64748b; }
        .light .no-results .empty-hint { color:#94a3b8; }
        .light .empty-reset { border-color:#cbd5e1; color:#64748b; }
        .light mark { background:#3b82f633; color:#2563eb; }
