        /* 全局重置 & 字体 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            background-color: #f7f7f8;
            color: #1d1d1f;
            padding: 2rem 1rem;
            line-height: 1.6;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            background: #ffffff;
            border-radius: 20px;
            padding: 2rem 1.5rem;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
        }

        /* 语言切换 */
        .lang-switch {
            display: flex;
            justify-content: flex-end;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }
        .lang-switch button {
            background: transparent;
            border: 1px solid #d2d2d7;
            border-radius: 20px;
            padding: 0.3rem 1rem;
            font-size: 0.8rem;
            font-weight: 500;
            color: #1d1d1f;
            cursor: pointer;
            transition: all 0.2s;
        }
        .lang-switch button.active {
            background: #007aff;
            border-color: #007aff;
            color: #fff;
        }
        .lang-switch button:hover {
            background: #e5e5ea;
        }
        .lang-switch button.active:hover {
            background: #005bbf;
        }

        /* 头部 */
        .header {
            margin-bottom: 2rem;
        }

        .header h1 {
            font-size: 2rem;
            font-weight: 700;
            letter-spacing: -0.02em;
            background: linear-gradient(135deg, #1d1d1f 0%, #3a3a3c 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .header .subtitle {
            font-size: 1rem;
            color: #6e6e73;
            margin-top: 0.25rem;
            border-left: 4px solid #007aff;
            padding-left: 1rem;
        }

        .header .meta {
            font-size: 0.85rem;
            color: #8e8e93;
            margin-top: 0.5rem;
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem 1.5rem;
        }

        .header .meta span {
            background: #f1f1f3;
            padding: 0.15rem 0.75rem;
            border-radius: 20px;
        }

        /* 表格容器 — 支持横向滚动 */
        .table-wrapper {
            overflow-x: auto;
            margin: 1.5rem 0 2rem 0;
            border-radius: 14px;
            border: 1px solid #e5e5ea;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.9rem;
            min-width: 900px;
            background: #fff;
        }

        thead {
            background: #f8f8fa;
            border-bottom: 2px solid #e5e5ea;
        }

        th {
            text-align: left;
            padding: 0.9rem 0.8rem;
            font-weight: 600;
            color: #1d1d1f;
            white-space: nowrap;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.03em;
        }

        td {
            padding: 0.9rem 0.8rem;
            border-bottom: 1px solid #f0f0f2;
            vertical-align: middle;
        }

        tr:last-child td {
            border-bottom: none;
        }

        tr:hover td {
            background-color: #fafafc;
        }

        .platform-cell {
            font-weight: 600;
            color: #1d1d1f;
        }

        .platform-cell a {
            color: #1d1d1f;
            text-decoration: none;
        }

        .platform-cell a:hover {
            color: #007aff;
            text-decoration: underline;
        }

        .plan-name {
            font-size: 0.75rem;
            font-weight: 400;
            color: #6e6e73;
            display: block;
            margin-top: 0.1rem;
        }

        .badge {
            display: inline-block;
            background: #e9f0ff;
            color: #007aff;
            font-size: 0.7rem;
            font-weight: 500;
            padding: 0.1rem 0.6rem;
            border-radius: 12px;
            white-space: nowrap;
        }

        .price {
            font-weight: 600;
            color: #1d1d1f;
        }

        .price-sub {
            font-size: 0.75rem;
            color: #6e6e73;
            font-weight: 400;
        }

        .btn-buy {
            display: inline-block;
            background: #007aff;
            color: #fff;
            font-size: 0.75rem;
            font-weight: 500;
            padding: 0.25rem 0.9rem;
            border-radius: 20px;
            text-decoration: none;
            transition: background 0.2s;
            white-space: nowrap;
        }

        .btn-buy:hover {
            background: #005bbf;
        }

        .btn-buy.outline {
            background: transparent;
            color: #007aff;
            border: 1px solid #007aff;
        }

        .btn-buy.outline:hover {
            background: #007aff;
            color: #fff;
        }

        /* 统计条 */
        .stats {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem 2rem;
            padding: 1rem 0.5rem;
            background: #f8f8fa;
            border-radius: 14px;
            margin: 1.5rem 0;
            font-size: 0.9rem;
        }

        .stats .stat-item {
            display: flex;
            align-items: baseline;
            gap: 0.3rem;
        }

        .stats .stat-number {
            font-weight: 700;
            color: #1d1d1f;
        }

        .stats .stat-label {
            color: #6e6e73;
        }

        /* 注意事项 & FAQ */
        .note-box {
            background: #fcfcfd;
            border-left: 4px solid #ff9500;
            padding: 1rem 1.5rem;
            border-radius: 10px;
            margin: 1.5rem 0;
            font-size: 0.9rem;
            color: #3a3a3c;
        }

        .note-box strong {
            color: #1d1d1f;
        }

        .faq-section {
            margin-top: 2.5rem;
            border-top: 1px solid #e5e5ea;
            padding-top: 2rem;
        }

        .faq-section h2 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .faq-item {
            margin-bottom: 1.5rem;
        }

        .faq-item h3 {
            font-size: 1rem;
            font-weight: 600;
            color: #1d1d1f;
            margin-bottom: 0.3rem;
        }

        .faq-item p {
            color: #3a3a3c;
            font-size: 0.95rem;
        }

        .footer {
            margin-top: 2.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid #e5e5ea;
            font-size: 0.8rem;
            color: #8e8e93;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 0.5rem;
        }

        .footer .update {
            font-weight: 500;
            color: #1d1d1f;
        }

        @media (max-width: 640px) {
            .container {
                padding: 1rem 0.75rem;
            }
            .header h1 {
                font-size: 1.5rem;
            }
            .stats {
                flex-direction: column;
                gap: 0.3rem;
            }
            .lang-switch {
                justify-content: center;
            }
        }

        /* 隐藏切换用 */
        .i18n-text[data-lang] {
            /* 占位，实际由JS控制显示 */
        }

        /* ============================================================
             平台 logo / 搜索 / 卡片 / 视图切换（功能层样式）
             ============================================================ */

        /* 表格行内 logo：JS 注入，float 左侧，不破坏原有 a + plan-name 堆叠 */
        .platform-cell { display: flex; align-items: center; gap: 0.55rem; }
        .cell-text { display: flex; flex-direction: column; min-width: 0; }
        .row-logo {
            width: 20px;
            height: 20px;
            object-fit: contain;
            border-radius: 4px;
            background: #f1f1f3;
            flex-shrink: 0;
        }

        /* 工具条：搜索框 + 结果计数 + 视图切换 */
        .toolbar {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.75rem;
            margin: 1.5rem 0 1rem 0;
        }
        .search-box {
            position: relative;
            flex: 1;
            min-width: 200px;
            max-width: 360px;
        }
        .search-icon {
            position: absolute;
            left: 0.7rem;
            top: 50%;
            transform: translateY(-50%);
            width: 16px;
            height: 16px;
            color: #8e8e93;
            pointer-events: none;
        }
        .search-input {
            width: 100%;
            height: 2.25rem;
            padding: 0 2rem 0 2.1rem;
            border: 1px solid #d2d2d7;
            border-radius: 10px;
            font-size: 0.9rem;
            color: #1d1d1f;
            background: #fff;
            outline: none;
            transition: border-color 0.2s, box-shadow 0.2s;
            -webkit-appearance: none;
            appearance: none;
        }
        .search-input:focus {
            border-color: #007aff;
            box-shadow: 0 0 0 3px rgba(0,122,255,0.15);
        }
        .search-clear {
            position: absolute;
            right: 0.4rem;
            top: 50%;
            transform: translateY(-50%);
            width: 22px;
            height: 22px;
            border: none;
            background: #e5e5ea;
            border-radius: 50%;
            color: #6e6e73;
            font-size: 0.85rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            line-height: 1;
        }
        .search-clear:hover { background: #d2d2d7; }
        .result-count {
            font-size: 0.8rem;
            color: #6e6e73;
            white-space: nowrap;
        }
        .view-toggle {
            display: inline-flex;
            background: #f1f1f3;
            border-radius: 10px;
            padding: 0.15rem;
            gap: 0.15rem;
        }
        .toggle-btn {
            border: none;
            background: transparent;
            padding: 0.3rem 0.75rem;
            border-radius: 8px;
            font-size: 0.8rem;
            font-weight: 500;
            color: #6e6e73;
            cursor: pointer;
            transition: all 0.2s;
            white-space: nowrap;
        }
        .toggle-btn.active {
            background: #fff;
            color: #1d1d1f;
            box-shadow: 0 1px 3px rgba(0,0,0,0.08);
        }

        /* 卡片视图 */
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1rem;
            margin-bottom: 2rem;
        }
        .card {
            display: flex;
            flex-direction: column;
            background: #fff;
            border: 1px solid #e5e5ea;
            border-radius: 14px;
            padding: 1.25rem;
            transition: box-shadow 0.2s, border-color 0.2s;
        }
        .card:hover {
            border-color: #d2d2d7;
            box-shadow: 0 6px 20px rgba(0,0,0,0.06);
        }
        .card-header {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            margin-bottom: 0.75rem;
        }
        .card-logo {
            width: 36px;
            height: 36px;
            object-fit: contain;
            border-radius: 8px;
            background: #f1f1f3;
            border: 1px solid #e5e5ea;
            flex-shrink: 0;
        }
        .card-title {
            display: flex;
            flex-direction: column;
            min-width: 0;
        }
        .card-platform {
            font-size: 0.75rem;
            color: #6e6e73;
            font-weight: 500;
        }
        .card-plan {
            font-size: 0.95rem;
            color: #1d1d1f;
            font-weight: 600;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .card-price {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1d1d1f;
            margin-bottom: 0.75rem;
            line-height: 1.1;
        }
        .card-price .price-sub {
            font-size: 0.8rem;
            font-weight: 400;
            color: #6e6e73;
            margin-left: 0.15rem;
        }
        .card-meta {
            font-size: 0.78rem;
            color: #3a3a3c;
            line-height: 1.7;
            margin-bottom: 0.75rem;
        }
        .card-meta .meta-label {
            color: #8e8e93;
            font-weight: 500;
        }
        .card-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 0.35rem 0.9rem;
            font-size: 0.78rem;
            color: #3a3a3c;
            padding: 0.6rem 0;
            border-top: 1px solid #f0f0f2;
            border-bottom: 1px solid #f0f0f2;
            margin-bottom: 0.9rem;
        }
        .card-stats .stat-chip { display: inline-flex; align-items: center; gap: 0.2rem; }
        .card-buy { margin-top: auto; text-align: center; }

        /* 搜索无结果空态行 */
        .empty-row td {
            text-align: center;
            padding: 3rem 1rem;
            color: #8e8e93;
            font-size: 0.9rem;
        }

        @media (max-width: 640px) {
            .toolbar { flex-direction: column; align-items: stretch; }
            .search-box { max-width: none; }
            .view-toggle { align-self: flex-end; }
            .card-grid { grid-template-columns: 1fr; }
        }
