* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Segoe UI', system-ui, -apple-system, sans-serif; background: linear-gradient(145deg, #1a0a0a 0%, #2d0f0f 50%, #1a0a0a 100%); color: #f0e6d3; line-height: 1.7; min-height: 100vh; }
        .container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

        /* 导航 */
        .navbar { background: rgba(74, 10, 10, 0.92); backdrop-filter: blur(12px); border-bottom: 2px solid #b8860b; padding: 14px 0; position: sticky; top: 0; z-index: 100; box-shadow: 0 4px 30px rgba(0,0,0,0.6); }
        .navbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
        .logo { font-size: 1.8rem; font-weight: 800; background: linear-gradient(135deg, #e8c87a, #d4a843); -webkit-background-clip: text; -webkit-text-fill-color: transparent; letter-spacing: 2px; }
        .nav-links { display: flex; gap: 20px; flex-wrap: wrap; }
        .nav-links a { color: #f0e6d3; text-decoration: none; font-weight: 600; font-size: 1rem; padding: 6px 14px; border-radius: 30px; transition: 0.3s; border: 1px solid transparent; }
        .nav-links a:hover { background: #991b1b; border-color: #b8860b; color: #fff; text-shadow: 0 0 10px rgba(255,215,0,0.3); }

        /* 通用标题 */
        h1 { font-size: 3.2rem; text-align: center; padding: 40px 0 10px; background: linear-gradient(135deg, #e8c87a, #f7e6b0); -webkit-background-clip: text; -webkit-text-fill-color: transparent; letter-spacing: 4px; }
        h2 { font-size: 2.2rem; color: #e8c87a; border-left: 6px solid #b8860b; padding-left: 20px; margin: 50px 0 30px; text-transform: uppercase; }
        .section-sub { text-align: center; color: #c0a86a; margin-bottom: 30px; font-style: italic; }

        /* 卡片 */
        .card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; margin: 30px 0; }
        .card { background: rgba(30, 10, 10, 0.8); border: 1px solid #b8860b; border-radius: 20px; padding: 24px; backdrop-filter: blur(4px); transition: 0.3s; box-shadow: 0 10px 25px rgba(0,0,0,0.5); }
        .card:hover { transform: translateY(-6px); border-color: #e8c87a; box-shadow: 0 15px 40px rgba(184,134,11,0.3); }
        .card h3 { color: #e8c87a; font-size: 1.4rem; margin-bottom: 14px; }
        .card p { color: #d4c9b5; font-size: 0.95rem; }

        /* 图片 */
        .img-card { width: 100%; height: 200px; object-fit: cover; border-radius: 14px; border: 2px solid #6b3a1f; margin-bottom: 16px; }
        .img-hero { width: 100%; max-height: 450px; object-fit: cover; border-radius: 28px; border: 3px solid #b8860b; margin: 20px 0; }

        /* 按钮 */
        .btn-gold { display: inline-block; padding: 14px 40px; background: linear-gradient(145deg, #b8860b, #d4a843); color: #1a0a0a; font-weight: 700; border-radius: 50px; text-decoration: none; transition: 0.3s; border: 1px solid #e8c87a; box-shadow: 0 4px 15px rgba(184,134,11,0.4); }
        .btn-gold:hover { transform: scale(1.04); background: #e8c87a; box-shadow: 0 8px 25px #b8860b; }

        /* 新闻 */
        .news-list { display: grid; gap: 40px; }
        .news-item { background: rgba(40, 12, 12, 0.7); border-radius: 24px; padding: 28px; border-left: 6px solid #b8860b; transition: 0.3s; }
        .news-item:hover { background: rgba(60, 18, 18, 0.8); }
        .news-date { color: #b8860b; font-weight: 600; font-size: 0.9rem; letter-spacing: 1px; }
        .news-title { font-size: 1.5rem; color: #f7e6b0; margin: 8px 0 12px; }
        .news-summary { color: #ccc0a8; line-height: 1.8; }

        /* FAQ */
        .faq-item { background: rgba(20, 8, 8, 0.7); border-radius: 18px; padding: 24px; margin-bottom: 20px; border: 1px solid #5a2e1a; }
        .faq-q { color: #e8c87a; font-weight: 700; font-size: 1.2rem; margin-bottom: 12px; }
        .faq-a { color: #d4c9b5; }

        /* GEO */
        .geo-block { background: rgba(0,0,0,0.3); border-radius: 30px; padding: 30px; margin: 20px 0; border: 1px solid #4a2a1a; }
        .geo-block p { font-size: 1.05rem; color: #e0d5c0; }

        /* 页脚 */
        .footer { background: #0d0505; border-top: 3px solid #b8860b; padding: 50px 0 30px; margin-top: 80px; }
        .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; margin-bottom: 30px; }
        .footer a { color: #c0a86a; text-decoration: none; transition: 0.2s; }
        .footer a:hover { color: #e8c87a; text-decoration: underline; }
        .footer-bottom { border-top: 1px solid #3a2010; padding-top: 20px; text-align: center; font-size: 0.9rem; color: #8a7a5a; }
        .footer-links { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin: 15px 0; }

        /* 响应式 */
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            .nav-links { gap: 8px; justify-content: center; }
            .nav-links a { font-size: 0.85rem; padding: 4px 10px; }
        }