* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', 'PingFang SC', Roboto, 'Helvetica Neue', sans-serif;
            background: linear-gradient(135deg, #0b1120 0%, #1a1a2e 100%);
            color: #e5e7eb;
            line-height: 1.6;
            min-height: 100vh;
        }
        a {
            color: #fbbf24;
            text-decoration: none;
            transition: 0.3s ease;
        }
        a:hover {
            color: #fde68a;
            text-shadow: 0 0 10px rgba(251,191,36,0.3);
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        /* 导航栏 */
        header {
            background: rgba(11,17,32,0.7);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-bottom: 1px solid rgba(251,191,36,0.15);
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
        }
        .logo-area {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .logo-icon {
            font-size: 28px;
        }
        .logo-text {
            font-size: 22px;
            font-weight: 700;
            background: linear-gradient(to right, #fbbf24, #fde68a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .nav-links {
            display: flex;
            gap: 8px 20px;
            flex-wrap: wrap;
        }
        .nav-links a {
            font-size: 15px;
            font-weight: 500;
            padding: 6px 10px;
            border-radius: 8px;
            background: rgba(251,191,36,0.05);
            backdrop-filter: blur(4px);
            border: 1px solid rgba(251,191,36,0.08);
        }
        .nav-links a:hover {
            background: rgba(251,191,36,0.15);
            border-color: #fbbf24;
        }
        /* 通用卡片 */
        .card-glass {
            background: rgba(255,255,255,0.04);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border: 1px solid rgba(251,191,36,0.12);
            border-radius: 24px;
            padding: 32px 28px;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        }
        .card-glass:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 40px rgba(251,191,36,0.08);
            border-color: rgba(251,191,36,0.3);
        }
        h1, h2, h3 {
            font-weight: 600;
            letter-spacing: 0.02em;
        }
        h1 {
            font-size: 2.6rem;
            background: linear-gradient(to right, #fbbf24, #fde68a, #fbbf24);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 20px;
        }
        h2 {
            font-size: 2rem;
            color: #fbbf24;
            margin-bottom: 24px;
            position: relative;
            display: inline-block;
        }
        h2::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 60%;
            height: 3px;
            background: linear-gradient(90deg, #fbbf24, transparent);
            border-radius: 3px;
        }
        .section-padding {
            padding: 80px 0;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }
        .grid-3 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .grid-4 {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        .img-resp {
            width: 100%;
            height: auto;
            border-radius: 16px;
            object-fit: cover;
            border: 1px solid rgba(251,191,36,0.1);
            transition: 0.4s;
        }
        .img-resp:hover {
            border-color: #fbbf24;
            transform: scale(1.01);
        }
        .badge {
            display: inline-block;
            background: rgba(251,191,36,0.15);
            padding: 4px 14px;
            border-radius: 40px;
            font-size: 13px;
            color: #fbbf24;
            border: 1px solid #fbbf2433;
            margin-bottom: 12px;
        }
        .btn-gold {
            display: inline-block;
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            color: #0b1120;
            font-weight: 600;
            padding: 12px 32px;
            border-radius: 60px;
            border: none;
            cursor: pointer;
            transition: 0.3s;
            font-size: 16px;
            box-shadow: 0 6px 20px rgba(251,191,36,0.2);
        }
        .btn-gold:hover {
            transform: scale(1.03);
            box-shadow: 0 10px 30px rgba(251,191,36,0.35);
            color: #0b1120;
        }
        .stat-number {
            font-size: 2.8rem;
            font-weight: 700;
            color: #fbbf24;
            line-height: 1.2;
        }
        hr {
            border: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, #fbbf2433, transparent);
            margin: 40px 0;
        }
        /* 页脚 */
        footer {
            background: rgba(11,17,32,0.8);
            backdrop-filter: blur(12px);
            border-top: 1px solid rgba(251,191,36,0.08);
            padding: 40px 0 20px;
            margin-top: 40px;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
            justify-content: center;
            margin-bottom: 20px;
        }
        .footer-bottom {
            text-align: center;
            opacity: 0.7;
            font-size: 14px;
        }
        .faq-item {
            margin-bottom: 24px;
            border-bottom: 1px solid rgba(251,191,36,0.06);
            padding-bottom: 20px;
        }
        .faq-question {
            font-weight: 600;
            font-size: 1.1rem;
            color: #fbbf24;
            margin-bottom: 10px;
        }
        .news-card {
            background: rgba(255,255,255,0.03);
            border-radius: 20px;
            padding: 20px;
            border: 1px solid rgba(251,191,36,0.06);
            transition: 0.3s;
        }
        .news-card:hover {
            border-color: #fbbf2440;
            background: rgba(251,191,36,0.04);
        }
        .news-date {
            font-size: 13px;
            color: #9ca3af;
            margin-bottom: 6px;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2rem; }
            .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
            .header-inner { flex-direction: column; align-items: flex-start; }
        }