        :root {
            --bg: #ffffff;
            --text: #000000;
            --grey: #999999;
            --blue: #1890ff;
            --border: #f0f0f0;
            --tag-bg: #f5f5f5;
            --max-width: 1200px;
        }

        body {
            margin: 0;
            background: var(--bg);
            color: var(--text);
            font-family: -apple-system, PingFang SC, sans-serif;
            -webkit-font-smoothing: antialiased;
        }

        [v-cloak] {
            display: none;
        }

        #app {
            max-width: var(--max-width);
            margin: 0 auto;
            position: relative;
        }

        .header {
            position: sticky;
            top: 0;
            background: #fff;
            z-index: 100;
            padding-bottom: 5px;
            max-width: var(--max-width);
            margin: 0 auto;
        }

        /* 花样字样式 */
        .brand-container {
            padding: 20px 16px 10px;
            text-align: left;
            background: linear-gradient(to bottom, #ffffff, #fafafa);
        }

        .brand-title {
            margin: 0;
            font-size: 32px;
            font-weight: 900;
            letter-spacing: -1.5px;
            font-family: "Arial Black", Gadget, sans-serif;
            background: linear-gradient(135deg, #000000 0%, #434343 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
            line-height: 1;
        }

        .brand-title span {
            background: linear-gradient(135deg, #ff4d4f 0%, #ff7875 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .brand-subtitle {
            margin: 2px 0 0;
            font-size: 10px;
            font-weight: bold;
            color: #ccc;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .search-bar {
            display: flex;
            padding: 10px 16px 5px;
            gap: 10px;
            align-items: center;
        }

        .search-input {
            flex: 1;
            height: 36px;
            background: #f2f2f2;
            border-radius: 18px;
            border: none;
            padding: 0 15px;
            outline: none;
            font-size: 14px;
        }

        .nav-tabs {
            display: flex;
            padding: 10px 16px;
            gap: 24px;
            font-size: 16px;
            font-weight: 500;
            overflow-x: auto;
            scrollbar-width: none;
        }

        .nav-tabs::-webkit-scrollbar {
            display: none;
        }

        .nav-item {
            cursor: pointer;
            white-space: nowrap;
        }

        .nav-item.active {
            font-size: 18px;
            font-weight: bold;
            position: relative;
        }

        .nav-item.active::after {
            content: "";
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 100%;
            height: 3px;
            background: #ff4d4f;
        }

        .list-container {
            padding: 0 16px;
            display: grid;
            grid-template-columns: 1fr;
            gap: 0 20px;
        }

        .footer {
            margin-top: 40px;
            padding: 30px 16px 50px;
            text-align: center;
            border-top: 1px solid var(--border);
            background: #fafafa;
        }

        .footer-links {
            margin-bottom: 12px;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 15px;
        }

        .footer-link {
            color: var(--grey);
            text-decoration: none;
            font-size: 13px;
            transition: color 0.2s;
        }

        .footer-link:hover {
            color: var(--blue);
        }

        .footer-divider {
            color: #eee;
            font-size: 12px;
        }

        .footer-copyright {
            color: #bbb;
            font-size: 11px;
            letter-spacing: 0.5px;
        }

        /* 适配移动端底部安全区域（如 iPhone 底部横条） */
        @supports (padding-bottom: env(safe-area-inset-bottom)) {
            .footer {
                padding-bottom: calc(30px + env(safe-area-inset-bottom));
            }
        }

        @media (min-width: 768px) {
            .list-container {
                grid-template-columns: repeat(2, 1fr);
            }

            .section-discovery {
                grid-template-columns: repeat(2, 1fr) !important;
            }

            .rank-section {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 20px;
            }
        }

        @media (min-width: 1024px) {
            .list-container {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .section-discovery {
            display: grid;
            grid-template-columns: 1.1fr 1fr;
            gap: 10px;
            padding: 15px 16px;
        }

        .card {
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 12px;
            background: #fff;
        }

        .card-h3 {
            margin: 0 0 10px;
            font-size: 16px;
            font-weight: bold;
            display: flex;
            justify-content: space-between;
        }

        .mini-grid {
            display: flex;
            gap: 6px;
        }

        .mini-img {
            width: 38px;
            height: 38px;
            border-radius: 8px;
            background: #eee;
            cursor: pointer;
        }

        .banner-sm {
            height: 80px;
            border-radius: 8px;
            overflow: hidden;
            margin-top: 5px;
            cursor: pointer;
        }

        .banner-sm img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .rank-section {
            padding: 0 16px 20px;
        }

        .rank-row {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            gap: 12px;
            cursor: pointer;
            padding: 8px;
            border-radius: 8px;
            transition: background 0.3s;
        }

        .rank-row:hover {
            background: #f9f9f9;
        }

        .rank-num {
            font-size: 18px;
            font-style: italic;
            font-weight: bold;
            color: #ccc;
            width: 20px;
        }

        .rank-num.top {
            color: #ffad33;
        }

        .game-thumb {
            width: 50px;
            height: 50px;
            border-radius: 10px;
            object-fit: cover;
        }

        .playlist-title {
            padding: 20px 16px 10px;
            font-size: 18px;
            font-weight: bold;
        }

        .playlist-scroll {
            display: flex;
            overflow-x: auto;
            padding: 0 16px 20px;
            gap: 12px;
            scrollbar-width: thin;
        }

        .p-card {
            flex: 0 0 180px;
            padding: 15px 10px;
            border-radius: 12px;
            color: #fff;
            transition: transform 0.3s;
        }

        .p-card:hover {
            transform: translateY(-5px);
        }

        @media (max-width: 768px) {
            .p-card {
                flex: 0 0 140px;
            }
        }

        .p-card.purple {
            background: linear-gradient(135deg, #a29bfe, #6c5ce7);
        }

        .p-card.brown {
            background: linear-gradient(135deg, #b2bec3, #636e72);
        }

        .p-card-title {
            font-size: 13px;
            font-weight: bold;
            height: 38px;
            margin-bottom: 10px;
            overflow: hidden;
        }

        .p-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5px;
        }

        .p-grid img {
            width: 100%;
            aspect-ratio: 1;
            border-radius: 4px;
            background: rgba(255, 255, 255, 0.2);
            cursor: pointer;
        }

        .game-item {
            display: flex;
            align-items: center;
            padding: 15px 0;
            border-bottom: 0.5px solid var(--border);
            gap: 12px;
            cursor: pointer;
            transition: background 0.2s;
        }

        .game-item:hover {
            background: #fafafa;
            border-radius: 8px;
            padding-left: 8px;
            margin-left: -8px;
        }

        .game-icon-big {
            width: 64px;
            height: 64px;
            border-radius: 14px;
            object-fit: cover;
        }

        .game-info {
            flex: 1;
            min-width: 0;
        }

        .game-name {
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 4px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .tags {
            display: flex;
            gap: 4px;
            margin-bottom: 4px;
            flex-wrap: wrap;
        }

        .tag {
            font-size: 10px;
            padding: 1px 4px;
            border-radius: 3px;
            background: var(--tag-bg);
            color: #888;
            border: 0.5px solid #ddd;
        }

        .tag.score {
            color: #a855f7;
            background: #f9f0ff;
            border: none;
        }

        .desc {
            font-size: 12px;
            color: var(--grey);
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .btn-get {
            width: 60px;
            height: 28px;
            border-radius: 14px;
            border: 1px solid #ddd;
            color: var(--blue);
            font-size: 13px;
            font-weight: bold;
            background: none;
            cursor: pointer;
            flex-shrink: 0;
        }

        .big-banner {
            padding: 15px 16px;
        }

        .banner-img {
            width: 100%;
            aspect-ratio: 2.2/1;
            border-radius: 10px;
            object-fit: cover;
            background: #eee;
            cursor: pointer;
            max-height: 400px;
        }

        .loading-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.8);
            z-index: 999;
            display: flex;
            justify-content: center;
            align-items: center;
        }