
        :root {
            --brand: #6366f1;
            --brand-glow: rgba(99, 102, 241, 0.4);
            --bg: #f4f7fa;
            --surface: #ffffff;
            --text-main: #1e293b;
            --text-sub: #64748b;
            --radius: 20px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
        }

        body {
            background: var(--bg);
            color: var(--text-main);
        }

        [v-cloak] {
            display: none;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        .app-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 16px;
        }

        /* --- 导航栏 --- */
        .sticky-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(244, 247, 250, 0.9);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            padding: 10px 0;
        }

        .header-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 12px;
            gap: 20px;
        }

        .search-bar {
            flex: 1;
            position: relative;
            max-width: 400px;
        }

        .search-bar input {
            width: 100%;
            padding: 10px 15px 10px 40px;
            border-radius: 12px;
            border: 1px solid #e2e8f0;
            background: var(--surface);
            outline: none;
            transition: 0.3s;
        }

        .search-bar::before {
            content: "🔍";
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0.5;
        }

        .cat-bar {
            display: flex;
            gap: 10px;
            overflow-x: auto;
            scrollbar-width: none;
        }

        .cat-bar::-webkit-scrollbar {
            display: none;
        }

        .cat-btn {
            padding: 8px 20px;
            border-radius: 50px;
            background: var(--surface);
            border: 1px solid #e2e8f0;
            font-size: 13px;
            font-weight: 700;
            color: var(--text-sub);
            cursor: pointer;
            white-space: nowrap;
        }

        .cat-btn.active {
            background: var(--brand);
            color: #fff;
            border-color: var(--brand);
        }

        /* --- 内容区域 --- */
        .content-wrap {
            padding-bottom: 50px;
            margin-top: 20px;
        }

        .scroll-section {
            background: var(--surface);
            border-radius: var(--radius);
            padding: 25px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
            margin-bottom: 30px;
            position: relative;
        }

        .track {
            display: grid;
            grid-template-rows: repeat(2, 1fr);
            grid-auto-flow: column;
            grid-auto-columns: 105px;
            gap: 20px;
            overflow-x: auto;
            scrollbar-width: none;
            padding: 10px 0;
        }

        .track::-webkit-scrollbar {
            display: none;
        }

        .game-name-limit {
            font-size: 12px;
            text-align: center;
            margin-top: 5px;
            font-weight: 600;
            display: block;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            width: 100%;
        }

        .ctrl-arrow {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: none;
            background: #fff;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            position: absolute;
            top: 55%;
            z-index: 50;
            cursor: pointer;
        }

        .arrow-l {
            left: -15px;
        }

        .arrow-r {
            right: -15px;
        }

        .layout {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 30px;
            align-items: start;
        }

        .main-box {
            background: var(--surface);
            border-radius: var(--radius);
            padding: 25px;
        }

        .game-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(105px, 1fr));
            gap: 20px;
        }

        .game-card-full img {
            width: 90px;
            height: 90px;
            border-radius: 22px;
            border: 1.5px solid #f1f5f9;
        }

        .game-card-full h3 {
            font-size: 13px;
            margin-top: 8px;
            font-weight: 700;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .more-trigger {
            text-align: center;
            margin-top: 40px;
        }

        .btn-load-more {
            background: var(--brand);
            color: #fff;
            border: none;
            padding: 12px 40px;
            border-radius: 50px;
            font-weight: 700;
            cursor: pointer;
            transition: 0.3s;
            box-shadow: 0 10px 20px var(--brand-glow);
        }

        /* --- Footer 底部样式 --- */
        .site-footer {
            background: #fff;
            padding: 60px 0 30px;
            border-top: 1px solid #e2e8f0;
            margin-top: 40px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-brand .logo-text {
            font-size: 24px;
            font-weight: 800;
            background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 15px;
            display: inline-block;
        }

        .footer-brand p {
            color: var(--text-sub);
            font-size: 14px;
            line-height: 1.6;
            max-width: 300px;
        }

        .footer-links h4 {
            margin-bottom: 20px;
            font-size: 16px;
            color: var(--text-main);
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: var(--text-sub);
            font-size: 14px;
            transition: 0.3s;
        }

        .footer-links a:hover {
            color: var(--brand);
        }

        .footer-bottom {
            padding-top: 30px;
            border-top: 1px solid #f1f5f9;
            text-align: center;
            color: #94a3b8;
            font-size: 13px;
        }

        @media (max-width: 768px) {
            .layout {
                grid-template-columns: 1fr;
            }

            .side-box {
                display: none;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-brand p {
                margin: 0 auto;
            }
        }