* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background: linear-gradient(135deg, #1a0a0a 0%, #2a0f0f 50%, #1a0a0a 100%);
            color: #f0e6d2;
            line-height: 1.6;
            min-height: 100vh;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        /* 导航 */
        .navbar {
            background: linear-gradient(90deg, #4a0a0a, #991b1b);
            padding: 15px 0;
            border-bottom: 2px solid #d4af37;
            box-shadow: 0 4px 10px rgba(0,0,0,0.7);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .nav-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 25px;
        }
        .nav-links a {
            color: #f0e6d2;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1rem;
            letter-spacing: 1px;
            padding: 6px 12px;
            border-radius: 30px;
            transition: 0.3s;
            border: 1px solid transparent;
        }
        .nav-links a:hover {
            background: #d4af37;
            color: #4a0a0a;
            border-color: #d4af37;
            transform: scale(1.05);
        }
        /* H1 */
        h1 {
            text-align: center;
            font-size: 2.8rem;
            margin: 40px 0 20px;
            background: linear-gradient(135deg, #d4af37, #f5d97e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 20px rgba(212,175,55,0.3);
            letter-spacing: 2px;
        }
        /* 卡片 */
        .card-gold {
            background: rgba(74,10,10,0.7);
            border: 2px solid #d4af37;
            border-radius: 20px;
            padding: 25px;
            margin-bottom: 35px;
            backdrop-filter: blur(4px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.6);
            transition: transform 0.2s;
        }
        .card-gold:hover {
            transform: translateY(-4px);
        }
        h2 {
            color: #d4af37;
            font-size: 2rem;
            border-left: 6px solid #991b1b;
            padding-left: 15px;
            margin-bottom: 25px;
        }
        h3 {
            color: #f5d97e;
            font-size: 1.4rem;
            margin: 15px 0 10px;
        }
        /* 图片网格 */
        .img-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 20px 0;
        }
        .img-grid img {
            width: 100%;
            border-radius: 12px;
            border: 2px solid #d4af37;
            object-fit: cover;
            height: 180px;
            background: #2a0f0f;
        }
        /* 新闻卡片 */
        .news-item {
            border-bottom: 1px solid rgba(212,175,55,0.3);
            padding: 20px 0;
        }
        .news-item:last-child { border: none; }
        .news-date {
            color: #b89a4a;
            font-size: 0.9rem;
        }
        /* FAQ */
        .faq-item {
            margin-bottom: 20px;
            border-bottom: 1px solid #3d2a1a;
            padding-bottom: 15px;
        }
        .faq-q {
            font-weight: bold;
            color: #f5d97e;
            cursor: pointer;
        }
        .faq-a {
            margin-top: 8px;
            color: #d4c5a9;
        }
        /* 页脚 */
        .footer {
            background: #0f0505;
            padding: 40px 20px 20px;
            margin-top: 50px;
            border-top: 3px solid #d4af37;
            text-align: center;
        }
        .footer-links a {
            color: #d4af37;
            text-decoration: none;
            margin: 0 10px;
        }
        .footer-links a:hover {
            text-decoration: underline;
        }
        .footer-address {
            margin: 15px 0;
            color: #b89a4a;
        }
        .footer-icp {
            color: #8a7a5a;
            font-size: 0.85rem;
        }
        .btn-cta {
            display: inline-block;
            background: linear-gradient(135deg, #d4af37, #b8860b);
            color: #1a0a0a;
            padding: 16px 48px;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.3rem;
            text-decoration: none;
            transition: 0.3s;
            border: 2px solid #f5d97e;
            margin-top: 20px;
        }
        .btn-cta:hover {
            transform: scale(1.07);
            box-shadow: 0 0 30px #d4af37;
        }
        .stat-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            gap: 20px;
        }
        .stat-item {
            text-align: center;
            min-width: 140px;
        }
        .stat-number {
            font-size: 2.8rem;
            font-weight: bold;
            color: #d4af37;
        }
        .partner-logos {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
        }
        .partner-logos img {
            height: 60px;
            border-radius: 10px;
            background: #2a0f0f;
            padding: 5px;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2rem; }
            .nav-links { gap: 12px; flex-wrap: wrap; }
            .nav-links a { font-size: 0.9rem; }
        }