        :root {
            --bg-primary: #ffffff;
            --bg-secondary: #f8f9fa;
            --bg-tertiary: #f0f1f3;
            --text-primary: #1a1a2e;
            --text-secondary: #4a4a68;
            --text-muted: #8e8ea0;
            --border-light: #e8e8ee;
            --border-medium: #d1d1db;
            --accent-brand: #e63946;
            --accent-football: #2563eb;
            --accent-basketball: #ea580c;
            --accent-gold: #d4a853;
            --accent-green: #059669;
            --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
            --shadow-md: 0 4px 16px rgba(0,0,0,0.06), 0 2px 4px rgba(0,0,0,0.04);
            --shadow-lg: 0 12px 40px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
            --shadow-xl: 0 20px 60px rgba(0,0,0,0.1), 0 8px 20px rgba(0,0,0,0.06);
            --radius-sm: 8px;
            --radius-md: 14px;
            --radius-lg: 20px;
            --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        /* 图片懒加载样式 */
        img[data-src] {
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        img[data-src].loaded,
        img:not([data-src]) {
            opacity: 1;
        }

        html {
            width: 100%;
            min-width: 1200px;
            overflow-x: auto;
        }

        body {
            min-width: 1200px;
            margin: 0;
            font-family: 'DM Sans', 'Noto Sans SC', sans-serif;
            background-color: var(--bg-primary);
            color: var(--text-primary);
            overflow-x: visible;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        .container {
            width: 100%;
            max-width: 1160px;
            margin: 0 auto;
            padding-left: 20px;
            padding-right: 20px;
        }

        .font-display { font-family: 'Playfair Display', 'Noto Sans SC', serif; }
        .font-body { font-family: 'DM Sans', 'Noto Sans SC', sans-serif; }

        /* ── Top Bar ── */
        .top-bar {
            background: var(--text-primary);
            color: #fff;
            font-size: 12px;
            padding: 8px 0;
            letter-spacing: 0.5px;
            width: 100vw;
            position: relative;
            margin-left: calc(50% - 50vw);
        }
        .top-bar-inner {
            max-width: 1160px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .top-bar a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: var(--transition);
            font-weight: 400;
        }
        .top-bar a:hover { color: #fff; }
        .top-bar .date { color: rgba(255,255,255,0.5); }
        .top-bar .links { display: flex; gap: 20px; }

        /* ── Header / Navbar ── */
        .navbar {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(255,255,255,0.92);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border-bottom: 1px solid var(--border-light);
            transition: var(--transition);
            width: 100vw;
            margin-left: calc(50% - 50vw);
        }
        .navbar.scrolled {
            box-shadow: var(--shadow-md);
        }
        .navbar-inner {
            max-width: 1160px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
            height: 72px;
        }
        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }
        .logo-mark {
            width: 42px;
            height: 42px;
            background: var(--accent-brand);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 900;
            font-size: 20px;
            font-family: 'Playfair Display', serif;
            letter-spacing: -1px;
        }
        .logo-text {
            font-family: 'Playfair Display', serif;
            font-size: 22px;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: -0.5px;
        }
        .logo-sub {
            font-size: 10px;
            color: var(--text-muted);
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 500;
            margin-top: -2px;
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .nav-link {
            text-decoration: none;
            color: var(--text-secondary);
            font-size: 14px;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 8px;
            transition: var(--transition);
            letter-spacing: 0.3px;
            position: relative;
        }
        .nav-link:hover {
            color: var(--text-primary);
            background: var(--bg-secondary);
        }
        .nav-link.active {
            color: var(--accent-brand);
            background: rgba(230,57,70,0.06);
        }
        .nav-link.special {
            background: var(--accent-brand);
            color: #fff;
            font-weight: 600;
            padding: 8px 20px;
        }
        .nav-link.special:hover {
            background: #d12f3c;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(230,57,70,0.3);
        }
        .nav-actions {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .btn-login {
            text-decoration: none;
            color: var(--text-secondary);
            font-size: 13px;
            font-weight: 500;
            padding: 7px 18px;
            border: 1.5px solid var(--border-medium);
            border-radius: 100px;
            transition: var(--transition);
        }
        .btn-login:hover {
            border-color: var(--text-primary);
            color: var(--text-primary);
        }
        .btn-register {
            text-decoration: none;
            color: #fff;
            font-size: 13px;
            font-weight: 600;
            padding: 7px 20px;
            background: var(--text-primary);
            border-radius: 100px;
            transition: var(--transition);
        }
        .btn-register:hover {
            background: #2d2d4a;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(26,26,46,0.25);
        }

        /* ── Hot Matches Scrolling Bar ── */
        .hot-matches-bar {
            background: var(--text-primary);
            overflow: hidden;
            padding: 14px 0;
            position: relative;
            width: 100vw;
            margin-left: calc(50% - 50vw);
        }
        .hot-matches-bar::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 80px;
            background: linear-gradient(to right, var(--text-primary), transparent);
            z-index: 2;
            pointer-events: none;
        }
        .hot-matches-bar::after {
            content: '';
            position: absolute;
            right: 0;
            top: 0;
            bottom: 0;
            width: 80px;
            background: linear-gradient(to left, var(--text-primary), transparent);
            z-index: 2;
            pointer-events: none;
        }
        .hot-matches-label {
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            z-index: 3;
            display: flex;
            align-items: center;
            padding: 0 24px;
            background: linear-gradient(to right, var(--text-primary) 60%, transparent);
            pointer-events: none;
        }
        .hot-matches-label span {
            font-size: 12px;
            font-weight: 700;
            color: var(--accent-brand);
            letter-spacing: 1.5px;
            text-transform: uppercase;
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .hot-matches-label span::before {
            content: '';
            display: inline-block;
            width: 8px;
            height: 8px;
            background: var(--accent-brand);
            border-radius: 50%;
            animation: pulse 2s ease-in-out infinite;
        }
        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(0.8); }
        }
        .hot-matches-track {
            display: flex;
            animation: matchScroll 50s linear infinite;
            padding-left: 120px;
        }
        .hot-matches-track:hover {
            animation-play-state: paused;
        }
        @keyframes matchScroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        .hot-match-item {
            flex-shrink: 0;
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 10px 24px;
            margin-right: 8px;
            border-radius: 10px;
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.08);
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
        }
        .hot-match-item:hover {
            background: rgba(255,255,255,0.12);
            border-color: rgba(255,255,255,0.15);
        }
        .hot-match-league {
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.8px;
            text-transform: uppercase;
            white-space: nowrap;
            padding: 2px 8px;
            border-radius: 3px;
        }
        .hot-match-league.football {
            background: rgba(37,99,235,0.2);
            color: #60a5fa;
        }
        .hot-match-league.basketball {
            background: rgba(234,88,12,0.2);
            color: #fb923c;
        }
        .hot-match-teams {
            display: flex;
            align-items: center;
            gap: 10px;
            white-space: nowrap;
        }
        .hot-match-team-name {
            font-size: 13px;
            font-weight: 600;
            color: #fff;
        }
        .hot-match-score {
            font-family: 'Playfair Display', serif;
            font-size: 15px;
            font-weight: 900;
            color: var(--accent-brand);
            letter-spacing: 1px;
        }
        .hot-match-status {
            font-size: 10px;
            color: rgba(255,255,255,0.4);
            white-space: nowrap;
        }
        .hot-match-sep {
            width: 1px;
            height: 24px;
            background: rgba(255,255,255,0.1);
            flex-shrink: 0;
        }

        /* ── Hero Section ── */
        .hero {
            max-width: 1160px;
            margin: 28px auto 0;
            padding: 0 20px;
        }
        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 380px;
            grid-template-rows: 220px 220px;
            gap: 16px;
            height: 456px;
        }
        .hero-main {
            grid-row: 1 / 3;
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            cursor: pointer;
        }
        .hero-main img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .hero-main:hover img {
            transform: scale(1.04);
        }
        .hero-main .overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.05) 100%);
        }
        .hero-main .content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 36px;
        }
        .hero-badge {
            display: inline-block;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            padding: 4px 12px;
            border-radius: 4px;
            margin-bottom: 14px;
        }
        .badge-football { background: var(--accent-football); color: #fff; }
        .badge-basketball { background: var(--accent-basketball); color: #fff; }
        .badge-hot { background: var(--accent-brand); color: #fff; }
        .badge-xiijia { background: var(--accent-green); color: #fff; }
        .badge-dejia { background: #7c3aed; color: #fff; }
        .badge-fajia { background: #0891b2; color: #fff; }
        .badge-yijia { background: #0d9488; color: #fff; }
        .badge-worldcup { background: #dc2626; color: #fff; }
        .hero-main h2 {
            font-family: 'Noto Sans SC', sans-serif;
            font-size: 30px;
            font-weight: 900;
            color: #fff;
            line-height: 1.35;
            margin-bottom: 10px;
            letter-spacing: -0.3px;
        }
        .hero-main p {
            font-size: 14px;
            color: rgba(255,255,255,0.75);
            line-height: 1.6;
            max-width: 520px;
        }
        .hero-side {
            position: relative;
            border-radius: var(--radius-md);
            overflow: hidden;
            cursor: pointer;
        }
        .hero-side img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .hero-side:hover img {
            transform: scale(1.06);
        }
        .hero-side .overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.15) 100%);
        }
        .hero-side .content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 22px;
        }
        .hero-side h3 {
            font-family: 'Noto Sans SC', sans-serif;
            font-size: 17px;
            font-weight: 700;
            color: #fff;
            line-height: 1.4;
        }

        /* ── Section Container ── */
        .section {
            max-width: 1160px;
            margin: 0 auto;
            padding: 48px 20px 0;
        }
        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 28px;
            padding-bottom: 18px;
            border-bottom: 2px solid var(--text-primary);
            position: relative;
        }
        .section-header::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 80px;
            height: 2px;
        }
        .section-header.football::after { background: var(--accent-football); }
        .section-header.basketball::after { background: var(--accent-basketball); }

        .section-title {
            display: flex;
            align-items: baseline;
            gap: 14px;
        }
        .section-title h2 {
            font-family: 'Playfair Display', serif;
            font-size: 36px;
            font-weight: 900;
            color: var(--text-primary);
            letter-spacing: -1px;
        }
        .section-title .cn-label {
            font-size: 13px;
            color: var(--text-muted);
            font-weight: 500;
            letter-spacing: 2px;
        }
        .section-tabs {
            display: flex;
            gap: 4px;
        }
        .section-tab {
            text-decoration: none;
            font-size: 13px;
            font-weight: 500;
            color: var(--text-muted);
            padding: 6px 14px;
            border-radius: 6px;
            transition: var(--transition);
        }
        .section-tab:hover {
            color: var(--text-primary);
            background: var(--bg-secondary);
        }
        .section-tab.active {
            color: var(--text-primary);
            background: var(--bg-tertiary);
            font-weight: 600;
        }

        /* ── News Cards Grid ── */
        .news-grid-3 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        .news-grid-2 {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .card {
            background: var(--bg-primary);
            border-radius: var(--radius-md);
            overflow: hidden;
            border: 1px solid var(--border-light);
            transition: var(--transition);
            cursor: pointer;
            text-decoration: none;
            color: inherit;
            display: block;
        }
        .card:hover {
            border-color: var(--border-medium);
            box-shadow: var(--shadow-lg);
            transform: translateY(-4px);
        }
        .card-img-wrap {
            position: relative;
            overflow: hidden;
            aspect-ratio: 16/10;
        }
        .card-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .card:hover .card-img-wrap img {
            transform: scale(1.06);
        }
        .card-badge {
            position: absolute;
            top: 14px;
            left: 14px;
            font-size: 11px;
            font-weight: 700;
            padding: 3px 10px;
            border-radius: 4px;
            letter-spacing: 0.3px;
            z-index: 2;
        }
        .card-body {
            padding: 20px;
        }
        .card-meta {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            color: var(--text-muted);
            margin-bottom: 10px;
        }
        .card-meta .sep {
            width: 3px;
            height: 3px;
            border-radius: 50%;
            background: var(--border-medium);
        }
        .card-meta .source {
            font-weight: 500;
            color: var(--text-secondary);
        }
        .card-title {
            font-family: 'Noto Sans SC', sans-serif;
            font-size: 17px;
            font-weight: 700;
            line-height: 1.45;
            color: var(--text-primary);
            margin-bottom: 10px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            transition: var(--transition);
        }
        .card:hover .card-title {
            color: var(--accent-brand);
        }
        .card-desc {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.7;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* ── Basketball Cards (Larger) ── */
        .card-lg .card-img-wrap {
            aspect-ratio: 16/11;
        }
        .card-lg .card-title {
            font-size: 20px;
        }
        .card-lg .card-body {
            padding: 24px;
        }
        .card-lg .card-desc {
            -webkit-line-clamp: 3;
        }
        .card-lg .read-more {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-top: 14px;
            font-size: 13px;
            font-weight: 600;
            color: var(--accent-basketball);
            transition: var(--transition);
        }
        .card-lg .read-more svg {
            transition: transform 0.3s ease;
        }
        .card-lg:hover .read-more svg {
            transform: translateX(4px);
        }

        /* ── Sidebar Layout ── */
        .content-with-sidebar {
            max-width: 1160px;
            margin: 0 auto;
            padding: 48px 20px 0;
            display: grid;
            grid-template-columns: 740px 1fr;
            gap: 36px;
        }

        /* ── Sidebar Widgets ── */
        .sidebar-widget {
            background: var(--bg-secondary);
            border-radius: var(--radius-md);
            padding: 24px;
            margin-bottom: 24px;
        }
        .widget-title {
            font-family: 'Playfair Display', serif;
            font-size: 18px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 20px;
            padding-bottom: 12px;
            border-bottom: 2px solid var(--border-light);
            position: relative;
        }
        .widget-title::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--accent-brand);
        }

        .trending-list {
            list-style: none;
        }
        .trending-item {
            display: flex;
            gap: 14px;
            padding: 14px 0;
            border-bottom: 1px solid var(--border-light);
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            color: inherit;
        }
        .trending-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }
        .trending-item:first-child {
            padding-top: 0;
        }
        .trending-item:hover .trending-title {
            color: var(--accent-brand);
        }
        .trending-rank {
            font-family: 'Playfair Display', serif;
            font-size: 28px;
            font-weight: 900;
            color: var(--border-medium);
            line-height: 1;
            min-width: 32px;
            flex-shrink: 0;
        }
        .trending-rank.top { color: var(--accent-brand); }
        .trending-title {
            font-size: 14px;
            font-weight: 600;
            line-height: 1.45;
            color: var(--text-primary);
            transition: var(--transition);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .trending-meta {
            font-size: 11px;
            color: var(--text-muted);
            margin-top: 4px;
        }

        /* Quick Links Widget */
        .quick-links {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .quick-link {
            font-size: 12px;
            font-weight: 500;
            color: var(--text-secondary);
            padding: 6px 14px;
            border-radius: 100px;
            background: var(--bg-primary);
            border: 1px solid var(--border-light);
            text-decoration: none;
            transition: var(--transition);
        }
        .quick-link:hover {
            border-color: var(--text-primary);
            color: var(--text-primary);
        }

        /* ── More News / List Section ── */
        .news-list-section {
            max-width: 1160px;
            margin: 0 auto;
            padding: 48px 20px 0;
        }
        .news-list {
            display: flex;
            flex-direction: column;
            gap: 0;
        }
        .news-list-item {
            display: grid;
            grid-template-columns: 200px 1fr;
            gap: 24px;
            padding: 22px 0;
            border-bottom: 1px solid var(--border-light);
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            color: inherit;
        }
        .news-list-item:first-child { padding-top: 0; }
        .news-list-item:hover .news-list-title {
            color: var(--accent-brand);
        }
        .news-list-img {
            width: 200px;
            height: 130px;
            border-radius: var(--radius-sm);
            overflow: hidden;
        }
        .news-list-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .news-list-item:hover .news-list-img img {
            transform: scale(1.05);
        }
        .news-list-body {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .news-list-title {
            font-size: 17px;
            font-weight: 700;
            color: var(--text-primary);
            line-height: 1.45;
            margin-bottom: 8px;
            transition: var(--transition);
        }
        .news-list-desc {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.65;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin-bottom: 8px;
        }
        .news-list-meta {
            font-size: 12px;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .news-list-meta .tag {
            font-size: 11px;
            font-weight: 600;
            padding: 2px 8px;
            border-radius: 3px;
        }

        /* ── Footer ── */
        footer {
            margin-top: 60px;
            background: var(--text-primary);
            color: #fff;
            width: 100vw;
            position: relative;
            margin-left: calc(50% - 50vw);
        }
        .footer-inner {
            max-width: 1160px;
            margin: 0 auto;
            padding: 56px 20px 40px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 48px;
            margin-bottom: 40px;
        }
        .footer-brand .logo-mark {
            background: var(--accent-brand);
            margin-bottom: 16px;
        }
        .footer-brand .brand-name {
            font-family: 'Playfair Display', serif;
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 12px;
        }
        .footer-brand .brand-desc {
            font-size: 13px;
            color: rgba(255,255,255,0.5);
            line-height: 1.7;
        }
        .footer-col h4 {
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 20px;
            color: rgba(255,255,255,0.4);
        }
        .footer-col a {
            display: block;
            font-size: 14px;
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            margin-bottom: 12px;
            transition: var(--transition);
        }
        .footer-col a:hover {
            color: #fff;
            transform: translateX(3px);
        }
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 12px;
            color: rgba(255,255,255,0.35);
        }

        /* ── Animations ── */
        .fade-in {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ── Load More Button ── */
        .load-more-wrap {
            text-align: center;
            padding: 32px 0 0;
        }
        .load-more-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 36px;
            font-size: 14px;
            font-weight: 600;
            color: var(--text-primary);
            background: transparent;
            border: 2px solid var(--border-medium);
            border-radius: 100px;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
        }
        .load-more-btn:hover {
            border-color: var(--text-primary);
            background: var(--text-primary);
            color: #fff;
        }

        /* ── Scrollbar ── */
        ::-webkit-scrollbar { width: 6px; }
        ::-webkit-scrollbar-track { background: var(--bg-secondary); }
        ::-webkit-scrollbar-thumb { background: var(--border-medium); border-radius: 3px; }
        ::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }
