* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif !important;
}
body {
    background: #0a0a0a;
    color: #f5e6c8;
    line-height: 1.7;
    overflow-x: hidden;
}
/* 导航 */
header {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a120b 60%, #2d1b0e 100%);
    padding: 18px 0;
    border-bottom: 2px solid rgba(251, 191, 36, 0.25);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    flex-wrap: wrap;
    gap: 12px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fbbf24;
    letter-spacing: 2px;
}
.logo img {
    height: 36px;
    border-radius: 8px;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.nav-links a {
    color: #e8d5b0;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 30px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}
.nav-links a:hover {
    color: #0a0a0a;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    border-color: #fbbf24;
    box-shadow: 0 0 25px rgba(251, 191, 36, 0.35);
}
/* 主体容器 */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* Hero */
.hero {
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(10,10,10,0.9) 0%, rgba(26,18,11,0.85) 40%, rgba(180,83,9,0.6) 100%), url('/img/ball.webp') center/cover no-repeat;
    border-radius: 24px;
    margin: 40px 0 32px;
    border: 1px solid rgba(251, 191, 36, 0.3);
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(251,191,36,0.15) 0%, transparent 60%);
    animation: heroShine 8s ease-in-out infinite alternate;
}
@keyframes heroShine {
    0% { transform: translate(0, 0); }
    100% { transform: translate(20px, 20px); }
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero h2 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(90deg, #fbbf24, #fde68a, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    letter-spacing: 4px;
    text-shadow: 0 0 40px rgba(251, 191, 36, 0.3);
}
.hero p {
    font-size: 1.15rem;
    color: rgba(245, 230, 200, 0.85);
    max-width: 700px;
    margin: 0 auto;
    letter-spacing: 1px;
}
/* GEO */
.geo-intro {
    background: linear-gradient(145deg, #0d0a06 0%, #1a120b 50%, #0d0a06 100%);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 32px;
    position: relative;
}
.geo-intro::after {
    content: '⚽';
    position: absolute;
    bottom: 16px;
    right: 24px;
    font-size: 2.4rem;
    opacity: 0.15;
}
.geo-intro h1 {
    font-size: 2rem;
    font-weight: 800;
    color: #fbbf24;
    margin-bottom: 18px;
    letter-spacing: 2px;
    line-height: 1.4;
}
.geo-intro p {
    font-size: 1rem;
    color: rgba(245, 230, 200, 0.85);
    text-indent: 2em;
    letter-spacing: 0.5px;
}
/* Section 通用 */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fbbf24;
    text-align: center;
    margin: 48px 0 30px;
    position: relative;
    letter-spacing: 3px;
}
.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #fbbf24, transparent);
    margin: 12px auto 0;
    border-radius: 2px;
}
/* 数据统计 */
.data-stats {
    background: linear-gradient(145deg, #0f0a06, #1a120b);
    border-radius: 20px;
    border: 1px solid rgba(251, 191, 36, 0.2);
    padding: 40px 30px;
    margin-bottom: 32px;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}
.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(251, 191, 36, 0.15);
    border-radius: 16px;
    padding: 30px 16px;
    transition: all 0.3s;
}
.stat-item:hover {
    border-color: #fbbf24;
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.15);
    transform: translateY(-4px);
}
.stat-num {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fbbf24;
    line-height: 1.2;
}
.stat-num span {
    font-size: 1.4rem;
    font-weight: 600;
    margin-left: 2px;
}
.stat-label {
    color: rgba(245, 230, 200, 0.7);
    font-size: 0.95rem;
    margin-top: 8px;
    letter-spacing: 1px;
}
/* 核心优势 */
.core-advantages {
    margin-bottom: 32px;
}
.adv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 26px;
}
.adv-item {
    background: linear-gradient(145deg, #0d0a06, #1a120b);
    border: 1px solid rgba(251, 191, 36, 0.18);
    border-radius: 18px;
    padding: 32px 24px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.adv-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #fbbf24, #b45309);
}
.adv-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(251, 191, 36, 0.1);
}
.adv-icon {
    font-size: 2.2rem;
    margin-bottom: 14px;
    display: block;
}
.adv-item h3 {
    color: #fbbf24;
    font-size: 1.15rem;
    margin-bottom: 10px;
    font-weight: 700;
}
.adv-item p {
    color: rgba(245, 230, 200, 0.75);
    font-size: 0.9rem;
    line-height: 1.6;
}
/* 品牌故事 */
.brand-story {
    background: linear-gradient(145deg, #0f0a06, #1a120b);
    border-radius: 20px;
    border: 1px solid rgba(251, 191, 36, 0.2);
    padding: 40px;
    margin-bottom: 32px;
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}
.brand-story img {
    border-radius: 16px;
    max-width: 260px;
    width: 100%;
    border: 2px solid rgba(251, 191, 36, 0.3);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}
.brand-text h2 {
    color: #fbbf24;
    font-size: 1.6rem;
    margin-bottom: 14px;
}
.brand-text p {
    color: rgba(245, 230, 200, 0.8);
    font-size: 0.95rem;
    line-height: 1.8;
    text-indent: 2em;
}
/* 焦点赛事 */
.featured-events {
    margin-bottom: 32px;
}
.event-card {
    background: linear-gradient(145deg, #0d0a06, #1a120b);
    border: 1px solid rgba(251, 191, 36, 0.18);
    border-radius: 18px;
    padding: 28px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    transition: all 0.3s;
}
.event-card:hover {
    border-color: #fbbf24;
    box-shadow: 0 0 40px rgba(251, 191, 36, 0.1);
}
.event-card img {
    width: 80px;
    height: 80px;
    border-radius: 14px;
    object-fit: cover;
    border: 1px solid rgba(251, 191, 36, 0.3);
}
.event-info {
    flex: 1;
    min-width: 200px;
}
.event-info h3 {
    color: #fbbf24;
    font-size: 1.1rem;
    margin-bottom: 6px;
}
.event-info p {
    color: rgba(245, 230, 200, 0.7);
    font-size: 0.85rem;
    line-height: 1.6;
}
.event-odds {
    text-align: center;
    border-left: 1px solid rgba(251, 191, 36, 0.2);
    padding-left: 20px;
}
.event-odds .odds {
    color: #fbbf24;
    font-size: 1.2rem;
    font-weight: 700;
}
.event-odds .odds-label {
    color: rgba(245, 230, 200, 0.5);
    font-size: 0.75rem;
    margin-top: 4px;
}
/* 热门排行 */
.rankings {
    margin-bottom: 32px;
}
.rank-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.rank-card {
    background: linear-gradient(145deg, #0d0a06, #1a120b);
    border: 1px solid rgba(251, 191, 36, 0.15);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}
.rank-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: rgba(251, 191, 36, 0.4);
    width: 50px;
    text-align: center;
}
.rank-card img {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    object-fit: cover;
}
.rank-info {
    flex: 1;
}
.rank-info h4 {
    color: #e8d5b0;
    font-size: 1rem;
    margin-bottom: 4px;
}
.rank-info p {
    color: rgba(245, 230, 200, 0.6);
    font-size: 0.8rem;
}
.rank-tag {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}
/* 用户口碑 */
.testimonials {
    margin-bottom: 32px;
}
.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}
.testi-card {
    background: linear-gradient(145deg, #0d0a06, #1a120b);
    border: 1px solid rgba(251, 191, 36, 0.15);
    border-radius: 18px;
    padding: 24px;
    position: relative;
}
.testi-card::before {
    content: '“';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 4rem;
    color: rgba(251, 191, 36, 0.15);
    font-family: Georgia, serif;
}
.testi-card p {
    color: rgba(245, 230, 200, 0.8);
    font-size: 0.9rem;
    line-height: 1.7;
    font-style: italic;
    margin-top: 18px;
}
.testi-user {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 16px;
    color: #fbbf24;
    font-size: 0.85rem;
    font-weight: 600;
}
/* 新闻 */
.news-list {
    margin-bottom: 32px;
}
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}
.news-card {
    background: linear-gradient(145deg, #0d0a06, #1a120b);
    border: 1px solid rgba(251, 191, 36, 0.15);
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.3s;
}
.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(251, 191, 36, 0.1);
    border-color: rgba(251, 191, 36, 0.4);
}
.news-img {
    height: 160px;
    overflow: hidden;
    position: relative;
}
.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.news-card:hover .news-img img {
    transform: scale(1.08);
}
.news-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    color: #0a0a0a;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    letter-spacing: 1px;
}
.news-body {
    padding: 20px;
}
.news-body h3 {
    color: #e8d5b0;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.5;
    transition: color 0.3s;
}
.news-card:hover .news-body h3 {
    color: #fbbf24;
}
.news-date {
    color: rgba(245, 230, 200, 0.5);
    font-size: 0.8rem;
    margin-bottom: 10px;
    display: inline-block;
    background: rgba(251, 191, 36, 0.1);
    padding: 2px 10px;
    border-radius: 10px;
}
.news-body p {
    color: rgba(245, 230, 200, 0.7);
    font-size: 0.85rem;
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
/* FAQ */
.faq {
    margin-bottom: 32px;
}
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}
.faq-item {
    background: linear-gradient(145deg, #0d0a06, #1a120b);
    border: 1px solid rgba(251, 191, 36, 0.12);
    border-radius: 14px;
    padding: 24px 24px;
    margin-bottom: 16px;
    transition: all 0.3s;
}
.faq-item:hover {
    border-color: rgba(251, 191, 36, 0.4);
    box-shadow: 0 4px 24px rgba(251, 191, 36, 0.06);
}
.faq-q {
    color: #fbbf24;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.faq-q::before {
    content: 'Q';
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #0a0a0a;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 800;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.faq-a {
    color: rgba(245, 230, 200, 0.75);
    font-size: 0.9rem;
    line-height: 1.7;
    padding-left: 38px;
}
.faq-a::before {
    content: 'A';
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 800;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
}
/* 页脚 */
footer {
    background: linear-gradient(180deg, #0a0a0a, #0d0a06);
    border-top: 2px solid rgba(251, 191, 36, 0.2);
    padding: 48px 20px 24px;
    margin-top: 48px;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}
.footer-col h4 {
    color: #fbbf24;
    font-size: 1rem;
    margin-bottom: 14px;
    letter-spacing: 2px;
}
.footer-col p {
    color: rgba(245, 230, 200, 0.6);
    font-size: 0.85rem;
    line-height: 1.7;
}
.footer-col a {
    color: rgba(245, 230, 200, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 6px;
    transition: color 0.3s;
}
.footer-col a:hover {
    color: #fbbf24;
}
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    padding: 20px 0 0;
    margin-top: 36px;
    color: rgba(245, 230, 200, 0.4);
    font-size: 0.8rem;
    letter-spacing: 1px;
}
.copyright a {
    color: rgba(245, 230, 200, 0.5);
    text-decoration: none;
}
.copyright a:hover {
    color: #fbbf24;
}
/* 响应式 */
@media (max-width: 768px) {
    .hero h2 {
        font-size: 2.2rem;
    }
    .nav-links {
        justify-content: center;
        width: 100%;
    }
    .brand-story {
        flex-direction: column;
    }
    .event-card {
        flex-direction: column;
        text-align: center;
    }
    .event-odds {
        border-left: none;
        border-top: 1px solid rgba(251, 191, 36, 0.2);
        padding-left: 0;
        padding-top: 12px;
    }
}