* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif !important;
    }
    :root {
        --gold: #c9a55c;
        --red: #8b0000;
        --dark: #000000;
        --gray: #1a1a1a;
        --text: #e0ddd8;
        --dim: #9a958d;
    }
    html {
        scroll-behavior: smooth;
    }
    body {
        background: linear-gradient(160deg, #000000 0%, #111111 40%, #1a1a1a 100%);
        color: var(--text);
        min-height: 100vh;
        line-height: 1.7;
        -webkit-font-smoothing: antialiased;
    }
    .container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 24px;
    }
    a {
        color: var(--gold);
        text-decoration: none;
        transition: color 0.3s;
    }
    a:hover {
        color: #e0c88a;
    }
    img {
        max-width: 100%;
        border-radius: 8px;
    }
    .section {
        padding: 80px 0;
        position: relative;
    }
    .section-head {
        text-align: center;
        margin-bottom: 48px;
    }
    .section-head h2 {
        font-size: 32px;
        font-weight: 700;
        color: #fff;
        letter-spacing: 2px;
        text-transform: uppercase;
    }
    .section-head p {
        color: var(--dim);
        font-size: 15px;
        margin-top: 8px;
    }
    .section-head .subtitle {
        color: var(--gold);
        font-size: 14px;
        letter-spacing: 4px;
        text-transform: uppercase;
        margin-bottom: 8px;
        display: block;
    }

    /* 导航 */
    .site-header {
        background: rgba(0, 0, 0, 0.92);
        border-bottom: 1px solid rgba(201, 165, 92, 0.15);
        padding: 14px 0;
        position: sticky;
        top: 0;
        z-index: 100;
        backdrop-filter: blur(16px);
    }
    .site-header .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 12px;
    }
    .logo {
        font-size: 26px;
        font-weight: 800;
        color: var(--gold);
        letter-spacing: 2px;
        text-shadow: 0 0 20px rgba(201, 165, 92, 0.4);
    }
    .logo span {
        color: var(--red);
        font-weight: 400;
    }
    .nav-links {
        display: flex;
        align-items: center;
        gap: 28px;
        flex-wrap: wrap;
    }
    .nav-links a {
        color: var(--text);
        font-size: 14px;
        font-weight: 500;
        letter-spacing: 1px;
        text-transform: uppercase;
        padding: 6px 0;
        border-bottom: 2px solid transparent;
        transition: all 0.3s;
    }
    .nav-links a:hover {
        color: var(--gold);
        border-bottom-color: var(--gold);
    }
    .nav-links a:first-child {
        color: var(--gold);
        font-weight: 700;
    }

    /* Hero */
    .hero {
        padding: 120px 0 80px;
        background: radial-gradient(ellipse at 30% 20%, rgba(139, 0, 0, 0.2) 0%, transparent 50%),
            radial-gradient(ellipse at 70% 80%, rgba(201, 165, 92, 0.1) 0%, transparent 40%);
        text-align: center;
    }
    .hero .container {
        max-width: 980px;
    }
    .hero h1 {
        font-size: 44px;
        font-weight: 800;
        color: #fff;
        line-height: 1.3;
        letter-spacing: 1px;
        margin-bottom: 28px;
    }
    .hero h1 .highlight {
        color: var(--gold);
    }
    .hero-desc {
        font-size: 16px;
        color: var(--dim);
        max-width: 780px;
        margin: 0 auto 36px;
        text-align: left;
        letter-spacing: 0.3px;
    }
    .hero-img {
        margin-top: 32px;
        border-radius: 16px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        max-height: 420px;
        object-fit: cover;
        width: 100%;
    }
    .hero-cta {
        display: inline-block;
        margin-top: 24px;
        padding: 14px 40px;
        background: linear-gradient(135deg, var(--gold) 0%, #a8863e 100%);
        color: #000;
        font-weight: 700;
        font-size: 16px;
        border-radius: 50px;
        letter-spacing: 1px;
        box-shadow: 0 4px 30px rgba(201, 165, 92, 0.3);
        transition: all 0.3s;
    }
    .hero-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 40px rgba(201, 165, 92, 0.45);
        color: #000;
    }

    /* 数据统计 */
    .stats {
        background: rgba(0, 0, 0, 0.4);
        border-top: 1px solid rgba(255, 255, 255, 0.04);
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    }
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 32px;
        text-align: center;
    }
    .stat-item {
        padding: 24px;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        transition: all 0.3s;
    }
    .stat-item:hover {
        border-color: rgba(201, 165, 92, 0.3);
        box-shadow: 0 0 30px rgba(201, 165, 92, 0.08);
    }
    .stat-num {
        font-size: 42px;
        font-weight: 800;
        color: var(--gold);
        line-height: 1.2;
    }
    .stat-label {
        font-size: 14px;
        color: var(--dim);
        margin-top: 8px;
        letter-spacing: 1px;
    }

    /* 核心优势 */
    .advantages-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    .adv-card {
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 16px;
        padding: 36px;
        transition: all 0.4s;
        position: relative;
        overflow: hidden;
    }
    .adv-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--gold), transparent);
        opacity: 0;
        transition: opacity 0.3s;
    }
    .adv-card:hover::before {
        opacity: 1;
    }
    .adv-card:hover {
        border-color: rgba(201, 165, 92, 0.25);
        box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
        transform: translateY(-4px);
    }
    .adv-icon {
        font-size: 40px;
        margin-bottom: 16px;
        display: block;
    }
    .adv-card h3 {
        font-size: 20px;
        color: #fff;
        margin-bottom: 12px;
        font-weight: 600;
    }
    .adv-card p {
        font-size: 14px;
        color: var(--dim);
        line-height: 1.6;
    }

    /* 焦点赛事 */
    .events-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
    .event-card {
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 16px;
        overflow: hidden;
        transition: all 0.4s;
    }
    .event-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 50px rgba(0, 0, 0, 0.5);
        border-color: rgba(201, 165, 92, 0.2);
    }
    .event-card img {
        width: 100%;
        height: 160px;
        object-fit: cover;
        border-radius: 0;
    }
    .event-body {
        padding: 24px;
    }
    .event-body .league {
        font-size: 12px;
        color: var(--gold);
        text-transform: uppercase;
        letter-spacing: 2px;
    }
    .event-body h3 {
        font-size: 18px;
        margin: 8px 0;
        color: #fff;
    }
    .event-body .time {
        font-size: 14px;
        color: var(--dim);
    }
    .event-body .vs {
        color: var(--gold);
        font-weight: 700;
    }

    /* 赛事直播 */
    .live-section {
        background: rgba(0, 0, 0, 0.3);
        border-top: 1px solid rgba(255, 255, 255, 0.03);
        border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    }
    .live-list {
        max-width: 800px;
        margin: 0 auto;
    }
    .live-item {
        display: flex;
        align-items: center;
        gap: 20px;
        padding: 16px 20px;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        margin-bottom: 14px;
        transition: all 0.3s;
    }
    .live-item:hover {
        border-color: rgba(201, 165, 92, 0.3);
    }
    .live-item .live-badge {
        background: var(--red);
        color: #fff;
        font-size: 11px;
        font-weight: 700;
        padding: 4px 12px;
        border-radius: 20px;
        letter-spacing: 1px;
        text-transform: uppercase;
    }
    .live-item .live-score {
        font-size: 22px;
        font-weight: 800;
        color: #fff;
        margin-left: auto;
    }
    .live-item .live-info {
        flex: 1;
        font-size: 15px;
        color: var(--text);
    }

    /* 新闻 */
    .news-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
    .news-card {
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 16px;
        overflow: hidden;
        transition: all 0.4s;
        display: flex;
        flex-direction: column;
    }
    .news-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 50px rgba(0, 0, 0, 0.5);
        border-color: rgba(201, 165, 92, 0.2);
    }
    .news-card img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        border-radius: 0;
    }
    .news-body {
        padding: 24px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    .news-tag {
        display: inline-block;
        background: rgba(201, 165, 92, 0.15);
        color: var(--gold);
        font-size: 11px;
        font-weight: 600;
        padding: 4px 12px;
        border-radius: 20px;
        letter-spacing: 1px;
        margin-bottom: 12px;
        align-self: flex-start;
        text-transform: uppercase;
    }
    .news-body h3 {
        font-size: 18px;
        color: #fff;
        line-height: 1.4;
        margin-bottom: 8px;
        font-weight: 600;
    }
    .news-date {
        font-size: 13px;
        color: var(--gold);
        margin-bottom: 12px;
        display: block;
    }
    .news-body p {
        font-size: 14px;
        color: var(--dim);
        line-height: 1.65;
        flex: 1;
    }
    .news-more {
        margin-top: 16px;
        font-size: 13px;
        color: var(--gold);
        font-weight: 600;
        transition: all 0.3s;
    }
    .news-more:hover {
        color: #fff;
        letter-spacing: 1px;
    }

    /* FAQ */
    .faq-wrap {
        max-width: 860px;
        margin: 0 auto;
    }
    .faq-item {
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        padding: 28px 32px;
        margin-bottom: 16px;
        transition: all 0.3s;
    }
    .faq-item:hover {
        border-color: rgba(201, 165, 92, 0.2);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    }
    .faq-item h3 {
        font-size: 17px;
        color: var(--gold);
        font-weight: 600;
        margin-bottom: 12px;
    }
    .faq-item p {
        font-size: 14px;
        color: var(--dim);
        line-height: 1.7;
    }

    /* 合作伙伴 */
    .partners-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 32px;
        margin-top: 24px;
    }
    .partner-item {
        display: flex;
        align-items: center;
        gap: 10px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.04);
        border-radius: 12px;
        padding: 16px 24px;
        transition: all 0.3s;
    }
    .partner-item:hover {
        border-color: rgba(201, 165, 92, 0.2);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }
    .partner-item img {
        width: 48px;
        height: 48px;
        object-fit: contain;
        border-radius: 0;
    }
    .partner-item span {
        font-size: 15px;
        font-weight: 600;
        color: var(--text);
    }

    /* 页脚 */
    .site-footer {
        background: #050505;
        border-top: 1px solid rgba(201, 165, 92, 0.1);
        padding: 60px 0 24px;
    }
    .footer-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr;
        gap: 48px;
        margin-bottom: 40px;
    }
    .footer-brand h3 {
        font-size: 22px;
        color: var(--gold);
        margin-bottom: 12px;
    }
    .footer-brand p {
        font-size: 14px;
        color: var(--dim);
        line-height: 1.6;
        max-width: 360px;
    }
    .footer-contact h4,
    .footer-links h4 {
        font-size: 16px;
        color: #fff;
        margin-bottom: 16px;
    }
    .footer-contact p {
        font-size: 14px;
        color: var(--dim);
        margin-bottom: 8px;
        line-height: 1.5;
    }
    .footer-links a {
        display: block;
        font-size: 14px;
        color: var(--dim);
        margin-bottom: 8px;
        transition: color 0.3s;
    }
    .footer-links a:hover {
        color: var(--gold);
    }
    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.04);
        padding-top: 24px;
        text-align: center;
        font-size: 13px;
        color: var(--dim);
    }
    .footer-bottom p {
        margin-bottom: 6px;
    }
    .footer-bottom .footer-links-inline {
        margin: 10px 0;
    }
    .footer-bottom a {
        color: var(--dim);
        margin: 0 8px;
    }
    .footer-bottom a:hover {
        color: var(--gold);
    }

    /* 响应式 */
    @media (max-width: 900px) {
        .stats-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .advantages-grid,
        .news-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .events-grid {
            grid-template-columns: 1fr;
        }
        .footer-grid {
            grid-template-columns: 1fr;
            gap: 32px;
        }
        .hero h1 {
            font-size: 30px;
        }
        .nav-links {
            gap: 16px;
            justify-content: center;
            margin-top: 10px;
        }
        .site-header .container {
            justify-content: center;
        }
        .logo {
            text-align: center;
            width: 100%;
        }
    }
    @media (max-width: 600px) {
        .advantages-grid,
        .news-grid {
            grid-template-columns: 1fr;
        }
        .stats-grid {
            grid-template-columns: 1fr 1fr;
        }
        .section {
            padding: 50px 0;
        }
        .hero {
            padding: 70px 0 50px;
        }
        .stat-num {
            font-size: 30px;
        }
    }