* {
    font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif !important;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background: #fdf6f0;
    color: #3a2e2a;
    line-height: 1.7;
    overflow-x: hidden;
}
img {
    max-width: 100%;
    display: inline-block;
    vertical-align: middle;
}
a {
    text-decoration: none;
    color: inherit;
    transition: all .3s ease;
}
ul {
    list-style: none;
}
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}
.text-center {
    text-align: center;
}
.section-title {
    font-size: 2.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 18px;
    background: linear-gradient(135deg, #e8796f, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    border-radius: 4px;
    background: linear-gradient(90deg, #e8796f, #fbbf24);
}
.section-sub {
    color: #8a7a76;
    font-size: .95rem;
    margin-bottom: 30px;
}

/* ===== 导航栏 ===== */
.navbar {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(232,121,111,0.18);
    position: sticky;
    top: 0;
    z-index: 999;
    padding: 10px 0;
}
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.logo a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1.2rem;
    color: #e8796f;
}
.logo img {
    height: 32px;
    width: auto;
}
.nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}
.nav-links a {
    padding: 8px 18px;
    border-radius: 30px;
    font-size: .9rem;
    font-weight: 500;
    color: #5a4a46;
    background: linear-gradient(135deg, rgba(232,121,111,0.08), rgba(251,191,36,0.12));
    border: 1px solid transparent;
    transition: all .3s ease;
}
.nav-links a:hover {
    background: linear-gradient(135deg, #e8796f, #fbbf24);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(232,121,111,0.35);
}

/* ===== Hero ===== */
.hero-section {
    background: linear-gradient(135deg, #1e1b1a 0%, #3a2c2a 50%, #6b4e44 100%);
    position: relative;
    padding: 90px 0 70px;
    overflow: hidden;
    text-align: center;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232,121,111,0.25), transparent 70%);
    pointer-events: none;
}
.hero-section::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -15%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(251,191,36,0.2), transparent 70%);
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-content img {
    height: 90px;
    width: auto;
    margin-bottom: 18px;
    filter: drop-shadow(0 0 24px rgba(251,191,36,0.4));
    border-radius: 20px;
}
.hero-content h2 {
    font-size: 2.6rem;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 8px;
    font-weight: 700;
}
.hero-content p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    margin-bottom: 24px;
    letter-spacing: 4px;
}
.hero-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-primary {
    padding: 12px 32px;
    border-radius: 40px;
    background: linear-gradient(135deg, #e8796f, #fbbf24);
    color: #fff;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(232,121,111,0.4);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(251,191,36,0.5);
}
.btn-secondary {
    padding: 12px 32px;
    border-radius: 40px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.6);
    color: #fff;
    font-weight: 500;
    backdrop-filter: blur(4px);
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-3px);
}

/* ===== GEO通用 ===== */
.geo-intro {
    padding: 55px 0 20px;
    background: #fff;
}
.geo-intro .container {
    max-width: 940px;
    text-align: center;
}
.geo-intro h1 {
    font-size: 2.3rem;
    font-weight: 700;
    color: #2e2220;
    margin-bottom: 18px;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #e8796f, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.geo-intro p {
    color: #6b5a56;
    font-size: 1.02rem;
    line-height: 1.9;
}

/* ===== 通用区块 ===== */
.section-pad {
    padding: 60px 0;
}
.bg-white {
    background: #fff;
}
.bg-soft {
    background: #fdf2ec;
}
.xf-card {
    background: #fff;
    border-radius: 18px;
    padding: 32px 26px;
    box-shadow: 0 6px 30px rgba(232,121,111,0.1);
    transition: transform .35s ease, box-shadow .35s ease;
    border: 1px solid rgba(232,121,111,0.08);
    text-align: center;
    height: 100%;
}
.xf-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 40px rgba(232,121,111,0.2);
}
.xf-card img {
    height: 52px;
    width: 52px;
    object-fit: contain;
    margin-bottom: 16px;
    border-radius: 12px;
}
.xf-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #3a2e2a;
}
.xf-card p {
    font-size: .9rem;
    color: #8a7a76;
    line-height: 1.7;
}
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

/* ===== 数据统计 ===== */
.stats-bg {
    background: linear-gradient(135deg, #2e2220 0%, #4a3530 100%);
    padding: 50px 0;
    text-align: center;
    color: #fff;
}
.stats-bg .section-title {
    color: #fff;
    -webkit-text-fill-color: #fff;
    background: none;
}
.stats-bg .section-title::after {
    background: linear-gradient(90deg, #e8796f, #fbbf24);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
}
.stat-item {
    background: rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 28px 16px;
    border: 1px solid rgba(255,255,255,0.12);
    transition: background .3s;
}
.stat-item:hover {
    background: rgba(255,255,255,0.14);
}
.stat-num {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 6px;
}
.stat-label {
    font-size: .9rem;
    color: rgba(255,255,255,0.85);
}

/* ===== 品牌故事 ===== */
.story-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.story-wrap img {
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    height: 340px;
    object-fit: cover;
    width: 100%;
}
.story-text h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: #3a2e2a;
}
.story-text p {
    color: #6b5a56;
    margin-bottom: 16px;
    line-height: 1.9;
}

/* ===== 服务覆盖 ===== */
.coverage-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 22px;
}
.coverage-tag {
    padding: 8px 22px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(232,121,111,0.12), rgba(251,191,36,0.16));
    color: #6b4a42;
    font-size: .9rem;
    font-weight: 500;
    border: 1px solid rgba(232,121,111,0.15);
    transition: all .3s;
}
.coverage-tag:hover {
    background: linear-gradient(135deg, #e8796f, #fbbf24);
    color: #fff;
    transform: scale(1.05);
}

/* ===== 焦点赛事 ===== */
.event-card {
    background: #fff;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 6px 30px rgba(232,121,111,0.1);
    border-left: 5px solid #e8796f;
    transition: transform .3s, box-shadow .3s;
}
.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(232,121,111,0.18);
}
.event-card img {
    border-radius: 12px;
    height: 150px;
    object-fit: cover;
    width: 100%;
    margin-bottom: 14px;
}
.event-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .85rem;
    color: #8a7a76;
}
.event-info strong {
    color: #e8796f;
    font-size: 1.3rem;
}

/* ===== 赛事直播 ===== */
.live-card {
    background: linear-gradient(135deg, #1e1b1a, #3a2c2a);
    border-radius: 18px;
    padding: 20px;
    display: flex;
    gap: 16px;
    align-items: center;
    color: #fff;
    transition: transform .3s;
}
.live-card:hover {
    transform: scale(1.02);
}
.live-card img {
    border-radius: 10px;
    width: 90px;
    height: 90px;
    object-fit: cover;
}
.live-info .live-status {
    font-size: .75rem;
    color: #fbbf24;
    background: rgba(251,191,36,0.15);
    padding: 2px 10px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 6px;
}
.live-info h4 {
    font-size: 1.05rem;
    margin-bottom: 4px;
}
.live-info p {
    font-size: .85rem;
    color: rgba(255,255,255,0.7);
}

/* ===== 热门排行 ===== */
.rank-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 30px rgba(0,0,0,0.06);
}
.rank-table th, .rank-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid #f2e5df;
}
.rank-table th {
    background: linear-gradient(135deg, rgba(232,121,111,0.12), rgba(251,191,36,0.14));
    color: #5a3a32;
    font-weight: 600;
}
.rank-table tr:hover td {
    background: rgba(232,121,111,0.04);
}
.rank-badge {
    display: inline-block;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e8796f, #fbbf24);
    color: #fff;
    text-align: center;
    line-height: 28px;
    font-size: .8rem;
    font-weight: 700;
}

/* ===== 新闻 ===== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}
.news-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 6px 28px rgba(232,121,111,0.1);
    border: 1px solid rgba(232,121,111,0.06);
    transition: transform .3s, box-shadow .3s;
    display: flex;
    flex-direction: column;
}
.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(232,121,111,0.16);
}
.news-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}
.news-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.news-date {
    font-size: .78rem;
    color: #b09a93;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.news-date::before {
    content: '📅';
}
.news-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #3a2e2a;
    line-height: 1.5;
}
.news-excerpt {
    font-size: .88rem;
    color: #8a7a76;
    line-height: 1.75;
    flex: 1;
}

/* ===== FAQ ===== */
.faq-wrap {
    max-width: 880px;
    margin: 0 auto;
}
.faq-item {
    background: #fff;
    border-radius: 16px;
    margin-bottom: 16px;
    box-shadow: 0 4px 18px rgba(232,121,111,0.08);
    border: 1px solid rgba(232,121,111,0.08);
    overflow: hidden;
    transition: box-shadow .3s;
}
.faq-item:hover {
    box-shadow: 0 8px 30px rgba(232,121,111,0.14);
}
.faq-item details {
    padding: 0;
}
.faq-item summary {
    padding: 20px 24px;
    font-weight: 600;
    font-size: 1rem;
    color: #3a2e2a;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background .3s;
}
.faq-item summary::-webkit-details-marker {
    display: none;
}
.faq-item summary::after {
    content: '▾';
    color: #e8796f;
    font-size: 1.2rem;
    transition: transform .3s;
}
.faq-item details[open] summary::after {
    transform: rotate(180deg);
}
.faq-item details[open] summary {
    background: linear-gradient(135deg, rgba(232,121,111,0.04), rgba(251,191,36,0.08));
}
.faq-answer {
    padding: 0 24px 20px;
    color: #6b5a56;
    font-size: .92rem;
    line-height: 1.8;
    border-top: 1px dashed #f0e0da;
    margin: 0 24px;
    padding-top: 14px;
    padding-left: 0;
    padding-right: 0;
}

/* ===== 用户口碑 ===== */
.testimonial-card {
    background: #fff;
    border-radius: 18px;
    padding: 28px 24px;
    box-shadow: 0 6px 24px rgba(232,121,111,0.1);
    text-align: center;
    transition: transform .3s;
}
.testimonial-card:hover {
    transform: translateY(-6px);
}
.testimonial-card .quote-icon {
    font-size: 2rem;
    color: #e8796f;
    margin-bottom: 10px;
}
.testimonial-card p {
    font-size: .92rem;
    color: #6b5a56;
    line-height: 1.8;
    font-style: italic;
}
.testimonial-card .user {
    margin-top: 14px;
    font-weight: 600;
    color: #3a2e2a;
    font-style: normal;
    font-size: .88rem;
}
.testimonial-card .user span {
    color: #b09a93;
    font-weight: 400;
    margin-left: 6px;
}

/* ===== 合作伙伴 ===== */
.partner-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding: 20px 0;
}
.partner-item {
    background: #fff;
    border-radius: 14px;
    padding: 16px 22px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .3s, box-shadow .3s;
}
.partner-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(232,121,111,0.15);
}
.partner-item img {
    height: 36px;
    width: auto;
    object-fit: contain;
    border-radius: 6px;
}

/* ===== CTA ===== */
.cta-section {
    background: linear-gradient(135deg, #e8796f, #fbbf24);
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.cta-section h2 {
    font-size: 1.9rem;
    margin-bottom: 12px;
    font-weight: 700;
}
.cta-section p {
    font-size: 1rem;
    opacity: .95;
    margin-bottom: 24px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.cta-section img {
    height: 80px;
    margin-bottom: 16px;
    border-radius: 16px;
}
.cta-btn {
    padding: 14px 38px;
    border-radius: 40px;
    background: #fff;
    color: #e8796f;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* ===== 会员权益 ===== */
.member-card {
    background: linear-gradient(135deg, #fff, #fdf2ec);
    border-radius: 20px;
    padding: 30px 24px;
    text-align: center;
    border: 1px solid rgba(232,121,111,0.2);
    box-shadow: 0 8px 32px rgba(232,121,111,0.12);
    transition: transform .3s;
}
.member-card:hover {
    transform: translateY(-8px);
}
.member-card img {
    height: 60px;
    width: 60px;
    border-radius: 14px;
    margin-bottom: 14px;
}
.member-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: #3a2e2a;
}
.member-card p {
    font-size: .88rem;
    color: #8a7a76;
    line-height: 1.7;
}
.member-badge {
    display: inline-block;
    background: linear-gradient(135deg, #e8796f, #fbbf24);
    color: #fff;
    padding: 4px 16px;
    border-radius: 30px;
    font-size: .78rem;
    font-weight: 600;
    margin-top: 8px;
}

/* ===== 下载中心 ===== */
.download-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.download-box img {
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    width: 100%;
    height: 320px;
    object-fit: cover;
}
.download-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
}
.download-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
    transition: transform .3s;
}
.download-item:hover {
    transform: translateX(6px);
    box-shadow: 0 8px 24px rgba(232,121,111,0.12);
}
.download-item img {
    width: 42px;
    height: 42px;
    border-radius: 10px;
}
.download-item span {
    font-weight: 600;
    color: #3a2e2a;
}
.download-item small {
    color: #8a7a76;
    font-size: .8rem;
}

/* ===== 页脚 ===== */
.footer {
    background: #191514;
    color: #b5a19a;
    padding: 40px 0 20px;
    font-size: .88rem;
}
.footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 24px;
}
.footer h4 {
    color: #fff;
    margin-bottom: 12px;
    font-size: 1rem;
}
.footer a {
    color: #b5a19a;
}
.footer a:hover {
    color: #fbbf24;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 18px;
    text-align: center;
    font-size: .82rem;
    color: #7a6c67;
}
.footer-bottom a {
    color: #7a6c67;
    margin: 0 6px;
}
.footer-bottom a:hover {
    color: #fbbf24;
}

/* ===== 响应式 ===== */
@media (max-width: 992px) {
    .grid-3, .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .news-grid {
        grid-template-columns: 1fr;
    }
    .story-wrap, .download-box {
        grid-template-columns: 1fr;
    }
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .grid-2 {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 600px) {
    .grid-3, .grid-4, .stats-grid {
        grid-template-columns: 1fr;
    }
    .nav-links {
        justify-content: center;
    }
    .hero-content h2 {
        font-size: 1.8rem;
    }
    .section-title {
        font-size: 1.6rem;
    }
}