* {
    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, #000000 0%, #1a1a1a 100%);
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
}
a { color: var(--gold); text-decoration: none; }
:root {
    --gold: #c9a86c;
    --dark-red: #8b0000;
    --black: #000;
    --dark-gray: #1a1a1a;
    --card-bg: rgba(26, 26, 26, 0.6);
    --card-border: rgba(201, 168, 108, 0.15);
    --text-dim: #888;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* 导航 */
.navbar {
    position: sticky; top: 0; z-index: 1000;
    background: rgba(0, 0, 0, 0.92);
    border-bottom: 1px solid rgba(201, 168, 108, 0.2);
    backdrop-filter: blur(12px);
}
.nav-links {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
    gap: 24px; padding: 16px 20px; max-width: 1200px; margin: 0 auto;
}
.nav-links a {
    color: #c9a86c; font-size: 14px; letter-spacing: 1px;
    transition: all 0.3s ease; padding: 4px 8px; border-radius: 4px;
}
.nav-links a:hover { color: #ffd700; text-shadow: 0 0 12px rgba(255, 215, 0, 0.5); }

/* H1 + GEO */
.hero {
    background: linear-gradient(160deg, #0a0a0a 0%, #1a1a1a 60%, #101010 100%);
    padding: 100px 20px 80px;
    text-align: center;
    border-bottom: 1px solid rgba(201, 168, 108, 0.1);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute; top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(201, 168, 108, 0.08) 0%, transparent 50%);
    animation: heroGlow 8s ease-in-out infinite;
}
@keyframes heroGlow {
    0%, 100% { opacity: 0.6; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(-20px); }
}
.hero h1 {
    font-size: 2.6em; font-weight: 700; color: #f0e6d2;
    margin-bottom: 24px; letter-spacing: 2px;
    text-shadow: 0 0 30px rgba(201, 168, 108, 0.3);
    position: relative; z-index: 1;
}
.hero .geo-desc {
    max-width: 900px; margin: 0 auto 30px;
    color: #b0aa9e; font-size: 15px; line-height: 1.8;
    position: relative; z-index: 1;
}
.hero img {
    width: 100%; max-width: 600px; border-radius: 16px;
    border: 1px solid rgba(201, 168, 108, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    position: relative; z-index: 1;
}

/* 通用区块 */
.section { padding: 80px 20px; }
.section-title {
    font-size: 2em; text-align: center; color: #f0e6d2;
    margin-bottom: 12px; letter-spacing: 2px;
}
.section-subtitle {
    text-align: center; color: #888; margin-bottom: 50px; font-size: 14px;
}
.section-divider {
    width: 80px; height: 2px; background: linear-gradient(90deg, transparent, #c9a86c, transparent);
    margin: 0 auto 30px;
}

/* 卡片 */
.card {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.85), rgba(10, 10, 10, 0.6));
    border: 1px solid var(--card-border);
    border-radius: 14px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), inset 0 0 30px rgba(201, 168, 108, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(201, 168, 108, 0.08);
}

/* 品牌故事 */
.brand-story-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center;
}
.brand-story-grid img {
    width: 100%; border-radius: 14px;
    border: 1px solid rgba(201, 168, 108, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
.brand-story-text p { margin-bottom: 16px; color: #b0aa9e; font-size: 15px; line-height: 1.8; }

/* 数据统计 */
.stats-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 40px;
}
.stat-box {
    text-align: center; padding: 30px 20px;
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.8), rgba(0, 0, 0, 0.4));
    border: 1px solid var(--card-border); border-radius: 12px;
    transition: all 0.3s ease;
}
.stat-box:hover { border-color: rgba(201, 168, 108, 0.4); }
.stat-box .num { font-size: 2.4em; color: #c9a86c; font-weight: 700; }
.stat-box .label { color: #888; font-size: 13px; margin-top: 8px; }

/* 核心优势 */
.adv-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.adv-item { padding: 24px; }
.adv-item h3 { color: #c9a86c; font-size: 18px; margin-bottom: 10px; }
.adv-item p { color: #999; font-size: 14px; line-height: 1.7; }

/* 焦点赛事 */
.event-card {
    display: grid; grid-template-columns: auto 1fr auto; gap: 30px; align-items: center;
    padding: 30px; margin-bottom: 20px;
    background: linear-gradient(90deg, rgba(139, 0, 0, 0.08), rgba(26, 26, 26, 0.7), rgba(201, 168, 108, 0.05));
}
.event-team { font-size: 18px; font-weight: 600; color: #e8e0d0; }
.event-score { font-size: 24px; font-weight: 700; color: #c9a86c; min-width: 60px; text-align: center; }
.event-status { font-size: 12px; color: #888; margin-top: 4px; }

/* 热门排行 */
.rank-list { display: flex; flex-direction: column; gap: 16px; }
.rank-item {
    display: flex; align-items: center; gap: 25px;
    padding: 20px 25px;
    background: linear-gradient(90deg, rgba(26, 26, 26, 0.7), rgba(10, 10, 10, 0.5));
    border: 1px solid var(--card-border); border-radius: 10px;
    transition: all 0.3s ease;
}
.rank-item:hover { border-color: rgba(201, 168, 108, 0.3); transform: translateX(6px); }
.rank-no {
    width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-weight: 700; color: #000; background: linear-gradient(135deg, #c9a86c, #f0e6d2);
}
.rank-info { flex: 1; }
.rank-info h4 { color: #e0d8c8; font-size: 16px; }
.rank-info p { color: #888; font-size: 13px; }
.rank-tag { color: #c9a86c; font-size: 12px; padding: 4px 12px; border: 1px solid rgba(201, 168, 108, 0.3); border-radius: 20px; }

/* 用户口碑 */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card { padding: 28px; }
.testi-card .quote { color: #b0aa9e; font-size: 14px; line-height: 1.8; font-style: italic; }
.testi-card .author { margin-top: 18px; color: #c9a86c; font-weight: 600; font-size: 14px; }
.testi-card .role { color: #666; font-size: 12px; }

/* CTA */
.cta-section {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.2), rgba(0, 0, 0, 0.8), rgba(201, 168, 108, 0.1));
    text-align: center; padding: 100px 20px;
    border-top: 1px solid rgba(201, 168, 108, 0.2);
    border-bottom: 1px solid rgba(201, 168, 108, 0.2);
}
.cta-section h2 { font-size: 2.2em; color: #f0e6d2; margin-bottom: 16px; }
.cta-section p { color: #b0aa9e; max-width: 600px; margin: 0 auto 30px; font-size: 15px; }
.btn {
    display: inline-block; padding: 14px 40px; border-radius: 30px;
    background: linear-gradient(135deg, #c9a86c, #a8874a);
    color: #000; font-weight: 600; font-size: 15px; letter-spacing: 1px;
    transition: all 0.3s ease; box-shadow: 0 4px 20px rgba(201, 168, 108, 0.3);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201, 168, 108, 0.5); }

/* 下载中心 */
.download-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.download-grid img { width: 100%; max-width: 400px; border-radius: 16px; border: 1px solid rgba(201, 168, 108, 0.2); box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5); }
.download-info h3 { color: #e0d8c8; font-size: 24px; margin-bottom: 16px; }
.download-info p { color: #999; margin-bottom: 30px; font-size: 14px; line-height: 1.7; }
.download-btns { display: flex; gap: 20px; }

/* 新闻 */
.news-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.news-card { padding: 30px; display: flex; flex-direction: column; gap: 12px; }
.news-date {
    align-self: flex-start; font-size: 12px; color: #c9a86c;
    border: 1px solid rgba(201, 168, 108, 0.3); padding: 4px 12px; border-radius: 20px;
}
.news-card h3 { color: #e0d8c8; font-size: 17px; line-height: 1.5; }
.news-card p { color: #999; font-size: 14px; line-height: 1.7; flex: 1; }

/* FAQ */
.faq-list { max-width: 900px; margin: 0 auto; }
.faq-item {
    margin-bottom: 15px;
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.8), rgba(10, 10, 10, 0.5));
    border: 1px solid var(--card-border); border-radius: 12px;
    overflow: hidden;
}
.faq-item summary {
    padding: 20px 25px; cursor: pointer; font-weight: 600; color: #e0d8c8;
    font-size: 16px; transition: all 0.3s ease;
    list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary:hover { color: #c9a86c; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '▾'; color: #c9a86c; font-size: 18px; }
.faq-item[open] summary::after { content: '▴'; }
.faq-item .faq-answer { padding: 0 25px 20px; color: #999; font-size: 14px; line-height: 1.8; }

/* 页脚 */
.footer {
    background: #0a0a0a; border-top: 1px solid rgba(201, 168, 108, 0.15);
    padding: 40px 20px 20px; text-align: center;
}
.footer-info { margin-bottom: 20px; }
.footer-info p { color: #888; font-size: 13px; line-height: 1.8; }
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05); padding-top: 20px;
    display: flex; justify-content: center; gap: 20px; flex-wrap: wrap;
    color: #666; font-size: 13px;
}
.footer-bottom a { color: #888; margin: 0 5px; }
.footer-bottom a:hover { color: #c9a86c; }

@media (max-width: 768px) {
    .hero h1 { font-size: 1.8em; }
    .brand-story-grid, .download-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .adv-grid, .testi-grid, .news-grid { grid-template-columns: 1fr; }
    .event-card { grid-template-columns: 1fr; text-align: center; }
    .nav-links { gap: 12px; }
}