*,
        *::before,
        *::after {
            font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif !important;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary: #10b981;
            --primary-dark: #065f46;
            --accent: #fef08a;
            --primary-light: #d1fae5;
            --bg: #ecfdf5;
            --text: #1e293b;
            --text-light: #64748b;
            --card-bg: #ffffff;
            --radius: 18px;
            --shadow: 0 4px 24px rgba(16, 185, 129, 0.12);
            --shadow-hover: 0 8px 32px rgba(16, 185, 129, 0.18);
        }
        body {
            background: linear-gradient(180deg, #ecfdf5 0%, #f0fdf4 30%, #d1fae5 100%);
            color: var(--text);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--primary-dark);
            text-decoration: none;
            transition: color 0.3s;
        }
        a:hover {
            color: var(--primary);
        }
        .container {
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 24px;
        }
        /* Header & Nav */
        .site-header {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(16, 185, 129, 0.1);
            padding: 14px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 16px rgba(6, 95, 70, 0.05);
        }
        .site-nav {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            gap: 8px;
        }
        .nav-links {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            align-items: center;
        }
        .nav-links a {
            padding: 8px 18px;
            border-radius: 24px;
            font-weight: 600;
            font-size: 14px;
            letter-spacing: 0.3px;
            background: linear-gradient(135deg, #ecfdf5, #d1fae5);
            color: #065f46;
            border: 1px solid rgba(16, 185, 129, 0.15);
            transition: all 0.3s ease;
        }
        .nav-links a:hover {
            background: linear-gradient(135deg, #10b981, #065f46);
            color: #fff;
            border-color: transparent;
            box-shadow: 0 6px 18px rgba(16, 185, 129, 0.3);
            transform: translateY(-1px);
        }
        /* Hero */
        .hero-section {
            padding: 64px 0 48px;
            background: linear-gradient(135deg, #065f46 0%, #10b981 50%, #34d399 100%);
            border-radius: 0 0 44px 44px;
            position: relative;
            overflow: hidden;
        }
        .hero-section::before {
            content: "";
            position: absolute;
            top: -60%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: rgba(254, 240, 138, 0.15);
            border-radius: 50%;
            filter: blur(60px);
        }
        .hero-section::after {
            content: "";
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 400px;
            height: 400px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 50%;
            filter: blur(40px);
        }
        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
        }
        .hero-content h1 {
            font-size: 36px;
            font-weight: 800;
            color: #fff;
            line-height: 1.3;
            margin-bottom: 20px;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            letter-spacing: 1px;
        }
        .hero-badge {
            display: inline-block;
            background: var(--accent);
            color: #065f46;
            padding: 5px 20px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 700;
            margin-bottom: 16px;
            letter-spacing: 1px;
            box-shadow: 0 4px 16px rgba(254, 240, 138, 0.4);
        }
        .hero-sub {
            color: rgba(255, 255, 255, 0.9);
            font-size: 18px;
            max-width: 720px;
            margin: 16px auto 28px;
            line-height: 1.7;
        }
        .hero-btns {
            display: flex;
            gap: 14px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 32px;
        }
        .hero-btn {
            padding: 12px 32px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 15px;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .hero-btn-primary {
            background: #fff;
            color: #065f46;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }
        .hero-btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
        }
        .hero-btn-secondary {
            background: rgba(255, 255, 255, 0.15);
            color: #fff;
            border: 1px solid rgba(255, 255, 255, 0.4);
            backdrop-filter: blur(6px);
        }
        .hero-btn-secondary:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-2px);
        }
        .hero-img {
            margin-top: 20px;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
            max-width: 720px;
            margin-left: auto;
            margin-right: auto;
            border: 3px solid rgba(255, 255, 255, 0.3);
        }
        .hero-img img {
            width: 100%;
            height: auto;
            display: block;
        }
        /* Geo Intro */
        .geo-section {
            padding: 48px 0 20px;
            background: linear-gradient(180deg, #ecfdf5, #f0fdf4);
        }
        .geo-wrapper {
            background: #fff;
            border-radius: var(--radius);
            padding: 40px 48px;
            box-shadow: var(--shadow);
            border-left: 4px solid var(--primary);
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
        }
        .geo-wrapper::before {
            content: "✦";
            position: absolute;
            top: -14px;
            left: 30px;
            background: var(--accent);
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            box-shadow: 0 4px 12px rgba(254, 240, 138, 0.5);
        }
        .geo-wrapper p {
            font-size: 16px;
            color: var(--text);
            line-height: 1.8;
            text-align: justify;
        }
        /* Section Common */
        .section {
            padding: 56px 0;
        }
        .section-header {
            text-align: center;
            margin-bottom: 40px;
        }
        .section-tag {
            display: inline-block;
            background: linear-gradient(135deg, #d1fae5, #a7f3d0);
            color: #065f46;
            padding: 4px 16px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 1px;
            margin-bottom: 12px;
        }
        .section-title {
            font-size: 32px;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 8px;
            letter-spacing: 0.5px;
        }
        .section-desc {
            font-size: 16px;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
        }
        /* Stats */
        .stats-section {
            background: linear-gradient(135deg, #065f46, #10b981);
            border-radius: 40px;
            margin: 40px auto;
            max-width: 1200px;
            padding: 48px 32px;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            text-align: center;
        }
        .stat-item {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(6px);
            border-radius: 20px;
            padding: 28px 16px;
            border: 1px solid rgba(255, 255, 255, 0.15);
        }
        .stat-num {
            font-size: 44px;
            font-weight: 800;
            color: #fff;
            line-height: 1.2;
            margin-bottom: 6px;
            background: linear-gradient(135deg, #fef08a, #ffd166);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .stat-label {
            color: rgba(255, 255, 255, 0.85);
            font-size: 15px;
            font-weight: 500;
        }
        /* Advantages */
        .adv-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        .adv-card {
            background: var(--card-bg);
            border-radius: var(--radius);
            padding: 32px 24px;
            box-shadow: var(--shadow);
            text-align: center;
            transition: all 0.4s;
            border-top: 3px solid transparent;
        }
        .adv-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-hover);
            border-top-color: var(--primary);
        }
        .adv-icon {
            font-size: 46px;
            margin-bottom: 16px;
            display: block;
        }
        .adv-title {
            font-size: 18px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 10px;
        }
        .adv-desc {
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.6;
        }
        /* Brand Story */
        .story-section {
            padding: 56px 0;
        }
        .story-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
            max-width: 1100px;
            margin: 0 auto;
        }
        .story-img {
            border-radius: 24px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .story-img img {
            width: 100%;
            height: auto;
            display: block;
        }
        .story-content {
            padding: 20px;
        }
        .story-content h3 {
            font-size: 26px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 16px;
            line-height: 1.4;
        }
        .story-content p {
            font-size: 15px;
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 16px;
        }
        .story-quote {
            background: linear-gradient(135deg, #ecfdf5, #d1fae5);
            border-radius: 16px;
            padding: 20px 24px;
            font-style: italic;
            font-size: 15px;
            border-left: 3px solid var(--primary);
            margin-top: 20px;
        }
        /* Coverage */
        .coverage-section {
            background: #fff;
            border-radius: 40px;
            padding: 56px 32px;
            margin: 32px auto;
            max-width: 1200px;
            box-shadow: var(--shadow);
        }
        .coverage-list {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            max-width: 1000px;
            margin: 0 auto;
        }
        .coverage-item {
            text-align: center;
            padding: 24px;
            border-radius: 16px;
            background: linear-gradient(180deg, #f0fdf4, #ecfdf5);
            transition: all 0.3s;
        }
        .coverage-item:hover {
            transform: scale(1.02);
            box-shadow: var(--shadow);
        }
        .coverage-icon {
            font-size: 40px;
            margin-bottom: 12px;
        }
        .coverage-title {
            font-size: 18px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 8px;
        }
        .coverage-desc {
            font-size: 14px;
            color: var(--text-light);
        }
        /* Scores */
        .scores-section {
            padding: 56px 0;
            background: linear-gradient(180deg, #f0fdf4, #ecfdf5);
        }
        .scores-wrapper {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            max-width: 1100px;
            margin: 0 auto;
        }
        .score-card {
            background: #fff;
            border-radius: var(--radius);
            padding: 24px;
            box-shadow: var(--shadow);
            text-align: center;
            transition: all 0.3s;
        }
        .score-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }
        .score-league {
            font-size: 14px;
            color: var(--text-light);
            margin-bottom: 8px;
            font-weight: 600;
        }
        .score-teams {
            font-size: 20px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 12px;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
        }
        .score-result {
            font-size: 28px;
            font-weight: 800;
            color: var(--primary);
            background: linear-gradient(135deg, #10b981, #065f46);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .score-link {
            display: inline-block;
            margin-top: 12px;
            padding: 8px 24px;
            background: linear-gradient(135deg, #ecfdf5, #d1fae5);
            border-radius: 24px;
            font-size: 14px;
            font-weight: 600;
            color: #065f46;
            transition: all 0.3s;
        }
        .score-link:hover {
            background: linear-gradient(135deg, #10b981, #065f46);
            color: #fff;
        }
        /* Live Stream */
        .live-section {
            padding: 56px 0;
        }
        .live-wrapper {
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }
        .live-card {
            background: linear-gradient(135deg, #065f46, #10b981);
            border-radius: 24px;
            padding: 32px;
            color: #fff;
            position: relative;
            overflow: hidden;
        }
        .live-card::before {
            content: "";
            position: absolute;
            top: -30%;
            right: -30%;
            width: 200px;
            height: 200px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }
        .live-badge {
            display: inline-block;
            background: #fef08a;
            color: #065f46;
            padding: 4px 16px;
            border-radius: 30px;
            font-size: 12px;
            font-weight: 700;
            margin-bottom: 16px;
        }
        .live-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 10px;
        }
        .live-desc {
            font-size: 14px;
            opacity: 0.9;
            margin-bottom: 20px;
            line-height: 1.6;
        }
        .live-btn {
            background: #fff;
            color: #065f46;
            padding: 10px 28px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 600;
            display: inline-block;
            transition: all 0.3s;
        }
        .live-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
        }
        /* Featured Events */
        .events-section {
            padding: 56px 0;
            background: #fff;
            border-radius: 40px;
            max-width: 1200px;
            margin: 32px auto;
        }
        .events-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            max-width: 1100px;
            margin: 0 auto;
        }
        .event-card {
            background: linear-gradient(180deg, #f0fdf4, #ecfdf5);
            border-radius: var(--radius);
            padding: 24px;
            text-align: center;
            transition: all 0.3s;
            border: 1px solid rgba(16, 185, 129, 0.08);
        }
        .event-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow);
        }
        .event-icon {
            font-size: 40px;
            margin-bottom: 12px;
        }
        .event-name {
            font-size: 18px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 6px;
        }
        .event-info {
            font-size: 13px;
            color: var(--text-light);
        }
        /* News */
        .news-section {
            padding: 56px 0;
            background: linear-gradient(180deg, #ecfdf5, #f0fdf4);
        }
        .news-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .news-card {
            background: #fff;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.4s;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        .news-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-hover);
        }
        .news-card-img {
            height: 180px;
            overflow: hidden;
            position: relative;
        }
        .news-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        .news-card:hover .news-card-img img {
            transform: scale(1.05);
        }
        .news-date-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            background: rgba(6, 95, 70, 0.9);
            color: #fff;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            backdrop-filter: blur(4px);
        }
        .news-card-content {
            padding: 24px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }
        .news-tag {
            display: inline-block;
            background: linear-gradient(135deg, #fef08a, #ffd166);
            color: #065f46;
            padding: 2px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
            margin-bottom: 10px;
            width: fit-content;
        }
        .news-card-content h3 {
            font-size: 18px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 10px;
            line-height: 1.4;
        }
        .news-card-content p {
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.7;
            flex: 1;
        }
        .news-more {
            display: inline-block;
            margin-top: 16px;
            font-size: 14px;
            font-weight: 600;
            color: var(--primary);
            transition: color 0.3s;
        }
        .news-more:hover {
            color: var(--primary-dark);
        }
        .news-footer-link {
            text-align: center;
            margin-top: 36px;
        }
        .news-footer-link a {
            display: inline-block;
            padding: 12px 40px;
            background: linear-gradient(135deg, #10b981, #065f46);
            color: #fff;
            border-radius: 30px;
            font-weight: 600;
            font-size: 15px;
            transition: all 0.3s;
        }
        .news-footer-link a:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(16, 185, 129, 0.4);
        }
        /* FAQ */
        .faq-section {
            padding: 56px 0;
            max-width: 900px;
            margin: 0 auto;
        }
        .faq-item {
            background: #fff;
            border-radius: 16px;
            margin-bottom: 16px;
            box-shadow: var(--shadow);
            overflow: hidden;
            border: 1px solid rgba(16, 185, 129, 0.06);
            transition: all 0.3s;
        }
        .faq-item:hover {
            box-shadow: var(--shadow-hover);
        }
        .faq-q {
            padding: 22px 28px;
            background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
            font-weight: 700;
            font-size: 16px;
            color: var(--text);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-q::after {
            content: "+";
            font-size: 24px;
            font-weight: 700;
            color: var(--primary);
            transition: transform 0.3s;
        }
        .faq-item[open] .faq-q::after {
            transform: rotate(45deg);
        }
        .faq-a {
            padding: 20px 28px;
            font-size: 15px;
            color: var(--text-light);
            line-height: 1.8;
            background: #fff;
            border-top: 1px solid rgba(16, 185, 129, 0.06);
        }
        /* CTA */
        .cta-section {
            padding: 56px 0;
            background: linear-gradient(135deg, #065f46, #10b981, #34d399);
            border-radius: 40px;
            max-width: 1200px;
            margin: 32px auto;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: "";
            position: absolute;
            top: -40%;
            right: -20%;
            width: 400px;
            height: 400px;
            background: rgba(254, 240, 138, 0.2);
            border-radius: 50%;
            filter: blur(50px);
        }
        .cta-content {
            position: relative;
            z-index: 2;
            max-width: 700px;
            margin: 0 auto;
            padding: 20px;
        }
        .cta-content h2 {
            font-size: 32px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 16px;
        }
        .cta-content p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 16px;
            margin-bottom: 32px;
        }
        .cta-btns {
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }
        .cta-btn {
            padding: 14px 40px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 16px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s;
        }
        .cta-btn-light {
            background: #fff;
            color: #065f46;
        }
        .cta-btn-light:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 32px rgba(255, 255, 255, 0.3);
        }
        .cta-btn-outline {
            background: transparent;
            border: 2px solid #fff;
            color: #fff;
        }
        .cta-btn-outline:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-2px);
        }
        /* Footer */
        .site-footer {
            background: #064e3b;
            color: rgba(255, 255, 255, 0.85);
            padding: 48px 0 24px;
            margin-top: 32px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .footer-brand .brand-name {
            font-size: 22px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 12px;
        }
        .footer-brand p {
            font-size: 14px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.7);
        }
        .footer-links h4 {
            color: #fff;
            font-size: 16px;
            margin-bottom: 16px;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: var(--accent);
        }
        .footer-contact h4 {
            color: #fff;
            font-size: 16px;
            margin-bottom: 16px;
        }
        .footer-contact p {
            font-size: 14px;
            margin-bottom: 8px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 24px;
            margin-top: 40px;
            text-align: center;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.5);
        }
        .footer-bottom .footer-links-row {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 12px;
            flex-wrap: wrap;
        }
        .footer-bottom a {
            color: rgba(255, 255, 255, 0.6);
            font-size: 13px;
        }
        .footer-bottom a:hover {
            color: var(--accent);
        }
        /* Responsive */
        @media (max-width: 992px) {
            .stats-grid,
            .adv-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .story-wrapper {
                grid-template-columns: 1fr;
            }
            .coverage-list,
            .scores-wrapper {
                grid-template-columns: repeat(2, 1fr);
            }
            .events-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .news-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .hero-content h1 {
                font-size: 28px;
            }
            .live-wrapper {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 576px) {
            .stats-grid,
            .adv-grid,
            .coverage-list,
            .scores-wrapper,
            .events-grid,
            .news-grid {
                grid-template-columns: 1fr;
            }
            .hero-content h1 {
                font-size: 24px;
            }
            .section-title {
                font-size: 24px;
            }
            .geo-wrapper {
                padding: 24px 20px;
            }
            .nav-links {
                gap: 4px;
            }
            .nav-links a {
                font-size: 12px;
                padding: 6px 12px;
            }
        }