*,
        *::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;
            font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
        }
        body {
            background: #121212;
            color: #e8e8e8;
            line-height: 1.65;
            font-size: 16px;
            overflow-x: hidden;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 28px;
        }
        a {
            color: inherit;
            text-decoration: none;
        }
        img {
            max-width: 100%;
            display: block;
        }

        /* ==== NAVIGATION ==== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 999;
            background: linear-gradient(90deg, #eab308 0%, #facc15 30%, #d99e02 70%, #ca8a04 100%);
            border-bottom: 3px solid #1a1a1a;
            box-shadow: 0 4px 30px rgba(234, 179, 8, 0.35);
        }
        .nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 68px;
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
        }
        .nav-links a {
            color: #1a1a1a;
            font-weight: 800;
            font-size: 15px;
            padding: 10px 18px;
            border: 2px solid transparent;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            position: relative;
        }
        .nav-links a:hover {
            background: #1a1a1a;
            color: #eab308;
            border-color: #1a1a1a;
            transform: translateY(-2px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }

        /* ==== HERO ==== */
        .hero-section {
            position: relative;
            background: linear-gradient(135deg, #1a1a1a 0%, #1e1e1e 40%, #262626 70%, #303030 100%);
            padding: 90px 0 70px;
            overflow: hidden;
        }
        .hero-section::before {
            content: "";
            position: absolute;
            top: -60%;
            right: -20%;
            width: 650px;
            height: 650px;
            background: radial-gradient(circle, rgba(234, 179, 8, 0.15) 0%, transparent 65%);
            border-radius: 50%;
            pointer-events: none;
        }
        .hero-section::after {
            content: "⚡⚡⚡";
            position: absolute;
            bottom: 20px;
            left: 40px;
            font-size: 28px;
            letter-spacing: 18px;
            color: rgba(234, 179, 8, 0.2);
            pointer-events: none;
        }
        .hero-inner {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 2;
        }
        .hero-badge {
            display: inline-block;
            background: #eab308;
            color: #1a1a1a;
            font-weight: 800;
            font-size: 13px;
            padding: 5px 14px;
            letter-spacing: 1px;
            margin-bottom: 20px;
            border-radius: 0;
            text-transform: uppercase;
        }
        .hero-title {
            font-size: 48px;
            font-weight: 900;
            line-height: 1.15;
            color: #ffffff;
            margin-bottom: 16px;
        }
        .hero-title .highlight {
            background: linear-gradient(90deg, #eab308, #fde047, #eab308);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero-sub {
            font-size: 17px;
            color: #9ca3af;
            margin-bottom: 32px;
            max-width: 480px;
        }
        .hero-ctas {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }
        .btn-primary {
            background: #eab308;
            color: #1a1a1a;
            font-weight: 800;
            font-size: 15px;
            padding: 14px 32px;
            border: 2px solid #eab308;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s;
        }
        .btn-primary:hover {
            background: #facc15;
            box-shadow: 0 0 25px rgba(234, 179, 8, 0.4);
            transform: translateY(-2px);
        }
        .btn-outline {
            background: transparent;
            color: #eab308;
            font-weight: 700;
            font-size: 15px;
            padding: 14px 32px;
            border: 2px solid #eab308;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s;
        }
        .btn-outline:hover {
            background: rgba(234, 179, 8, 0.1);
            box-shadow: 0 0 20px rgba(234, 179, 8, 0.25);
        }
        .hero-image-wrap {
            position: relative;
            border: 4px solid #eab308;
            box-shadow: 0 0 50px rgba(234, 179, 8, 0.2);
            border-radius: 0;
            overflow: hidden;
        }
        .hero-image-wrap img {
            width: 100%;
            height: 380px;
            object-fit: cover;
            filter: brightness(0.9);
        }
        .hero-image-wrap::after {
            content: "⚡";
            position: absolute;
            top: 10px;
            right: 14px;
            font-size: 42px;
            color: rgba(234, 179, 8, 0.7);
        }

        /* ==== GEO INTRO ==== */
        .geo-section {
            background: #f8fafc;
            color: #1a1a1a;
            padding: 60px 0;
            border-bottom: 4px solid #eab308;
        }
        .geo-section h1 {
            font-size: 36px;
            font-weight: 900;
            line-height: 1.2;
            margin-bottom: 14px;
            color: #111;
            position: relative;
            display: inline-block;
        }
        .geo-section h1::after {
            content: "";
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 80px;
            height: 4px;
            background: #eab308;
        }
        .geo-section .geo-text {
            font-size: 16px;
            line-height: 1.8;
            color: #333;
            max-width: 1100px;
            margin-top: 20px;
        }

        /* ==== LIVE SCORES ==== */
        .scores-section {
            background: #1a1a1a;
            padding: 70px 0;
        }
        .section-head {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 32px;
            flex-wrap: wrap;
        }
        .section-head h2 {
            font-size: 32px;
            font-weight: 900;
            color: #fff;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .section-head h2 .dot {
            color: #eab308;
            font-size: 36px;
        }
        .section-link {
            color: #eab308;
            font-weight: 700;
            font-size: 14px;
            border-bottom: 2px solid #eab308;
            padding-bottom: 4px;
            transition: all 0.3s;
        }
        .section-link:hover {
            color: #fde047;
            border-color: #fde047;
        }
        .score-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        .score-card {
            background: #242424;
            border: 1px solid rgba(234, 179, 8, 0.25);
            padding: 24px 18px;
            position: relative;
            transition: all 0.35s;
            overflow: hidden;
        }
        .score-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #eab308, #fde047);
        }
        .score-card:hover {
            border-color: #eab308;
            box-shadow: 0 0 25px rgba(234, 179, 8, 0.15);
            transform: translateY(-4px);
        }
        .score-league {
            font-size: 12px;
            color: #eab308;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 12px;
        }
        .score-teams {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 6px;
            margin-bottom: 10px;
        }
        .score-team {
            font-weight: 800;
            font-size: 15px;
            color: #f0f0f0;
            text-align: center;
            flex: 1;
        }
        .score-result {
            font-size: 24px;
            font-weight: 900;
            color: #eab308;
            text-align: center;
            min-width: 56px;
        }
        .score-status {
            text-align: center;
            font-size: 12px;
            color: #6b7280;
            font-weight: 600;
            margin-top: 6px;
        }

        /* ==== FEATURED EVENTS ==== */
        .events-section {
            background: #181818;
            padding: 70px 0;
        }
        .event-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .event-card {
            background: #202020;
            border: 1px solid rgba(255, 255, 255, 0.06);
            transition: all 0.35s;
            overflow: hidden;
            position: relative;
        }
        .event-card:hover {
            border-color: rgba(234, 179, 8, 0.5);
            box-shadow: 0 10px 30px rgba(234, 179, 8, 0.1);
            transform: translateY(-5px);
        }
        .event-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            filter: brightness(0.85);
        }
        .event-body {
            padding: 20px;
        }
        .event-body h3 {
            font-size: 19px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 8px;
        }
        .event-body p {
            font-size: 14px;
            color: #9ca3af;
            line-height: 1.6;
        }
        .event-tag {
            display: inline-block;
            background: rgba(234, 179, 8, 0.15);
            color: #eab308;
            font-size: 12px;
            font-weight: 700;
            padding: 3px 10px;
            margin-bottom: 10px;
        }

        /* ==== DATA STATS ==== */
        .stats-section {
            background: linear-gradient(135deg, #eab308 0%, #facc15 50%, #ca8a04 100%);
            padding: 60px 0;
            border-top: 4px solid #1a1a1a;
            border-bottom: 4px solid #1a1a1a;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
            text-align: center;
        }
        .stat-item {
            color: #1a1a1a;
            padding: 20px 10px;
            position: relative;
        }
        .stat-item::after {
            content: "⚡";
            position: absolute;
            top: -14px;
            right: 20px;
            font-size: 22px;
            opacity: 0.6;
        }
        .stat-number {
            font-size: 48px;
            font-weight: 900;
            line-height: 1;
            letter-spacing: -1px;
        }
        .stat-label {
            font-size: 14px;
            font-weight: 700;
            margin-top: 8px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* ==== CORE ADVANTAGES ==== */
        .advantages-section {
            background: #1a1a1a;
            padding: 70px 0;
        }
        .adv-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        .adv-card {
            background: #222;
            border: 1px solid rgba(234, 179, 8, 0.2);
            padding: 32px 24px;
            position: relative;
            transition: all 0.35s;
            text-align: center;
        }
        .adv-card:hover {
            border-color: #eab308;
            box-shadow: 0 0 35px rgba(234, 179, 8, 0.15);
            transform: translateY(-6px);
        }
        .adv-icon {
            font-size: 44px;
            margin-bottom: 16px;
            display: block;
        }
        .adv-card h3 {
            color: #fff;
            font-size: 18px;
            font-weight: 800;
            margin-bottom: 12px;
        }
        .adv-card p {
            color: #9ca3af;
            font-size: 14px;
            line-height: 1.65;
        }
        .adv-card::before {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, #eab308, transparent);
            opacity: 0;
            transition: opacity 0.3s;
        }
        .adv-card:hover::before {
            opacity: 1;
        }

        /* ==== BRAND STORY ==== */
        .story-section {
            background: #f8fafc;
            color: #1a1a1a;
            padding: 70px 0;
        }
        .story-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 56px;
            align-items: center;
        }
        .story-image {
            border: 4px solid #1a1a1a;
            box-shadow: 10px 10px 0 #eab308;
        }
        .story-image img {
            width: 100%;
            height: 360px;
            object-fit: cover;
        }
        .story-text h2 {
            font-size: 32px;
            font-weight: 900;
            margin-bottom: 18px;
            position: relative;
            padding-bottom: 12px;
        }
        .story-text h2::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: #eab308;
        }
        .story-text p {
            font-size: 15px;
            line-height: 1.8;
            color: #333;
            margin-bottom: 14px;
        }
        .story-text .brand-name {
            font-weight: 800;
            color: #000;
        }

        /* ==== TESTIMONIALS ==== */
        .testimonials-section {
            background: #141414;
            padding: 70px 0;
        }
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .testimonial-card {
            background: #1e1e1e;
            border: 1px solid rgba(255, 255, 255, 0.05);
            padding: 28px;
            position: relative;
        }
        .testimonial-card::before {
            content: "”";
            position: absolute;
            top: 6px;
            right: 16px;
            font-size: 64px;
            color: rgba(234, 179, 8, 0.2);
            font-family: Georgia, serif;
            line-height: 1;
        }
        .testimonial-card p {
            color: #b0b0b0;
            font-size: 14px;
            line-height: 1.7;
            margin-bottom: 16px;
            font-style: italic;
        }
        .testimonial-user {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .testimonial-user .avatar {
            width: 40px;
            height: 40px;
            background: #eab308;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            color: #1a1a1a;
            font-size: 18px;
        }
        .testimonial-user .name {
            font-weight: 700;
            color: #fff;
            font-size: 14px;
        }
        .testimonial-user .role {
            font-size: 12px;
            color: #6b7280;
        }

        /* ==== DEEP CONTENT ==== */
        .deep-content-section {
            background: #181818;
            padding: 70px 0;
        }
        .deep-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }
        .deep-text h2 {
            font-size: 30px;
            font-weight: 900;
            color: #fff;
            margin-bottom: 16px;
        }
        .deep-text p {
            color: #9ca3af;
            font-size: 15px;
            line-height: 1.8;
            margin-bottom: 14px;
        }
        .deep-image {
            border: 3px solid #eab308;
        }
        .deep-image img {
            width: 100%;
            height: 280px;
            object-fit: cover;
        }

        /* ==== NEWS ==== */
        .news-section {
            background: #f8fafc;
            color: #1a1a1a;
            padding: 70px 0;
        }
        .news-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .news-card {
            background: #fff;
            border: 1px solid #e5e7eb;
            padding: 24px;
            position: relative;
            transition: all 0.3s;
            display: flex;
            flex-direction: column;
            border-top: 4px solid #eab308;
        }
        .news-card:hover {
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            transform: translateY(-4px);
        }
        .news-date {
            display: inline-block;
            font-size: 13px;
            font-weight: 700;
            color: #eab308;
            margin-bottom: 10px;
            letter-spacing: 0.5px;
        }
        .news-card h3 {
            font-size: 17px;
            font-weight: 800;
            color: #111;
            line-height: 1.4;
            margin-bottom: 10px;
        }
        .news-card p {
            font-size: 14px;
            color: #555;
            line-height: 1.7;
            flex: 1;
            margin-bottom: 12px;
        }
        .news-card .news-link {
            font-size: 13px;
            font-weight: 700;
            color: #eab308;
            border-bottom: 2px solid #eab308;
            align-self: flex-start;
            padding-bottom: 2px;
            transition: all 0.3s;
        }
        .news-card .news-link:hover {
            color: #ca8a04;
            border-color: #ca8a04;
        }

        /* ==== FAQ ==== */
        .faq-section {
            background: #1a1a1a;
            padding: 70px 0;
        }
        .faq-list {
            max-width: 900px;
            margin: 0 auto;
        }
        .faq-item {
            background: #222;
            margin-bottom: 14px;
            border: 1px solid rgba(234, 179, 8, 0.15);
            transition: border-color 0.3s;
        }
        .faq-item:hover {
            border-color: rgba(234, 179, 8, 0.5);
        }
        .faq-item summary {
            padding: 20px 24px;
            font-size: 16px;
            font-weight: 700;
            color: #fff;
            cursor: pointer;
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-item summary::-webkit-details-marker {
            display: none;
        }
        .faq-item summary::after {
            content: "+";
            font-size: 24px;
            color: #eab308;
            transition: transform 0.3s;
        }
        .faq-item[open] summary::after {
            transform: rotate(45deg);
        }
        .faq-item .faq-answer {
            padding: 0 24px 22px;
            color: #9ca3af;
            font-size: 15px;
            line-height: 1.75;
        }

        /* ==== FOOTER ==== */
        .site-footer {
            background: #0d0d0d;
            color: #9ca3af;
            padding: 60px 0 30px;
            border-top: 4px solid #eab308;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
            gap: 40px;
            margin-bottom: 36px;
        }
        .footer-col h4 {
            color: #fff;
            font-size: 16px;
            font-weight: 800;
            margin-bottom: 16px;
            position: relative;
            padding-bottom: 8px;
        }
        .footer-col h4::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 30px;
            height: 3px;
            background: #eab308;
        }
        .footer-col p {
            font-size: 14px;
            line-height: 1.65;
            margin-bottom: 8px;
        }
        .footer-col ul {
            list-style: none;
        }
        .footer-col ul li {
            margin-bottom: 8px;
        }
        .footer-col ul li a {
            color: #9ca3af;
            font-size: 14px;
            transition: color 0.3s;
        }
        .footer-col ul li a:hover {
            color: #eab308;
        }
        .footer-links {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        .footer-links a {
            color: #9ca3af;
            font-size: 14px;
            border-bottom: 1px solid #333;
            padding-bottom: 2px;
            transition: all 0.3s;
        }
        .footer-links a:hover {
            color: #eab308;
            border-color: #eab308;
        }
        .footer-bottom {
            border-top: 1px solid #222;
            padding-top: 24px;
            text-align: center;
            font-size: 13px;
            color: #6b7280;
        }
        .footer-bottom .icp {
            margin-top: 6px;
            font-size: 12px;
            color: #555;
        }

        /* ==== RESPONSIVE ==== */
        @media (max-width: 1024px) {
            .score-grid,
            .event-grid,
            .adv-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .news-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .hero-inner,
            .story-inner,
            .deep-grid {
                grid-template-columns: 1fr;
            }
            .testimonial-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 640px) {
            .score-grid,
            .event-grid,
            .adv-grid,
            .stats-grid,
            .news-grid,
            .testimonial-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .nav-links {
                gap: 2px;
            }
            .nav-links a {
                font-size: 13px;
                padding: 8px 10px;
            }
            .hero-title {
                font-size: 32px;
            }
        }