* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            background: linear-gradient(135deg, #1a0a2e 0%, #2d1b69 50%, #1a0a2e 100%);
            color: #f0e6ff;
            font-family: 'Segoe UI', 'PingFang SC', Roboto, sans-serif;
            line-height: 1.7;
            min-height: 100vh;
        }
        a {
            color: #d946ef;
            text-decoration: none;
            transition: 0.3s;
        }
        a:hover {
            text-shadow: 0 0 10px #d946ef;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        /* 导航栏 */
        nav {
            background: rgba(26, 10, 46, 0.9);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(217, 70, 239, 0.3);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .nav-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 25px;
        }
        .nav-links a {
            color: #e0b0ff;
            font-weight: 600;
            font-size: 1rem;
            padding: 8px 16px;
            border-radius: 30px;
            background: rgba(217, 70, 239, 0.1);
            border: 1px solid transparent;
        }
        .nav-links a:hover {
            background: rgba(217, 70, 239, 0.25);
            border-color: #d946ef;
            box-shadow: 0 0 15px #d946ef;
            color: #fff;
        }
        /* H1 */
        h1 {
            text-align: center;
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f0abff, #d946ef, #a855f7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            padding: 50px 20px 20px;
            letter-spacing: 2px;
        }
        h2 {
            font-size: 2rem;
            color: #d946ef;
            margin-bottom: 20px;
            border-left: 6px solid #d946ef;
            padding-left: 20px;
            text-shadow: 0 0 8px rgba(217, 70, 239, 0.4);
        }
        h3 {
            font-size: 1.4rem;
            color: #e9b5ff;
            margin-bottom: 15px;
        }
        /* 卡片通用 */
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        .neon-card {
            background: rgba(30, 15, 50, 0.7);
            border: 1px solid rgba(217, 70, 239, 0.3);
            border-radius: 20px;
            padding: 25px;
            backdrop-filter: blur(6px);
            box-shadow: 0 0 15px rgba(217, 70, 239, 0.2);
            transition: 0.4s;
        }
        .neon-card:hover {
            border-color: #d946ef;
            box-shadow: 0 0 30px #d946ef;
            transform: translateY(-5px);
        }
        .neon-card img {
            width: 100%;
            border-radius: 12px;
            margin-bottom: 15px;
        }
        /* hero */
        .hero-section {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 40px;
            background: rgba(20, 10, 40, 0.7);
            border-radius: 30px;
            padding: 40px;
            margin: 30px 0;
            border: 1px solid rgba(217, 70, 239, 0.2);
        }
        .hero-text {
            flex: 1 1 400px;
        }
        .hero-text p {
            font-size: 1.2rem;
            margin-top: 15px;
        }
        .hero-image {
            flex: 1 1 300px;
        }
        .hero-image img {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 0 30px rgba(217, 70, 239, 0.3);
        }
        .btn-glow {
            display: inline-block;
            background: linear-gradient(135deg, #d946ef, #a855f7);
            color: #fff;
            padding: 14px 36px;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.1rem;
            margin-top: 20px;
            border: none;
            cursor: pointer;
            box-shadow: 0 0 20px rgba(217, 70, 239, 0.4);
            transition: 0.3s;
        }
        .btn-glow:hover {
            transform: scale(1.05);
            box-shadow: 0 0 40px #d946ef;
        }
        /* 数据统计 */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 20px;
            text-align: center;
        }
        .stat-item {
            background: rgba(217, 70, 239, 0.08);
            padding: 30px 10px;
            border-radius: 20px;
            border: 1px solid rgba(217, 70, 239, 0.2);
        }
        .stat-item .num {
            font-size: 2.8rem;
            font-weight: 800;
            color: #d946ef;
        }
        /* 新闻 */
        .news-list {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        .news-item {
            background: rgba(30, 15, 50, 0.6);
            border-radius: 16px;
            padding: 20px 25px;
            border-left: 5px solid #d946ef;
            border: 1px solid rgba(217, 70, 239, 0.2);
        }
        .news-item .date {
            color: #c084fc;
            font-size: 0.9rem;
            margin-bottom: 8px;
        }
        .news-item h3 {
            margin-bottom: 10px;
        }
        .news-item p {
            color: #d0c0e8;
        }
        /* FAQ */
        .faq-item {
            background: rgba(30, 15, 50, 0.5);
            border-radius: 16px;
            padding: 20px;
            margin-bottom: 20px;
            border: 1px solid rgba(217, 70, 239, 0.15);
        }
        .faq-item strong {
            color: #d946ef;
        }
        /* 合作伙伴 */
        .partner-logos {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin: 30px 0;
        }
        .partner-logos img {
            width: 100px;
            height: auto;
            filter: drop-shadow(0 0 6px #d946ef);
            border-radius: 12px;
        }
        /* 页脚 */
        footer {
            background: rgba(10, 5, 20, 0.9);
            border-top: 1px solid rgba(217, 70, 239, 0.3);
            padding: 40px 0 30px;
            margin-top: 60px;
            text-align: center;
        }
        .footer-links a {
            margin: 0 10px;
            color: #b89cd9;
        }
        .footer-info {
            margin-top: 20px;
            font-size: 0.9rem;
            color: #8b7aa8;
        }
        .footer-info p {
            margin: 6px 0;
        }
        /* 通用间距 */
        section {
            padding: 50px 0;
        }
        .geo-intro-text {
            font-size: 1.1rem;
            background: rgba(217, 70, 239, 0.05);
            padding: 30px;
            border-radius: 20px;
            border: 1px dashed rgba(217, 70, 239, 0.3);
            margin-bottom: 30px;
        }
        .breadcrumb {
            text-align: center;
            padding: 10px 0;
            color: #a78bbf;
        }
        .breadcrumb a {
            color: #d946ef;
        }
        /* 随机适配 */
        @media (max-width: 768px) {
            h1 { font-size: 2rem; }
            .hero-section { flex-direction: column; }
        }