* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
        }
        body {
            background: linear-gradient(135deg, #1a0a2e 0%, #2d1b4e 50%, #4a1c6e 100%);
            color: #e0d4f0;
            min-height: 100vh;
            line-height: 1.6;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        /* 导航 */
        nav {
            background: rgba(26, 10, 46, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(217, 70, 239, 0.3);
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        nav .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .nav-links {
            display: flex;
            gap: 28px;
            flex-wrap: wrap;
        }
        .nav-links a {
            color: #d4b8f0;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: all 0.3s;
        }
        .nav-links a:hover {
            color: #d946ef;
            border-bottom-color: #d946ef;
        }
        /* H1 */
        .hero-title {
            text-align: center;
            padding: 60px 20px 30px;
        }
        .hero-title h1 {
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #d946ef, #f0abfc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 40px rgba(217, 70, 239, 0.3);
        }
        .geo-desc {
            max-width: 800px;
            margin: 20px auto 0;
            text-align: center;
            font-size: 1.1rem;
            color: #c4b0e0;
            line-height: 1.8;
        }
        /* 卡片通用 */
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            padding: 20px 0;
        }
        .card {
            background: rgba(30, 15, 50, 0.7);
            border: 1px solid rgba(217, 70, 239, 0.3);
            border-radius: 16px;
            padding: 24px;
            backdrop-filter: blur(8px);
            box-shadow: 0 0 20px rgba(217, 70, 239, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 0 30px rgba(217, 70, 239, 0.25);
        }
        .card h3 {
            color: #d946ef;
            font-size: 1.3rem;
            margin-bottom: 12px;
        }
        .card p {
            color: #b8a0d0;
            font-size: 0.95rem;
        }
        .card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 14px;
            border: 1px solid rgba(217, 70, 239, 0.2);
        }
        /* 区块标题 */
        .section-title {
            font-size: 2rem;
            font-weight: 700;
            text-align: center;
            margin: 40px 0 20px;
            color: #f0abfc;
            position: relative;
        }
        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, #d946ef, #7c3aed);
            margin: 12px auto 0;
            border-radius: 4px;
        }
        /* 新闻卡片 */
        .news-card {
            background: rgba(30, 15, 50, 0.8);
            border: 1px solid rgba(217, 70, 239, 0.25);
            border-radius: 14px;
            padding: 20px;
            transition: all 0.3s;
        }
        .news-card:hover {
            border-color: #d946ef;
            box-shadow: 0 0 20px rgba(217, 70, 239, 0.15);
        }
        .news-card .date {
            color: #a78bfa;
            font-size: 0.85rem;
            margin-bottom: 8px;
            display: block;
        }
        .news-card h4 {
            color: #e0d4f0;
            font-size: 1.1rem;
            margin-bottom: 8px;
        }
        .news-card p {
            color: #b0a0c8;
            font-size: 0.9rem;
            line-height: 1.6;
        }
        /* FAQ */
        .faq-item {
            background: rgba(30, 15, 50, 0.6);
            border: 1px solid rgba(217, 70, 239, 0.2);
            border-radius: 12px;
            padding: 20px 24px;
            margin-bottom: 16px;
            transition: 0.3s;
        }
        .faq-item:hover {
            border-color: #d946ef;
        }
        .faq-item h4 {
            color: #d946ef;
            font-size: 1.1rem;
            margin-bottom: 10px;
        }
        .faq-item p {
            color: #b8a0d0;
            font-size: 0.95rem;
        }
        /* 页脚 */
        footer {
            background: rgba(10, 5, 20, 0.9);
            border-top: 1px solid rgba(217, 70, 239, 0.2);
            padding: 40px 0 20px;
            margin-top: 60px;
        }
        footer .container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 16px;
            text-align: center;
        }
        footer .links {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            justify-content: center;
        }
        footer .links a {
            color: #a78bfa;
            text-decoration: none;
            font-size: 0.9rem;
        }
        footer .links a:hover {
            color: #d946ef;
        }
        footer .copyright {
            color: #7a6a90;
            font-size: 0.85rem;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            justify-content: center;
            padding: 16px 0;
            border-top: 1px solid rgba(217, 70, 239, 0.15);
            margin-top: 16px;
            width: 100%;
        }
        .friend-links a {
            color: #b0a0c8;
            text-decoration: none;
            font-size: 0.85rem;
        }
        .friend-links a:hover {
            color: #d946ef;
        }
        /* CTA */
        .cta-box {
            background: linear-gradient(135deg, rgba(217, 70, 239, 0.15), rgba(124, 58, 237, 0.15));
            border: 1px solid rgba(217, 70, 239, 0.4);
            border-radius: 20px;
            padding: 40px;
            text-align: center;
            margin: 30px 0;
        }
        .cta-box h2 {
            font-size: 1.8rem;
            color: #f0abfc;
            margin-bottom: 16px;
        }
        .cta-box p {
            color: #c4b0e0;
            font-size: 1.05rem;
            max-width: 600px;
            margin: 0 auto 20px;
        }
        .cta-box a {
            display: inline-block;
            background: linear-gradient(135deg, #d946ef, #7c3aed);
            color: #fff;
            padding: 14px 36px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .cta-box a:hover {
            transform: scale(1.05);
            box-shadow: 0 0 30px rgba(217, 70, 239, 0.4);
        }
        /* 响应式 */
        @media (max-width: 768px) {
            .hero-title h1 { font-size: 1.8rem; }
            .nav-links { gap: 16px; }
            .card-grid { grid-template-columns: 1fr; }
        }