        :root {
            --bg: #f8fafc;
            --surface: #ffffff;
            --text: #0f172a;
            --text-secondary: #475569;
            --text-muted: #64748b;
            --accent: #2563eb;
            --accent-hover: #1d4ed8;
            --accent-light: #eff6ff;
            --border: #e2e8f0;
            --border-light: #eef2ff;
            --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.04);
            --shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 20px 32px rgba(0, 0, 0, 0.08);
            --radius-sm: 0.75rem;
            --radius: 1.25rem;
            --radius-lg: 2rem;
            --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        .container {
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        /* ===== HEADER ===== */
        header {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            color: #fff;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
            backdrop-filter: blur(8px);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            padding: 0.9rem 0;
            gap: 0.8rem;
        }
        .logo h1 {
            font-size: 1.7rem;
            font-weight: 750;
            letter-spacing: -0.02em;
            white-space: nowrap;
        }
        .logo span {
            background: #3b82f6;
            font-size: 0.72rem;
            padding: 0.18rem 0.55rem;
            border-radius: 9999px;
            margin-left: 0.4rem;
            vertical-align: middle;
            font-weight: 600;
            letter-spacing: 0.02em;
        }
        .nav-links {
            display: flex;
            gap: 1.6rem;
            flex-wrap: wrap;
            list-style: none;
            align-items: center;
        }
        .nav-links a {
            color: #e2e8f0;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: color var(--transition);
            position: relative;
            padding: 0.25rem 0;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: #60a5fa;
            border-radius: 2px;
            transition: width var(--transition);
        }
        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }
        .nav-links a:hover,
        .nav-links a.active {
            color: #60a5fa;
        }

        /* ===== PAGE HERO ===== */
        .page-hero {
            background: linear-gradient(125deg, #eef2ff 0%, #f9fafb 40%, #ffffff 100%);
            padding: 3rem 0 2rem 0;
            border-bottom: 1px solid var(--border);
            text-align: center;
        }
        .page-hero h1 {
            font-size: clamp(2rem, 4vw, 2.5rem);
            font-weight: 800;
            letter-spacing: -0.03em;
            background: linear-gradient(135deg, #0f172a 30%, #2563eb 100%);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            margin-bottom: 0.6rem;
        }
        .page-hero .subtitle {
            font-size: 1.1rem;
            color: #475569;
            max-width: 680px;
            margin: 0 auto;
        }

        /* ===== SECTION ===== */
        .section {
            padding: 2.8rem 0;
        }
        .section-title {
            font-size: clamp(1.5rem, 3vw, 1.9rem);
            font-weight: 700;
            text-align: center;
            margin-bottom: 0.6rem;
            color: var(--text);
            letter-spacing: -0.02em;
        }
        .section-subtitle {
            text-align: center;
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-bottom: 2rem;
        }

        /* ===== COMPARE TABLE ===== */
        .compare-table-responsive {
            overflow-x: auto;
            margin: 0 auto;
            max-width: 1000px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: var(--surface);
            white-space: nowrap;
            font-size: 0.9rem;
        }
        th {
            background: #0f172a;
            color: #fff;
            padding: 1rem 1.2rem;
            font-weight: 600;
            text-align: center;
            position: sticky;
            top: 0;
        }
        th:first-child {
            text-align: left;
            border-radius: var(--radius) 0 0 0;
        }
        th:last-child {
            border-radius: 0 var(--radius) 0 0;
        }
        td {
            padding: 0.9rem 1.2rem;
            text-align: center;
            border-bottom: 1px solid var(--border-light);
            color: var(--text-secondary);
            vertical-align: middle;
        }
        td:first-child {
            text-align: left;
            font-weight: 600;
            color: var(--text);
        }
        tr:last-child td {
            border-bottom: none;
        }
        .check-icon {
            color: #22c55e;
            font-weight: 700;
            font-size: 1.1rem;
        }
        .cross-icon {
            color: #ef4444;
            font-weight: 700;
        }
        .partial-icon {
            color: #f59e0b;
            font-weight: 600;
        }
        .badge-win, .badge-android, .badge-ios {
            display: inline-block;
            padding: 0.15rem 0.6rem;
            border-radius: 9999px;
            font-size: 0.7rem;
            font-weight: 600;
            margin: 0 0.1rem;
        }
        .badge-win { background: #dbeafe; color: #1e40af; }
        .badge-android { background: #dcfce7; color: #166534; }
        .badge-ios { background: #fce7f3; color: #9d174d; }

        /* ===== SCENARIO CARDS ===== */
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 1.5rem;
        }
        .card {
            background: var(--surface);
            border-radius: var(--radius);
            padding: 1.6rem;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
            transition: all var(--transition);
            text-align: center;
        }
        .card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow);
            border-color: #b9d0f8;
        }
        .card-icon {
            font-size: 2.2rem;
            margin-bottom: 0.8rem;
        }
        .card h3 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            font-weight: 650;
        }
        .card p {
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }
        .btn-outline-sm {
            display: inline-block;
            padding: 0.45rem 1.1rem;
            font-size: 0.85rem;
            border-radius: 2rem;
            border: 1.5px solid var(--accent);
            color: var(--accent);
            text-decoration: none;
            font-weight: 500;
            transition: all var(--transition);
        }
        .btn-outline-sm:hover {
            background: var(--accent-light);
            transform: translateX(2px);
        }
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.7rem 1.8rem;
            border-radius: 2.5rem;
            font-weight: 600;
            text-decoration: none;
            background: var(--accent);
            color: #fff;
            box-shadow: 0 4px 14px rgba(37, 99, 235, 0.32);
            transition: all var(--transition);
        }
        .btn-primary:hover {
            background: var(--accent-hover);
            transform: translateY(-2px);
            box-shadow: 0 8px 22px rgba(37, 99, 235, 0.38);
        }

        /* ===== CTA ===== */
        .cta-bottom {
            background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #1e293b 100%);
            color: #fff;
            text-align: center;
            padding: 2.8rem 1.5rem;
            border-radius: var(--radius-lg);
            margin: 2rem 0;
            position: relative;
            overflow: hidden;
        }
        .cta-bottom::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.25) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .cta-bottom h3 {
            font-size: 1.7rem;
            font-weight: 700;
            margin-bottom: 0.6rem;
            position: relative;
            z-index: 2;
        }
        .cta-bottom p {
            color: #cbd5e1;
            margin-bottom: 1.4rem;
            position: relative;
            z-index: 2;
            font-size: 1rem;
        }
        .cta-bottom .btn-primary {
            background: #22c55e;
            box-shadow: 0 4px 16px rgba(34,197,94,0.35);
            font-size: 1.05rem;
            padding: 0.85rem 2.4rem;
        }

        /* ===== FOOTER ===== */
        footer {
            background: #0f172a;
            color: #cbd5e1;
            padding: 2rem 0;
            margin-top: 1.5rem;
            border-top: 1px solid #1e293b;
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1rem;
            font-size: 0.9rem;
        }
        .copyright {
            text-align: center;
            padding-top: 1.2rem;
            margin-top: 1rem;
            border-top: 1px solid #1e293b;
            font-size: 0.8rem;
            color: #94a3b8;
        }

        @media (max-width: 768px) {
            .header-inner {
                flex-direction: column;
                align-items: flex-start;
            }
            .nav-links {
                gap: 1rem;
            }
            th, td {
                padding: 0.7rem 0.8rem;
                font-size: 0.8rem;
            }
            .card-grid {
                grid-template-columns: 1fr;
            }
        }