* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif !important;
    background: #0a0a0a;
    color: #e5e5e5;
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* 导航条 */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(251, 191, 36, 0.15);
    z-index: 999;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 38px;
    border-radius: 8px;
}

.logo span {
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(120deg, #fbbf24, #b45309);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
    flex-wrap: wrap;
}

.nav-links a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 20px;
    transition: all 0.3s ease;
    background: transparent;
}

.nav-links a:hover {
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.08);
}

/* Hero 大屏 */
.hero {
    min-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.55) 50%, rgba(10,10,10,0.92) 100%), url('/img/qipai.webp') center/cover no-repeat;
    position: relative;
    padding: 120px 24px 80px;
}

.hero-content {
    max-width: 800px;
}

.hero-content h1 {
    font-size: 42px;
    line-height: 1.3;
    font-weight: 800;
    color: #fbbf24;
    text-shadow: 0 4px 30px rgba(251, 191, 36, 0.25);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero-sub {
    font-size: 18px;
    color: rgba(229, 229, 229, 0.85);
    max-width: 640px;
    margin: 0 auto 36px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, #fbbf24, #b45309);
    color: #0a0a0a;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.35);
}

.btn-secondary {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(251, 191, 36, 0.4);
    color: #fbbf24;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(251, 191, 36, 0.1);
    border-color: #fbbf24;
    transform: translateY(-3px);
}

/* 通用区块 */
.section {
    padding: 80px 0;
}

.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #b45309;
    text-transform: uppercase;
    margin-bottom: 12px;
    padding-left: 6px;
    border-left: 3px solid #fbbf24;
}

.section-title {
    font-size: 34px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.section-sub {
    color: rgba(229, 229, 229, 0.7);
    font-size: 16px;
    max-width: 600px;
    margin-bottom: 50px;
}

/* GEO */
.geo-intro {
    background: linear-gradient(180deg, #0a0a0a 0%, #141414 100%);
    padding: 90px 24px;
    position: relative;
}

.geo-inner {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
}

.geo-inner .section-title {
    margin-bottom: 30px;
}

.geo-text {
    font-size: 16.5px;
    line-height: 2;
    color: rgba(229,229,229,0.85);
    text-align: left;
    background: rgba(255,255,255,0.03);
    padding: 36px 44px;
    border-radius: 16px;
    border: 1px solid rgba(251,191,36,0.12);
    backdrop-filter: blur(8px);
}

/* stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.stat-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
    border: 1px solid rgba(251,191,36,0.15);
    border-radius: 16px;
    padding: 36px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.stat-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #fbbf24, transparent);
}

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(251,191,36,0.08);
}

.stat-number {
    font-size: 46px;
    font-weight: 800;
    color: #fbbf24;
    line-height: 1.1;
}

.stat-label {
    margin-top: 12px;
    font-size: 15px;
    color: rgba(255,255,255,0.6);
}

/* 核心优势 */
.advantages {
    background: #0a0a0a;
}

.adv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.adv-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    border: 1px solid rgba(251,191,36,0.12);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.adv-card:hover {
    border-color: rgba(251,191,36,0.4);
    box-shadow: 0 8px 30px rgba(251,191,36,0.06);
}

.adv-icon {
    font-size: 36px;
    flex-shrink: 0;
}

.adv-card h3 {
    font-size: 19px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.adv-card p {
    color: rgba(255,255,255,0.65);
    font-size: 14.5px;
    line-height: 1.7;
}

/* 品牌故事 */
.story-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #151515 100%);
}

.story-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-image img {
    width: 100%;
    border-radius: 20px;
    border: 1px solid rgba(251,191,36,0.2);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.story-text p {
    color: rgba(255,255,255,0.72);
    font-size: 15.5px;
    line-height: 1.9;
    margin-bottom: 20px;
}

/* 时间线 */
.timeline-section {
    background: #0a0a0a;
}

.timeline {
    position: relative;
    padding: 40px 0;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 24px;
    width: 2px;
    background: linear-gradient(180deg, #fbbf24, #b45309);
    opacity: 0.3;
}

.timeline-item {
    position: relative;
    padding-left: 70px;
    margin-bottom: 46px;
}

.timeline-dot {
    position: absolute;
    left: 17px;
    top: 6px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fbbf24;
    border: 3px solid #0a0a0a;
    box-shadow: 0 0 0 3px rgba(251,191,36,0.3);
}

.timeline-year {
    font-size: 14px;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 6px;
    letter-spacing: 2px;
}

.timeline-item h4 {
    font-size: 19px;
    color: #fff;
    margin-bottom: 8px;
}

.timeline-item p {
    color: rgba(255,255,255,0.6);
    font-size: 14.5px;
    line-height: 1.7;
}

/* 服务覆盖 */
.coverage-section {
    background: #0d0d0d;
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.coverage-card {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255,255,255,0.02);
    border-radius: 16px;
    border: 1px solid rgba(251,191,36,0.08);
    transition: all 0.3s;
}

.coverage-card:hover {
    border-color: rgba(251,191,36,0.3);
}

.coverage-icon {
    font-size: 40px;
    margin-bottom: 18px;
}

.coverage-card h4 {
    color: #fff;
    font-size: 17px;
    margin-bottom: 8px;
}

.coverage-card p {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

/* 焦点赛事 */
.events-section {
    background: linear-gradient(135deg, #0a0a0a, #1a1206);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.event-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(251,191,36,0.12);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s;
}

.event-card:hover {
    transform: translateY(-4px);
    border-color: rgba(251,191,36,0.35);
    box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}

.event-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 1px solid rgba(251,191,36,0.1);
}

.event-card-body {
    padding: 24px;
}

.event-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: #b45309;
    background: rgba(251,191,36,0.08);
    padding: 3px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.event-card h3 {
    font-size: 17px;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.4;
}

.event-card p {
    color: rgba(255,255,255,0.55);
    font-size: 14px;
    line-height: 1.7;
}

/* 愿景使命 */
.vision-section {
    background: #0a0a0a;
    text-align: center;
}

.vision-inner {
    max-width: 780px;
    margin: 0 auto;
}

.vision-inner p {
    color: rgba(255,255,255,0.72);
    font-size: 16px;
    line-height: 2;
    margin-bottom: 30px;
}

.vision-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.vision-col {
    padding: 40px;
    border: 1px solid rgba(251,191,36,0.15);
    border-radius: 20px;
    background: rgba(255,255,255,0.02);
}

.vision-col h3 {
    font-size: 22px;
    color: #fbbf24;
    margin-bottom: 14px;
}

.vision-col p {
    color: rgba(255,255,255,0.65);
    font-size: 15px;
    line-height: 1.8;
}

/* 用户口碑 */
.testimonials-section {
    background: #0d0d0d;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testi-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(251,191,36,0.1);
    border-radius: 16px;
    padding: 32px;
    position: relative;
}

.testi-card::after {
    content: "\201D";
    font-size: 68px;
    color: rgba(251,191,36,0.2);
    position: absolute;
    right: 20px;
    top: 10px;
    font-family: Georgia, serif;
    line-height: 1;
}

.testi-text {
    color: rgba(255,255,255,0.7);
    font-size: 14.5px;
    line-height: 1.8;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fbbf24, #b45309);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #0a0a0a;
    font-size: 16px;
}

.testi-name {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}

.testi-position {
    color: rgba(255,255,255,0.4);
    font-size: 13px;
}

/* 游戏推荐 */
.game-recommend {
    background: linear-gradient(135deg, #0a0a0a, #131313);
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.game-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(251,191,36,0.1);
    border-radius: 16px;
    text-align: center;
    padding: 30px 20px;
    transition: all 0.4s;
}

.game-card:hover {
    transform: translateY(-6px);
    border-color: rgba(251,191,36,0.35);
    box-shadow: 0 8px 25px rgba(251,191,36,0.06);
}

.game-card img {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    margin-bottom: 16px;
}

.game-card h4 {
    color: #fff;
    font-size: 17px;
    margin-bottom: 8px;
}

.game-card p {
    color: rgba(255,255,255,0.5);
    font-size: 13.5px;
}

/* 新闻板块 */
.news-section {
    background: #0a0a0a;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.news-card {
    display: flex;
    gap: 20px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(251,191,36,0.1);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s;
}

.news-card:hover {
    border-color: rgba(251,191,36,0.3);
    background: rgba(255,255,255,0.03);
}

.news-date {
    font-size: 13px;
    color: #fbbf24;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.news-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.4;
}

.news-card p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    line-height: 1.7;
}

/* FAQ */
.faq-section {
    background: #0d0d0d;
}

.faq-list {
    max-width: 860px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(251,191,36,0.1);
    border-radius: 16px;
    margin-bottom: 20px;
    padding: 28px 32px;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: rgba(251,191,36,0.25);
}

.faq-question {
    font-size: 18px;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-question .icon-q {
    font-size: 22px;
}

.faq-answer {
    color: rgba(255,255,255,0.7);
    font-size: 14.5px;
    line-height: 1.8;
}

/* CTA */
.cta-section {
    background: linear-gradient(135deg, #b45309 0%, #fbbf24 100%);
    text-align: center;
    padding: 80px 24px;
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 800;
    color: #0a0a0a;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 17px;
    color: rgba(0,0,0,0.7);
    max-width: 600px;
    margin: 0 auto 36px;
}

.cta-btn {
    background: #0a0a0a;
    color: #fbbf24;
    padding: 16px 42px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    border: none;
}

.cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* 合作伙伴 */
.partners-section {
    background: #0a0a0a;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    align-items: center;
}

.partner-item {
    text-align: center;
    padding: 24px 12px;
    background: rgba(255,255,255,0.02);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.04);
    transition: all 0.3s;
}

.partner-item:hover {
    border-color: rgba(251,191,36,0.2);
}

.partner-item img {
    height: 36px;
    max-width: 80%;
    object-fit: contain;
    margin-bottom: 12px;
    border-radius: 6px;
}

.partner-name {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    font-weight: 600;
}

/* 下载中心 */
.download-section {
    background: linear-gradient(135deg, #0a0a0a, #1a1a2e);
}

.download-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.download-content h2 {
    font-size: 34px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

.download-content p {
    color: rgba(255,255,255,0.65);
    font-size: 15.5px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.download-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.download-btn {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(251,191,36,0.25);
    border-radius: 14px;
    padding: 14px 28px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s;
}

.download-btn:hover {
    background: rgba(251,191,36,0.08);
    border-color: #fbbf24;
}

.download-btn .icon {
    font-size: 28px;
}

.download-btn .label {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    display: block;
}

.download-btn .value {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.download-image img {
    width: 100%;
    border-radius: 20px;
    border: 1px solid rgba(251,191,36,0.2);
}

/* 页脚 */
.footer {
    background: #080808;
    padding: 60px 24px 20px;
    border-top: 1px solid rgba(251,191,36,0.1);
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 40px;
}

.footer-brand img {
    height: 36px;
    border-radius: 6px;
    margin-bottom: 16px;
}

.footer-brand p {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    line-height: 1.8;
}

.footer-col h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 1px;
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: #fbbf24;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.35);
}

.footer-bottom .sep {
    margin: 0 8px;
}

.footer-bottom a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #fbbf24;
}

/* 响应式 */
@media (max-width: 960px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .adv-grid { grid-template-columns: 1fr; }
    .story-layout { grid-template-columns: 1fr; }
    .coverage-grid { grid-template-columns: repeat(2, 1fr); }
    .events-grid { grid-template-columns: 1fr; }
    .testi-grid { grid-template-columns: 1fr; }
    .game-grid { grid-template-columns: repeat(2, 1fr); }
    .news-grid { grid-template-columns: 1fr; }
    .vision-cols { grid-template-columns: 1fr; }
    .partners-grid { grid-template-columns: repeat(3, 1fr); }
    .download-inner { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; }
    .nav-links { gap: 10px; justify-content: center; flex-wrap: wrap; }
}

@media (max-width: 600px) {
    .hero-content h1 { font-size: 30px; }
    .section-title { font-size: 26px; }
    .stats-grid { grid-template-columns: 1fr; }
    .coverage-grid { grid-template-columns: 1fr; }
    .game-grid { grid-template-columns: 1fr; }
    .partners-grid { grid-template-columns: repeat(2, 1fr); }
    .explore-grid { grid-template-columns: 1fr; }
}