* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
}

body {
    background: #f0fdf4;
    color: #1e293b;
    line-height: 1.7;
    font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    font-family: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

h1, h2, h3, h4, h5, h6, p, span, div, section, nav, footer, li, ul, ol {
    font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
}

/* ===== Nav ===== */
nav {
    background: linear-gradient(135deg, #065f46 0%, #10b981 100%);
    padding: 14px 32px;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 4px 24px rgba(6, 95, 70, 0.35);
}

.nav-links {
    display: flex;
    gap: 32px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-links a {
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    padding: 6px 2px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    border-bottom-color: #fbbf24;
    color: #fef3c7;
}

/* ===== Hero ===== */
.hero {
    background: linear-gradient(135deg, #10b981 0%, #065f46 60%, #064e3b 100%);
    padding: 72px 32px 56px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero h1 {
    color: #ffffff;
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 18px;
    letter-spacing: 1.5px;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.hero p {
    color: #d1fae5;
    font-size: 15px;
    max-width: 760px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    line-height: 1.8;
}

.hero img {
    max-width: 120px;
    margin: 24px auto 0;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

/* ===== Geo Intro ===== */
.geo-intro {
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 32px 20px;
}

.geo-intro p {
    font-size: 16px;
    line-height: 1.9;
    color: #1e293b;
    background: linear-gradient(135deg, #ffffff 0%, #ecfdf5 100%);
    border-radius: 20px;
    padding: 32px 36px;
    border-left: 6px solid #10b981;
    box-shadow: 0 8px 30px rgba(6, 95, 70, 0.08);
    font-weight: 400;
}

/* ===== Section ===== */
section {
    padding: 52px 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 30px;
    font-weight: 800;
    color: #065f46;
    margin-bottom: 10px;
    letter-spacing: 1px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 56px;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #fbbf24);
    border-radius: 4px;
    margin: 12px auto 0;
}

.section-desc {
    text-align: center;
    color: #6b7280;
    margin: 16px auto 36px;
    max-width: 720px;
    font-size: 15px;
    line-height: 1.7;
}

/* Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.card {
    background: #ffffff;
    border-radius: 18px;
    padding: 26px;
    box-shadow: 0 8px 32px rgba(6, 95, 70, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(6, 95, 70, 0.14);
}

.card img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 16px;
    border-radius: 14px;
    background: #ecfdf5;
    padding: 8px;
}

.card h3 {
    color: #065f46;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.card p {
    color: #4b5563;
    font-size: 14px;
    line-height: 1.7;
}

/* ===== Live Scores ===== */
.live-scores-section {
    background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);
    max-width: 100%;
    padding: 52px 32px;
}

.live-scores-section .inner {
    max-width: 1200px;
    margin: 0 auto;
}

.match-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 8px 32px rgba(6, 95, 70, 0.07);
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: 1px solid #ecfdf5;
    transition: all 0.3s;
}

.match-card:hover {
    box-shadow: 0 14px 40px rgba(6, 95, 70, 0.13);
    transform: translateY(-3px);
}

.match-card .league {
    display: inline-block;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    align-self: flex-start;
}

.match-card h4 {
    font-size: 17px;
    color: #1e293b;
    font-weight: 700;
    margin: 4px 0;
}

.match-card .time-badge {
    display: inline-block;
    background: #fef3c7;
    color: #92400e;
    font-size: 13px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 12px;
    align-self: flex-start;
}

.tag-link {
    display: inline-block;
    background: #ecfdf5;
    color: #065f46;
    border: 1.5px solid #10b981;
    font-size: 14px;
    font-weight: 600;
    padding: 6px 18px;
    border-radius: 30px;
    transition: all 0.3s;
    margin-top: 8px;
}

.tag-link:hover {
    background: #10b981;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

/* ===== Data Stats ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.stat-item {
    background: linear-gradient(135deg, #ffffff 0%, #ecfdf5 100%);
    border-radius: 20px;
    padding: 32px 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(6, 95, 70, 0.07);
    border: 1px solid rgba(16, 185, 129, 0.12);
}

.stat-item .number {
    font-size: 36px;
    font-weight: 800;
    color: #065f46;
    line-height: 1.2;
}

.stat-item .label {
    font-size: 14px;
    color: #6b7280;
    margin-top: 8px;
}

/* ===== Core Advantages ===== */
.adv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.adv-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 28px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(6, 95, 70, 0.07);
    border-top: 5px solid #10b981;
    transition: all 0.3s;
}

.adv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 44px rgba(6, 95, 70, 0.14);
}

.adv-card .emoji {
    font-size: 40px;
    margin-bottom: 14px;
}

.adv-card h3 {
    color: #065f46;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.adv-card p {
    color: #4b5563;
    font-size: 14px;
    line-height: 1.7;
}

/* ===== Brand Story ===== */
.story-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 36px;
    align-items: center;
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
    border-radius: 24px;
    padding: 36px;
    box-shadow: 0 8px 30px rgba(6, 95, 70, 0.06);
}

.story-wrap img {
    flex: 0 0 180px;
    max-width: 180px;
    border-radius: 50%;
    border: 4px solid #a7f3d0;
    box-shadow: 0 10px 36px rgba(6, 95, 70, 0.2);
}

.story-wrap p {
    flex: 1;
    color: #374151;
    font-size: 15px;
    line-height: 1.9;
}

/* ===== Vision ===== */
.vision-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.vision-box {
    background: #ffffff;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 8px 30px rgba(6, 95, 70, 0.06);
    border: 1px solid #ecfdf5;
}

.vision-box h3 {
    color: #065f46;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vision-box p {
    color: #4b5563;
    font-size: 15px;
    line-height: 1.8;
}

/* ===== Partners ===== */
.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.partner-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px 16px;
    text-align: center;
    box-shadow: 0 4px 18px rgba(6, 95, 70, 0.06);
    border: 1px solid #ecfdf5;
    transition: all 0.3s;
}

.partner-item:hover {
    border-color: #10b981;
    box-shadow: 0 12px 36px rgba(6, 95, 70, 0.12);
}

.partner-item img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    margin: 0 auto 12px;
    border-radius: 12px;
    background: #ecfdf5;
    padding: 8px;
}

.partner-item span {
    font-size: 14px;
    color: #065f46;
    font-weight: 600;
}

/* ===== News ===== */
.news-section {
    background: #f0fdf4;
    max-width: 100%;
    padding: 52px 32px;
}

.news-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.news-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 28px 30px;
    margin-bottom: 22px;
    box-shadow: 0 6px 24px rgba(6, 95, 70, 0.06);
    border-left: 5px solid #10b981;
    transition: all 0.3s;
}

.news-card:hover {
    box-shadow: 0 16px 44px rgba(6, 95, 70, 0.12);
    transform: translateX(4px);
}

.news-card .date {
    font-size: 13px;
    color: #10b981;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    display: inline-block;
    background: #ecfdf5;
    padding: 2px 12px;
    border-radius: 20px;
}

.news-card h3 {
    font-size: 20px;
    color: #065f46;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.5;
}

.news-card h3 a {
    color: inherit;
    transition: color 0.2s;
}

.news-card h3 a:hover {
    color: #059669;
}

.news-card p {
    color: #4b5563;
    font-size: 15px;
    line-height: 1.8;
}

.news-footer-link {
    text-align: center;
    margin-top: 28px;
}

/* ===== FAQ ===== */
.faq-wrap {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border-radius: 18px;
    padding: 26px 30px;
    margin-bottom: 16px;
    box-shadow: 0 4px 18px rgba(6, 95, 70, 0.06);
    border: 1px solid #ecfdf5;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: #10b981;
    box-shadow: 0 10px 36px rgba(6, 95, 70, 0.12);
}

.faq-item h4 {
    color: #065f46;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-item h4::before {
    content: 'Q';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    border-radius: 8px;
    flex-shrink: 0;
}

.faq-item p {
    color: #4b5563;
    font-size: 15px;
    line-height: 1.8;
    padding-left: 36px;
}

/* ===== CTA ===== */
.cta-section {
    background: linear-gradient(135deg, #10b981 0%, #065f46 100%);
    border-radius: 0;
    max-width: 100%;
    padding: 64px 32px;
    text-align: center;
}

.cta-section h2 {
    color: #ffffff;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
}

.cta-section p {
    color: #d1fae5;
    font-size: 16px;
    margin-bottom: 28px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    padding: 10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn {
    display: inline-block;
    background: #fbbf24;
    color: #065f46;
    font-weight: 700;
    font-size: 16px;
    padding: 14px 36px;
    border-radius: 40px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: all 0.3s;
    letter-spacing: 0.5px;
    margin: 8px;
}

.btn:hover {
    background: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.6);
    box-shadow: none;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* ===== Footer ===== */
footer {
    background: linear-gradient(135deg, #064e3b 0%, #065f46 100%);
    color: #a7f3d0;
    padding: 48px 32px 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid h4 {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 14px;
    font-weight: 700;
}

.footer-grid p {
    font-size: 14px;
    line-height: 1.8;
    color: #a7f3d0;
}

.footer-links a {
    display: block;
    color: #a7f3d0;
    margin-bottom: 8px;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
    padding-top: 20px;
    margin-top: 32px;
    font-size: 14px;
    color: #d1fae5;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    line-height: 2;
}

.footer-bottom a {
    color: #fbbf24;
    transition: color 0.2s;
}

.footer-bottom a:hover {
    color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 26px;
    }
    .section-title {
        font-size: 24px;
    }
    .nav-links {
        gap: 16px;
    }
    .nav-links a {
        font-size: 14px;
    }
    .story-wrap img {
        flex: 0 0 120px;
        max-width: 120px;
    }
    .faq-item p {
        padding-left: 0;
    }
    .cta-section h2 {
        font-size: 24px;
    }
}