* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
            color: #e0e0e0;
            line-height: 1.6;
            min-height: 100vh;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        /* 导航 */
        nav {
            background: rgba(10, 10, 10, 0.95);
            border-bottom: 1px solid #2a2a2a;
            position: sticky;
            top: 0;
            z-index: 100;
            padding: 16px 0;
        }
        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: #f5c518;
            letter-spacing: 1px;
            text-decoration: none;
        }
        .nav-links {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
        }
        .nav-links a {
            color: #ccc;
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.2s;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            color: #fff;
            border-bottom-color: #f5c518;
        }
        /* H1 */
        h1 {
            font-size: 2.8rem;
            font-weight: 700;
            text-align: center;
            margin: 60px 0 20px;
            background: linear-gradient(135deg, #fff 20%, #f5c518 80%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .subhead {
            text-align: center;
            color: #aaa;
            font-size: 1.1rem;
            margin-bottom: 40px;
        }
        /* 板块通用 */
        section {
            padding: 60px 0;
        }
        .section-title {
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 32px;
            color: #fff;
            border-left: 4px solid #f5c518;
            padding-left: 16px;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
        }
        .card {
            background: #1e1e1e;
            border-radius: 12px;
            padding: 28px;
            transition: transform 0.2s, box-shadow 0.2s;
            border: 1px solid #2a2a2a;
        }
        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 28px rgba(0,0,0,0.6);
        }
        .card h3 {
            font-size: 1.3rem;
            color: #f5c518;
            margin-bottom: 12px;
        }
        .card p, .card li {
            color: #bbb;
            font-size: 0.95rem;
        }
        .card ul {
            list-style: none;
            padding: 0;
        }
        .card ul li::before {
            content: "▸ ";
            color: #f5c518;
        }
        .img-fluid {
            width: 100%;
            border-radius: 10px;
            margin: 16px 0;
            display: block;
            object-fit: cover;
            max-height: 240px;
        }
        .flex-center {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            gap: 24px;
        }
        .btn {
            display: inline-block;
            background: #f5c518;
            color: #0a0a0a;
            font-weight: 600;
            padding: 12px 32px;
            border-radius: 40px;
            text-decoration: none;
            transition: 0.2s;
            margin-top: 16px;
        }
        .btn:hover {
            background: #ffd966;
            transform: scale(1.02);
        }
        /* 新闻 */
        .news-item {
            background: #1e1e1e;
            border-radius: 12px;
            margin-bottom: 20px;
            padding: 24px;
            border-left: 4px solid #f5c518;
        }
        .news-meta {
            color: #888;
            font-size: 0.85rem;
            margin-bottom: 6px;
        }
        .news-item h3 {
            color: #fff;
            font-size: 1.25rem;
            margin-bottom: 8px;
        }
        .news-item p {
            color: #aaa;
            font-size: 0.95rem;
        }
        /* FAQ */
        .faq-item {
            border-bottom: 1px solid #2a2a2a;
            padding: 20px 0;
        }
        .faq-item h4 {
            font-size: 1.1rem;
            color: #f5c518;
            margin-bottom: 8px;
        }
        .faq-item p {
            color: #bbb;
        }
        /* 页脚 */
        footer {
            background: #0d0d0d;
            border-top: 1px solid #222;
            padding: 48px 0 24px;
            margin-top: 40px;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 16px 24px;
            justify-content: center;
            margin-bottom: 24px;
        }
        .footer-links a {
            color: #999;
            text-decoration: none;
            font-size: 0.9rem;
        }
        .footer-links a:hover {
            color: #f5c518;
        }
        .footer-info {
            text-align: center;
            color: #666;
            font-size: 0.85rem;
            line-height: 1.8;
        }
        .footer-info a {
            color: #999;
            text-decoration: none;
        }
        .footer-info a:hover {
            color: #f5c518;
        }
        .friends {
            margin: 16px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            justify-content: center;
        }
        .friends a {
            color: #888;
            font-size: 0.9rem;
        }
        .friends a:hover {
            color: #f5c518;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2rem; }
            .nav-links { gap: 12px; }
        }