* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Georgia', 'Times New Roman', serif; background: linear-gradient(145deg, #1a1a1a, #2c0e0e); color: #f5e6d0; line-height: 1.8; min-height: 100vh; }
        .container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
        
        /* 导航 */
        header { background: linear-gradient(135deg, #4a0a0a 0%, #991b1b 100%); border-bottom: 3px solid #d4af37; padding: 12px 0; position: sticky; top: 0; z-index: 1000; box-shadow: 0 4px 30px rgba(0,0,0,0.7); }
        .nav-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 20px; }
        .nav-links a { color: #f5e6d0; text-decoration: none; padding: 8px 20px; border: 1px solid #d4af37; border-radius: 30px; font-size: 16px; transition: 0.3s; letter-spacing: 1px; }
        .nav-links a:hover { background: #d4af37; color: #4a0a0a; transform: scale(1.05); }
        
        /* H1 */
        .hero-title { text-align: center; padding: 50px 20px 30px; }
        .hero-title h1 { font-size: 3.2em; text-shadow: 0 0 20px #d4af37; background: linear-gradient(180deg, #f5e6d0, #d4af37); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; letter-spacing: 3px; }
        .hero-title p { margin-top: 10px; font-size: 1.1em; color: #e0cba0; max-width: 800px; margin-left: auto; margin-right: auto; }
        
        /* 通用区块 */
        .section { background: rgba(30, 10, 10, 0.85); border: 1px solid #d4af37; border-radius: 20px; padding: 40px; margin: 40px 0; backdrop-filter: blur(5px); box-shadow: 0 10px 40px rgba(0,0,0,0.6); }
        .section h2 { font-size: 2em; margin-bottom: 25px; border-left: 5px solid #d4af37; padding-left: 15px; color: #d4af37; }
        
        /* 图片网格 */
        .image-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin: 20px 0; }
        .image-grid img { width: 100%; height: 200px; object-fit: cover; border-radius: 12px; border: 2px solid #d4af37; transition: 0.3s; }
        .image-grid img:hover { transform: scale(1.03); box-shadow: 0 0 25px #d4af37; }
        
        /* 新闻卡片 */
        .news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; }
        .news-card { background: #2a0f0f; border-radius: 15px; border: 1px solid #b8860b; padding: 20px; transition: 0.3s; }
        .news-card:hover { border-color: #d4af37; transform: translateY(-5px); }
        .news-card .date { color: #d4af37; font-size: 0.9em; margin-bottom: 8px; }
        .news-card h3 { font-size: 1.3em; margin-bottom: 10px; }
        .news-card p { color: #d4c4a0; font-size: 0.95em; }
        
        /* FAQ */
        .faq-item { margin-bottom: 25px; border-bottom: 1px dashed #5a3a2a; padding-bottom: 20px; }
        .faq-item h3 { color: #d4af37; font-size: 1.2em; margin-bottom: 10px; }
        .faq-item p { color: #e0d0b8; }
        
        /* 数据统计 */
        .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; text-align: center; }
        .stat-item { background: #3a1515; border-radius: 15px; padding: 25px; border: 1px solid #b8860b; }
        .stat-item .number { font-size: 2.5em; color: #d4af37; font-weight: bold; }
        .stat-item .label { font-size: 1em; margin-top: 5px; }
        
        /* 核心优势卡片 */
        .advantage-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
        .advantage-card { background: #2e1212; border-radius: 15px; padding: 25px; border: 1px solid #8b5e3c; text-align: center; }
        .advantage-card h3 { color: #d4af37; font-size: 1.4em; }
        
        /* 品牌故事 */
        .story-content { display: flex; gap: 30px; flex-wrap: wrap; align-items: center; }
        .story-content img { width: 100%; max-width: 450px; border-radius: 15px; border: 3px solid #d4af37; }
        .story-text { flex: 1; }
        
        /* 焦点赛事 */
        .event-highlight { background: #2a0f0f; border-radius: 15px; padding: 25px; border: 1px solid #d4af37; }
        
        /* CTA */
        .cta-box { background: linear-gradient(135deg, #4a0a0a, #991b1b); border: 2px solid #d4af37; border-radius: 20px; padding: 50px; text-align: center; }
        .cta-box a { display: inline-block; background: #d4af37; color: #4a0a0a; padding: 15px 40px; border-radius: 50px; font-size: 1.2em; text-decoration: none; font-weight: bold; transition: 0.3s; margin-top: 20px; }
        .cta-box a:hover { background: #f5e6d0; color: #4a0a0a; transform: scale(1.05); }
        
        /* 页脚 */
        footer { background: #1a0a0a; border-top: 3px solid #d4af37; padding: 40px 20px; margin-top: 50px; text-align: center; }
        footer .footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 20px; margin-bottom: 25px; }
        footer a { color: #d4af37; text-decoration: none; transition: 0.3s; }
        footer a:hover { text-decoration: underline; }
        footer .footer-info { color: #a08060; font-size: 0.9em; line-height: 2; }
        
        @media (max-width: 768px) {
            .hero-title h1 { font-size: 2.2em; }
            .section { padding: 25px; }
        }