* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', 'PingFang SC', Roboto, system-ui, -apple-system, sans-serif;
            background: linear-gradient(145deg, #1a0a2e 0%, #2d1250 40%, #4a1a6f 100%);
            color: #f0e6ff;
            line-height: 1.7;
            min-height: 100vh;
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #1a0a2e;
        }
        ::-webkit-scrollbar-thumb {
            background: #7b3fbf;
            border-radius: 30px;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        /* 导航 */
        .navbar {
            background: rgba(26, 10, 46, 0.7);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(123, 63, 191, 0.25);
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 8px 32px rgba(0,0,0,0.5);
        }
        .navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 1.6rem;
            font-weight: 700;
            background: linear-gradient(135deg, #d4b0ff, #a855f7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 1px;
        }
        .nav-links {
            display: flex;
            gap: 28px;
            flex-wrap: wrap;
        }
        .nav-links a {
            color: #d4c2f0;
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: 0.3s;
        }
        .nav-links a:hover {
            color: #fff;
            border-bottom-color: #a855f7;
        }
        /* H1区域 */
        .hero-section {
            padding: 60px 0 40px;
            text-align: center;
        }
        h1 {
            font-size: 3rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f0e6ff, #c084fc, #a855f7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 24px;
            letter-spacing: 2px;
            line-height: 1.3;
        }
        .geo-intro {
            background: rgba(255,255,255,0.04);
            backdrop-filter: blur(10px);
            border-radius: 32px;
            padding: 40px 48px;
            margin: 20px 0 50px;
            border: 1px solid rgba(168, 85, 247, 0.2);
            font-size: 1.1rem;
            text-align: left;
            box-shadow: 0 8px 32px rgba(0,0,0,0.3);
        }
        .geo-intro p {
            margin-bottom: 16px;
            color: #e2d4f7;
        }
        /* 卡片通用 */
        .glass-card {
            background: rgba(255,255,255,0.06);
            backdrop-filter: blur(12px);
            border-radius: 28px;
            padding: 32px 36px;
            border: 1px solid rgba(168, 85, 247, 0.15);
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(0,0,0,0.2);
        }
        .glass-card:hover {
            border-color: rgba(168, 85, 247, 0.4);
            box-shadow: 0 12px 40px rgba(168, 85, 247, 0.15);
            transform: translateY(-2px);
        }
        .section-title {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 32px;
            color: #d4b0ff;
            letter-spacing: 1px;
            position: relative;
            display: inline-block;
        }
        .section-title::after {
            content: '';
            display: block;
            width: 70%;
            height: 3px;
            background: linear-gradient(90deg, #a855f7, #7c3aed);
            border-radius: 10px;
            margin-top: 8px;
        }
        .grid-2col, .grid-3col {
            display: grid;
            gap: 28px;
        }
        .grid-2col {
            grid-template-columns: 1fr 1fr;
        }
        .grid-3col {
            grid-template-columns: 1fr 1fr 1fr;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 20px;
            display: block;
            box-shadow: 0 8px 24px rgba(0,0,0,0.3);
            transition: transform 0.3s;
        }
        img:hover {
            transform: scale(1.02);
        }
        .img-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        /* 数据统计 */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        .stat-item {
            text-align: center;
            background: rgba(255,255,255,0.04);
            padding: 24px 12px;
            border-radius: 24px;
            border: 1px solid rgba(168, 85, 247, 0.1);
        }
        .stat-number {
            font-size: 2.6rem;
            font-weight: 800;
            background: linear-gradient(135deg, #c084fc, #f0e6ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .stat-label {
            color: #b9a2d9;
            margin-top: 8px;
            font-size: 1rem;
        }
        /* 新闻 + FAQ */
        .news-item, .faq-item {
            background: rgba(255,255,255,0.04);
            backdrop-filter: blur(8px);
            border-radius: 24px;
            padding: 24px 28px;
            margin-bottom: 20px;
            border: 1px solid rgba(168, 85, 247, 0.1);
        }
        .news-item h3 {
            font-size: 1.4rem;
            color: #e0ccff;
            margin-bottom: 8px;
        }
        .news-date {
            color: #a78bcb;
            font-size: 0.9rem;
            margin-bottom: 12px;
            display: block;
        }
        .faq-item h4 {
            font-size: 1.2rem;
            color: #d4b0ff;
            margin-bottom: 12px;
            cursor: pointer;
        }
        .faq-item p {
            color: #cfbef0;
        }
        .btn-cta {
            display: inline-block;
            background: linear-gradient(135deg, #7c3aed, #a855f7);
            padding: 14px 44px;
            border-radius: 60px;
            color: white;
            font-weight: 600;
            text-decoration: none;
            font-size: 1.2rem;
            border: none;
            box-shadow: 0 8px 28px rgba(168, 85, 247, 0.4);
            transition: 0.3s;
        }
        .btn-cta:hover {
            transform: scale(1.06);
            box-shadow: 0 12px 36px rgba(168, 85, 247, 0.6);
        }
        /* 页脚 */
        .footer {
            background: rgba(12, 4, 24, 0.8);
            backdrop-filter: blur(16px);
            border-top: 1px solid rgba(168, 85, 247, 0.2);
            padding: 48px 0 32px;
            margin-top: 60px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 30px;
        }
        .footer a {
            color: #b9a2d9;
            text-decoration: none;
            transition: 0.2s;
        }
        .footer a:hover {
            color: #d4b0ff;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
            margin: 20px 0;
            justify-content: center;
        }
        .footer-note {
            text-align: center;
            color: #8f78b0;
            font-size: 0.9rem;
            margin-top: 30px;
            border-top: 1px solid rgba(168, 85, 247, 0.1);
            padding-top: 24px;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 18px;
            margin: 20px 0;
        }
        .friend-links a {
            color: #c4ace0;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            .grid-2col, .grid-3col, .stats-grid { grid-template-columns: 1fr 1fr; }
            .navbar .container { flex-direction: column; gap: 12px; }
            .nav-links { justify-content: center; gap: 16px; }
            .geo-intro { padding: 24px; }
        }
        @media (max-width: 480px) {
            .stats-grid { grid-template-columns: 1fr 1fr; }
            .grid-2col, .grid-3col { grid-template-columns: 1fr; }
        }