* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif !important;
        }
        body {
            background: #0d0d0d;
            color: #e5e5e5;
            line-height: 1.75;
            overflow-x: hidden;
        }
        a {
            color: #fde68a;
            text-decoration: none;
            transition: all .25s ease;
        }
        a:hover {
            color: #fff;
            text-shadow: 0 0 8px rgba(234, 179, 8, .6);
        }
        .container {
            max-width: 1290px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .section-title {
            font-size: 2rem;
            font-weight: 800;
            text-align: center;
            color: #fef9c3;
            margin-bottom: .5rem;
            letter-spacing: 2px;
            text-transform: uppercase;
        }
        .section-subtitle {
            text-align: center;
            color: #a3a3a3;
            font-size: .95rem;
            margin-bottom: 2.5rem;
            letter-spacing: 1px;
        }
        .section-title span {
            color: #eab308;
            border-bottom: 3px solid #eab308;
            padding-bottom: 4px;
        }
        .card {
            background: rgba(26, 26, 26, .85);
            border: 1px solid rgba(234, 179, 8, .35);
            border-radius: 0;
            box-shadow: 0 0 16px rgba(234, 179, 8, .08);
            transition: box-shadow .3s, transform .3s, border-color .3s;
            position: relative;
            overflow: hidden;
        }
        .card:hover {
            border-color: rgba(234, 179, 8, .7);
            box-shadow: 0 0 30px rgba(234, 179, 8, .22), inset 0 0 18px rgba(234, 179, 8, .04);
            transform: translateY(-4px);
        }
        .card::after {
            content: "";
            position: absolute;
            top: 0;
            left: -75%;
            width: 50%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(234, 179, 8, .12), transparent);
            transform: skewX(-20deg);
            transition: all .5s ease;
        }
        .card:hover::after {
            left: 125%;
        }
        img {
            max-width: 100%;
            display: block;
            border-radius: 0;
        }
        .navbar {
            position: sticky;
            top: 0;
            z-index: 999;
            background: rgba(10, 10, 10, .96);
            border-bottom: 2px solid rgba(234, 179, 8, .5);
            backdrop-filter: blur(10px);
        }
        .nav-links {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 4px;
            padding: 14px 20px;
            max-width: 1290px;
            margin: 0 auto;
        }
        .nav-links a {
            color: #fef9c3;
            font-weight: 600;
            font-size: .92rem;
            padding: 8px 20px;
            border: 1px solid transparent;
            border-radius: 0;
            letter-spacing: 1px;
        }
        .nav-links a:hover {
            border-color: rgba(234, 179, 8, .5);
            box-shadow: 0 0 12px rgba(234, 179, 8, .2);
            background: rgba(234, 179, 8, .08);
        }
        .hero {
            position: relative;
            background: linear-gradient(135deg, #101010 0%, #1c1c1c 50%, #2a1f00 100%);
            padding: 80px 0 90px;
            text-align: center;
            border-bottom: 3px solid #eab308;
            overflow: hidden;
        }
        .hero::before {
            content: "";
            position: absolute;
            top: -60%;
            left: -20%;
            width: 70%;
            height: 130%;
            background: radial-gradient(circle, rgba(234, 179, 8, .15) 0%, transparent 70%);
            transform: rotate(12deg);
        }
        .hero h1 {
            font-size: 2.6rem;
            font-weight: 900;
            color: #fef9c3;
            letter-spacing: 3px;
            line-height: 1.3;
            margin-bottom: 16px;
            position: relative;
            text-shadow: 0 0 30px rgba(234, 179, 8, .3);
        }
        .hero p {
            max-width: 800px;
            margin: 0 auto 30px;
            color: #d4d4d4;
            font-size: 1.05rem;
            position: relative;
        }
        .hero-badges {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            position: relative;
        }
        .hero-badge {
            background: rgba(234, 179, 8, .12);
            border: 1px solid rgba(234, 179, 8, .4);
            padding: 6px 18px;
            font-size: .85rem;
            font-weight: 600;
            color: #fde68a;
            letter-spacing: 1px;
        }
        .hero-img {
            display: flex;
            justify-content: center;
            gap: 16px;
            margin-top: 30px;
            flex-wrap: wrap;
            position: relative;
        }
        .hero-img img {
            width: 120px;
            height: 120px;
            object-fit: cover;
            border: 2px solid rgba(234, 179, 8, .3);
            box-shadow: 0 0 20px rgba(234, 179, 8, .15);
        }
        .geo-intro {
            background: linear-gradient(180deg, #111 0%, #151515 100%);
            padding: 70px 0;
            border-bottom: 1px solid rgba(234, 179, 8, .2);
        }
        .geo-intro .geo-text {
            max-width: 1100px;
            margin: 0 auto;
            font-size: 1.02rem;
            color: #c7c7c7;
            text-align: justify;
            columns: 2;
            column-gap: 50px;
            line-height: 1.9;
        }
        .geo-intro .geo-text p {
            margin-bottom: 16px;
        }
        .stats-section {
            padding: 70px 0;
            background: linear-gradient(135deg, #131313, #1a1a1a);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 24px;
        }
        .stat-card {
            text-align: center;
            padding: 30px 18px;
        }
        .stat-card .num {
            font-size: 2.8rem;
            font-weight: 900;
            color: #eab308;
            line-height: 1.1;
            text-shadow: 0 0 22px rgba(234, 179, 8, .4);
        }
        .stat-card .label {
            color: #a3a3a3;
            font-size: .9rem;
            margin-top: 8px;
            letter-spacing: 2px;
        }
        .advantages-section {
            padding: 70px 0;
            background: #101010;
        }
        .adv-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 24px;
        }
        .adv-card {
            padding: 30px 22px;
        }
        .adv-card .icon {
            font-size: 2.2rem;
            color: #eab308;
            margin-bottom: 10px;
        }
        .adv-card h3 {
            color: #fef9c3;
            font-size: 1.15rem;
            margin-bottom: 10px;
        }
        .adv-card p {
            color: #9a9a9a;
            font-size: .92rem;
        }
        .story-section {
            padding: 70px 0;
            background: linear-gradient(135deg, #121212, #181818);
        }
        .story-wrap {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }
        .story-wrap img {
            border: 2px solid rgba(234, 179, 8, .3);
            box-shadow: 0 0 25px rgba(234, 179, 8, .12);
            width: 100%;
            height: 300px;
            object-fit: cover;
        }
        .story-wrap h2 {
            color: #fef9c3;
            font-size: 1.8rem;
            margin-bottom: 14px;
            border-left: 4px solid #eab308;
            padding-left: 16px;
        }
        .story-wrap p {
            color: #b0b0b0;
            font-size: .95rem;
            margin-bottom: 12px;
            text-align: justify;
        }
        .events-section {
            padding: 70px 0;
            background: #0d0d0d;
        }
        .events-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 24px;
        }
        .event-card {
            padding: 0;
        }
        .event-card img {
            height: 160px;
            width: 100%;
            object-fit: cover;
            border-bottom: 2px solid rgba(234, 179, 8, .3);
        }
        .event-body {
            padding: 20px;
        }
        .event-body h3 {
            color: #fef9c3;
            font-size: 1.1rem;
            margin-bottom: 6px;
        }
        .event-body p {
            color: #999;
            font-size: .88rem;
        }
        .event-link {
            color: #eab308;
            font-weight: 600;
            font-size: .9rem;
            display: inline-block;
            margin-top: 8px;
            border-bottom: 1px solid transparent;
        }
        .event-link:hover {
            border-bottom-color: #eab308;
        }
        .live-section {
            padding: 70px 0;
            background: linear-gradient(135deg, #141414, #1d1d1d);
        }
        .live-wrap {
            display: grid;
            grid-template-columns: 1fr 1.4fr;
            gap: 30px;
            align-items: center;
        }
        .live-wrap img {
            border: 2px solid rgba(234, 179, 8, .3);
            box-shadow: 0 0 25px rgba(234, 179, 8, .1);
            height: 280px;
            width: 100%;
            object-fit: cover;
        }
        .live-list {
            list-style: none;
        }
        .live-list li {
            padding: 12px 0;
            border-bottom: 1px solid rgba(234, 179, 8, .15);
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #bbb;
            font-size: .95rem;
        }
        .live-list li:last-child {
            border-bottom: none;
        }
        .live-tag {
            background: rgba(234, 179, 8, .15);
            color: #eab308;
            font-size: .75rem;
            padding: 2px 10px;
            font-weight: 700;
            border: 1px solid rgba(234, 179, 8, .3);
        }
        .rank-section {
            padding: 70px 0;
            background: #111;
        }
        .rank-table-wrap {
            max-width: 900px;
            margin: 0 auto;
            overflow-x: auto;
        }
        .rank-table {
            width: 100%;
            border-collapse: collapse;
        }
        .rank-table th {
            background: rgba(234, 179, 8, .15);
            color: #fef9c3;
            padding: 12px 16px;
            font-size: .9rem;
            border: 1px solid rgba(234, 179, 8, .2);
            letter-spacing: 1px;
            font-weight: 600;
        }
        .rank-table td {
            padding: 10px 16px;
            border: 1px solid rgba(255, 255, 255, .06);
            color: #b5b5b5;
            font-size: .9rem;
        }
        .rank-table tr:hover td {
            background: rgba(234, 179, 8, .06);
        }
        .rank-num {
            color: #eab308;
            font-weight: 800;
        }
        .news-section {
            padding: 70px 0;
            background: linear-gradient(180deg, #0d0d0d, #131313);
        }
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 28px;
        }
        .news-card {
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        .news-card img {
            height: 150px;
            object-fit: cover;
            border-bottom: 2px solid rgba(234, 179, 8, .2);
        }
        .news-card .news-body {
            padding: 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .news-date {
            font-size: .8rem;
            color: #eab308;
            font-weight: 600;
            letter-spacing: 1px;
            background: rgba(234, 179, 8, .08);
            padding: 2px 8px;
            display: inline-block;
            margin-bottom: 8px;
            border: 1px solid rgba(234, 179, 8, .2);
        }
        .news-card h3 {
            font-size: 1.05rem;
            color: #fef9c3;
            margin-bottom: 8px;
            line-height: 1.5;
        }
        .news-card p {
            color: #9a9a9a;
            font-size: .9rem;
            flex: 1;
        }
        .news-card .read-more {
            margin-top: 12px;
            color: #eab308;
            font-weight: 600;
            font-size: .9rem;
            border-bottom: 1px solid transparent;
            align-self: flex-start;
        }
        .news-card .read-more:hover {
            border-bottom-color: #eab308;
        }
        .testimonials-section {
            padding: 70px 0;
            background: #101010;
        }
        .testi-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 24px;
        }
        .testi-card {
            padding: 28px 22px;
        }
        .testi-card .stars {
            color: #eab308;
            font-size: 1.1rem;
            letter-spacing: 3px;
            margin-bottom: 10px;
        }
        .testi-card p {
            color: #a5a5a5;
            font-size: .92rem;
            font-style: italic;
            margin-bottom: 12px;
        }
        .testi-card .author {
            color: #fef9c3;
            font-weight: 700;
            font-size: .9rem;
        }
        .partners-section {
            padding: 70px 0;
            background: #111;
        }
        .partners-logo {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 40px;
        }
        .partner-item {
            text-align: center;
            color: #888;
            font-weight: 600;
            letter-spacing: 1px;
            padding: 20px 30px;
            border: 1px solid rgba(255, 255, 255, .06);
            background: rgba(255, 255, 255, .02);
            font-size: .9rem;
            min-width: 120px;
        }
        .partner-item:hover {
            border-color: rgba(234, 179, 8, .3);
            color: #eab308;
        }
        .faq-section {
            padding: 70px 0;
            background: linear-gradient(180deg, #0d0d0d, #121212);
        }
        .faq-list {
            max-width: 900px;
            margin: 0 auto;
        }
        .faq-item {
            margin-bottom: 16px;
        }
        .faq-q {
            background: rgba(234, 179, 8, .06);
            border: 1px solid rgba(234, 179, 8, .2);
            padding: 16px 22px;
            font-weight: 700;
            color: #fef9c3;
            font-size: 1rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-q .q-mark {
            color: #eab308;
            font-size: 1.2rem;
            font-weight: 900;
        }
        .faq-a {
            background: rgba(0, 0, 0, .3);
            border: 1px solid rgba(234, 179, 8, .1);
            border-top: none;
            padding: 18px 22px;
            color: #a3a3a3;
            font-size: .92rem;
            line-height: 1.85;
        }
        .download-section {
            padding: 70px 0;
            background: linear-gradient(135deg, #151515, #1c1c1c);
        }
        .download-wrap {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 40px;
            align-items: center;
        }
        .download-wrap img {
            height: 260px;
            object-fit: cover;
            border: 2px solid rgba(234, 179, 8, .25);
            box-shadow: 0 0 30px rgba(234, 179, 8, .1);
        }
        .download-wrap h2 {
            color: #fef9c3;
            font-size: 1.8rem;
            margin-bottom: 10px;
        }
        .download-wrap p {
            color: #aaa;
            margin-bottom: 20px;
            font-size: .95rem;
        }
        .btn-main {
            display: inline-block;
            background: linear-gradient(135deg, #eab308, #b48a08);
            color: #1a1a1a;
            font-weight: 800;
            padding: 12px 30px;
            border: 2px solid #fef9c3;
            font-size: 1rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: all .3s;
        }
        .btn-main:hover {
            box-shadow: 0 0 25px rgba(234, 179, 8, .5);
            transform: scale(1.03);
            color: #000;
        }
        .cta-section {
            padding: 60px 0;
            background: linear-gradient(135deg, #1a1a1a, #eab308);
            text-align: center;
        }
        .cta-section h2 {
            font-size: 2rem;
            color: #fff;
            font-weight: 900;
            text-shadow: 0 2px 10px rgba(0, 0, 0, .4);
            margin-bottom: 10px;
        }
        .cta-section p {
            color: rgba(255, 255, 255, .9);
            margin-bottom: 24px;
        }
        .cta-section .btn-main {
            background: #1a1a1a;
            color: #eab308;
            border-color: #eab308;
        }
        footer {
            background: #080808;
            border-top: 3px solid #eab308;
            padding: 50px 0 30px;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            margin-bottom: 24px;
        }
        .footer-links a {
            color: #888;
            font-size: .9rem;
        }
        .footer-links a:hover {
            color: #eab308;
        }
        .footer-info {
            text-align: center;
            color: #666;
            font-size: .85rem;
            line-height: 1.9;
        }
        .footer-info .highlight {
            color: #fef9c3;
        }
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 1.7rem;
            }
            .geo-intro .geo-text {
                columns: 1;
            }
            .story-wrap,
            .live-wrap,
            .download-wrap {
                grid-template-columns: 1fr;
            }
            .nav-links {
                flex-direction: column;
                gap: 0;
            }
            .nav-links a {
                width: 100%;
                text-align: center;
            }
            .section-title {
                font-size: 1.5rem;
            }
        }