* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
        }
        body {
            background: linear-gradient(160deg, #f0fdfa 0%, #e0f2fe 60%, #f0f9ff 100%);
            color: #1e293b;
            line-height: 1.7;
        }
        .container {
            max-width: 1260px;
            margin: 0 auto;
            padding: 0 24px;
        }
        /* 导航 */
        .navbar {
            background: linear-gradient(90deg, #0d9488, #0c4a6e);
            padding: 14px 0;
            position: sticky;
            top: 0;
            z-index: 999;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
        }
        .nav-links {
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap;
        }
        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            padding: 8px 20px;
            border-radius: 24px;
            transition: background .3s, transform .2s;
        }
        .nav-links a:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-2px);
        }
        /* HERO */
        .hero {
            padding: 70px 20px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: -40px;
            left: -80px;
            width: 280px;
            height: 280px;
            background: radial-gradient(circle, rgba(13, 148, 136, 0.12) 0%, transparent 70%);
            border-radius: 50%;
        }
        .hero::after {
            content: '';
            position: absolute;
            bottom: -60px;
            right: -60px;
            width: 320px;
            height: 320px;
            background: radial-gradient(circle, rgba(12, 74, 110, 0.10) 0%, transparent 70%);
            border-radius: 50%;
        }
        .hero h1 {
            font-size: 40px;
            font-weight: 800;
            color: #0c4a6e;
            letter-spacing: 1px;
            margin-bottom: 24px;
            position: relative;
            z-index: 1;
        }
        .geo-intro {
            max-width: 920px;
            margin: 0 auto;
            padding: 32px 36px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(224, 242, 254, 0.75));
            border-radius: 20px;
            border: 1px solid rgba(13, 148, 136, 0.15);
            box-shadow: 0 10px 36px rgba(13, 148, 136, 0.08);
            backdrop-filter: blur(8px);
            text-align: left;
            position: relative;
            z-index: 1;
        }
        .geo-intro p {
            font-size: 16px;
            color: #334155;
            line-height: 1.9;
        }
        /* 通用section */
        .section {
            padding: 60px 0;
            position: relative;
        }
        .section-alt {
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(224, 242, 254, 0.3));
        }
        .section-header {
            text-align: center;
            margin-bottom: 40px;
        }
        .section-header h2 {
            font-size: 30px;
            font-weight: 700;
            color: #0c4a6e;
            position: relative;
            display: inline-block;
            padding-bottom: 12px;
        }
        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            border-radius: 3px;
            background: linear-gradient(90deg, #0d9488, #0c4a6e);
        }
        .section-tag {
            display: inline-block;
            background: linear-gradient(90deg, #0d9488, #0c4a6e);
            color: #fff;
            font-size: 13px;
            font-weight: 600;
            padding: 4px 14px;
            border-radius: 20px;
            margin-bottom: 10px;
            text-decoration: none;
            letter-spacing: 0.5px;
        }
        .section-tag:hover {
            opacity: 0.88;
        }
        /* 数据统计 */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-top: 30px;
        }
        .stat-card {
            text-align: center;
            padding: 36px 20px;
            background: rgba(255, 255, 255, 0.75);
            border-radius: 18px;
            border: 1px solid rgba(13, 148, 136, 0.12);
            box-shadow: 0 6px 24px rgba(13, 148, 136, 0.06);
            backdrop-filter: blur(6px);
            transition: transform .3s, box-shadow .3s;
        }
        .stat-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 14px 40px rgba(13, 148, 136, 0.15);
        }
        .stat-card img {
            width: 64px;
            height: 64px;
            object-fit: contain;
            margin-bottom: 16px;
        }
        .stat-number {
            font-size: 34px;
            font-weight: 800;
            color: #0c4a6e;
            margin-bottom: 4px;
        }
        .stat-label {
            font-size: 14px;
            color: #64748b;
            letter-spacing: 0.5px;
        }
        /* 核心优势 */
        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        .adv-card {
            padding: 32px 24px;
            background: linear-gradient(160deg, rgba(255, 255, 255, 0.82), rgba(240, 253, 250, 0.6));
            border-radius: 18px;
            border-left: 4px solid #0d9488;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
            transition: transform .3s;
        }
        .adv-card:hover {
            transform: translateX(6px);
        }
        .adv-card .emoji {
            font-size: 40px;
            margin-bottom: 14px;
        }
        .adv-card h3 {
            font-size: 18px;
            font-weight: 700;
            color: #0c4a6e;
            margin-bottom: 10px;
        }
        .adv-card p {
            font-size: 14px;
            color: #475569;
            line-height: 1.65;
        }
        /* 品牌故事 */
        .story-wrap {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }
        .story-wrap img {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 10px 36px rgba(0, 0, 0, 0.08);
        }
        .story-text p {
            font-size: 15px;
            color: #334155;
            margin-bottom: 14px;
            line-height: 1.8;
        }
        .story-text h3 {
            font-size: 24px;
            color: #0c4a6e;
            margin-bottom: 12px;
        }
        /* 焦点赛事 */
        .events-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .event-card {
            padding: 28px 24px;
            background: rgba(255, 255, 255, 0.78);
            border-radius: 18px;
            border: 1px solid rgba(13, 148, 136, 0.10);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
            text-align: center;
            transition: transform .3s;
        }
        .event-card:hover {
            transform: scale(1.02);
        }
        .event-card img {
            width: 80px;
            height: 80px;
            object-fit: contain;
            margin-bottom: 14px;
        }
        .event-card .league {
            font-size: 13px;
            color: #0d9488;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 6px;
        }
        .event-card .teams {
            font-size: 17px;
            font-weight: 700;
            color: #0c4a6e;
            margin-bottom: 8px;
        }
        .event-card .meta {
            font-size: 13px;
            color: #64748b;
        }
        /* 新闻列表 */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }
        .news-card {
            background: rgba(255, 255, 255, 0.82);
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
            transition: transform .3s, box-shadow .3s;
            display: flex;
            flex-direction: column;
        }
        .news-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 14px 40px rgba(13, 148, 136, 0.12);
        }
        .news-card img {
            width: 100%;
            height: 170px;
            object-fit: cover;
            border-bottom: 1px solid rgba(13, 148, 136, 0.06);
        }
        .news-body {
            padding: 20px 22px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .news-date {
            font-size: 13px;
            color: #0d9488;
            font-weight: 600;
            margin-bottom: 6px;
        }
        .news-title {
            font-size: 17px;
            font-weight: 700;
            color: #0c4a6e;
            margin-bottom: 10px;
            line-height: 1.4;
        }
        .news-summary {
            font-size: 14px;
            color: #475569;
            line-height: 1.65;
            flex: 1;
        }
        /* FAQ */
        .faq-list {
            max-width: 860px;
            margin: 0 auto;
        }
        .faq-item {
            margin-bottom: 16px;
            background: rgba(255, 255, 255, 0.75);
            border-radius: 16px;
            border: 1px solid rgba(13, 148, 136, 0.08);
            padding: 24px 28px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
        }
        .faq-question {
            font-size: 17px;
            font-weight: 700;
            color: #0c4a6e;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .faq-question::before {
            content: '❓';
            font-size: 18px;
        }
        .faq-answer {
            font-size: 14px;
            color: #475569;
            line-height: 1.75;
            padding-left: 30px;
        }
        /* CTA */
        .cta-section {
            padding: 70px 0;
            background: linear-gradient(120deg, #0d9488, #0c4a6e);
            text-align: center;
            color: #fff;
        }
        .cta-section h2 {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 16px;
        }
        .cta-section p {
            font-size: 16px;
            max-width: 620px;
            margin: 0 auto 30px;
            color: rgba(255, 255, 255, 0.9);
        }
        .cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }
        .cta-button {
            display: inline-block;
            padding: 14px 36px;
            background: #fff;
            color: #0c4a6e;
            font-size: 16px;
            font-weight: 700;
            border-radius: 30px;
            text-decoration: none;
            transition: transform .2s, box-shadow .3s;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        }
        .cta-button-outline {
            background: transparent;
            color: #fff;
            border: 2px solid rgba(255, 255, 255, 0.7);
            box-shadow: none;
        }
        .cta-button-outline:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        /* 页脚 */
        footer {
            background: #0c1729;
            color: #94a3b8;
            padding: 40px 0;
            font-size: 14px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-col h4 {
            font-size: 15px;
            color: #e2e8f0;
            margin-bottom: 14px;
            font-weight: 600;
        }
        .footer-col p {
            margin-bottom: 6px;
            line-height: 1.6;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding-top: 20px;
            text-align: center;
            font-size: 13px;
            color: #64748b;
        }
        .footer-bottom a {
            color: #94a3b8;
            text-decoration: none;
        }
        .footer-bottom a:hover {
            color: #0d9488;
        }
        /* 响应式 */
        @media (max-width: 768px) {
            .stats-grid,
            .advantages-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .events-grid,
            .news-grid {
                grid-template-columns: 1fr;
            }
            .story-wrap {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 28px;
            }
        }
        @media (max-width: 480px) {
            .stats-grid,
            .advantages-grid {
                grid-template-columns: 1fr;
            }
        }