* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', 'PingFang SC', Roboto, sans-serif;
            background-color: #0b0b0b;
            color: #f0e6d3;
            line-height: 1.7;
        }
        a {
            color: #f0c27a;
            text-decoration: none;
            transition: color 0.3s;
        }
        a:hover {
            color: #ffd700;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        /* 导航 */
        .navbar {
            background: linear-gradient(135deg, #4a0a0a 0%, #991b1b 100%);
            padding: 16px 0;
            border-bottom: 3px solid #c99b3c;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0,0,0,0.7);
        }
        .navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .navbar .logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: 2px;
            background: linear-gradient(135deg, #ffd700, #f0c27a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 12px rgba(255,215,0,0.3);
        }
        .nav-links {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
        }
        .nav-links a {
            color: #f0e6d3;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 30px;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(201,155,60,0.2);
            transition: all 0.3s;
        }
        .nav-links a:hover {
            background: rgba(201,155,60,0.25);
            border-color: #f0c27a;
            transform: translateY(-2px);
        }
        /* H1 主视觉 */
        .hero-section {
            background: linear-gradient(145deg, #1a0a0a 0%, #3d1212 100%);
            padding: 80px 0 60px;
            text-align: center;
            border-bottom: 2px solid #c99b3c;
            position: relative;
            overflow: hidden;
        }
        .hero-section::before {
            content: "⚽🏀🏆⚡";
            position: absolute;
            font-size: 6rem;
            opacity: 0.04;
            top: -20px;
            left: -20px;
            pointer-events: none;
        }
        .hero-section h1 {
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f0c27a, #ffd700, #f0c27a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 20px;
            text-shadow: 0 0 30px rgba(255,215,0,0.15);
        }
        .hero-text {
            max-width: 800px;
            margin: 0 auto;
            font-size: 1.15rem;
            color: #d4c5a9;
            line-height: 1.9;
        }
        .hero-text p {
            margin-bottom: 12px;
        }
        /* 通用区块 */
        .section-block {
            padding: 60px 0;
            border-bottom: 1px solid rgba(201,155,60,0.1);
        }
        .section-title {
            font-size: 2rem;
            font-weight: 700;
            color: #f0c27a;
            margin-bottom: 30px;
            text-align: center;
            position: relative;
        }
        .section-title::after {
            content: "";
            display: block;
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, #c99b3c, #f0c27a);
            margin: 12px auto 0;
            border-radius: 2px;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 28px;
        }
        .card {
            background: linear-gradient(145deg, #1e0f0f 0%, #2a1515 100%);
            border: 1px solid rgba(201,155,60,0.3);
            border-radius: 18px;
            padding: 24px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.6);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .card:hover {
            transform: translateY(-6px);
            box-shadow: 0 14px 40px rgba(201,155,60,0.15);
            border-color: #f0c27a;
        }
        .card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 12px;
            margin-bottom: 16px;
            border: 1px solid #3d2a2a;
        }
        .card h3 {
            font-size: 1.3rem;
            color: #ffd700;
            margin-bottom: 8px;
        }
        .card p {
            color: #b8a88c;
            font-size: 0.96rem;
        }
        .date-tag {
            display: inline-block;
            background: #991b1b;
            padding: 2px 12px;
            border-radius: 30px;
            font-size: 0.8rem;
            color: #f0e6d3;
            margin-bottom: 10px;
            border: 1px solid #c99b3c;
        }
        /* FAQ */
        .faq-item {
            background: #1a0d0d;
            border: 1px solid #3d2a2a;
            border-radius: 16px;
            padding: 20px 24px;
            margin-bottom: 16px;
            transition: 0.3s;
        }
        .faq-item:hover {
            border-color: #c99b3c;
        }
        .faq-question {
            font-weight: 700;
            color: #f0c27a;
            font-size: 1.1rem;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .faq-answer {
            color: #c4b49c;
            line-height: 1.8;
            padding-left: 28px;
        }
        /* 统计 */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 20px;
            text-align: center;
        }
        .stat-number {
            font-size: 2.7rem;
            font-weight: 800;
            color: #ffd700;
            letter-spacing: 2px;
        }
        .stat-label {
            color: #b8a88c;
            font-size: 1rem;
            margin-top: 4px;
        }
        /* 页脚 */
        .footer {
            background: #0f0505;
            border-top: 3px solid #c99b3c;
            padding: 40px 0 20px;
            margin-top: 20px;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 20px;
            margin-bottom: 20px;
        }
        .footer-links a {
            margin: 0 8px;
        }
        .footer-bottom {
            text-align: center;
            border-top: 1px solid #2a1a1a;
            padding-top: 20px;
            font-size: 0.9rem;
            color: #7a6a5a;
        }
        .footer-bottom a {
            color: #c99b3c;
            margin: 0 6px;
        }
        /* 响应式 */
        @media (max-width: 768px) {
            .navbar .container {
                flex-direction: column;
                gap: 12px;
            }
            .hero-section h1 {
                font-size: 2rem;
            }
            .section-title {
                font-size: 1.5rem;
            }
        }
        .gold-border {
            border-color: #c99b3c;
        }