* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            background: #0d0b1a;
            font-family: 'Segoe UI', system-ui, sans-serif;
            color: #e2d8f0;
            line-height: 1.7;
        }
        a {
            color: #c084fc;
            text-decoration: none;
            transition: 0.3s;
        }
        a:hover {
            color: #a855f7;
            text-shadow: 0 0 8px #a855f7;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        /* 导航 */
        header {
            background: linear-gradient(135deg, #1a0a2e 0%, #2e1065 100%);
            border-bottom: 1px solid #4c1d95;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(10px);
        }
        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 24px;
            max-width: 1280px;
            margin: 0 auto;
        }
        .logo {
            font-size: 1.3rem;
            font-weight: 700;
            background: linear-gradient(90deg, #d946ef, #7c3aed);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .nav-links a {
            margin-left: 24px;
            font-weight: 500;
            position: relative;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: #d946ef;
            transition: 0.3s;
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        @media (max-width: 768px) {
            .nav-links a {
                margin-left: 12px;
                font-size: 0.9rem;
            }
        }
        /* 通用区块 */
        section {
            padding: 60px 0;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #d946ef, #7c3aed);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 24px;
            text-align: center;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #c084fc;
            margin-bottom: 32px;
            text-align: center;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
        }
        .card {
            background: #1e1035;
            border: 1px solid #3b1f6e;
            border-radius: 20px;
            padding: 24px;
            box-shadow: 0 0 20px rgba(168, 85, 247, 0.1);
            transition: 0.4s;
        }
        .card:hover {
            border-color: #d946ef;
            box-shadow: 0 0 30px #d946ef33;
            transform: translateY(-4px);
        }
        .card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 12px;
            margin-bottom: 16px;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(90deg, #d946ef, #7c3aed);
            color: #fff;
            padding: 12px 32px;
            border-radius: 40px;
            font-weight: 600;
            letter-spacing: 1px;
            transition: 0.3s;
            border: none;
            cursor: pointer;
        }
        .btn:hover {
            transform: scale(1.05);
            box-shadow: 0 0 20px #d946ef;
        }
        .flex-center {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        /* 新闻 */
        .news-item {
            background: #1e1035;
            border: 1px solid #3b1f6e;
            border-radius: 20px;
            padding: 24px;
            margin-bottom: 20px;
            transition: 0.3s;
        }
        .news-item:hover {
            border-color: #d946ef;
        }
        .news-item small {
            color: #a78bfa;
            font-size: 0.85rem;
        }
        /* FAQ */
        .faq-item {
            background: #1a0a2e;
            border: 1px solid #3b1f6e;
            border-radius: 16px;
            padding: 24px;
            margin-bottom: 16px;
        }
        .faq-item strong {
            color: #d946ef;
            display: block;
            margin-bottom: 8px;
        }
        /* 页脚 */
        footer {
            background: #0f0720;
            border-top: 1px solid #2e1065;
            padding: 40px 24px;
            text-align: center;
            font-size: 0.9rem;
        }
        footer a {
            margin: 0 8px;
        }
        footer .links {
            margin: 20px 0;
        }
        .glow-text {
            text-shadow: 0 0 10px #d946ef66;
        }
        .geo-box {
            background: #1a0a2e;
            border-radius: 24px;
            padding: 32px;
            border: 1px solid #4c1d95;
            max-width: 900px;
            margin: 0 auto;
        }
        .stats {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 20px;
        }
        .stat-item {
            text-align: center;
            padding: 20px;
            background: #1e1035;
            border-radius: 16px;
            min-width: 140px;
            border: 1px solid #3b1f6e;
        }
        .stat-item .num {
            font-size: 2.2rem;
            font-weight: 800;
            color: #d946ef;
        }
        .partner-logos {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 24px;
        }
        .partner-logos img {
            height: 50px;
            opacity: 0.8;
            transition: 0.3s;
            border-radius: 8px;
        }
        .partner-logos img:hover {
            opacity: 1;
            transform: scale(1.05);
        }
        @media (max-width: 600px) {
            h1 { font-size: 2rem; }
            h2 { font-size: 1.5rem; }
        }