* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }
        body {
            background: linear-gradient(135deg, #0f1a12 0%, #1a3a2a 100%);
            color: #e2e8f0;
            min-height: 100vh;
            line-height: 1.6;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        /* 导航 */
        nav {
            background: rgba(15, 26, 18, 0.85);
            backdrop-filter: blur(18px);
            border-bottom: 1px solid rgba(74, 222, 128, 0.15);
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .nav-logo {
            font-size: 1.4rem;
            font-weight: 700;
            background: linear-gradient(135deg, #4ade80, #22c55e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: -0.5px;
        }
        .nav-links {
            display: flex;
            gap: 28px;
            align-items: center;
            flex-wrap: wrap;
        }
        .nav-links a {
            color: #cbd5e1;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.2s, transform 0.2s;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            color: #4ade80;
            border-bottom-color: #4ade80;
            transform: translateY(-1px);
        }
        /* H1 */
        .hero-header {
            text-align: center;
            padding: 64px 0 40px;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f0fdf4, #4ade80);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: -1px;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        .geo-desc {
            max-width: 800px;
            margin: 0 auto 32px;
            color: #94a3b8;
            font-size: 1.05rem;
            line-height: 1.8;
        }
        /* 通用卡片 */
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            margin: 40px 0;
        }
        .glass-card {
            background: rgba(255, 255, 255, 0.04);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(74, 222, 128, 0.12);
            border-radius: 20px;
            padding: 28px 24px;
            transition: all 0.3s ease;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }
        .glass-card:hover {
            border-color: #4ade80;
            box-shadow: 0 0 30px rgba(74, 222, 128, 0.15);
            transform: translateY(-4px);
        }
        .glass-card h2, .glass-card h3 {
            color: #f0fdf4;
            font-size: 1.5rem;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .glass-card p {
            color: #cbd5e1;
            font-size: 0.95rem;
        }
        .glass-card img {
            width: 100%;
            height: auto;
            border-radius: 12px;
            margin-bottom: 16px;
            border: 1px solid rgba(74, 222, 128, 0.1);
        }
        .section-title {
            font-size: 2rem;
            font-weight: 700;
            color: #f0fdf4;
            margin: 56px 0 24px;
            text-align: center;
            position: relative;
        }
        .section-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background: #4ade80;
            margin: 12px auto 0;
            border-radius: 4px;
        }
        /* 新闻卡片 */
        .news-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(74, 222, 128, 0.1);
            border-radius: 16px;
            padding: 24px;
            transition: 0.3s;
        }
        .news-card:hover {
            border-color: #4ade80;
            box-shadow: 0 0 20px rgba(74, 222, 128, 0.08);
        }
        .news-date {
            color: #4ade80;
            font-size: 0.85rem;
            font-weight: 500;
            margin-bottom: 8px;
            display: inline-block;
            background: rgba(74, 222, 128, 0.1);
            padding: 2px 12px;
            border-radius: 20px;
        }
        .news-card h3 {
            color: #f0fdf4;
            font-size: 1.2rem;
            margin-bottom: 10px;
        }
        .news-card p {
            color: #94a3b8;
            font-size: 0.9rem;
            line-height: 1.7;
        }
        /* FAQ */
        .faq-item {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(74, 222, 128, 0.08);
            border-radius: 16px;
            padding: 20px 24px;
            margin-bottom: 16px;
        }
        .faq-question {
            font-weight: 600;
            color: #4ade80;
            font-size: 1.1rem;
            margin-bottom: 8px;
        }
        .faq-answer {
            color: #cbd5e1;
            font-size: 0.95rem;
            line-height: 1.7;
        }
        /* 页脚 */
        footer {
            background: rgba(15, 26, 18, 0.9);
            border-top: 1px solid rgba(74, 222, 128, 0.1);
            padding: 48px 0 32px;
            margin-top: 64px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 32px;
            margin-bottom: 32px;
        }
        .footer-col h4 {
            color: #f0fdf4;
            font-size: 1rem;
            margin-bottom: 16px;
            font-weight: 600;
        }
        .footer-col a, .footer-col p {
            color: #94a3b8;
            font-size: 0.9rem;
            display: block;
            margin-bottom: 8px;
            text-decoration: none;
        }
        .footer-col a:hover {
            color: #4ade80;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 24px;
            text-align: center;
            color: #64748b;
            font-size: 0.85rem;
        }
        .footer-bottom a {
            color: #4ade80;
            text-decoration: none;
            margin: 0 8px;
        }
        .footer-bottom a:hover {
            text-decoration: underline;
        }
        .friend-links {
            margin: 16px 0;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
        }
        .friend-links a {
            color: #94a3b8;
            font-size: 0.85rem;
        }
        .friend-links a:hover {
            color: #4ade80;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2rem; }
            .nav-links { gap: 12px; }
            .nav-links a { font-size: 0.8rem; }
            .card-grid { grid-template-columns: 1fr; }
        }
        /* 图片占位 */
        img {
            object-fit: cover;
        }
        .img-row {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            justify-content: center;
            margin: 32px 0;
        }
        .img-row img {
            width: 200px;
            height: 130px;
            border-radius: 12px;
            border: 1px solid rgba(74, 222, 128, 0.15);
        }
        .stats-number {
            font-size: 2.2rem;
            font-weight: 800;
            color: #4ade80;
        }
        .stats-label {
            color: #94a3b8;
            font-size: 0.9rem;
        }
        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #4ade80, #22c55e);
            color: #0f1a12;
            font-weight: 700;
            padding: 14px 40px;
            border-radius: 40px;
            text-decoration: none;
            font-size: 1.1rem;
            transition: all 0.3s;
            box-shadow: 0 4px 20px rgba(74, 222, 128, 0.3);
        }
        .cta-button:hover {
            transform: scale(1.04);
            box-shadow: 0 6px 30px rgba(74, 222, 128, 0.5);
        }
        .text-center { text-align: center; }
        .mt-24 { margin-top: 24px; }
        .mb-24 { margin-bottom: 24px; }