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

        body {
            font-family: system-ui, -apple-system, 'Segoe UI', 'Roboto', 'Helvetica Neue', sans-serif;
            background: linear-gradient(145deg, #f6f9fc 0%, #eef2f5 100%);
            color: #1a2c3e;
            line-height: 1.6;
            scroll-behavior: smooth;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Header */
        .site-header {
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
        }

        .navbar {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 0;
            gap: 1rem;
        }

        .logo-area {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .logo-svg {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo-text {
            font-size: 1.8rem;
            font-weight: 700;
            background: linear-gradient(135deg, #0f2b3d, #1e4a6e);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            letter-spacing: -0.3px;
        }

        .badge {
            font-size: 0.7rem;
            background: #eef2ff;
            padding: 0.2rem 0.6rem;
            border-radius: 30px;
            color: #1e4a6e;
            font-weight: 500;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
            flex-wrap: wrap;
        }

        .nav-links a {
            text-decoration: none;
            font-weight: 500;
            color: #2c4c6c;
            transition: color 0.2s;
            font-size: 1rem;
            white-space: nowrap;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: #0f6b9c;
            border-bottom: 2px solid #0f6b9c;
            padding-bottom: 0.25rem;
        }

        /* Hero */
        .hero {
            padding: 5rem 0 3rem 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -60px;
            left: 50%;
            transform: translateX(-50%);
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(15, 107, 156, 0.06) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 800;
            background: linear-gradient(125deg, #0a2e42, #1f6390);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
            position: relative;
        }

        .hero-tagline {
            font-size: 1.3rem;
            color: #2c556e;
            max-width: 700px;
            margin: 0 auto 1.2rem auto;
            font-weight: 450;
            position: relative;
        }

        .hero-desc {
            font-size: 1rem;
            color: #3a627c;
            max-width: 640px;
            margin: 0 auto 2rem auto;
            position: relative;
        }

        .hero-meta {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
            margin-bottom: 2rem;
            font-size: 0.9rem;
            color: #4a7896;
            position: relative;
        }

        .hero-meta span {
            display: flex;
            align-items: center;
            gap: 0.35rem;
            background: rgba(255, 255, 255, 0.6);
            padding: 0.4rem 1rem;
            border-radius: 24px;
            font-weight: 500;
        }

        .btn-group {
            display: flex;
            gap: 1.2rem;
            justify-content: center;
            flex-wrap: wrap;
            position: relative;
        }

        .btn-primary {
            background: #1e5a7a;
            color: white;
            padding: 0.8rem 2rem;
            border-radius: 48px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.2s;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
            border: none;
            cursor: pointer;
            display: inline-block;
        }

        .btn-primary:hover {
            background: #0f4562;
            transform: translateY(-2px);
            box-shadow: 0 6px 18px rgba(15, 69, 98, 0.25);
        }

        .btn-secondary {
            background: transparent;
            color: #1e5a7a;
            padding: 0.8rem 2rem;
            border-radius: 48px;
            font-weight: 600;
            text-decoration: none;
            border: 1px solid #1e5a7a;
            transition: 0.2s;
        }

        .btn-secondary:hover {
            background: rgba(30, 90, 122, 0.08);
            transform: translateY(-2px);
        }

        .btn-outline-light {
            background: transparent;
            color: #2c556e;
            padding: 0.7rem 1.6rem;
            border-radius: 48px;
            font-weight: 500;
            text-decoration: none;
            border: 1px solid #c5d5e0;
            transition: 0.2s;
            font-size: 0.95rem;
        }

        .btn-outline-light:hover {
            background: rgba(0, 0, 0, 0.03);
            border-color: #8aafc4;
            transform: translateY(-1px);
        }

        /* Section Title */
        .section-title {
            text-align: center;
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 0.6rem;
            color: #1a3a4e;
        }

        .section-subtitle {
            text-align: center;
            color: #4a7896;
            font-size: 1rem;
            margin-bottom: 2.5rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Why ClashX Section */
        .why-section {
            padding: 3rem 0;
        }

        .why-content {
            background: rgba(255, 255, 255, 0.7);
            border-radius: 2rem;
            padding: 2.5rem 2rem;
            border: 1px solid rgba(255, 255, 255, 0.7);
            box-shadow: 0 8px 20px -8px rgba(0, 0, 0, 0.06);
            max-width: 900px;
            margin: 0 auto;
        }

        .why-content p {
            color: #2c4c64;
            font-size: 1.02rem;
            margin-bottom: 1rem;
            line-height: 1.7;
        }

        .why-content p:last-child {
            margin-bottom: 0;
        }

        .chip-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
            margin-top: 1.5rem;
        }

        .chip {
            background: #e7f0f7;
            color: #1e5a7a;
            padding: 0.4rem 1rem;
            border-radius: 24px;
            font-size: 0.85rem;
            font-weight: 500;
            white-space: nowrap;
        }

        .chip.highlight {
            background: #d0e8f5;
            color: #0a3d56;
            font-weight: 600;
        }

        /* Download Cards */
        .download-section {
            padding: 3rem 0 4rem;
        }

        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .download-card {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(4px);
            border-radius: 2rem;
            padding: 2.2rem 1.8rem;
            box-shadow: 0 12px 24px -12px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
            border: 1px solid rgba(255, 255, 255, 0.6);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .download-card::after {
            content: '';
            position: absolute;
            top: -40px;
            right: -40px;
            width: 120px;
            height: 120px;
            border-radius: 50%;
            opacity: 0.06;
            pointer-events: none;
            transition: all 0.3s;
        }

        .download-card.silicon::after {
            background: #7c3aed;
        }
        .download-card.intel::after {
            background: #2563eb;
        }
        .download-card.meta::after {
            background: #059669;
        }

        .download-card:hover {
            transform: translateY(-8px);
            background: white;
            box-shadow: 0 28px 40px -14px rgba(0, 0, 0, 0.14);
        }

        .download-card:hover::after {
            opacity: 0.1;
            width: 160px;
            height: 160px;
            top: -60px;
            right: -60px;
        }

        .card-badge {
            display: inline-block;
            padding: 0.3rem 1rem;
            border-radius: 20px;
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 0.3px;
            margin-bottom: 1.2rem;
        }

        .silicon .card-badge {
            background: #f3eeff;
            color: #6d3fd6;
        }
        .intel .card-badge {
            background: #eef4ff;
            color: #2563eb;
        }
        .meta .card-badge {
            background: #ecfdf5;
            color: #059669;
        }

        .download-card .card-icon {
            font-size: 3rem;
            margin-bottom: 0.8rem;
        }

        .download-card h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            font-weight: 700;
            color: #1a3a4e;
        }

        .download-card .card-chips {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem;
            justify-content: center;
            margin: 0.8rem 0 1.2rem;
        }

        .download-card .card-chips span {
            background: #f1f5f9;
            color: #3a627c;
            padding: 0.25rem 0.7rem;
            border-radius: 16px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        .download-card .btn-primary {
            display: block;
            margin: 0.4rem 0;
            text-align: center;
            font-size: 0.95rem;
        }

        .download-card .btn-text-link {
            display: inline-block;
            margin-top: 0.6rem;
            font-size: 0.85rem;
            color: #5a8aaa;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.2s;
        }

        .download-card .btn-text-link:hover {
            color: #1e5a7a;
            text-decoration: underline;
        }

        /* Features */
        .features {
            padding: 3rem 0 4rem;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(4px);
            border-radius: 2rem;
            padding: 2rem 1.5rem;
            box-shadow: 0 12px 24px -12px rgba(0, 0, 0, 0.1);
            transition: all 0.25s;
            border: 1px solid rgba(255, 255, 255, 0.6);
            text-align: center;
        }

        .feature-card:hover {
            transform: translateY(-6px);
            background: white;
            box-shadow: 0 24px 36px -12px rgba(0, 0, 0, 0.15);
        }

        .feature-icon {
            font-size: 2.8rem;
            margin-bottom: 1rem;
        }

        .feature-card h3 {
            font-size: 1.6rem;
            margin-bottom: 0.8rem;
            font-weight: 600;
            color: #1a3a4e;
        }

        .feature-card p {
            color: #3e627c;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .feature-card ul {
            list-style: none;
            text-align: left;
            margin-top: 1rem;
            color: #3e627c;
            font-size: 0.9rem;
            line-height: 1.8;
        }

        .feature-card ul li::before {
            content: '▸ ';
            color: #1e5a7a;
            font-weight: 600;
        }

        /* Cross Platform */
        .cross-platform {
            padding: 3rem 0;
        }

        .platform-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 1.5rem;
            max-width: 700px;
            margin: 0 auto;
        }

        .platform-card {
            background: rgba(255, 255, 255, 0.75);
            border-radius: 1.5rem;
            padding: 1.8rem 1.5rem;
            text-align: center;
            border: 1px solid rgba(0, 0, 0, 0.04);
            transition: all 0.25s;
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .platform-card:hover {
            background: white;
            transform: translateY(-4px);
            box-shadow: 0 14px 24px -10px rgba(0, 0, 0, 0.1);
        }

        .platform-card .platform-icon {
            font-size: 2.5rem;
            margin-bottom: 0.6rem;
        }
        .platform-card h4 {
            font-weight: 600;
            color: #1a3a4e;
            margin-bottom: 0.3rem;
        }
        .platform-card p {
            font-size: 0.85rem;
            color: #5a8aaa;
        }

        /* SEO Long Text */
        .seo-section {
            padding: 3rem 0;
        }

        .seo-content {
            background: rgba(255, 255, 255, 0.7);
            border-radius: 2rem;
            padding: 2.5rem 2rem;
            border: 1px solid rgba(255, 255, 255, 0.7);
            box-shadow: 0 8px 20px -8px rgba(0, 0, 0, 0.06);
            max-width: 900px;
            margin: 0 auto;
        }

        .seo-content h3 {
            color: #1a3a4e;
            font-size: 1.4rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .seo-content p {
            color: #2c4c64;
            font-size: 1rem;
            margin-bottom: 0.9rem;
            line-height: 1.7;
        }

        .seo-content ul {
            list-style: none;
            margin: 1rem 0;
            padding-left: 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 0.5rem 1rem;
        }

        .seo-content ul li {
            color: #3a627c;
            font-size: 0.95rem;
            padding: 0.35rem 0;
        }

        .seo-content ul li::before {
            content: '✓ ';
            color: #1e7a5a;
            font-weight: 700;
        }

        /* Internal Links */
        .internal-links-section {
            padding: 2rem 0 4rem;
        }

        .internal-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            max-width: 900px;
            margin: 0 auto;
        }

        .internal-link-card {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            background: rgba(255, 255, 255, 0.7);
            border-radius: 1.2rem;
            padding: 1rem 1.3rem;
            text-decoration: none;
            color: #2c4c6c;
            font-weight: 500;
            transition: all 0.2s;
            border: 1px solid rgba(0, 0, 0, 0.04);
            font-size: 0.95rem;
        }

        .internal-link-card:hover {
            background: white;
            transform: translateX(4px);
            box-shadow: 0 6px 16px -6px rgba(0, 0, 0, 0.1);
            color: #0f6b9c;
        }

        .internal-link-card .link-arrow {
            margin-left: auto;
            color: #1e5a7a;
            font-weight: 700;
            font-size: 1.1rem;
            transition: transform 0.2s;
        }

        .internal-link-card:hover .link-arrow {
            transform: translateX(4px);
        }

        /* Info Banner */
        .info-banner {
    background: linear-gradient(100deg, #e7f0f5 0%, #dce8ef 100%);
    border-radius: 2rem;
    padding: 2.5rem 1.5rem;        /* 左右 padding 稍微调整，避免移动端贴边 */
    margin: 1rem auto 3rem;        /* 上下间距保持，左右 auto 确保横幅自身在容器内居中（当设置了 max-width 时） */
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;       /* 垂直居中 */
    align-items: center;           /* 水平居中 */
    max-width: 800px;              /* 限制最大宽度，让横幅在宽屏下更聚焦，同时自动居中 */
}

.info-banner p {
    margin: 0;                     /* 清除 p 标签默认外边距，避免偏移 */
    width: 100%;
}

        /* Footer */
        .site-footer {
            background: #0f2b38;
            color: #cbdbe2;
            padding: 2.5rem 0;
            margin-top: 2rem;
            border-top: 1px solid #203e4e;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1.5rem;
            align-items: center;
        }

        .copyright {
            font-size: 0.85rem;
        }

        .footer-links a {
            color: #bfd7e5;
            text-decoration: none;
            margin-left: 1.5rem;
            font-size: 0.9rem;
        }

        .footer-links a:hover {
            color: white;
        }

        /* Trust Strip */
        .trust-strip {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            padding: 2rem 0;
            font-size: 0.9rem;
            color: #4a7896;
            text-align: center;
        }

        .trust-strip .trust-item {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            font-weight: 500;
        }

        .trust-strip .trust-icon {
            font-size: 1.3rem;
        }

        /* Responsive */
        @media (max-width: 680px) {
            .container {
                padding: 0 1.25rem;
            }
            .navbar {
                flex-direction: column;
            }
            .nav-links {
                gap: 1rem;
                font-size: 0.9rem;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .hero-tagline {
                font-size: 1rem;
            }
            .btn-group {
                gap: 0.8rem;
            }
            .section-title {
                font-size: 1.8rem;
            }
            .hero-meta {
                gap: 0.8rem;
                font-size: 0.8rem;
            }
            .hero-meta span {
                padding: 0.3rem 0.7rem;
            }
            .download-card {
                padding: 1.6rem 1.2rem;
            }
            .seo-content ul {
                grid-template-columns: 1fr;
            }
            .trust-strip {
                gap: 1rem;
                font-size: 0.8rem;
            }
        }

        @media (max-width: 400px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            .download-card h3 {
                font-size: 1.3rem;
            }
            .btn-primary,
            .btn-secondary {
                padding: 0.7rem 1.4rem;
                font-size: 0.9rem;
            }
        }