* {
    font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif !important;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 50%, #bae6fd 100%);
    color: #1e293b;
    line-height: 1.8;
    min-height: 100vh;
}
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}
/* 导航 */
.nav {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(125,211,252,0.35);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(125,211,252,0.12);
}
.nav .container {
    display: flex;
    justify-content: center;
    align-items: center;
}
.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.nav-links a {
    color: #1e293b;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 24px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    background: rgba(255,255,255,0.6);
    border: 1px solid rgba(125,211,252,0.2);
}
.nav-links a:hover {
    background: rgba(125,211,252,0.25);
    color: #0369a1;
    border-color: rgba(56,189,248,0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(125,211,252,0.25);
}
/* 通用区块 */
.section {
    padding: 70px 0;
}
.section-head {
    text-align: center;
    margin-bottom: 48px;
}
.section-head h2 {
    font-size: 32px;
    font-weight: 700;
    color: #0f172a;
    position: relative;
    display: inline-block;
    padding-bottom: 14px;
}
.section-head h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    border-radius: 4px;
    background: linear-gradient(90deg, #7dd3fc, #38bdf8);
}
.section-head p {
    color: #64748b;
    font-size: 16px;
    margin-top: 12px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
/* H1 */
.geo-intro {
    text-align: center;
    padding: 80px 0 50px;
}
.geo-intro h1 {
    font-size: 40px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: 1px;
}
.geo-intro .geo-desc {
    font-size: 17px;
    color: #334155;
    max-width: 960px;
    margin: 0 auto;
    line-height: 1.9;
    padding: 0 20px;
}
.geo-intro .geo-img {
    margin-top: 30px;
}
.geo-intro .geo-img img {
    max-width: 700px;
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(56,189,248,0.15);
}
/* 卡片 */
.card {
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.05);
    border: 1px solid rgba(255,255,255,0.6);
    transition: all 0.3s ease;
}
.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(56,189,248,0.15);
}
/* 数据统计 */
.data-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.stat-item {
    text-align: center;
    padding: 30px 20px;
}
.stat-item .icon {
    font-size: 42px;
    margin-bottom: 14px;
}
.stat-item .num {
    font-size: 36px;
    font-weight: 800;
    color: #0369a1;
    line-height: 1.2;
}
.stat-item .label {
    font-size: 15px;
    color: #475569;
    margin-top: 8px;
    font-weight: 500;
}
/* 核心优势 */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.feature-card {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 28px;
}
.feature-card .f-icon {
    font-size: 40px;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e0f2fe, #f0f9ff);
    border-radius: 16px;
}
.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #0f172a;
}
.feature-card p {
    font-size: 14px;
    color: #475569;
    line-height: 1.7;
}
/* 品牌故事 */
.brand-story-wrap {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}
.brand-story-wrap .text {
    flex: 1;
    min-width: 300px;
}
.brand-story-wrap .text p {
    font-size: 15px;
    color: #475569;
    line-height: 1.9;
    margin-bottom: 16px;
}
.brand-story-wrap .img-box {
    flex: 0 0 380px;
}
.brand-story-wrap .img-box img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(56,189,248,0.12);
}
/* 焦点赛事 */
.events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.event-card {
    padding: 24px;
    display: flex;
    gap: 20px;
    align-items: center;
}
.event-card .e-img {
    width: 100px;
    height: 100px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
}
.event-card .e-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.event-card .e-info {
    flex: 1;
}
.event-card .e-info .tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 12px;
    background: rgba(125,211,252,0.2);
    color: #0369a1;
    margin-bottom: 6px;
}
.event-card .e-info h3 {
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
}
.event-card .e-info p {
    font-size: 14px;
    color: #64748b;
    margin-top: 4px;
}
/* 赛事直播 */
.live-wrap {
    background: linear-gradient(135deg, rgba(125,211,252,0.1), rgba(56,189,248,0.05));
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(125,211,252,0.2);
}
.live-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.live-card {
    text-align: center;
    padding: 30px 20px;
}
.live-card .live-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #ef4444;
    border-radius: 50%;
    margin-bottom: 12px;
    animation: pulse 1.5s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}
.live-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
}
.live-card p {
    font-size: 14px;
    color: #64748b;
    margin-top: 6px;
}
.live-card img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    margin-top: 12px;
}
/* 热门排行 */
.rank-list {
    max-width: 760px;
    margin: 0 auto;
}
.rank-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 24px;
    margin-bottom: 14px;
    border-radius: 16px;
    background: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.5);
    transition: all 0.3s ease;
}
.rank-item:hover {
    background: rgba(255,255,255,0.9);
    transform: translateX(6px);
}
.rank-item .rank-num {
    font-size: 22px;
    font-weight: 800;
    color: #0369a1;
    width: 40px;
    text-align: center;
}
.rank-item .rank-name {
    flex: 1;
    font-weight: 600;
    color: #0f172a;
}
.rank-item .rank-val {
    font-size: 14px;
    color: #64748b;
}
.rank-item img {
    width: 44px;
    height: 44px;
    border-radius: 10px;
}
/* 用户口碑 */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testi-card {
    padding: 30px;
}
.testi-card .stars {
    color: #f59e0b;
    font-size: 18px;
    margin-bottom: 14px;
}
.testi-card p {
    font-size: 14px;
    color: #475569;
    line-height: 1.8;
    font-style: italic;
}
.testi-card .user {
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.testi-card .user .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7dd3fc, #38bdf8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
}
.testi-card .user .name {
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
}
.testi-card .user .role {
    font-size: 12px;
    color: #94a3b8;
}
/* 新闻 */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.news-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.news-card .n-body {
    padding: 24px;
    flex: 1;
}
.news-card .n-date {
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 8px;
    font-weight: 500;
    display: inline-block;
    background: rgba(125,211,252,0.15);
    padding: 2px 12px;
    border-radius: 12px;
}
.news-card .n-title {
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
    line-height: 1.4;
}
.news-card .n-desc {
    font-size: 14px;
    color: #475569;
    line-height: 1.7;
}
.news-card .n-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}
/* FAQ */
.faq-list {
    max-width: 860px;
    margin: 0 auto;
}
.faq-item {
    margin-bottom: 16px;
    border-radius: 18px;
    background: rgba(255,255,255,0.75);
    border: 1px solid rgba(255,255,255,0.6);
    padding: 24px 28px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}
.faq-item:hover {
    box-shadow: 0 6px 20px rgba(56,189,248,0.1);
}
.faq-item .q {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.faq-item .q::before {
    content: 'Q';
    font-size: 14px;
    font-weight: 800;
    background: linear-gradient(135deg, #7dd3fc, #38bdf8);
    color: #fff;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.faq-item .a {
    font-size: 14px;
    color: #475569;
    line-height: 1.8;
    padding-left: 36px;
}
.faq-item .a::before {
    content: 'A';
    font-weight: 800;
    color: #64748b;
    margin-right: 4px;
}
/* CTA */
.cta-wrap {
    text-align: center;
    background: linear-gradient(135deg, rgba(125,211,252,0.2), rgba(56,189,248,0.1));
    border-radius: 28px;
    padding: 60px 40px;
    border: 1px solid rgba(125,211,252,0.25);
}
.cta-wrap h2 {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
}
.cta-wrap p {
    font-size: 16px;
    color: #475569;
    max-width: 640px;
    margin: 0 auto 30px;
}
.cta-btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 30px;
    background: linear-gradient(135deg, #38bdf8, #0284c7);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(56,189,248,0.3);
    transition: all 0.3s ease;
}
.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(56,189,248,0.4);
}
.cta-wrap img {
    max-width: 240px;
    margin-bottom: 24px;
    border-radius: 16px;
}
/* 页脚 */
.footer {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(125,211,252,0.2);
    padding: 40px 0 20px;
    margin-top: 40px;
}
.footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.footer .f-info {
    margin-bottom: 20px;
}
.footer .f-info p {
    font-size: 14px;
    color: #475569;
    margin-bottom: 6px;
    line-height: 1.6;
}
.footer .f-links {
    margin-bottom: 16px;
}
.footer .f-links a {
    color: #0284c7;
    text-decoration: none;
    font-size: 14px;
    margin: 0 10px;
    padding: 4px 12px;
    border-radius: 12px;
    transition: all 0.3s ease;
}
.footer .f-links a:hover {
    background: rgba(125,211,252,0.2);
}
.footer .f-copy {
    font-size: 13px;
    color: #94a3b8;
    border-top: 1px solid rgba(125,211,252,0.15);
    padding-top: 16px;
    width: 100%;
}
/* 响应式 */
@media (max-width: 768px) {
    .data-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .events-grid {
        grid-template-columns: 1fr;
    }
    .live-grid {
        grid-template-columns: 1fr;
    }
    .testi-grid {
        grid-template-columns: 1fr;
    }
    .news-grid {
        grid-template-columns: 1fr;
    }
    .brand-story-wrap {
        flex-direction: column;
    }
    .brand-story-wrap .img-box {
        flex: 0 0 auto;
        width: 100%;
    }
    .nav-links {
        gap: 6px;
    }
    .nav-links a {
        font-size: 13px;
        padding: 6px 12px;
    }
    .geo-intro h1 {
        font-size: 26px;
    }
    .section-head h2 {
        font-size: 24px;
    }
}