*,
    *::before,
    *::after {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif !important;
    }
    body {
        background: linear-gradient(135deg, #1a0a0a 0%, #2d1111 40%, #121212 100%);
        color: #f5e6e0;
        min-height: 100vh;
        line-height: 1.7;
        overflow-x: hidden;
    }
    a {
        color: #ef4444;
        text-decoration: none;
        transition: color .3s;
    }
    a:hover {
        color: #ff6b6b;
    }
    .container {
        max-width: 1320px;
        margin: 0 auto;
        padding: 0 20px;
    }
    /* 导航栏 */
    header {
        background: rgba(20, 8, 8, 0.9);
        border-bottom: 1px solid rgba(239, 68, 68, 0.25);
        padding: 14px 0;
        position: sticky;
        top: 0;
        z-index: 100;
        backdrop-filter: blur(12px);
        box-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
    }
    .nav-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 8px;
        max-width: 1320px;
        margin: 0 auto;
        padding: 0 16px;
    }
    .nav-links a {
        color: #f0d9d3;
        font-size: 15px;
        font-weight: 600;
        padding: 8px 18px;
        border-radius: 8px;
        border: 1px solid transparent;
        background: linear-gradient(145deg, rgba(127, 29, 29, 0.3), rgba(239, 68, 68, 0.1));
        transition: all .3s;
    }
    .nav-links a:hover {
        color: #fff;
        border-color: rgba(239, 68, 68, 0.5);
        background: linear-gradient(145deg, rgba(127, 29, 29, 0.6), rgba(239, 68, 68, 0.25));
        box-shadow: 0 0 22px rgba(239, 68, 68, 0.25);
    }
    /* 通用标题 */
    .section-title {
        font-size: 28px;
        font-weight: 700;
        text-align: center;
        margin-bottom: 10px;
        background: linear-gradient(135deg, #f7d6c4, #ef4444);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        letter-spacing: 2px;
        position: relative;
        padding-bottom: 18px;
    }
    .section-title::after {
        content: "";
        display: block;
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, transparent, #ef4444, transparent);
        margin: 14px auto 0;
        border-radius: 2px;
    }
    .section-subtitle {
        text-align: center;
        color: #b99a92;
        font-size: 14px;
        margin-bottom: 30px;
        letter-spacing: 1px;
    }
    /* 卡片 */
    .card {
        background: linear-gradient(145deg, rgba(35, 16, 16, 0.92), rgba(22, 10, 10, 0.96));
        border: 1px solid rgba(239, 68, 68, 0.18);
        border-radius: 16px;
        padding: 24px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), inset 0 0 30px rgba(239, 68, 68, 0.04);
        backdrop-filter: blur(8px);
        transition: transform .3s, box-shadow .3s;
    }
    .card:hover {
        transform: translateY(-4px);
        box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5), 0 0 35px rgba(239, 68, 68, 0.12);
    }
    /* GEO区块 */
    .geo-block {
        text-align: center;
        padding: 80px 20px 40px;
        background: radial-gradient(ellipse at center top, rgba(127, 29, 29, 0.45), transparent 70%);
    }
    .geo-block h1 {
        font-size: 42px;
        font-weight: 800;
        letter-spacing: 2px;
        margin-bottom: 20px;
        background: linear-gradient(135deg, #fff8f2, #ef4444);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        line-height: 1.3;
        text-shadow: 0 0 40px rgba(239, 68, 68, 0.15);
    }
    .geo-block .geo-desc {
        max-width: 980px;
        margin: 0 auto;
        font-size: 16px;
        color: #e3ccc4;
        line-height: 1.9;
        text-align: center;
    }
    /* 数据统计 */
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 22px;
        margin: 30px 0;
    }
    .stat-item {
        text-align: center;
        padding: 32px 16px;
        border-radius: 16px;
        background: linear-gradient(145deg, rgba(127, 29, 29, 0.2), rgba(20, 8, 8, 0.7));
        border: 1px solid rgba(239, 68, 68, 0.15);
    }
    .stat-item .num {
        font-size: 36px;
        font-weight: 800;
        color: #ef4444;
        display: block;
        margin-bottom: 6px;
    }
    .stat-item .label {
        font-size: 14px;
        color: #c9b2a8;
        letter-spacing: 1px;
    }
    /* 新闻卡片 */
    .news-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
        gap: 24px;
        margin-top: 30px;
    }
    .news-card {
        background: linear-gradient(145deg, rgba(35, 16, 16, 0.85), rgba(18, 8, 8, 0.9));
        border: 1px solid rgba(239, 68, 68, 0.15);
        border-radius: 14px;
        padding: 22px;
        transition: all .3s;
    }
    .news-card:hover {
        border-color: rgba(239, 68, 68, 0.5);
        box-shadow: 0 0 28px rgba(239, 68, 68, 0.15);
    }
    .news-date {
        display: inline-block;
        background: rgba(239, 68, 68, 0.15);
        color: #ef4444;
        font-size: 13px;
        font-weight: 600;
        padding: 3px 12px;
        border-radius: 20px;
        margin-bottom: 12px;
    }
    .news-card h3 {
        font-size: 18px;
        margin-bottom: 10px;
        color: #f7e6df;
        line-height: 1.5;
    }
    .news-card p {
        font-size: 14px;
        color: #bca89e;
        line-height: 1.65;
    }
    /* FAQ */
    .faq-list {
        max-width: 980px;
        margin: 30px auto 0;
        display: grid;
        gap: 20px;
    }
    .faq-item {
        background: linear-gradient(145deg, rgba(30, 14, 14, 0.9), rgba(20, 8, 8, 0.95));
        border: 1px solid rgba(239, 68, 68, 0.12);
        border-radius: 14px;
        padding: 26px 28px;
    }
    .faq-item h3 {
        font-size: 17px;
        color: #f2dcd4;
        margin-bottom: 10px;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .faq-item h3::before {
        content: "⦿";
        color: #ef4444;
        font-size: 14px;
    }
    .faq-item p {
        font-size: 14px;
        color: #c0a89e;
        line-height: 1.8;
    }
    /* 焦点赛事 */
    .focused-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 22px;
        margin-top: 30px;
    }
    .match-card {
        text-align: center;
        padding: 30px 20px;
        background: linear-gradient(145deg, rgba(30, 12, 12, 0.85), rgba(15, 6, 6, 0.92));
        border: 1px solid rgba(239, 68, 68, 0.2);
        border-radius: 16px;
        position: relative;
        overflow: hidden;
    }
    .match-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 140px;
        height: 2px;
        background: linear-gradient(90deg, transparent, #ef4444, transparent);
    }
    .match-card .league {
        font-size: 13px;
        color: #777;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 18px;
    }
    .match-card .teams {
        font-size: 20px;
        font-weight: 700;
        color: #f5e6e0;
        margin-bottom: 12px;
    }
    .match-card .time {
        font-size: 14px;
        color: #e3a08c;
        margin-bottom: 16px;
    }
    .match-card .odds {
        display: flex;
        justify-content: center;
        gap: 24px;
        background: rgba(239, 68, 68, 0.08);
        padding: 10px;
        border-radius: 8px;
    }
    .match-card .odds span {
        font-size: 14px;
        color: #c9a89a;
    }
    .match-card .odds strong {
        color: #ef4444;
        font-weight: 700;
        margin-left: 4px;
    }
    /* 排行 */
    .ranking-list {
        margin-top: 30px;
        max-width: 760px;
        margin-left: auto;
        margin-right: auto;
    }
    .ranking-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 24px;
        margin-bottom: 10px;
        background: rgba(25, 12, 12, 0.8);
        border-radius: 12px;
        border-left: 3px solid #ef4444;
    }
    .ranking-item .rank {
        font-weight: 800;
        font-size: 18px;
        color: #ef4444;
        width: 40px;
    }
    .ranking-item .team-name {
        flex: 1;
        font-size: 16px;
        font-weight: 600;
        color: #f0dbd2;
    }
    .ranking-item .stat {
        color: #b99a8a;
        font-size: 14px;
    }
    /* 优势 */
    .advantage-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 24px;
        margin-top: 30px;
    }
    .advantage-card {
        text-align: center;
        padding: 36px 20px;
    }
    .advantage-card .icon {
        font-size: 48px;
        margin-bottom: 14px;
    }
    .advantage-card h4 {
        font-size: 18px;
        color: #f7e6df;
        margin-bottom: 12px;
    }
    .advantage-card p {
        font-size: 14px;
        color: #b89a8e;
    }
    /* 图片通用 */
    .section-img {
        display: block;
        max-width: 100%;
        height: auto;
        border-radius: 12px;
        margin: 20px auto;
        border: 1px solid rgba(239, 68, 68, 0.15);
    }
    .img-inline {
        width: 26px;
        height: 26px;
        border-radius: 6px;
        object-fit: cover;
        vertical-align: middle;
        margin-right: 6px;
    }
    /* 口碑 */
    .testimonial-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 24px;
        margin-top: 30px;
    }
    .testimonial-card {
        background: rgba(28, 12, 12, 0.85);
        border: 1px solid rgba(239, 68, 68, 0.12);
        border-radius: 14px;
        padding: 26px;
    }
    .testimonial-card .quote {
        font-size: 14px;
        color: #d1b1a5;
        line-height: 1.75;
        font-style: italic;
    }
    .testimonial-card .user {
        margin-top: 16px;
        font-size: 14px;
        color: #8a6b5f;
    }
    .testimonial-card .user strong {
        color: #ef4444;
    }
    /* 合作伙伴 */
    .partner-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px;
        margin-top: 30px;
    }
    .partner-item {
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(25, 10, 10, 0.6);
        border: 1px solid rgba(239, 68, 68, 0.1);
        border-radius: 12px;
        padding: 16px 28px;
        font-size: 15px;
        color: #d1b8ad;
        transition: all .3s;
    }
    .partner-item:hover {
        border-color: #ef4444;
    }
    /* 下载 */
    .download-area {
        text-align: center;
        padding: 30px 0;
    }
    .download-btn {
        display: inline-block;
        background: linear-gradient(135deg, #ef4444, #991b1b);
        color: #fff !important;
        font-weight: 700;
        padding: 14px 48px;
        border-radius: 30px;
        border: 1px solid rgba(255, 255, 255, 0.15);
        box-shadow: 0 8px 32px rgba(239, 68, 68, 0.35);
        transition: all .3s;
        font-size: 16px;
        margin-top: 20px;
    }
    .download-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 40px rgba(239, 68, 68, 0.5);
        background: linear-gradient(135deg, #ff4444, #aa2222);
    }
    /* 愿景 */
    .vision-block {
        text-align: center;
        padding: 30px 20px;
        background: linear-gradient(135deg, rgba(127, 29, 29, 0.12), rgba(20, 8, 8, 0.5));
        border-radius: 20px;
        border: 1px solid rgba(239, 68, 68, 0.12);
        margin-top: 30px;
    }
    .vision-block h2 {
        font-size: 26px;
        margin-bottom: 16px;
    }
    .vision-block p {
        max-width: 760px;
        margin: 0 auto;
        color: #d1b8ad;
        font-size: 15px;
        line-height: 1.9;
    }
    /* 页脚 */
    footer {
        background: #140606;
        border-top: 1px solid rgba(239, 68, 68, 0.15);
        padding: 48px 20px 24px;
        margin-top: 60px;
    }
    .footer-inner {
        max-width: 1320px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
        color: #9b7e74;
        font-size: 14px;
        text-align: center;
    }
    .footer-inner a {
        color: #d1a29a;
    }
    .footer-bottom {
        text-align: center;
        color: #6e4f47;
        font-size: 13px;
        margin-top: 32px;
        border-top: 1px solid rgba(239, 68, 68, 0.1);
        padding-top: 20px;
    }
    .footer-bottom a {
        color: #b78980;
        margin: 0 8px;
    }
    .footer-divider {
        width: 100%;
        border: none;
        border-top: 1px solid rgba(239, 68, 68, 0.1);
        margin: 24px 0 16px;
    }
    /* Live */
    .live-block {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 22px;
        margin-top: 30px;
    }
    .live-card {
        text-align: center;
    }
    .live-badge {
        display: inline-block;
        background: #ef4444;
        color: #fff;
        font-size: 12px;
        font-weight: 700;
        padding: 4px 14px;
        border-radius: 20px;
        margin-bottom: 12px;
        animation: pulse 2s infinite;
    }
    @keyframes pulse {
        0%,
        100% {
            opacity: 1;
        }
        50% {
            opacity: .7;
        }
    }
    /* 高亮 */
    .highlight-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
        margin-top: 30px;
    }
    .highlight-card {
        border-radius: 14px;
        overflow: hidden;
        background: rgba(20, 8, 8, 0.8);
        border: 1px solid rgba(239, 68, 68, 0.15);
    }
    .highlight-card img {
        width: 100%;
        height: 170px;
        object-fit: cover;
        display: block;
        border-bottom: 1px solid rgba(239, 68, 68, 0.15);
    }
    .highlight-card .desc {
        padding: 16px 18px;
        font-size: 14px;
        color: #c9b0a4;
    }
    .highlight-card .desc strong {
        color: #ef4444;
    }
    /* 响应式 */
    @media (max-width:768px) {
        .nav-links a {
            font-size: 13px;
            padding: 6px 12px;
        }
        .geo-block h1 {
            font-size: 28px;
        }
        .section-title {
            font-size: 24px;
        }
        .stats-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    @media (max-width:480px) {
        .container {
            padding: 0 12px;
        }
        .geo-block {
            padding-top: 50px;
        }
        .geo-block h1 {
            font-size: 22px;
        }
        .news-grid {
            grid-template-columns: 1fr;
        }
    }