* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Georgia', 'Times New Roman', serif;
        }
        body {
            background: linear-gradient(145deg, #f5ebe0 0%, #e6d5c3 100%);
            color: #3e2723;
            line-height: 1.6;
            min-height: 100vh;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 20px 24px;
        }
        /* 导航 */
        .navbar {
            background: linear-gradient(135deg, #3e2723 0%, #5d4037 100%);
            padding: 16px 28px;
            border-radius: 20px;
            margin-bottom: 40px;
            box-shadow: 0 8px 24px rgba(62, 39, 35, 0.3);
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }
        .nav-links {
            display: flex;
            flex-wrap: wrap;
            gap: 14px 20px;
        }
        .nav-links a {
            color: #d7ccc8;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            padding: 8px 0;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
            letter-spacing: 0.5px;
        }
        .nav-links a:hover {
            border-bottom-color: #bcaaa4;
            color: #fff;
        }
        .nav-links a::before {
            content: "⚽ ";
            font-size: 0.9rem;
        }
        /* H1 */
        h1 {
            font-size: 2.8rem;
            text-align: center;
            background: linear-gradient(135deg, #4e342e, #795548);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin: 20px 0 30px;
            font-weight: 800;
            letter-spacing: 2px;
            text-shadow: 0 4px 12px rgba(62,39,35,0.1);
        }
        h2 {
            font-size: 2rem;
            color: #3e2723;
            border-left: 6px solid #6d4c41;
            padding-left: 18px;
            margin: 40px 0 24px;
            font-weight: 700;
        }
        h3 {
            font-size: 1.4rem;
            color: #4e342e;
            margin: 16px 0 8px;
        }
        /* 卡片 */
        .card {
            background: rgba(255, 247, 239, 0.7);
            backdrop-filter: blur(4px);
            border-radius: 24px;
            padding: 30px;
            box-shadow: 0 8px 32px rgba(62,39,35,0.08);
            border: 1px solid rgba(215,204,200,0.5);
            transition: 0.25s;
        }
        .card:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 36px rgba(62,39,35,0.12);
        }
        .grid-2 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 28px;
        }
        .grid-3 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 24px;
        }
        .grid-4 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
        }
        img {
            max-width: 100%;
            border-radius: 16px;
            display: block;
            margin: 12px 0;
            box-shadow: 0 6px 18px rgba(0,0,0,0.06);
        }
        .img-row {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            justify-content: center;
            margin: 20px 0 10px;
        }
        .img-row img {
            width: 180px;
            height: 120px;
            object-fit: cover;
            flex: 1 1 160px;
            border-radius: 12px;
        }
        /* 按钮 */
        .btn {
            display: inline-block;
            background: #5d4037;
            color: #f1ebe5;
            padding: 12px 28px;
            border-radius: 40px;
            text-decoration: none;
            font-weight: 600;
            transition: 0.2s;
            border: 1px solid #8d6e63;
            letter-spacing: 0.8px;
        }
        .btn:hover {
            background: #4e342e;
            transform: scale(1.02);
        }
        /* hero */
        .hero {
            text-align: center;
            padding: 50px 20px 30px;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 20px auto;
            color: #4e342e;
        }
        /* 数据统计 */
        .stat-item {
            background: #f1ebe5;
            padding: 24px 16px;
            border-radius: 20px;
            text-align: center;
            border: 1px solid #cbb7aa;
        }
        .stat-number {
            font-size: 2.6rem;
            font-weight: 800;
            color: #3e2723;
            line-height: 1;
        }
        .stat-label {
            color: #5d4037;
            margin-top: 6px;
            font-weight: 600;
        }
        /* 新闻 */
        .news-item {
            background: #f8f1ea;
            padding: 24px;
            border-radius: 20px;
            border-left: 5px solid #6d4c41;
            margin-bottom: 20px;
        }
        .news-date {
            display: inline-block;
            background: #3e2723;
            color: #d7ccc8;
            padding: 4px 14px;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 10px;
        }
        .news-item h3 {
            margin-top: 0;
        }
        .news-item p {
            color: #4e342e;
        }
        /* FAQ */
        .faq-item {
            background: #f1ebe5;
            border-radius: 20px;
            padding: 22px 26px;
            margin-bottom: 18px;
            border: 1px solid #d7ccc8;
        }
        .faq-q {
            font-weight: 700;
            font-size: 1.15rem;
            color: #3e2723;
            margin-bottom: 8px;
        }
        .faq-a {
            color: #4e342e;
            padding-left: 8px;
            border-left: 3px solid #8d6e63;
            padding-left: 16px;
        }
        /* 友情链接 / 页脚 */
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 18px;
            justify-content: center;
            margin: 20px 0 10px;
        }
        .footer-links a {
            color: #5d4037;
            text-decoration: underline;
            font-weight: 500;
        }
        .footer-bottom {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 2px solid #d7ccc8;
            color: #4e342e;
            font-size: 0.9rem;
        }
        .footer-bottom a {
            color: #5d4037;
            margin: 0 8px;
        }
        /* 合作伙伴 */
        .partner-badge {
            background: #ede4db;
            border-radius: 16px;
            padding: 16px 12px;
            text-align: center;
            border: 1px solid #cbb7aa;
        }
        /* CTA */
        .cta-box {
            background: linear-gradient(145deg, #4e342e, #6d4c41);
            color: #f1ebe5;
            border-radius: 28px;
            padding: 40px 30px;
            text-align: center;
            margin: 30px 0;
        }
        .cta-box h2 {
            color: #f1ebe5;
            border-left: none;
            margin-top: 0;
        }
        .cta-box .btn {
            background: #d7ccc8;
            color: #3e2723;
        }
        /* 响应式 */
        @media(max-width:640px) {
            h1 { font-size: 2rem; }
            .navbar { flex-direction: column; gap: 10px; }
            .nav-links { justify-content: center; }
        }