* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            background: linear-gradient(135deg, #0f1a12 0%, #1a3a2a 50%, #0f1a12 100%);
            color: #e0f0e5;
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            line-height: 1.6;
            min-height: 100vh;
        }
        a {
            color: #4ade80;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #86efac;
            text-shadow: 0 0 12px rgba(74, 222, 128, 0.4);
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        /* 导航 */
        nav {
            background: rgba(15, 26, 18, 0.85);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(74, 222, 128, 0.15);
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 30px rgba(0,0,0,0.5);
        }
        nav .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .nav-links {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            align-items: center;
        }
        .nav-links a {
            font-size: 0.95rem;
            font-weight: 500;
            letter-spacing: 0.5px;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            border-bottom-color: #4ade80;
        }
        .nav-brand {
            font-size: 1.2rem;
            font-weight: 700;
            background: linear-gradient(135deg, #4ade80, #86efac);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        /* 通用标题 */
        h1, h2, h3 {
            font-weight: 700;
            letter-spacing: 0.5px;
        }
        h1 {
            font-size: 2.6rem;
            background: linear-gradient(135deg, #4ade80, #a7f3d0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 16px;
        }
        h2 {
            font-size: 2rem;
            color: #4ade80;
            margin-bottom: 20px;
            border-left: 4px solid #4ade80;
            padding-left: 16px;
        }
        /* 卡片通用 */
        .glass-card {
            background: rgba(26, 58, 42, 0.4);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(74, 222, 128, 0.2);
            border-radius: 20px;
            padding: 28px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 0 15px rgba(74,222,128,0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .glass-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 25px rgba(74,222,128,0.12);
        }
        .grid-2 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 28px;
        }
        .grid-3 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 24px;
        }
        /* Hero */
        #hero {
            padding: 80px 0 60px;
            text-align: center;
            position: relative;
        }
        #hero .hero-sub {
            font-size: 1.15rem;
            color: #9ca3af;
            max-width: 720px;
            margin: 0 auto 32px;
        }
        .hero-img {
            max-width: 600px;
            width: 100%;
            border-radius: 20px;
            margin: 20px auto;
            box-shadow: 0 0 40px rgba(74,222,128,0.15);
        }
        .cta-btn {
            display: inline-block;
            background: linear-gradient(135deg, #4ade80, #22c55e);
            color: #0f1a12;
            font-weight: 700;
            padding: 14px 40px;
            border-radius: 50px;
            font-size: 1.1rem;
            letter-spacing: 1px;
            box-shadow: 0 4px 20px rgba(74,222,128,0.3);
            transition: all 0.3s;
        }
        .cta-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 30px rgba(74,222,128,0.5);
            color: #0f1a12;
        }
        /* 数据统计 */
        #stats {
            padding: 60px 0;
        }
        .stat-item {
            text-align: center;
            padding: 20px;
        }
        .stat-number {
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #4ade80, #86efac);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .stat-label {
            color: #9ca3af;
            margin-top: 4px;
        }
        /* 核心优势 */
        #advantages {
            padding: 60px 0;
        }
        .advantage-icon {
            font-size: 2.2rem;
            margin-bottom: 12px;
        }
        /* 品牌故事 */
        #story {
            padding: 60px 0;
        }
        #story .story-content {
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
            align-items: center;
        }
        #story .story-text {
            flex: 1 1 300px;
        }
        #story img {
            flex: 0 0 300px;
            width: 100%;
            max-width: 400px;
            border-radius: 16px;
        }
        /* 焦点赛事 */
        #featured-events {
            padding: 60px 0;
        }
        .event-card {
            text-align: center;
        }
        .event-card img {
            width: 100%;
            max-height: 200px;
            object-fit: cover;
            border-radius: 12px;
            margin-bottom: 12px;
        }
        /* 合作伙伴 */
        #partners {
            padding: 60px 0;
        }
        .partner-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 32px;
        }
        .partner-item {
            background: rgba(255,255,255,0.05);
            padding: 16px 28px;
            border-radius: 40px;
            border: 1px solid rgba(74,222,128,0.15);
            font-weight: 500;
            color: #a7f3d0;
        }
        /* 用户口碑 */
        #testimonials {
            padding: 60px 0;
        }
        .testimonial-card {
            background: rgba(26, 58, 42, 0.3);
            border: 1px solid rgba(74,222,128,0.1);
            border-radius: 16px;
            padding: 24px;
            font-style: italic;
        }
        .testimonial-author {
            margin-top: 16px;
            font-weight: 600;
            color: #4ade80;
        }
        /* 新闻 */
        #news {
            padding: 60px 0;
        }
        .news-item {
            border-bottom: 1px solid rgba(74,222,128,0.1);
            padding: 20px 0;
        }
        .news-item:last-child {
            border-bottom: none;
        }
        .news-date {
            color: #6ee7b7;
            font-size: 0.85rem;
            margin-bottom: 6px;
        }
        .news-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 8px;
        }
        .news-summary {
            color: #9ca3af;
        }
        /* FAQ */
        #faq {
            padding: 60px 0;
        }
        .faq-item {
            margin-bottom: 20px;
            border: 1px solid rgba(74,222,128,0.15);
            border-radius: 12px;
            overflow: hidden;
        }
        .faq-question {
            background: rgba(26, 58, 42, 0.5);
            padding: 18px 24px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-question::after {
            content: '+';
            font-size: 1.4rem;
            color: #4ade80;
        }
        .faq-answer {
            padding: 18px 24px;
            background: rgba(15, 26, 18, 0.3);
            color: #cbd5e1;
        }
        /* 愿景使命 */
        #vision {
            padding: 60px 0;
        }
        .vision-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
        }
        @media (max-width: 640px) {
            .vision-grid { grid-template-columns: 1fr; }
        }
        /* CTA */
        #cta {
            padding: 60px 0;
            text-align: center;
        }
        /* 页脚 */
        footer {
            background: rgba(15, 26, 18, 0.8);
            border-top: 1px solid rgba(74,222,128,0.1);
            padding: 40px 0 24px;
            margin-top: 40px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 24px;
            margin-bottom: 24px;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
            justify-content: center;
            padding: 16px 0;
            border-top: 1px solid rgba(74,222,128,0.08);
            border-bottom: 1px solid rgba(74,222,128,0.08);
            margin: 16px 0;
        }
        .footer-bottom {
            text-align: center;
            color: #6b7280;
            font-size: 0.85rem;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        @media (max-width: 768px) {
            h1 { font-size: 1.8rem; }
            h2 { font-size: 1.5rem; }
            .nav-links { gap: 12px; }
        }