*, *::before, *::after {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
    }
    html {
        scroll-behavior: smooth;
    }
    body {
        background: #fdf8f3;
        color: #2d2a26;
        line-height: 1.7;
        font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
    }
    img {
        max-width: 100%;
        display: block;
        border-radius: 12px;
    }
    .navbar {
        background: linear-gradient(135deg, #f97316, #9a3412);
        padding: 14px 24px;
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: 0 4px 20px rgba(154, 52, 18, 0.35);
    }
    .nav-links {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 12px;
        flex-wrap: wrap;
        list-style: none;
    }
    .nav-links a {
        color: #fff;
        text-decoration: none;
        font-weight: 600;
        font-size: 16px;
        padding: 8px 20px;
        border-radius: 30px;
        transition: all 0.3s;
        display: inline-block;
    }
    .nav-links a:hover {
        background: rgba(255, 255, 255, 0.25);
        transform: scale(1.04);
    }
    .hero {
        position: relative;
        overflow: hidden;
        background: linear-gradient(135deg, #1c1917 0%, #312e2b 100%);
        text-align: center;
        padding: 100px 24px 80px;
    }
    .hero-bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.4;
    }
    .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(249, 115, 22, 0.25) 0%, rgba(154, 52, 18, 0.55) 100%);
    }
    .hero-content {
        position: relative;
        z-index: 2;
        max-width: 960px;
        margin: 0 auto;
        color: #fff;
    }
    .hero h1 {
        font-size: 40px;
        font-weight: 800;
        line-height: 1.3;
        margin-bottom: 28px;
        text-shadow: 0 3px 12px rgba(0, 0, 0, 0.3);
    }
    .hero p {
        font-size: 17px;
        line-height: 1.8;
        text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
        background: rgba(0, 0, 0, 0.35);
        border-radius: 16px;
        padding: 20px 28px;
        backdrop-filter: blur(4px);
    }
    .section {
        padding: 64px 24px;
        max-width: 1200px;
        margin: 0 auto;
    }
    .section-title {
        text-align: center;
        font-size: 30px;
        font-weight: 700;
        color: #9a3412;
        margin-bottom: 8px;
    }
    .section-sub {
        text-align: center;
        color: #6b6560;
        margin-bottom: 40px;
        font-size: 15px;
    }
    .bg-light {
        background: #fff7f0;
    }
    .bg-white {
        background: #ffffff;
    }
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 24px;
    }
    .stat-card {
        background: linear-gradient(145deg, #ffffff, #fef0e4);
        border-radius: 20px;
        text-align: center;
        padding: 36px 20px;
        box-shadow: 0 6px 24px rgba(249, 115, 22, 0.1);
        transition: transform 0.3s;
    }
    .stat-card:hover {
        transform: translateY(-6px);
    }
    .stat-card img {
        width: 56px;
        height: 56px;
        object-fit: contain;
        margin: 0 auto 12px;
    }
    .stat-num {
        font-size: 38px;
        font-weight: 800;
        background: linear-gradient(135deg, #f97316, #9a3412);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        line-height: 1.2;
    }
    .stat-label {
        color: #6b6560;
        font-size: 14px;
        margin-top: 6px;
    }
    .cards-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 24px;
    }
    .card {
        background: #fff;
        border-radius: 20px;
        padding: 28px 24px;
        box-shadow: 0 4px 20px rgba(45, 42, 38, 0.08);
        transition: all 0.3s;
        border-top: 4px solid #f97316;
    }
    .card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 30px rgba(249, 115, 22, 0.15);
    }
    .card img {
        width: 48px;
        height: 48px;
        object-fit: contain;
        margin-bottom: 14px;
    }
    .card h3 {
        font-size: 18px;
        margin-bottom: 10px;
        color: #2d2a26;
    }
    .card p {
        font-size: 14px;
        color: #6b6560;
    }
    .split {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: center;
    }
    .split img {
        border-radius: 20px;
        box-shadow: 0 8px 30px rgba(45, 42, 38, 0.12);
        width: 100%;
        height: 300px;
        object-fit: cover;
    }
    .split h2 {
        font-size: 28px;
        color: #9a3412;
        margin-bottom: 16px;
    }
    .split p {
        margin-bottom: 12px;
        font-size: 15px;
        color: #4b4540;
    }
    .events-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 24px;
    }
    .event-card {
        background: linear-gradient(145deg, #fff7f0, #ffe8d6);
        border-radius: 20px;
        padding: 24px;
        text-align: center;
        box-shadow: 0 4px 16px rgba(154, 52, 18, 0.1);
        transition: transform 0.3s;
    }
    .event-card:hover {
        transform: scale(1.03);
    }
    .event-card .teams {
        font-size: 20px;
        font-weight: 700;
        color: #2d2a26;
        margin: 12px 0;
    }
    .event-card .score {
        font-size: 32px;
        font-weight: 800;
        color: #9a3412;
    }
    .event-card .status {
        display: inline-block;
        background: #f97316;
        color: #fff;
        border-radius: 20px;
        padding: 4px 16px;
        font-size: 13px;
        margin-top: 10px;
    }
    .event-card img {
        width: 60px;
        height: 60px;
        object-fit: contain;
        margin: 0 auto 8px;
        border-radius: 50%;
        background: #fff;
        padding: 6px;
    }
    .coverage-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
        margin-top: 24px;
    }
    .coverage-tag {
        background: linear-gradient(135deg, #fff, #fef0e4);
        border: 1px solid #fbd7b8;
        border-radius: 30px;
        padding: 8px 22px;
        font-weight: 600;
        color: #9a3412;
        font-size: 14px;
    }
    .testimonial-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 24px;
    }
    .testimonial-card {
        background: #fff;
        border-radius: 20px;
        padding: 28px;
        box-shadow: 0 6px 24px rgba(45, 42, 38, 0.08);
        position: relative;
    }
    .testimonial-card::before {
        content: '“';
        font-size: 64px;
        color: #f97316;
        position: absolute;
        top: 4px;
        left: 20px;
        opacity: 0.6;
    }
    .testimonial-card img {
        width: 44px;
        height: 44px;
        object-fit: contain;
        margin-bottom: 10px;
    }
    .testimonial-card .name {
        font-weight: 700;
        color: #2d2a26;
        margin-top: 12px;
    }
    .testimonial-card .role {
        font-size: 13px;
        color: #9a3412;
    }
    .partners-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 28px;
    }
    .partner-item {
        background: #fff;
        border-radius: 16px;
        padding: 16px 24px;
        box-shadow: 0 4px 16px rgba(45, 42, 38, 0.06);
        text-align: center;
        width: 140px;
    }
    .partner-item img {
        width: 48px;
        height: 48px;
        object-fit: contain;
        margin: 0 auto 8px;
    }
    .partner-item span {
        font-size: 13px;
        color: #6b6560;
        font-weight: 600;
    }
    .news-list {
        max-width: 900px;
        margin: 0 auto;
    }
    .news-item {
        background: #fff;
        border-radius: 20px;
        padding: 28px 30px;
        margin-bottom: 20px;
        box-shadow: 0 4px 18px rgba(45, 42, 38, 0.06);
        border-left: 5px solid #f97316;
        transition: box-shadow 0.3s;
    }
    .news-item:hover {
        box-shadow: 0 10px 30px rgba(249, 115, 22, 0.12);
    }
    .news-item .meta {
        font-size: 13px;
        color: #9a3412;
        font-weight: 600;
        margin-bottom: 8px;
    }
    .news-item h3 {
        font-size: 20px;
        margin-bottom: 10px;
        color: #2d2a26;
    }
    .news-item p {
        font-size: 15px;
        color: #4b4540;
        line-height: 1.7;
    }
    .faq-list {
        max-width: 900px;
        margin: 0 auto;
    }
    details.faq-item {
        background: #fff;
        border-radius: 16px;
        margin-bottom: 14px;
        box-shadow: 0 3px 14px rgba(45, 42, 38, 0.06);
        overflow: hidden;
        border: 1px solid #f3e0d0;
    }
    details.faq-item summary {
        padding: 20px 24px;
        cursor: pointer;
        font-weight: 700;
        color: #2d2a26;
        list-style: none;
        position: relative;
        transition: background 0.3s;
        font-size: 16px;
    }
    details.faq-item summary::-webkit-details-marker {
        display: none;
    }
    details.faq-item summary::after {
        content: '+';
        position: absolute;
        right: 24px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 22px;
        color: #f97316;
        font-weight: 700;
    }
    details.faq-item[open] summary::after {
        content: '−';
    }
    details.faq-item[open] summary {
        background: #fff7f0;
    }
    .faq-answer {
        padding: 0 24px 20px;
        color: #4b4540;
        font-size: 15px;
        line-height: 1.8;
        border-top: 1px solid #f3e0d0;
        padding-top: 16px;
        margin-top: 0;
        background: #fffcfa;
    }
    .cta-section {
        background: linear-gradient(135deg, #f97316, #9a3412);
        padding: 80px 24px;
        text-align: center;
    }
    .cta-section h2 {
        color: #fff;
        font-size: 32px;
        margin-bottom: 16px;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }
    .cta-section p {
        color: rgba(255, 255, 255, 0.95);
        max-width: 640px;
        margin: 0 auto 28px;
        font-size: 16px;
    }
    .cta-buttons {
        display: flex;
        justify-content: center;
        gap: 16px;
        flex-wrap: wrap;
    }
    .cta-btn {
        display: inline-block;
        background: #fff;
        color: #9a3412;
        font-weight: 700;
        padding: 14px 36px;
        border-radius: 40px;
        text-decoration: none;
        transition: all 0.3s;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    }
    .cta-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    }
    .cta-btn.secondary {
        background: transparent;
        border: 2px solid #fff;
        color: #fff;
        box-shadow: none;
    }
    .cta-section img {
        width: 64px;
        height: 64px;
        object-fit: contain;
        margin: 0 auto 20px;
    }
    .footer {
        background: #1c1917;
        color: #c9c2bc;
        padding: 48px 24px 20px;
        text-align: center;
        font-size: 14px;
    }
    .footer a {
        color: #f97316;
        text-decoration: none;
        font-weight: 600;
    }
    .footer a:hover {
        text-decoration: underline;
    }
    .footer-links {
        margin-bottom: 20px;
        display: flex;
        justify-content: center;
        gap: 16px;
        flex-wrap: wrap;
    }
    .footer-info {
        max-width: 800px;
        margin: 0 auto;
        line-height: 1.8;
        color: #a8a29e;
        font-size: 13px;
    }
    .footer-copy {
        margin-top: 28px;
        border-top: 1px solid #35312e;
        padding-top: 20px;
        color: #7d7670;
        font-size: 13px;
    }
    @media (max-width: 768px) {
        .hero h1 {
            font-size: 28px;
        }
        .split {
            grid-template-columns: 1fr;
            gap: 24px;
        }
        .section {
            padding: 48px 16px;
        }
        .nav-links {
            gap: 6px;
        }
        .nav-links a {
            font-size: 14px;
            padding: 6px 12px;
        }
    }