* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #2d0a0a 0%, #4a0a0a 30%, #6b1a1a 70%, #991b1b 100%);
            color: #f5e6d3;
            line-height: 1.7;
            min-height: 100vh;
        }
        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 24px;
        }
        /* 导航 */
        nav {
            background: linear-gradient(180deg, #3a0a0a 0%, #4a0a0a 100%);
            border-bottom: 3px solid #c9a84c;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 50;
            box-shadow: 0 8px 24px rgba(0,0,0,0.5);
        }
        .nav-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 8px 24px;
        }
        .nav-links a {
            color: #f5e6d3;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            padding: 8px 16px;
            border-radius: 6px;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }
        .nav-links a:hover {
            background: rgba(201, 168, 76, 0.2);
            border-color: #c9a84c;
            transform: translateY(-2px);
            text-shadow: 0 0 12px rgba(201,168,76,0.4);
        }
        /* H1 */
        h1 {
            text-align: center;
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f5e6d3 0%, #c9a84c 80%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 2px;
            padding: 40px 20px 20px;
            text-shadow: 0 4px 20px rgba(201,168,76,0.3);
        }
        /* 卡片通用 */
        .card {
            background: linear-gradient(145deg, #3d1212, #2a0808);
            border: 2px solid #c9a84c;
            border-radius: 16px;
            padding: 28px;
            margin: 28px 0;
            box-shadow: 0 12px 40px rgba(0,0,0,0.6), inset 0 1px 2px rgba(201,168,76,0.1);
            transition: transform 0.2s;
        }
        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.7), 0 0 30px rgba(201,168,76,0.1);
        }
        h2 {
            font-size: 2rem;
            color: #c9a84c;
            border-bottom: 2px solid #c9a84c;
            padding-bottom: 12px;
            margin-bottom: 24px;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        h3 {
            font-size: 1.4rem;
            color: #f5e6d3;
            margin: 16px 0 8px;
        }
        .grid-2, .grid-3, .grid-4 {
            display: grid;
            gap: 24px;
        }
        .grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
        .grid-3 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
        .grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            border: 2px solid #c9a84c;
            box-shadow: 0 6px 20px rgba(0,0,0,0.5);
            display: block;
        }
        .img-wrap {
            overflow: hidden;
            border-radius: 12px;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(135deg, #c9a84c, #b8922e);
            color: #2a0808;
            font-weight: bold;
            padding: 14px 40px;
            border-radius: 40px;
            text-decoration: none;
            font-size: 1.1rem;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            box-shadow: 0 6px 18px rgba(201,168,76,0.4);
        }
        .btn:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(201,168,76,0.6);
        }
        /* 新闻卡片 */
        .news-item {
            background: rgba(255,255,255,0.04);
            border-left: 4px solid #c9a84c;
            padding: 18px;
            border-radius: 8px;
            margin-bottom: 18px;
            transition: background 0.2s;
        }
        .news-item:hover {
            background: rgba(201,168,76,0.08);
        }
        .news-date {
            color: #c9a84c;
            font-weight: 600;
            font-size: 0.9rem;
        }
        .news-title {
            font-size: 1.2rem;
            font-weight: 700;
            margin: 6px 0 8px;
        }
        .news-summary {
            opacity: 0.85;
            font-size: 0.95rem;
        }
        /* FAQ */
        .faq-item {
            padding: 16px 0;
            border-bottom: 1px solid rgba(201,168,76,0.2);
        }
        .faq-q {
            font-weight: 700;
            font-size: 1.15rem;
            color: #c9a84c;
            margin-bottom: 8px;
        }
        .faq-a {
            padding-left: 20px;
            opacity: 0.92;
        }
        /* 页脚 */
        footer {
            background: #1f0505;
            border-top: 3px solid #c9a84c;
            padding: 40px 0 20px;
            margin-top: 60px;
        }
        footer a {
            color: #c9a84c;
            text-decoration: none;
        }
        footer a:hover {
            text-decoration: underline;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px 24px;
            margin: 16px 0;
        }
        .footer-info {
            text-align: center;
            opacity: 0.8;
            font-size: 0.9rem;
        }
        .footer-info p {
            margin: 6px 0;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2rem; }
            .nav-links { gap: 6px 12px; }
            .nav-links a { font-size: 0.9rem; padding: 6px 10px; }
        }