* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, Arial, sans-serif;
            background: #0f0b1a;
            color: #ffffff;
            line-height: 1.6;
            overflow-x: hidden;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        /* 渐变主色调 */
        .gradient-bg {
            background: linear-gradient(135deg, #ff6b35 0%, #ff2e7d 50%, #a855f7 100%);
        }
        .gradient-text {
            background: linear-gradient(135deg, #ff6b35, #ff2e7d, #a855f7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        /* 导航 */
        nav {
            background: rgba(15, 11, 26, 0.95);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 107, 53, 0.2);
            position: sticky;
            top: 0;
            z-index: 100;
            padding: 12px 0;
        }
        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .nav-links {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .nav-links a {
            color: #e0d9f0;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 6px 12px;
            border-radius: 20px;
            transition: all 0.3s;
        }
        .nav-links a:hover {
            background: linear-gradient(135deg, #ff6b35, #a855f7);
            color: #fff;
            box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
        }
        /* H1 */
        h1 {
            text-align: center;
            font-size: 2.5rem;
            padding: 40px 0 10px;
            font-weight: 800;
        }
        .subhead {
            text-align: center;
            color: #c4b8e3;
            margin-bottom: 30px;
            font-size: 1.1rem;
        }
        /* 卡片 */
        .card {
            background: linear-gradient(145deg, #1e1633, #2a1f40);
            border-radius: 20px;
            padding: 24px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.4);
            border: 1px solid rgba(255, 107, 53, 0.15);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(255, 107, 53, 0.2);
        }
        .card h2, .card h3 {
            background: linear-gradient(135deg, #ff6b35, #ff2e7d);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 16px;
        }
        /* 图片 */
        .img-fluid {
            width: 100%;
            border-radius: 14px;
            object-fit: cover;
            margin: 12px 0;
            border: 1px solid rgba(255, 107, 53, 0.1);
        }
        .img-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 16px;
        }
        /* 区块间距 */
        section {
            padding: 50px 0;
        }
        .section-title {
            font-size: 2rem;
            margin-bottom: 30px;
            text-align: center;
        }
        /* 新闻卡片 */
        .news-item {
            background: rgba(30, 22, 51, 0.8);
            border-radius: 16px;
            padding: 20px;
            margin-bottom: 20px;
            border-left: 4px solid #ff6b35;
        }
        .news-date {
            color: #ff2e7d;
            font-weight: 600;
            font-size: 0.9rem;
        }
        /* FAQ */
        .faq-item {
            background: rgba(30, 22, 51, 0.6);
            border-radius: 16px;
            padding: 20px;
            margin-bottom: 16px;
            border: 1px solid rgba(168, 85, 247, 0.2);
        }
        .faq-question {
            font-weight: 700;
            font-size: 1.1rem;
            color: #ff6b35;
            cursor: pointer;
        }
        .faq-answer {
            margin-top: 12px;
            color: #c4b8e3;
        }
        /* 页脚 */
        footer {
            background: #0a0714;
            border-top: 1px solid rgba(255, 107, 53, 0.2);
            padding: 40px 0 20px;
            margin-top: 40px;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 30px;
        }
        .footer-links a {
            color: #a78bfa;
            text-decoration: none;
            margin: 0 10px;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: #ff6b35;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.05);
            margin-top: 30px;
            padding-top: 20px;
            text-align: center;
            color: #7b6d9e;
            font-size: 0.85rem;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px 20px;
            margin: 20px 0;
        }
        .friend-links a {
            color: #a78bfa;
        }
        /* 数据统计 */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 20px;
        }
        .stat-item {
            text-align: center;
            padding: 20px;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, #ff6b35, #a855f7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .stat-label {
            color: #c4b8e3;
            margin-top: 6px;
        }
        .btn {
            display: inline-block;
            padding: 12px 32px;
            border-radius: 30px;
            background: linear-gradient(135deg, #ff6b35, #a855f7);
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }
        .btn:hover {
            transform: scale(1.05);
            box-shadow: 0 0 30px rgba(255, 107, 53, 0.4);
        }
        .cta-section {
            text-align: center;
            padding: 60px 20px;
        }
        @media (max-width: 768px) {
            h1 { font-size: 1.8rem; }
            .nav-links { gap: 12px; }
        }