* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', 'PingFang SC', Roboto, sans-serif;
            background: linear-gradient(145deg, #faf3ef 0%, #e8ddd5 100%);
            color: #3e2723;
            line-height: 1.7;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        /* Header & Navigation */
        header {
            background: linear-gradient(135deg, #3e2723 0%, #5d4037 100%);
            padding: 18px 0;
            box-shadow: 0 8px 20px rgba(0,0,0,0.3);
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 3px solid #a1887f;
        }
        .header-flex {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            color: #d7ccc8;
            font-size: 1.9rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-shadow: 2px 2px 0 #3e2723;
        }
        .logo span {
            color: #bcaaa4;
        }
        .nav-links {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .nav-links a {
            color: #f5ebe0;
            text-decoration: none;
            font-weight: 600;
            padding: 8px 16px;
            border-radius: 40px;
            background: rgba(255,255,240,0.08);
            transition: 0.3s;
            font-size: 0.95rem;
            letter-spacing: 0.5px;
            border: 1px solid transparent;
        }
        .nav-links a:hover {
            background: #a1887f;
            color: #3e2723;
            border-color: #d7ccc8;
            transform: translateY(-2px);
        }
        /* H1 hero */
        .hero-box {
            background: linear-gradient(145deg, #4e342e, #3e2723);
            padding: 60px 30px;
            border-radius: 60px 60px 40px 40px;
            margin: 40px 0 20px;
            box-shadow: 0 20px 30px rgba(0,0,0,0.3);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero-box::after {
            content: "🏆⚽🏀🎯";
            font-size: 5rem;
            opacity: 0.08;
            position: absolute;
            right: -20px;
            bottom: -20px;
            transform: rotate(-15deg);
            pointer-events: none;
        }
        .hero-box h1 {
            color: #f5ebe0;
            font-size: 2.8rem;
            font-weight: 800;
            text-shadow: 3px 3px 0 #1f120e;
            letter-spacing: 2px;
            margin-bottom: 15px;
        }
        .hero-box p {
            color: #d7ccc8;
            font-size: 1.2rem;
            max-width: 800px;
            margin: 10px auto 20px;
        }
        .hero-box img {
            max-width: 180px;
            border-radius: 30px;
            margin: 10px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.4);
            transition: 0.3s;
        }
        .hero-box img:hover {
            transform: scale(1.03);
        }
        /* section通用卡片 */
        section {
            margin: 50px 0;
        }
        .section-title {
            font-size: 2rem;
            font-weight: 700;
            color: #3e2723;
            border-left: 10px solid #6d4c41;
            padding-left: 20px;
            margin-bottom: 35px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 30px;
        }
        .card {
            background: #f5ebe0;
            border-radius: 36px;
            padding: 28px 22px;
            box-shadow: 0 12px 25px rgba(62,39,35,0.15);
            transition: all 0.3s ease;
            border: 1px solid #d7ccc8;
            backdrop-filter: blur(2px);
        }
        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 35px rgba(62,39,35,0.25);
            background: #efe7db;
        }
        .card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 28px;
            margin-bottom: 18px;
            box-shadow: 0 6px 12px rgba(0,0,0,0.1);
            background: #d7ccc8;
        }
        .card h3 {
            font-size: 1.5rem;
            color: #3e2723;
            margin-bottom: 12px;
        }
        .card p {
            color: #5d4037;
            font-size: 0.95rem;
        }
        .badge-date {
            background: #6d4c41;
            color: #f5ebe0;
            padding: 3px 14px;
            border-radius: 30px;
            font-size: 0.75rem;
            display: inline-block;
            margin-bottom: 10px;
        }
        /* 数据统计特色 */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            background: #4e342e;
            padding: 40px 30px;
            border-radius: 70px;
            box-shadow: inset 0 0 0 2px #d7ccc8;
        }
        .stat-item {
            text-align: center;
            color: #f5ebe0;
        }
        .stat-item h4 {
            font-size: 2.6rem;
            font-weight: 800;
            color: #d7ccc8;
        }
        .stat-item p {
            font-size: 1rem;
            letter-spacing: 1px;
            color: #bcaaa4;
        }
        /* FAQ 样式 */
        .faq-grid {
            display: grid;
            gap: 18px;
        }
        .faq-item {
            background: #f5ebe0;
            border-radius: 40px;
            padding: 20px 30px;
            box-shadow: 0 6px 12px rgba(0,0,0,0.05);
            border-left: 8px solid #6d4c41;
        }
        .faq-item h4 {
            font-size: 1.3rem;
            color: #3e2723;
            margin-bottom: 10px;
        }
        .faq-item p {
            color: #4e342e;
        }
        /* 合作伙伴 */
        .partner-list {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
            background: #efe7db;
            padding: 40px 30px;
            border-radius: 80px;
        }
        .partner-list img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            background: #d7ccc8;
            filter: sepia(0.3);
            transition: 0.3s;
        }
        .partner-list img:hover {
            transform: scale(1.1);
            filter: sepia(0);
        }
        /* 愿景使命 */
        .vision-mission {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
        }
        .vision-mission > div {
            flex: 1 1 250px;
            background: #f5ebe0;
            padding: 30px;
            border-radius: 50px;
            box-shadow: 0 10px 18px rgba(0,0,0,0.05);
        }
        .vision-mission h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
        }
        /* 用户口碑 */
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 25px;
        }
        .review-card {
            background: #f5ebe0;
            padding: 25px;
            border-radius: 50px;
            box-shadow: 0 5px 12px rgba(0,0,0,0.08);
            font-style: italic;
        }
        .review-card strong {
            display: block;
            margin-top: 12px;
            color: #6d4c41;
        }
        /* 友情链接 & 页脚 */
        .footer-links {
            background: #3e2723;
            color: #d7ccc8;
            padding: 45px 30px 25px;
            border-radius: 60px 60px 0 0;
            margin-top: 60px;
        }
        .footer-links a {
            color: #bcaaa4;
            text-decoration: none;
            margin: 0 8px;
            transition: 0.2s;
        }
        .footer-links a:hover {
            color: #f5ebe0;
            text-decoration: underline;
        }
        .footer-bottom {
            border-top: 1px solid #5d4037;
            margin-top: 30px;
            padding-top: 20px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            font-size: 0.85rem;
        }
        .address-line {
            color: #bcaaa4;
        }
        /* 响应式 */
        @media (max-width: 700px) {
            .header-flex {
                flex-direction: column;
                gap: 15px;
            }
            .hero-box h1 {
                font-size: 2rem;
            }
            .stats-grid {
                grid-template-columns: repeat(2,1fr);
            }
        }