* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            background: linear-gradient(145deg, #0f1a12 0%, #1a3a2a 100%);
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            color: #e5f0e9;
            line-height: 1.6;
            min-height: 100vh;
            padding: 1rem;
        }
        .wrapper {
            max-width: 1280px;
            margin: 0 auto;
        }
        /* 导航 */
        .navbar {
            background: rgba(15, 26, 18, 0.75);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border: 1px solid rgba(74, 222, 128, 0.2);
            border-radius: 2rem;
            padding: 0.8rem 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-bottom: 2rem;
            box-shadow: 0 8px 32px rgba(0,0,0,0.6);
        }
        .navbar .brand {
            font-size: 1.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, #4ade80, #22c55e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .nav-links {
            display: flex;
            gap: 1.8rem;
            flex-wrap: wrap;
        }
        .nav-links a {
            color: #b8d9c4;
            text-decoration: none;
            font-weight: 500;
            transition: 0.3s;
            font-size: 1rem;
            letter-spacing: 0.3px;
        }
        .nav-links a:hover {
            color: #4ade80;
            text-shadow: 0 0 8px #4ade8066;
        }
        /* 通用卡片 */
        .glass-card {
            background: rgba(26, 58, 42, 0.4);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(74, 222, 128, 0.25);
            border-radius: 2rem;
            padding: 2rem 2.2rem;
            margin-bottom: 2.5rem;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(74, 222, 128, 0.08);
            transition: transform 0.2s;
        }
        .glass-card:hover {
            border-color: #4ade8077;
            box-shadow: 0 8px 30px rgba(0,0,0,0.6), 0 0 35px #4ade8033;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 700;
            text-align: center;
            background: linear-gradient(135deg, #f0fff0, #4ade80);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 1.2rem;
            letter-spacing: 0.5px;
        }
        h2 {
            font-size: 2rem;
            font-weight: 600;
            border-left: 6px solid #4ade80;
            padding-left: 1.2rem;
            margin-bottom: 1.8rem;
            color: #d4ede0;
        }
        h3 {
            font-size: 1.4rem;
            color: #c0e0cf;
            margin-bottom: 0.75rem;
        }
        p {
            margin-bottom: 1.2rem;
            color: #d0e4d8;
        }
        /* 图片网格 */
        .img-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1.5rem;
            margin: 1.8rem 0;
        }
        .img-grid img {
            width: 100%;
            height: 160px;
            object-fit: cover;
            border-radius: 1.5rem;
            border: 2px solid rgba(74, 222, 128, 0.2);
            transition: 0.3s;
            filter: brightness(0.9) saturate(1.1);
        }
        .img-grid img:hover {
            transform: scale(1.02);
            border-color: #4ade80;
            filter: brightness(1) saturate(1.2);
        }
        /* 统计数字 */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 1.8rem;
            text-align: center;
        }
        .stat-item {
            background: rgba(15, 26, 18, 0.5);
            border-radius: 1.6rem;
            padding: 1.4rem 0.5rem;
            border: 1px solid #4ade8033;
            backdrop-filter: blur(4px);
        }
        .stat-item .number {
            font-size: 2.6rem;
            font-weight: 700;
            color: #4ade80;
        }
        .stat-item .label {
            font-size: 0.95rem;
            color: #aac9b8;
            margin-top: 0.3rem;
        }
        /* 新闻 & FAQ */
        .news-item, .faq-item {
            background: rgba(15, 26, 18, 0.3);
            border-radius: 1.5rem;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            border: 1px solid #2d4b3a;
            transition: 0.2s;
        }
        .news-item:hover, .faq-item:hover {
            border-color: #4ade8066;
            background: rgba(15, 26, 18, 0.5);
        }
        .news-item .date {
            color: #4ade80;
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 0.3px;
            margin-bottom: 0.3rem;
            display: inline-block;
            background: #0f1a12;
            padding: 0.1rem 1rem;
            border-radius: 30px;
            border: 1px solid #4ade8066;
        }
        .faq-item strong {
            color: #4ade80;
            display: block;
            margin-bottom: 0.5rem;
            font-size: 1.15rem;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(145deg, #1f4d34, #2b6b48);
            border: none;
            padding: 0.7rem 2rem;
            border-radius: 40px;
            color: white;
            font-weight: 600;
            text-decoration: none;
            transition: 0.25s;
            border: 1px solid #4ade8066;
        }
        .btn:hover {
            background: #2f7a52;
            box-shadow: 0 0 20px #4ade8055;
            transform: translateY(-2px);
        }
        /* 页脚 */
        .footer {
            background: rgba(10, 18, 12, 0.8);
            backdrop-filter: blur(10px);
            padding: 2.5rem 2rem;
            border-radius: 2rem;
            margin-top: 2rem;
            border: 1px solid #2b4b37;
        }
        .footer a {
            color: #86c8a2;
            text-decoration: none;
            margin: 0 0.4rem;
        }
        .footer a:hover {
            color: #4ade80;
        }
        .footer-links, .footer-friend {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.8rem 1.8rem;
            margin-bottom: 1.2rem;
        }
        .footer-meta {
            text-align: center;
            color: #7f9e8c;
            font-size: 0.9rem;
            line-height: 2;
        }
        hr {
            border: 1px solid #2d4b3a;
            margin: 1.8rem 0;
        }
        /* 响应式 */
        @media (max-width: 700px) {
            .navbar {
                flex-direction: column;
                gap: 0.8rem;
                padding: 1rem;
            }
            .nav-links {
                gap: 1rem;
                justify-content: center;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .glass-card {
                padding: 1.5rem 1rem;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }