* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif !important;
}

:root {
    --neon-pink: #ec4899;
    --neon-cyan: #22d3ee;
    --dark-bg: #0a0a0a;
    --deep-purple: #2d1b69;
    --text-primary: #e5e7eb;
    --text-secondary: #9ca3af;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.08);
}

body {
    background: linear-gradient(135deg, #0a0a0a 0%, #12082a 30%, #1a0e3d 60%, #2d1b69 100%);
    color: var(--text-primary);
    line-height: 1.7;
    min-height: 100vh;
    overflow-x: hidden;
    font-size: 16px;
}

h1, h2, h3, h4, p, a, span, div, section, footer, header, main {
    font-family: inherit;
}

h1 {
    font-size: 2.6rem;
    font-weight: 700;
    text-align: center;
    padding: 60px 20px 10px;
    background: linear-gradient(90deg, #ec4899, #22d3ee, #ec4899);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shine 4s linear infinite;
    line-height: 1.3;
    letter-spacing: 1px;
}

@keyframes shine {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.nav-container {
    background: rgba(10, 10, 10, 0.92);
    border-bottom: 1px solid rgba(236, 72, 153, 0.25);
    padding: 14px 32px;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--neon-pink);
    background: rgba(236, 72, 153, 0.08);
    border-color: rgba(236, 72, 153, 0.4);
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.25);
}

.nav-links a:first-child {
    font-weight: 700;
    font-size: 1.1rem;
    background: linear-gradient(90deg, #ec4899, #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    border: none;
}

.nav-links a:first-child:hover {
    background: linear-gradient(90deg, #ec4899, #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    box-shadow: none;
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    margin: 60px 0;
    padding: 40px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.04), rgba(34, 211, 238, 0.04));
    pointer-events: none;
    border-radius: 16px;
}

section:hover {
    border-color: rgba(236, 72, 153, 0.3);
    box-shadow: 0 0 40px rgba(236, 72, 153, 0.08), 0 0 60px rgba(34, 211, 238, 0.05);
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.section-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(236, 72, 153, 0.4), rgba(34, 211, 238, 0.4));
    max-width: 200px;
}

.section-title .emoji {
    font-size: 2rem;
}

/* GEO intro */
#geo-intro {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.06), rgba(34, 211, 238, 0.06)), rgba(10, 10, 10, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

#geo-intro p {
    font-size: 1.05rem;
    color: var(--text-primary);
    line-height: 1.9;
    position: relative;
    z-index: 1;
}

/* 数据统计 */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    position: relative;
    z-index: 1;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(236, 72, 153, 0.4);
    box-shadow: 0 8px 30px rgba(236, 72, 153, 0.15);
}

.stat-num {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ec4899, #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1.2;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-top: 8px;
    display: block;
}

/* 核心优势 */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    position: relative;
    z-index: 1;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 28px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.advantage-card:hover {
    border-color: rgba(34, 211, 238, 0.4);
    box-shadow: 0 0 30px rgba(34, 211, 238, 0.1);
}

.advantage-card .emoji {
    font-size: 2.8rem;
    margin-bottom: 12px;
    display: block;
}

.advantage-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.advantage-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* 品牌故事 */
.brand-story-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.brand-story-text {
    flex: 1;
    min-width: 280px;
}

.brand-story-text p {
    margin-bottom: 16px;
    color: var(--text-secondary);
    line-height: 1.9;
}

.brand-story-img {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.brand-story-img img {
    max-width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 40px rgba(34, 211, 238, 0.08);
    max-height: 320px;
    object-fit: cover;
}

/* 焦点赛事 */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    position: relative;
    z-index: 1;
}

.event-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateY(-4px);
    border-color: rgba(236, 72, 153, 0.4);
    box-shadow: 0 8px 30px rgba(236, 72, 153, 0.12);
}

.event-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.event-card .event-info {
    padding: 20px;
}

.event-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.event-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.event-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(34, 211, 238, 0.2));
    color: var(--neon-pink);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    margin-top: 12px;
    border: 1px solid rgba(236, 72, 153, 0.3);
}

/* 赛事直播 */
.live-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.live-features {
    flex: 1;
    min-width: 280px;
}

.live-features ul {
    list-style: none;
    padding: 0;
}

.live-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.live-features li::before {
    content: '⚡';
    font-size: 1.2rem;
    flex-shrink: 0;
}

.live-cta {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.live-cta img {
    max-width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 40px rgba(236, 72, 153, 0.15);
    max-height: 320px;
    object-fit: cover;
}

/* 用户口碑 */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: rgba(34, 211, 238, 0.3);
    box-shadow: 0 0 30px rgba(34, 211, 238, 0.08);
}

.testimonial-card .stars {
    color: #fbbf24;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.testimonial-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-style: italic;
    line-height: 1.8;
}

.testimonial-author {
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--neon-pink);
    font-weight: 600;
}

/* 下载中心 */
.download-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.download-info {
    flex: 1;
    min-width: 280px;
}

.download-info p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.8;
}

.download-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 20px;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid;
}

.download-btn.ios {
    background: rgba(34, 211, 238, 0.1);
    border-color: rgba(34, 211, 238, 0.4);
    color: var(--neon-cyan);
}

.download-btn.android {
    background: rgba(236, 72, 153, 0.1);
    border-color: rgba(236, 72, 153, 0.4);
    color: var(--neon-pink);
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.download-img {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.download-img img {
    max-width: 200px;
    border-radius: 16px;
    box-shadow: 0 0 40px rgba(236, 72, 153, 0.2), 0 0 60px rgba(34, 211, 238, 0.1);
    max-height: 320px;
    object-fit: cover;
}

/* 新闻 */
.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.news-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 24px 28px;
    transition: all 0.3s ease;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.news-item:hover {
    border-color: rgba(236, 72, 153, 0.3);
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.06);
}

.news-item .news-meta {
    min-width: 140px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.news-item .news-date {
    font-size: 0.85rem;
    color: var(--neon-cyan);
    font-weight: 600;
    background: rgba(34, 211, 238, 0.1);
    padding: 4px 10px;
    border-radius: 6px;
    display: inline-block;
    width: fit-content;
}

.news-item .news-tag {
    font-size: 0.75rem;
    color: var(--neon-pink);
    background: rgba(236, 72, 153, 0.1);
    padding: 3px 10px;
    border-radius: 20px;
    display: inline-block;
    width: fit-content;
    border: 1px solid rgba(236, 72, 153, 0.2);
}

.news-item .news-body {
    flex: 1;
    min-width: 280px;
}

.news-item .news-body h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.news-item .news-body p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.8;
}

/* FAQ */
.faq-list {
    display: grid;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(34, 211, 238, 0.3);
    box-shadow: 0 0 30px rgba(34, 211, 238, 0.06);
}

.faq-question {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-question::before {
    content: '❓';
    font-size: 1.2rem;
}

.faq-answer {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.8;
    padding-left: 32px;
}

/* 页脚 */
footer {
    background: rgba(10, 10, 10, 0.95);
    border-top: 1px solid rgba(236, 72, 153, 0.2);
    padding: 40px 24px 20px;
    margin-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 24px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.footer-info span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-links {
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.footer-links a {
    color: var(--neon-pink);
    text-decoration: none;
    padding: 0 8px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--neon-cyan);
}

.footer-copyright {
    color: var(--text-secondary);
    font-size: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.8rem;
        padding: 40px 16px 10px;
    }

    section {
        padding: 24px 16px;
        margin: 30px 0;
    }

    .nav-container {
        padding: 10px 16px;
    }

    .nav-links {
        gap: 8px;
    }

    .nav-links a {
        padding: 6px 10px;
        font-size: 13px;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .stats-grid,
    .advantages-grid,
    .events-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}