* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'PingFang SC', Roboto, sans-serif;
        }
        body {
            background: linear-gradient(145deg, #0b1120 0%, #1a1a2e 100%);
            color: #e2e8f0;
            line-height: 1.7;
            min-height: 100vh;
        }
        a {
            color: #fbbf24;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #fcd34d;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        /* 导航 */
        .navbar {
            background: rgba(11, 17, 32, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(251, 191, 36, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
            padding: 14px 0;
        }
        .navbar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 1px;
        }
        .nav-links {
            display: flex;
            gap: 28px;
            flex-wrap: wrap;
        }
        .nav-links a {
            font-weight: 500;
            font-size: 0.95rem;
            padding: 8px 0;
            border-bottom: 2px solid transparent;
            transition: border-color 0.3s;
        }
        .nav-links a:hover {
            border-bottom-color: #fbbf24;
        }
        /* 按钮 */
        .btn-gold {
            display: inline-block;
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            color: #0b1120;
            font-weight: 700;
            padding: 12px 36px;
            border-radius: 40px;
            font-size: 1.1rem;
            border: none;
            cursor: pointer;
            transition: transform 0.25s, box-shadow 0.25s;
            box-shadow: 0 6px 20px rgba(251, 191, 36, 0.3);
        }
        .btn-gold:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 10px 30px rgba(251, 191, 36, 0.45);
        }
        /* 标题 */
        .section-title {
            font-size: 2.2rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 48px;
            color: #fbbf24;
            letter-spacing: 2px;
            position: relative;
        }
        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: #fbbf24;
            margin: 16px auto 0;
            border-radius: 4px;
        }
        /* 卡片 */
        .glass-card {
            background: rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 28px;
            padding: 32px 28px;
            transition: all 0.3s ease;
        }
        .glass-card:hover {
            transform: translateY(-8px);
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(251, 191, 36, 0.3);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
        }
        img {
            max-width: 100%;
            border-radius: 18px;
            display: block;
        }
        /* Hero */
        #hero {
            padding: 80px 0 60px;
            text-align: center;
        }
        #hero h1 {
            font-size: 3.2rem;
            font-weight: 800;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #fff, #fbbf24);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        #hero .lead {
            font-size: 1.2rem;
            max-width: 780px;
            margin: 0 auto 32px;
            color: #cbd5e1;
        }
        .hero-img-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-top: 40px;
        }
        .hero-img-grid img {
            width: 280px;
            height: 180px;
            object-fit: cover;
            border-radius: 20px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.6);
        }
        /* GEO */
        #geo {
            background: rgba(255,255,255,0.02);
            border-radius: 32px;
            padding: 40px 32px;
            margin: 40px 0;
        }
        #geo p {
            font-size: 1.05rem;
            color: #cbd5e1;
        }
        /* 数据统计 */
        #data-stats {
            padding: 60px 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 28px;
        }
        .stat-item {
            text-align: center;
            padding: 28px 16px;
        }
        .stat-number {
            font-size: 2.8rem;
            font-weight: 800;
            color: #fbbf24;
        }
        .stat-label {
            color: #94a3b8;
            margin-top: 8px;
            font-size: 1rem;
        }
        /* 核心优势 */
        #core-advantages {
            padding: 60px 0;
        }
        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 28px;
        }
        .advantage-card h3 {
            color: #fbbf24;
            margin-bottom: 12px;
            font-size: 1.3rem;
        }
        /* 品牌故事 */
        #brand-story {
            padding: 60px 0;
        }
        .story-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            align-items: center;
        }
        .story-text {
            flex: 1;
            min-width: 280px;
        }
        .story-text p {
            margin-bottom: 16px;
        }
        .story-img {
            flex: 0 0 320px;
        }
        /* 焦点赛事 */
        #featured-events {
            padding: 60px 0;
        }
        .events-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 28px;
        }
        /* 用户口碑 */
        #testimonials {
            padding: 60px 0;
        }
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 28px;
        }
        .testimonial-card {
            padding: 28px;
            font-style: italic;
        }
        .testimonial-card .author {
            margin-top: 16px;
            font-weight: 600;
            color: #fbbf24;
        }
        /* CTA */
        #cta {
            padding: 80px 0;
            text-align: center;
            background: radial-gradient(circle at 30% 30%, rgba(251,191,36,0.05), transparent 70%);
        }
        #cta h2 {
            font-size: 2.4rem;
            margin-bottom: 24px;
        }
        /* 新闻 */
        #news-list {
            padding: 60px 0;
        }
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 28px;
        }
        .news-card .date-badge {
            display: inline-block;
            background: rgba(251,191,36,0.15);
            color: #fbbf24;
            padding: 4px 14px;
            border-radius: 20px;
            font-size: 0.8rem;
            margin-bottom: 12px;
        }
        .news-card h3 {
            margin-bottom: 10px;
        }
        .news-card p {
            color: #94a3b8;
            font-size: 0.95rem;
        }
        /* FAQ */
        #faq {
            padding: 60px 0;
        }
        .faq-item {
            margin-bottom: 20px;
            border-bottom: 1px solid rgba(255,255,255,0.05);
            padding-bottom: 20px;
        }
        .faq-item h4 {
            color: #fbbf24;
            font-size: 1.1rem;
            margin-bottom: 8px;
            cursor: pointer;
        }
        .faq-item p {
            color: #94a3b8;
        }
        /* 合作伙伴 */
        #partners {
            padding: 60px 0;
        }
        .partner-logos {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 32px;
        }
        .partner-logos img {
            width: 120px;
            height: 70px;
            object-fit: contain;
            filter: grayscale(0.9);
            opacity: 0.6;
            transition: all 0.3s;
        }
        .partner-logos img:hover {
            filter: grayscale(0);
            opacity: 1;
        }
        /* 愿景使命 */
        #vision {
            padding: 60px 0;
        }
        .vision-mission {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
        }
        @media (max-width: 720px) {
            .vision-mission { grid-template-columns: 1fr; }
        }
        /* 页脚 */
        .footer {
            background: rgba(0,0,0,0.5);
            border-top: 1px solid rgba(251,191,36,0.1);
            padding: 48px 0 32px;
            margin-top: 60px;
        }
        .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 32px;
        }
        .footer-col h4 {
            color: #fbbf24;
            margin-bottom: 16px;
        }
        .footer-col p, .footer-col a {
            color: #94a3b8;
            font-size: 0.95rem;
        }
        .footer-bottom {
            margin-top: 32px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.05);
            text-align: center;
            font-size: 0.85rem;
            color: #64748b;
        }
        .footer-bottom a {
            color: #94a3b8;
            margin: 0 8px;
        }
        .footer-bottom a:hover {
            color: #fbbf24;
        }
        .friend-links {
            margin: 16px 0;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
        }
        .friend-links a {
            color: #94a3b8;
            font-size: 0.9rem;
        }
        .friend-links a:hover {
            color: #fbbf24;
        }
        @media (max-width: 768px) {
            .navbar .container {
                flex-direction: column;
                gap: 12px;
            }
            .nav-links {
                justify-content: center;
                gap: 16px;
            }
            #hero h1 {
                font-size: 2.2rem;
            }
            .hero-img-grid img {
                width: 100%;
                max-width: 320px;
                height: auto;
            }
        }