* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #faf7fc;
    color: #2b2b3d;
    line-height: 1.75;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color .3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========= 导航栏 ========= */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(168, 85, 247, .12);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
    height: 68px;
    padding: 0 24px;
}

.nav-links a {
    font-weight: 600;
    font-size: 15px;
    letter-spacing: .4px;
    color: #3a3a55;
    white-space: nowrap;
    transition: color .3s, transform .2s;
}

.nav-links a:hover {
    color: #ec4899;
    transform: translateY(-2px);
}

/* ========= 英雄区 ========= */
.hero {
    background: linear-gradient(135deg, #ec4899 0%, #a855f7 50%, #6366f1 100%);
    color: #fff;
    padding: 72px 24px 56px;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    right: -120px;
    top: -120px;
    width: 360px;
    height: 360px;
    background: rgba(255, 255, 255, .08);
    border-radius: 50%;
    pointer-events: none;
}

.hero-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.hero-text {
    flex: 1 1 340px;
    text-align: center;
}

.hero-text h1 {
    font-size: clamp(26px, 3.5vw, 44px);
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 16px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .15);
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 28px;
    opacity: .92;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 15px;
    transition: all .3s ease;
}

.btn-primary {
    background: #fff;
    color: #a855f7;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .12);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .18);
}

.btn-secondary {
    background: rgba(255, 255, 255, .18);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .5);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, .3);
    transform: translateY(-3px);
}

.hero-image {
    flex: 1 1 280px;
    text-align: center;
}

.hero-image img {
    max-width: 380px;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .2);
}

/* ========= GEO 区块 ========= */
.geo-section {
    padding: 48px 24px;
    background: #fff;
    text-align: center;
}

.geo-section p {
    max-width: 860px;
    margin: 0 auto;
    font-size: 16px;
    color: #555;
}

/* ========= 数据统计 ========= */
.stats {
    padding: 64px 24px;
    background: linear-gradient(180deg, #fff 0%, #faf0fe 100%);
}

.stats h2,
.section-title {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2b2b3d;
}

.section-sub {
    text-align: center;
    color: #888;
    margin-bottom: 36px;
    font-size: 15px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-card {
    background: rgba(255, 255, 255, .75);
    border-radius: 20px;
    padding: 32px 20px;
    text-align: center;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(236, 72, 153, .15);
    box-shadow: 0 8px 24px rgba(168, 85, 247, .06);
    transition: transform .3s;
}

.stat-card:hover {
    transform: translateY(-6px);
}

.stat-num {
    font-size: 38px;
    font-weight: 800;
    background: linear-gradient(135deg, #ec4899, #a855f7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 6px;
}

.stat-label {
    color: #666;
    font-size: 14px;
}

/* ========= 核心优势 ========= */
.adv-section {
    padding: 64px 24px;
    background: #fff;
}

.adv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    max-width: 1080px;
    margin: 0 auto;
}

.adv-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, .92), rgba(243, 244, 255, .92));
    border-radius: 22px;
    padding: 32px 24px;
    border: 1px solid rgba(168, 85, 247, .1);
    box-shadow: 0 12px 30px rgba(168, 85, 247, .07);
    transition: all .3s ease;
    text-align: center;
}

.adv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(236, 72, 153, .12);
}

.adv-card img {
    width: 68px;
    height: 68px;
    object-fit: cover;
    margin: 0 auto 16px;
    border-radius: 18px;
}

.adv-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #2b2b3d;
}

.adv-card p {
    font-size: 14px;
    color: #777;
}

/* ========= 品牌故事 ========= */
.brand-story {
    padding: 64px 24px;
    background: linear-gradient(135deg, #fdf2f8 0%, #f3e8ff 100%);
}

.story-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.story-inner img {
    flex: 1 1 260px;
    border-radius: 20px;
    box-shadow: 0 12px 36px rgba(168, 85, 247, .15);
}

.story-text {
    flex: 1 1 300px;
}

.story-text h2 {
    font-size: 28px;
    margin-bottom: 12px;
    color: #2b2b3d;
}

.story-text p {
    color: #555;
    font-size: 15px;
}

/* ========= 焦点赛事 ========= */
.events {
    padding: 64px 24px;
    background: #fff;
}

.event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    max-width: 1080px;
    margin: 0 auto;
}

.event-card {
    background: rgba(255, 255, 255, .8);
    border-radius: 22px;
    padding: 24px;
    border: 1px solid rgba(236, 72, 153, .1);
    box-shadow: 0 8px 24px rgba(168, 85, 247, .05);
    transition: transform .3s;
}

.event-card:hover {
    transform: translateY(-6px);
}

.event-card img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 14px;
}

.event-card h3 {
    font-size: 17px;
    margin-bottom: 4px;
}

.event-card .event-time {
    color: #ec4899;
    font-size: 14px;
    font-weight: 600;
}

.event-card p {
    font-size: 14px;
    color: #777;
}

/* ========= 实时比分 ========= */
.live {
    padding: 64px 24px;
    background: linear-gradient(180deg, #fff, #f6f9ff);
}

.live-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1080px;
    margin: 0 auto;
}

.live-card {
    background: rgba(255, 255, 255, .85);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(168, 85, 247, .1);
    box-shadow: 0 8px 20px rgba(168, 85, 247, .05);
}

.live-team {
    text-align: center;
    flex: 1;
}

.live-team img {
    width: 44px;
    height: 44px;
    object-fit: cover;
    margin: 0 auto 8px;
    border-radius: 50%;
}

.live-team span {
    font-size: 14px;
    font-weight: 600;
    display: block;
}

.live-score {
    font-size: 32px;
    font-weight: 800;
    color: #ec4899;
    padding: 0 16px;
}

.live-status {
    text-align: center;
    margin-top: 8px;
    font-size: 12px;
    color: #a855f7;
    background: rgba(168, 85, 247, .1);
    display: inline-block;
    padding: 2px 12px;
    border-radius: 12px;
    font-weight: 600;
}

/* ========= 热门排行 ========= */
.rankings {
    padding: 64px 24px;
    background: #fff;
}

.rank-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1080px;
    margin: 0 auto;
}

.rank-table {
    background: rgba(248, 247, 255, .8);
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 6px 18px rgba(168, 85, 247, .05);
    border: 1px solid rgba(168, 85, 247, .08);
}

.rank-table h3 {
    font-size: 18px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.rank-table table {
    width: 100%;
    border-collapse: collapse;
}

.rank-table th,
.rank-table td {
    text-align: left;
    padding: 8px 6px;
    font-size: 14px;
    border-bottom: 1px solid rgba(0, 0, 0, .04);
}

.rank-table th {
    color: #999;
    font-weight: 600;
    font-size: 13px;
}

.rank-table td:first-child {
    font-weight: 700;
    color: #ec4899;
}

/* ========= 新闻资讯 ========= */
.news {
    padding: 64px 24px;
    background: linear-gradient(180deg, #fff, #faf0fe);
}

.news-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-item {
    background: rgba(255, 255, 255, .85);
    border-radius: 18px;
    padding: 24px;
    border: 1px solid rgba(236, 72, 153, .08);
    box-shadow: 0 6px 18px rgba(168, 85, 247, .04);
    transition: all .3s ease;
}

.news-item:hover {
    transform: translateX(6px);
    box-shadow: 0 10px 30px rgba(236, 72, 153, .1);
}

.news-date {
    display: inline-block;
    background: linear-gradient(135deg, #ec4899, #a855f7);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 3px 12px;
    border-radius: 12px;
    margin-bottom: 8px;
}

.news-item h3 {
    font-size: 18px;
    margin-bottom: 6px;
    color: #2b2b3d;
}

.news-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.75;
}

.news-more {
    text-align: center;
    margin-top: 32px;
}

.news-more a {
    color: #ec4899;
    font-weight: 600;
    padding: 10px 28px;
    border: 2px solid #ec4899;
    border-radius: 40px;
    display: inline-block;
    transition: all .3s;
}

.news-more a:hover {
    background: #ec4899;
    color: #fff;
}

/* ========= 用户口碑 ========= */
.testimonials {
    padding: 64px 24px;
    background: #fff;
}

.tm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    max-width: 1080px;
    margin: 0 auto;
}

.tm-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, .9), rgba(245, 243, 255, .9));
    border-radius: 20px;
    padding: 28px;
    border: 1px solid rgba(168, 85, 247, .08);
    box-shadow: 0 8px 24px rgba(168, 85, 247, .06);
    transition: transform .3s;
}

.tm-card:hover {
    transform: translateY(-6px);
}

.tm-card .stars {
    color: #fbbf24;
    font-size: 18px;
    margin-bottom: 10px;
}

.tm-card p {
    font-size: 14px;
    color: #555;
    margin-bottom: 16px;
}

.tm-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tm-user img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.tm-user span {
    font-weight: 600;
    font-size: 14px;
    color: #2b2b3d;
}

/* ========= FAQ ========= */
.faq {
    padding: 64px 24px;
    background: linear-gradient(180deg, #faf7fc, #fff);
}

.faq-list {
    max-width: 820px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, .85);
    border-radius: 16px;
    margin-bottom: 16px;
    border: 1px solid rgba(168, 85, 247, .08);
    box-shadow: 0 4px 16px rgba(168, 85, 247, .04);
    overflow: hidden;
    transition: box-shadow .3s;
}

.faq-item:hover {
    box-shadow: 0 8px 24px rgba(168, 85, 247, .08);
}

.faq-item summary {
    padding: 20px 24px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #2b2b3d;
    transition: color .3s;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 24px;
    font-weight: 400;
    color: #ec4899;
    transition: transform .3s;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item .faq-answer {
    padding: 0 24px 20px;
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    border-top: 1px solid rgba(168, 85, 247, .05);
    padding-top: 14px;
}

/* ========= 页脚 ========= */
.footer {
    background: linear-gradient(135deg, #291245, #1e1e30);
    color: #c9c9e0;
    padding: 48px 24px 24px;
    text-align: center;
    font-size: 14px;
}

.footer a {
    color: #e879a8;
}

.footer a:hover {
    text-decoration: underline;
}

.footer-info {
    max-width: 700px;
    margin: 0 auto;
}

.footer-info p {
    margin-bottom: 6px;
}

.footer-links {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-copy {
    margin-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 16px;
    font-size: 13px;
    color: #9a9ab5;
}

/* ========= 响应式 ========= */
@media (max-width: 720px) {
    .nav-links {
        gap: 14px;
        font-size: 13px;
        padding: 0 12px;
        justify-content: center;
    }
    .nav-links a {
        font-size: 13px;
    }
    .hero {
        padding: 48px 16px 40px;
    }
    .stats-grid,
    .adv-grid,
    .event-grid,
    .live-grid,
    .rank-grid,
    .tm-grid {
        grid-template-columns: 1fr;
    }
    .story-inner {
        flex-direction: column-reverse;
    }
    .section-title {
        font-size: 24px;
    }
}