/* ===== 全局重置与字体强制 ===== */
    html,
    body,
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif !important;
    }
    html {
        scroll-behavior: smooth;
    }
    body {
        background: linear-gradient(135deg, #0a0a0a 0%, #2d1b69 50%, #0a0a0a 100%);
        background-attachment: fixed;
        color: #f5f3ff;
        line-height: 1.7;
        overflow-x: hidden;
    }
    img {
        max-width: 100%;
        display: block;
        border-radius: 14px;
    }
    a {
        color: inherit;
        text-decoration: none;
    }

    /* ===== 导航栏 ===== */
    .site-header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 999;
        background: rgba(10, 10, 10, 0.88);
        backdrop-filter: blur(14px);
        border-bottom: 2px solid transparent;
        border-image: linear-gradient(90deg, #fb923c, #4ade80, #fb923c) 1;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
        padding: 0 32px;
        height: 72px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .nav-links {
        display: flex;
        align-items: center;
        gap: 32px;
        max-width: 1280px;
        width: 100%;
        justify-content: flex-end;
        flex-wrap: wrap;
    }
    .nav-links a {
        color: #e9e6f7;
        font-size: 16px;
        font-weight: 500;
        padding: 6px 4px;
        position: relative;
        letter-spacing: 0.3px;
        transition: color 0.3s;
        white-space: nowrap;
    }
    .nav-links a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -2px;
        width: 0%;
        height: 2px;
        background: linear-gradient(90deg, #fb923c, #4ade80);
        border-radius: 2px;
        transition: width 0.35s;
    }
    .nav-links a:hover {
        color: #fb923c;
    }
    .nav-links a:hover::after {
        width: 100%;
    }
    .nav-links .nav-logo {
        font-size: 22px;
        font-weight: 800;
        background: linear-gradient(90deg, #fb923c, #4ade80);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-right: auto;
        letter-spacing: 1px;
    }
    .nav-links .nav-logo::after {
        display: none;
    }

    /* ===== 主体容器 ===== */
    .container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 24px;
    }

    /* ===== Hero ===== */
    .hero-section {
        padding: 140px 24px 60px;
        text-align: center;
        position: relative;
        background: radial-gradient(ellipse at 20% 80%, rgba(45, 27, 105, 0.55), transparent 60%),
            radial-gradient(ellipse at 80% 20%, rgba(251, 146, 60, 0.12), transparent 55%);
    }
    .hero-section h1 {
        font-size: clamp(28px, 4.2vw, 56px);
        font-weight: 800;
        line-height: 1.25;
        background: linear-gradient(120deg, #ffffff, #fb923c, #4ade80, #ffffff);
        background-size: 250% 250%;
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: heroGlow 6s ease-in-out infinite alternate;
        margin-bottom: 28px;
        letter-spacing: 1px;
    }
    @keyframes heroGlow {
        0% {
            background-position: 0% 50%;
        }
        100% {
            background-position: 100% 50%;
        }
    }
    .hero-sub {
        font-size: 18px;
        color: #c4bde8;
        max-width: 780px;
        margin: 0 auto 36px;
    }
    .hero-img-wrap {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
        margin-top: 30px;
    }
    .hero-img-wrap img {
        width: 200px;
        height: 130px;
        object-fit: cover;
        border-radius: 16px;
        border: 2px solid rgba(251, 146, 60, 0.3);
        box-shadow: 0 0 18px rgba(251, 146, 60, 0.2), 0 0 36px rgba(74, 222, 128, 0.1);
        transition: transform 0.3s, box-shadow 0.3s;
    }
    .hero-img-wrap img:hover {
        transform: translateY(-6px) scale(1.02);
        box-shadow: 0 8px 30px rgba(251, 146, 60, 0.35), 0 0 48px rgba(74, 222, 128, 0.2);
    }

    /* ===== GEO ===== */
    .geo-section {
        padding: 50px 24px;
        max-width: 960px;
        margin: 0 auto;
        text-align: center;
    }
    .geo-section p {
        font-size: 17px;
        color: #d6d1f0;
        line-height: 1.9;
        text-align: left;
        background: rgba(255, 255, 255, 0.04);
        border-left: 4px solid #fb923c;
        border-radius: 0 16px 16px 0;
        padding: 24px 28px;
        box-shadow: 0 0 16px rgba(251, 146, 60, 0.08);
    }

    /* ===== 通用板块 ===== */
    .section {
        padding: 70px 24px;
    }
    .section-title {
        font-size: 36px;
        font-weight: 800;
        text-align: center;
        margin-bottom: 40px;
        letter-spacing: 1px;
        position: relative;
    }
    .section-title::after {
        content: "";
        display: block;
        width: 80px;
        height: 4px;
        margin: 14px auto 0;
        border-radius: 4px;
        background: linear-gradient(90deg, #fb923c, #4ade80);
        box-shadow: 0 0 16px rgba(251, 146, 60, 0.4);
    }

    /* 霓虹卡片 */
    .neon-card {
        background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
        border: 1px solid rgba(251, 146, 60, 0.25);
        border-radius: 18px;
        box-shadow: 0 0 14px rgba(251, 146, 60, 0.08), 0 0 28px rgba(74, 222, 128, 0.04), inset 0 0 20px rgba(0, 0, 0, 0.25);
        backdrop-filter: blur(6px);
        padding: 30px 24px;
        transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    }
    .neon-card:hover {
        transform: translateY(-6px);
        border-color: rgba(74, 222, 128, 0.5);
        box-shadow: 0 0 20px rgba(74, 222, 128, 0.15), 0 0 40px rgba(251, 146, 60, 0.08);
    }

    /* 核心优势 */
    .advantages-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 26px;
        margin-top: 20px;
    }
    .adv-card {
        text-align: center;
        padding: 36px 20px;
    }
    .adv-card img {
        width: 72px;
        height: 72px;
        object-fit: contain;
        margin: 0 auto 18px;
        border-radius: 18px;
        filter: drop-shadow(0 0 12px rgba(251, 146, 60, 0.3));
    }
    .adv-card h3 {
        font-size: 20px;
        margin-bottom: 10px;
        color: #fb923c;
    }
    .adv-card p {
        font-size: 14.5px;
        color: #b9b2e0;
        line-height: 1.6;
    }

    /* 数据统计 */
    .stats-wrap {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 24px;
    }
    .stat-item {
        text-align: center;
        padding: 32px 16px;
        border-radius: 18px;
        background: linear-gradient(145deg, rgba(45, 27, 105, 0.4), rgba(10, 10, 10, 0.6));
        border: 1px solid rgba(74, 222, 128, 0.2);
        box-shadow: 0 0 14px rgba(74, 222, 128, 0.06);
    }
    .stat-item .num {
        font-size: 42px;
        font-weight: 800;
        background: linear-gradient(90deg, #fb923c, #4ade80);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    .stat-item .label {
        margin-top: 8px;
        font-size: 15px;
        color: #c4bde8;
    }

    /* 品牌故事 */
    .story-wrap {
        display: flex;
        gap: 40px;
        align-items: center;
        flex-wrap: wrap;
    }
    .story-wrap img {
        width: 360px;
        border-radius: 20px;
        box-shadow: 0 0 24px rgba(251, 146, 60, 0.2);
        flex-shrink: 0;
    }
    .story-text {
        flex: 1;
        min-width: 280px;
    }
    .story-text p {
        font-size: 16px;
        color: #d6d1f0;
        margin-bottom: 16px;
    }

    /* 焦点赛事 */
    .events-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 26px;
    }
    .event-card {
        padding: 0;
        overflow: hidden;
    }
    .event-card img {
        width: 100%;
        height: 170px;
        object-fit: cover;
        border-radius: 0;
        border-bottom: 2px solid rgba(251, 146, 60, 0.2);
    }
    .event-card .event-info {
        padding: 22px 22px 26px;
    }
    .event-card h3 {
        font-size: 19px;
        color: #fb923c;
        margin-bottom: 8px;
    }
    .event-card p {
        font-size: 14px;
        color: #b9b2e0;
    }

    /* 直播 */
    .live-wrap {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    .live-wrap img {
        width: 220px;
        height: 140px;
        object-fit: cover;
        border-radius: 20px;
        box-shadow: 0 0 26px rgba(74, 222, 128, 0.2);
    }
    .live-badge {
        display: inline-block;
        background: linear-gradient(90deg, #fb923c, #ef4444);
        padding: 6px 18px;
        border-radius: 30px;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 1px;
        box-shadow: 0 0 14px rgba(239, 68, 68, 0.4);
        margin-bottom: 16px;
    }

    /* 排行榜 */
    .rank-wrap {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }
    .rank-list {
        list-style: none;
    }
    .rank-list li {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 14px 18px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
    .rank-list li:last-child {
        border-bottom: none;
    }
    .rank-num {
        font-weight: 800;
        font-size: 20px;
        color: #4ade80;
        width: 40px;
        text-align: center;
    }
    .rank-name {
        flex: 1;
        color: #e9e6f7;
    }
    .rank-rate {
        color: #fb923c;
        font-weight: 600;
    }

    /* 口碑 */
    .testimonial-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 26px;
    }
    .testimonial-card {
        text-align: center;
    }
    .testimonial-card .quote {
        font-size: 15px;
        color: #d6d1f0;
        font-style: italic;
        line-height: 1.7;
    }
    .testimonial-card .who {
        margin-top: 16px;
        font-weight: 700;
        color: #4ade80;
        font-size: 15px;
    }

    /* 新闻列表 */
    .news-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
        gap: 30px;
    }
    .news-card {
        display: flex;
        flex-direction: column;
        padding: 0;
        overflow: hidden;
    }
    .news-card img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        border-radius: 0;
    }
    .news-content {
        padding: 22px 24px 26px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    .news-meta {
        display: flex;
        gap: 12px;
        margin-bottom: 12px;
        flex-wrap: wrap;
    }
    .news-tag {
        background: rgba(251, 146, 60, 0.15);
        border: 1px solid rgba(251, 146, 60, 0.4);
        color: #fb923c;
        padding: 3px 12px;
        border-radius: 20px;
        font-size: 13px;
        font-weight: 600;
    }
    .news-date {
        color: #7c76a8;
        font-size: 13px;
        display: flex;
        align-items: center;
    }
    .news-content h3 {
        font-size: 18px;
        line-height: 1.4;
        margin-bottom: 10px;
        color: #f1f0ff;
    }
    .news-content p {
        font-size: 14.5px;
        color: #b9b2e0;
        line-height: 1.7;
        flex: 1;
    }
    .news-link {
        margin-top: 16px;
        font-size: 14px;
        font-weight: 600;
        color: #4ade80;
        display: inline-block;
        border-bottom: 2px solid transparent;
        transition: border-color 0.3s;
        align-self: flex-start;
    }
    .news-link:hover {
        border-bottom-color: #4ade80;
    }

    /* FAQ */
    .faq-wrap {
        max-width: 880px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 18px;
    }
    .faq-item {
        border-radius: 16px;
        overflow: hidden;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(251, 146, 60, 0.15);
        transition: border-color 0.3s;
    }
    .faq-item:hover {
        border-color: rgba(74, 222, 128, 0.35);
    }
    .faq-item h3 {
        font-size: 18px;
        padding: 20px 24px;
        background: rgba(45, 27, 105, 0.3);
        color: #fb923c;
        cursor: pointer;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    }
    .faq-item p {
        padding: 18px 24px;
        font-size: 15px;
        color: #d6d1f0;
        line-height: 1.8;
    }

    /* CTA */
    .cta-section {
        text-align: center;
        padding: 80px 24px;
        background: radial-gradient(ellipse at center, rgba(45, 27, 105, 0.5), rgba(10, 10, 10, 0.7));
        border-top: 2px solid rgba(251, 146, 60, 0.2);
        border-bottom: 2px solid rgba(74, 222, 128, 0.2);
    }
    .cta-section h2 {
        font-size: 34px;
        margin-bottom: 16px;
        color: #fff;
    }
    .cta-section p {
        font-size: 17px;
        color: #c4bde8;
        margin-bottom: 32px;
    }
    .cta-btns {
        display: flex;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }
    .btn {
        display: inline-block;
        padding: 14px 40px;
        border-radius: 40px;
        font-size: 17px;
        font-weight: 700;
        transition: transform 0.3s, box-shadow 0.3s;
    }
    .btn-primary {
        background: linear-gradient(90deg, #fb923c, #f97316);
        color: #0a0a0a;
        box-shadow: 0 0 20px rgba(251, 146, 60, 0.4);
    }
    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 28px rgba(251, 146, 60, 0.55);
    }
    .btn-ghost {
        background: transparent;
        color: #4ade80;
        border: 2px solid #4ade80;
        box-shadow: 0 0 14px rgba(74, 222, 128, 0.15);
    }
    .btn-ghost:hover {
        transform: translateY(-3px);
        box-shadow: 0 0 26px rgba(74, 222, 128, 0.3);
    }

    /* 页脚 */
    .site-footer {
        background: #06060a;
        padding: 50px 24px 30px;
        border-top: 2px solid rgba(251, 146, 60, 0.15);
    }
    .footer-grid {
        max-width: 1100px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
        margin-bottom: 30px;
    }
    .footer-col h4 {
        font-size: 16px;
        color: #fb923c;
        margin-bottom: 12px;
    }
    .footer-col p {
        font-size: 14px;
        color: #8b85b5;
        line-height: 1.7;
    }
    .footer-bottom {
        text-align: center;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        padding-top: 24px;
        font-size: 13px;
        color: #6b6596;
    }
    .footer-bottom a {
        color: #fb923c;
        margin: 0 8px;
    }
    .footer-bottom a:hover {
        text-decoration: underline;
    }

    @media (max-width: 640px) {
        .nav-links {
            gap: 12px;
            justify-content: center;
        }
        .nav-links .nav-logo {
            margin-right: 0;
        }
        .site-header {
            padding: 0 12px;
        }
        .news-grid {
            grid-template-columns: 1fr;
        }
        .hero-section h1 {
            font-size: 28px;
        }
    }