* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
        }
        body {
            background: linear-gradient(145deg, #0a0a0a 0%, #1a1a2e 60%, #2d1b00 100%);
            color: #e5e7eb;
            min-height: 100vh;
            line-height: 1.7;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        /* 导航 */
        .navbar {
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(251, 191, 36, 0.25);
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 30px rgba(0,0,0,0.6);
        }
        .nav-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px 20px;
        }
        .nav-links a {
            color: #fbbf24;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            padding: 6px 14px;
            border-radius: 30px;
            border: 1px solid transparent;
            transition: all 0.3s;
            letter-spacing: 0.5px;
        }
        .nav-links a:hover {
            background: rgba(251, 191, 36, 0.12);
            border-color: #fbbf24;
            box-shadow: 0 0 20px rgba(251,191,36,0.15);
        }
        /* H1 */
        .hero-title {
            text-align: center;
            padding: 60px 0 20px;
        }
        .hero-title h1 {
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #fbbf24, #f59e0b, #fbbf24);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 40px rgba(251,191,36,0.2);
            letter-spacing: 2px;
        }
        .sub-glow {
            font-size: 1.1rem;
            color: #d4a373;
            margin-top: 8px;
            letter-spacing: 4px;
        }
        /* 通用区块 */
        section {
            margin: 50px 0;
        }
        .card-gold {
            background: rgba(255,255,255,0.04);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(251,191,36,0.25);
            border-radius: 32px;
            padding: 40px 35px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.5), inset 0 1px 0 rgba(251,191,36,0.1);
            transition: 0.3s;
        }
        .card-gold:hover {
            border-color: rgba(251,191,36,0.5);
            box-shadow: 0 8px 48px rgba(251,191,36,0.08);
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #fbbf24;
            margin-bottom: 28px;
            display: flex;
            align-items: center;
            gap: 12px;
            border-bottom: 2px solid rgba(251,191,36,0.2);
            padding-bottom: 12px;
        }
        .grid-2, .grid-3, .grid-4 {
            display: grid;
            gap: 28px;
        }
        .grid-2 { grid-template-columns: repeat(2,1fr); }
        .grid-3 { grid-template-columns: repeat(3,1fr); }
        .grid-4 { grid-template-columns: repeat(4,1fr); }
        @media (max-width: 768px) {
            .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
            .hero-title h1 { font-size: 1.8rem; }
        }
        .img-fluid {
            width: 100%;
            height: auto;
            border-radius: 20px;
            border: 1px solid rgba(251,191,36,0.15);
            transition: 0.4s;
        }
        .img-fluid:hover {
            transform: scale(1.01);
            border-color: #fbbf24;
        }
        .btn-gold {
            display: inline-block;
            background: linear-gradient(135deg, #fbbf24, #d97706);
            color: #0a0a0a;
            font-weight: 700;
            padding: 14px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-size: 1.1rem;
            transition: 0.3s;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(251,191,36,0.25);
        }
        .btn-gold:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(251,191,36,0.4);
        }
        .text-glow {
            color: #fbbf24;
        }
        /* 新闻卡片 */
        .news-item {
            background: rgba(255,255,255,0.03);
            border-radius: 24px;
            padding: 24px;
            border-left: 4px solid #fbbf24;
            margin-bottom: 20px;
            transition: 0.3s;
        }
        .news-item:hover {
            background: rgba(251,191,36,0.05);
            transform: translateX(6px);
        }
        .news-item small {
            color: #a78a6f;
            font-size: 0.85rem;
        }
        .news-item h3 {
            color: #fbbf24;
            font-size: 1.3rem;
            margin: 6px 0 10px;
        }
        .news-item p {
            color: #d1d5db;
        }
        /* FAQ */
        .faq-item {
            background: rgba(255,255,255,0.02);
            border-radius: 20px;
            padding: 24px;
            margin-bottom: 16px;
            border: 1px solid rgba(251,191,36,0.1);
        }
        .faq-item strong {
            color: #fbbf24;
            font-size: 1.15rem;
        }
        .faq-item p {
            margin-top: 10px;
            color: #cbd5e1;
        }
        /* 页脚 */
        .footer {
            background: rgba(0,0,0,0.7);
            backdrop-filter: blur(10px);
            border-top: 1px solid rgba(251,191,36,0.15);
            padding: 40px 0 25px;
            margin-top: 60px;
        }
        .footer .container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 20px;
        }
        .footer a {
            color: #fbbf24;
            text-decoration: none;
        }
        .footer a:hover {
            text-decoration: underline;
        }
        .footer-bottom {
            text-align: center;
            margin-top: 25px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.05);
            font-size: 0.9rem;
            color: #9ca3af;
        }
        .stat-number {
            font-size: 2.4rem;
            font-weight: 800;
            color: #fbbf24;
            line-height: 1.2;
        }
        .stat-label {
            color: #b0a8a0;
            font-size: 0.95rem;
        }
        .gold-line {
            height: 2px;
            width: 60px;
            background: linear-gradient(90deg, transparent, #fbbf24, transparent);
            margin: 8px 0 16px;
        }