* {
        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 {
        font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
        background: linear-gradient(160deg, #0a0a0a 0%, #181005 40%, #3d2409 75%, #854d0e 100%) fixed;
        color: #f5e9d0;
        line-height: 1.75;
        min-height: 100vh;
        overflow-x: hidden;
    }
    body::before {
        content: '';
        position: fixed;
        inset: 0;
        background-image:
            radial-gradient(1px 1px at 15% 25%, rgba(252, 211, 77, 0.7) 50%, transparent 51%),
            radial-gradient(1.2px 1.2px at 35% 60%, rgba(252, 211, 77, 0.6) 50%, transparent 51%),
            radial-gradient(0.8px 0.8px at 55% 15%, rgba(252, 211, 77, 0.8) 50%, transparent 51%),
            radial-gradient(1.5px 1.5px at 75% 45%, rgba(252, 211, 77, 0.5) 50%, transparent 51%),
            radial-gradient(1px 1px at 90% 80%, rgba(252, 211, 77, 0.7) 50%, transparent 51%),
            radial-gradient(1.1px 1.1px at 10% 85%, rgba(252, 211, 77, 0.6) 50%, transparent 51%),
            radial-gradient(0.9px 0.9px at 45% 90%, rgba(252, 211, 77, 0.7) 50%, transparent 51%),
            radial-gradient(1.3px 1.3px at 68% 70%, rgba(252, 211, 77, 0.5) 50%, transparent 51%);
        pointer-events: none;
        z-index: 0;
    }
    a {
        text-decoration: none;
        color: inherit;
    }
    img {
        max-width: 100%;
        display: block;
    }

    /* Navigation */
    .site-nav {
        position: sticky;
        top: 0;
        z-index: 100;
        background: rgba(10, 10, 10, 0.92);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(252, 211, 77, 0.15);
    }
    .nav-inner {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 24px;
        gap: 24px;
        flex-wrap: wrap;
    }
    .nav-brand {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .nav-logo {
        height: 36px;
        width: auto;
        border-radius: 8px;
    }
    .nav-brand span {
        font-size: 20px;
        font-weight: 800;
        background: linear-gradient(90deg, #fcd34d, #f59e0b);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    .nav-links {
        display: flex;
        align-items: center;
        gap: 24px;
        flex-wrap: wrap;
    }
    .nav-links a {
        color: #f5e9d0;
        font-size: 15px;
        font-weight: 500;
        padding: 6px 0;
        border-bottom: 2px solid transparent;
        transition: all 0.3s ease;
    }
    .nav-links a:hover {
        color: #fcd34d;
        border-bottom-color: #fcd34d;
    }

    /* Hero */
    .hero {
        position: relative;
        padding: 90px 24px 70px;
        text-align: center;
        z-index: 1;
        overflow: hidden;
        background: linear-gradient(180deg, rgba(10, 10, 10, 0.25) 0%, rgba(10, 10, 10, 0.75) 100%);
    }
    .hero-bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.18;
        z-index: -1;
    }
    .hero::before {
        content: '✦';
        position: absolute;
        top: 18%;
        left: 12%;
        color: rgba(252, 211, 77, 0.4);
        font-size: 28px;
        animation: twinkle 3s ease-in-out infinite;
    }
    .hero::after {
        content: '✦';
        position: absolute;
        bottom: 20%;
        right: 14%;
        color: rgba(252, 211, 77, 0.3);
        font-size: 22px;
        animation: twinkle 4s ease-in-out infinite 1s;
    }
    @keyframes twinkle {
        0%, 100% {
            opacity: 0.2;
        }
        50% {
            opacity: 1;
        }
    }
    .hero-content {
        max-width: 980px;
        margin: 0 auto;
        position: relative;
        z-index: 2;
    }
    .hero h1 {
        font-size: 38px;
        font-weight: 800;
        line-height: 1.35;
        letter-spacing: 1px;
        margin-bottom: 28px;
        background: linear-gradient(90deg, #fce7a1 0%, #fcd34d 50%, #b45309 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    .geo-intro {
        font-size: 16.5px;
        line-height: 1.95;
        color: #f5e9d0;
        max-width: 880px;
        margin: 0 auto 34px;
        text-align: justify;
    }
    .hero-btns {
        display: flex;
        justify-content: center;
        gap: 18px;
        flex-wrap: wrap;
    }
    .btn-gold {
        display: inline-block;
        padding: 13px 34px;
        border-radius: 50px;
        background: linear-gradient(90deg, #fcd34d, #d97706);
        color: #0a0a0a;
        font-weight: 700;
        font-size: 15px;
        box-shadow: 0 4px 22px rgba(252, 211, 77, 0.3);
        transition: transform 0.3s, box-shadow 0.3s;
    }
    .btn-gold:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 32px rgba(252, 211, 77, 0.45);
    }
    .btn-outline {
        display: inline-block;
        padding: 13px 34px;
        border-radius: 50px;
        border: 1px solid #fcd34d;
        color: #fcd34d;
        font-weight: 600;
        font-size: 15px;
        transition: all 0.3s;
    }
    .btn-outline:hover {
        background: rgba(252, 211, 77, 0.12);
    }

    /* Section layout */
    .section {
        max-width: 1200px;
        margin: 0 auto;
        padding: 72px 24px;
        position: relative;
        z-index: 1;
    }
    .section-title {
        text-align: center;
        margin-bottom: 50px;
    }
    .section-title h2 {
        font-size: 32px;
        font-weight: 800;
        color: #fcd34d;
        position: relative;
        display: inline-block;
        padding-bottom: 14px;
        letter-spacing: 1px;
    }
    .section-title h2::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, transparent, #fcd34d, transparent);
        border-radius: 2px;
    }
    .section-title p {
        color: #b8a88a;
        font-size: 15px;
        margin-top: 8px;
    }

    /* Stats */
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
    .stat-card {
        background: linear-gradient(145deg, rgba(15, 10, 5, 0.9), rgba(45, 28, 10, 0.65));
        border: 1px solid rgba(252, 211, 77, 0.15);
        border-radius: 16px;
        padding: 36px 20px;
        text-align: center;
        position: relative;
        overflow: hidden;
        transition: all 0.4s ease;
    }
    .stat-card::after {
        content: '';
        position: absolute;
        top: -25px;
        right: -25px;
        width: 80px;
        height: 80px;
        background: radial-gradient(circle, rgba(252, 211, 77, 0.2) 0%, transparent 70%);
        border-radius: 50%;
    }
    .stat-card:hover {
        transform: translateY(-4px);
        border-color: rgba(252, 211, 77, 0.4);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }
    .stat-num {
        font-size: 40px;
        font-weight: 800;
        color: #fcd34d;
        line-height: 1.2;
        margin-bottom: 8px;
    }
    .stat-label {
        font-size: 14px;
        color: #b8a88a;
        letter-spacing: 1px;
    }

    /* Advantages */
    .advantage-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
    .card {
        position: relative;
        background: linear-gradient(145deg, rgba(15, 10, 5, 0.92), rgba(42, 26, 10, 0.7));
        border: 1px solid rgba(252, 211, 77, 0.15);
        border-radius: 16px;
        padding: 32px 22px;
        text-align: center;
        transition: all 0.4s ease;
        overflow: hidden;
    }
    .card::before {
        content: '✦';
        position: absolute;
        top: 12px;
        right: 16px;
        color: rgba(252, 211, 77, 0.25);
        font-size: 18px;
    }
    .card:hover {
        transform: translateY(-5px);
        border-color: rgba(252, 211, 77, 0.4);
        box-shadow: 0 12px 34px rgba(0, 0, 0, 0.55);
    }
    .card img {
        height: 64px;
        width: 64px;
        object-fit: contain;
        margin: 0 auto 18px;
        border-radius: 12px;
        background: rgba(252, 211, 77, 0.06);
        padding: 8px;
    }
    .card h3 {
        color: #fcd34d;
        font-size: 18px;
        margin-bottom: 12px;
        font-weight: 700;
    }
    .card p {
        font-size: 14px;
        color: #d6c7b0;
        line-height: 1.7;
    }

    /* Brand story */
    .brand-story-grid {
        display: grid;
        grid-template-columns: 1fr 1.4fr;
        gap: 40px;
        align-items: center;
        background: linear-gradient(145deg, rgba(15, 10, 5, 0.9), rgba(45, 28, 10, 0.6));
        border: 1px solid rgba(252, 211, 77, 0.15);
        border-radius: 20px;
        padding: 40px;
    }
    .brand-story-grid img {
        width: 100%;
        border-radius: 16px;
        object-fit: cover;
        max-height: 320px;
    }
    .brand-text p {
        margin-bottom: 16px;
        font-size: 15px;
        color: #e8dcc8;
        text-align: justify;
    }

    /* Events */
    .events-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .event-card {
        background: linear-gradient(145deg, rgba(15, 10, 5, 0.92), rgba(42, 26, 10, 0.68));
        border: 1px solid rgba(252, 211, 77, 0.15);
        border-radius: 16px;
        padding: 24px;
        display: flex;
        gap: 18px;
        align-items: center;
        transition: all 0.3s ease;
    }
    .event-card:hover {
        border-color: rgba(252, 211, 77, 0.4);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
    }
    .event-logo {
        width: 60px;
        height: 60px;
        object-fit: contain;
        border-radius: 10px;
        background: rgba(252, 211, 77, 0.06);
        padding: 6px;
        flex-shrink: 0;
    }
    .event-meta {
        flex: 1;
    }
    .event-league {
        font-size: 12px;
        color: #b8a88a;
        letter-spacing: 1px;
        margin-bottom: 2px;
    }
    .event-teams {
        font-size: 17px;
        font-weight: 700;
        color: #f5e9d0;
        margin-bottom: 8px;
    }
    .event-odds {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        font-size: 13px;
    }
    .odds-tag {
        background: rgba(252, 211, 77, 0.1);
        border: 1px solid rgba(252, 211, 77, 0.2);
        border-radius: 20px;
        padding: 3px 14px;
        color: #fcd34d;
    }
    .event-time {
        font-size: 13px;
        color: #b8a88a;
        margin-top: 6px;
    }

    /* News */
    .news-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .news-card {
        display: flex;
        flex-direction: column;
        background: linear-gradient(145deg, rgba(15, 10, 5, 0.92), rgba(42, 26, 10, 0.68));
        border: 1px solid rgba(252, 211, 77, 0.15);
        border-radius: 16px;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    .news-card:hover {
        transform: translateY(-4px);
        border-color: rgba(252, 211, 77, 0.35);
        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.5);
    }
    .news-card img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        opacity: 0.7;
    }
    .news-content {
        padding: 22px 24px 26px;
    }
    .news-date {
        display: inline-block;
        font-size: 13px;
        color: #fcd34d;
        background: rgba(252, 211, 77, 0.08);
        border: 1px solid rgba(252, 211, 77, 0.2);
        padding: 2px 12px;
        border-radius: 20px;
        margin-bottom: 12px;
        letter-spacing: 0.5px;
    }
    .news-content h3 {
        font-size: 18px;
        color: #f5e9d0;
        line-height: 1.5;
        margin-bottom: 10px;
        font-weight: 700;
    }
    .news-content p {
        font-size: 14px;
        color: #d6c7b0;
        line-height: 1.75;
        text-align: justify;
    }
    .news-more {
        margin-top: 40px;
        text-align: center;
    }

    /* FAQ */
    .faq-list {
        max-width: 860px;
        margin: 0 auto;
    }
    .faq-item {
        background: linear-gradient(145deg, rgba(15, 10, 5, 0.92), rgba(42, 26, 10, 0.7));
        border: 1px solid rgba(252, 211, 77, 0.15);
        border-radius: 14px;
        margin-bottom: 16px;
        overflow: hidden;
        transition: border-color 0.3s;
    }
    .faq-item:hover {
        border-color: rgba(252, 211, 77, 0.35);
    }
    .faq-item summary {
        padding: 18px 24px;
        font-size: 16px;
        font-weight: 600;
        color: #fcd34d;
        cursor: pointer;
        list-style: none;
        position: relative;
        padding-right: 50px;
    }
    .faq-item summary::-webkit-details-marker {
        display: none;
    }
    .faq-item summary::after {
        content: '+';
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 22px;
        color: #fcd34d;
        transition: transform 0.3s;
    }
    .faq-item[open] summary::after {
        transform: translateY(-50%) rotate(45deg);
    }
    .faq-item p {
        padding: 0 24px 22px;
        font-size: 14.5px;
        color: #e0d4c0;
        line-height: 1.8;
        text-align: justify;
    }

    /* Vision */
    .vision-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .vision-card {
        background: linear-gradient(145deg, rgba(15, 10, 5, 0.93), rgba(50, 30, 10, 0.65));
        border: 1px solid rgba(252, 211, 77, 0.2);
        border-radius: 18px;
        padding: 40px 34px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }
    .vision-card::before {
        content: '✧';
        position: absolute;
        top: 14px;
        left: 18px;
        color: rgba(252, 211, 77, 0.25);
        font-size: 26px;
    }
    .vision-card h3 {
        font-size: 26px;
        color: #fcd34d;
        margin-bottom: 18px;
        letter-spacing: 2px;
    }
    .vision-card p {
        font-size: 15px;
        color: #e8dcc8;
        line-height: 1.85;
    }

    /* Download */
    .download-grid {
        display: grid;
        grid-template-columns: 1.3fr 1fr;
        gap: 40px;
        align-items: center;
        background: linear-gradient(145deg, rgba(15, 10, 5, 0.92), rgba(50, 30, 10, 0.7));
        border: 1px solid rgba(252, 211, 77, 0.2);
        border-radius: 20px;
        padding: 50px;
    }
    .download-content h2 {
        font-size: 30px;
        color: #fcd34d;
        margin-bottom: 16px;
    }
    .download-content p {
        font-size: 15px;
        color: #e0d4c0;
        margin-bottom: 26px;
        line-height: 1.8;
    }
    .download-grid img {
        width: 100%;
        max-height: 260px;
        object-fit: contain;
        border-radius: 16px;
    }

    /* Partners */
    .partner-logos {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 26px;
    }
    .partner-logos img {
        height: 60px;
        width: auto;
        object-fit: contain;
        border-radius: 12px;
        background: rgba(252, 211, 77, 0.05);
        padding: 8px 14px;
        border: 1px solid rgba(252, 211, 77, 0.12);
        transition: all 0.3s ease;
    }
    .partner-logos img:hover {
        border-color: rgba(252, 211, 77, 0.4);
        transform: scale(1.05);
    }

    /* Testimonials */
    .testimonial-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
    .testimonial-card {
        background: linear-gradient(145deg, rgba(15, 10, 5, 0.92), rgba(42, 26, 10, 0.68));
        border: 1px solid rgba(252, 211, 77, 0.15);
        border-radius: 16px;
        padding: 30px 26px;
        position: relative;
    }
    .testimonial-card::before {
        content: '❝';
        position: absolute;
        top: 10px;
        right: 18px;
        font-size: 40px;
        color: rgba(252, 211, 77, 0.2);
        font-family: Georgia, serif;
    }
    .testimonial-card p {
        font-size: 14.5px;
        color: #e0d4c0;
        line-height: 1.8;
        margin-bottom: 18px;
        font-style: italic;
    }
    .user-name {
        font-size: 13px;
        color: #fcd34d;
        font-weight: 600;
    }

    /* Footer */
    .site-footer {
        background: rgba(5, 5, 5, 0.95);
        border-top: 1px solid rgba(252, 211, 77, 0.15);
        padding: 60px 24px 30px;
        margin-top: 40px;
        position: relative;
        z-index: 1;
    }
    .footer-main {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.2fr 1fr 1fr;
        gap: 40px;
        padding-bottom: 36px;
        border-bottom: 1px solid rgba(252, 211, 77, 0.1);
    }
    .footer-main h4 {
        color: #fcd34d;
        font-size: 18px;
        margin-bottom: 18px;
        letter-spacing: 1px;
    }
    .footer-main p {
        font-size: 14px;
        color: #b8a88a;
        margin-bottom: 8px;
    }
    .footer-links a {
        display: block;
        color: #b8a88a;
        font-size: 14px;
        margin-bottom: 10px;
        transition: color 0.3s;
    }
    .footer-links a:hover {
        color: #fcd34d;
    }
    .footer-sub a {
        color: #b8a88a;
        font-size: 14px;
        transition: color 0.3s;
    }
    .footer-sub a:hover {
        color: #fcd34d;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 24px;
        text-align: center;
        font-size: 13px;
        color: #8a7a65;
    }
    .footer-bottom p {
        margin-bottom: 4px;
    }

    /* Responsive */
    @media (max-width: 900px) {
        .stats-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .advantage-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .brand-story-grid {
            grid-template-columns: 1fr;
        }
        .events-grid {
            grid-template-columns: 1fr;
        }
        .news-grid {
            grid-template-columns: 1fr;
        }
        .vision-grid {
            grid-template-columns: 1fr;
        }
        .download-grid {
            grid-template-columns: 1fr;
            text-align: center;
        }
        .testimonial-grid {
            grid-template-columns: 1fr;
        }
        .footer-main {
            grid-template-columns: 1fr;
        }
        .nav-inner {
            flex-direction: column;
            align-items: flex-start;
        }
        .nav-links {
            width: 100%;
            gap: 16px;
        }
        .hero h1 {
            font-size: 28px;
        }
    }