* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
            color: #e0e0e0;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.7;
            min-height: 100vh;
        }
        a {
            color: #d4af37;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #f1c40f;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        /* 导航 */
        nav {
            background: rgba(10,10,10,0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid #2a2a2a;
            position: sticky;
            top: 0;
            z-index: 100;
            padding: 15px 0;
        }
        nav .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        nav .nav-links {
            display: flex;
            gap: 25px;
            flex-wrap: wrap;
        }
        nav .nav-links a {
            font-size: 15px;
            font-weight: 500;
            letter-spacing: 0.5px;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
        }
        nav .nav-links a:hover {
            border-bottom-color: #d4af37;
        }
        /* H1 */
        h1 {
            font-size: 2.6rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-align: center;
            margin: 60px 0 20px;
            color: #fff;
            background: linear-gradient(135deg, #fff, #d4af37);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .subhead {
            text-align: center;
            font-size: 1.1rem;
            color: #aaa;
            margin-bottom: 50px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        /* 通用区块 */
        section {
            margin: 70px 0;
        }
        h2 {
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 30px;
            color: #f0f0f0;
            border-left: 4px solid #d4af37;
            padding-left: 18px;
        }
        h3 {
            font-size: 1.3rem;
            font-weight: 500;
            margin-bottom: 15px;
            color: #ddd;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }
        .card {
            background: #1e1e1e;
            border-radius: 16px;
            padding: 28px 24px;
            transition: all 0.3s ease;
            border: 1px solid #2a2a2a;
        }
        .card:hover {
            transform: translateY(-4px);
            border-color: #d4af37;
            box-shadow: 0 12px 30px rgba(212,175,55,0.08);
        }
        .card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 18px;
            background: #2a2a2a;
        }
        .card p {
            color: #bbb;
            font-size: 0.95rem;
        }
        .btn {
            display: inline-block;
            background: #d4af37;
            color: #0a0a0a;
            padding: 12px 32px;
            border-radius: 40px;
            font-weight: 600;
            margin-top: 20px;
            transition: background 0.3s;
        }
        .btn:hover {
            background: #f1c40f;
            color: #0a0a0a;
        }
        .text-center {
            text-align: center;
        }
        .flex-center {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
        }
        .stat {
            text-align: center;
        }
        .stat .num {
            font-size: 2.8rem;
            font-weight: 700;
            color: #d4af37;
        }
        .stat .label {
            color: #999;
            font-size: 0.95rem;
        }
        /* 新闻 */
        .news-item {
            background: #1e1e1e;
            border-radius: 14px;
            padding: 20px 24px;
            margin-bottom: 20px;
            border-left: 3px solid #d4af37;
        }
        .news-item .meta {
            font-size: 0.85rem;
            color: #888;
            margin-bottom: 8px;
        }
        .news-item h3 {
            margin-bottom: 8px;
        }
        .news-item p {
            color: #aaa;
            font-size: 0.95rem;
        }
        /* FAQ */
        .faq-item {
            background: #1a1a1a;
            border-radius: 12px;
            padding: 20px 24px;
            margin-bottom: 16px;
            border: 1px solid #2a2a2a;
        }
        .faq-item h3 {
            font-size: 1.1rem;
            color: #d4af37;
            margin-bottom: 10px;
        }
        .faq-item p {
            color: #bbb;
        }
        /* 页脚 */
        footer {
            background: #0d0d0d;
            border-top: 1px solid #2a2a2a;
            padding: 50px 0 30px;
            margin-top: 80px;
        }
        footer .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px 25px;
            margin-bottom: 25px;
        }
        footer .footer-links a {
            color: #aaa;
            font-size: 0.9rem;
        }
        footer .footer-links a:hover {
            color: #d4af37;
        }
        footer .address {
            text-align: center;
            color: #777;
            font-size: 0.85rem;
            margin-bottom: 10px;
        }
        footer .copyright {
            text-align: center;
            color: #666;
            font-size: 0.8rem;
            margin-top: 20px;
        }
        /* 响应式 */
        @media (max-width: 768px) {
            h1 { font-size: 1.8rem; }
            nav .nav-links { gap: 12px; }
            nav .nav-links a { font-size: 13px; }
            .card-grid { grid-template-columns: 1fr; }
        }