* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
    }
    :root {
        --primary: #10b981;
        --primary-dark: #065f46;
        --primary-light: #d1fae5;
        --accent: #fbbf24;
        --white: #ffffff;
        --gray-light: #f0fdf4;
        --gray: #6b7280;
        --dark: #1f2937;
    }
    html {
        scroll-behavior: smooth;
    }
    body {
        background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 50%, #d1fae5 100%);
        color: var(--dark);
        line-height: 1.6;
    }
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 24px;
    }

    /* Navbar */
    .navbar {
        background: linear-gradient(135deg, var(--primary-dark), #047857);
        padding: 14px 0;
        position: sticky;
        top: 0;
        z-index: 100;
        box-shadow: 0 4px 20px rgba(6, 95, 70, 0.3);
    }
    .nav-links {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 24px;
        flex-wrap: wrap;
    }
    .nav-links a {
        color: var(--white);
        text-decoration: none;
        font-size: 15px;
        font-weight: 600;
        padding: 8px 20px;
        border-radius: 20px;
        transition: background 0.3s, transform 0.2s;
        letter-spacing: 0.5px;
    }
    .nav-links a:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateY(-2px);
    }
    .nav-links a:first-child {
        background: var(--accent);
        color: var(--primary-dark);
        border-radius: 20px;
        box-shadow: 0 2px 10px rgba(251, 191, 36, 0.4);
    }

    /* Hero */
    .hero-section {
        padding: 90px 0 70px;
        background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 50%, #a7f3d0 100%);
        text-align: center;
        position: relative;
        overflow: hidden;
    }
    .hero-section::before {
        content: "🏆";
        font-size: 180px;
        position: absolute;
        top: 20px;
        right: 40px;
        opacity: 0.1;
        transform: rotate(-15deg);
    }
    .hero-section .container {
        position: relative;
        z-index: 2;
    }
    .hero-section h1 {
        font-size: 42px;
        color: var(--primary-dark);
        font-weight: 800;
        line-height: 1.3;
        margin-bottom: 30px;
        text-shadow: 0 2px 20px rgba(6, 95, 70, 0.1);
    }
    .geo-intro {
        max-width: 850px;
        margin: 0 auto 32px;
        font-size: 16px;
        color: #374151;
        line-height: 1.8;
        background: rgba(255, 255, 255, 0.8);
        padding: 28px 36px;
        border-radius: 16px;
        box-shadow: 0 8px 30px rgba(6, 95, 70, 0.08);
        text-align: left;
    }
    .btn-primary {
        display: inline-block;
        background: linear-gradient(135deg, var(--primary), var(--primary-dark));
        color: var(--white) !important;
        padding: 14px 36px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 700;
        font-size: 16px;
        box-shadow: 0 6px 20px rgba(16, 185, 129, 0.35);
        transition: transform 0.3s, box-shadow 0.3s;
        border: none;
        cursor: pointer;
    }
    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(16, 185, 129, 0.45);
    }

    /* Section */
    .section {
        padding: 70px 0;
    }
    .section-alt {
        background: rgba(255, 255, 255, 0.85);
    }
    .section-title {
        font-size: 32px;
        font-weight: 800;
        color: var(--primary-dark);
        text-align: center;
        margin-bottom: 16px;
        position: relative;
        padding-bottom: 18px;
    }
    .section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 4px;
        border-radius: 2px;
        background: linear-gradient(90deg, var(--primary), var(--accent));
    }
    .section-subtitle {
        text-align: center;
        color: var(--gray);
        font-size: 15px;
        max-width: 700px;
        margin: 0 auto 50px;
    }

    /* Stats */
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
        margin-top: 20px;
    }
    .stat-item {
        background: var(--white);
        border-radius: 16px;
        padding: 40px 20px;
        text-align: center;
        box-shadow: 0 4px 15px rgba(6, 95, 70, 0.06);
        transition: transform 0.3s, box-shadow 0.3s;
        border: 2px solid transparent;
    }
    .stat-item:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 30px rgba(6, 95, 70, 0.12);
        border-color: var(--primary-light);
    }
    .stat-number {
        font-size: 48px;
        font-weight: 900;
        background: linear-gradient(135deg, var(--primary), var(--primary-dark));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        line-height: 1.2;
    }
    .stat-label {
        font-size: 15px;
        color: var(--gray);
        margin-top: 8px;
        font-weight: 500;
    }

    /* Advantages */
    .advantages-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 28px;
    }
    .advantage-card {
        background: var(--white);
        border-radius: 16px;
        padding: 32px 24px;
        text-align: center;
        box-shadow: 0 4px 15px rgba(6, 95, 70, 0.06);
        transition: transform 0.3s, box-shadow 0.3s;
    }
    .advantage-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(6, 95, 70, 0.12);
    }
    .advantage-card img {
        width: 80px;
        height: 80px;
        object-fit: contain;
        margin-bottom: 16px;
        border-radius: 20px;
        background: var(--primary-light);
        padding: 16px;
    }
    .advantage-card h3 {
        font-size: 19px;
        color: var(--primary-dark);
        margin-bottom: 10px;
        font-weight: 700;
    }
    .advantage-card p {
        font-size: 14px;
        color: var(--gray);
        line-height: 1.7;
    }

    /* Story */
    .story-content {
        display: flex;
        gap: 40px;
        align-items: center;
        flex-wrap: wrap;
    }
    .story-content img {
        max-width: 400px;
        width: 100%;
        border-radius: 16px;
        box-shadow: 0 8px 30px rgba(6, 95, 70, 0.12);
    }
    .story-text {
        flex: 1;
        min-width: 280px;
        font-size: 15px;
        color: #374151;
        line-height: 1.9;
    }
    .story-text p {
        margin-bottom: 16px;
    }
    .story-text strong {
        color: var(--primary-dark);
    }

    /* Events */
    .events-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 28px;
    }
    .event-card {
        background: var(--white);
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(6, 95, 70, 0.06);
        transition: transform 0.3s, box-shadow 0.3s;
    }
    .event-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(6, 95, 70, 0.12);
    }
    .event-card img {
        width: 100%;
        height: 180px;
        object-fit: cover;
    }
    .event-card .event-body {
        padding: 22px 24px;
    }
    .event-card h3 {
        font-size: 18px;
        color: var(--primary-dark);
        margin-bottom: 8px;
        font-weight: 700;
    }
    .event-card p {
        font-size: 14px;
        color: var(--gray);
        line-height: 1.7;
    }

    /* Games */
    .games-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 28px;
    }
    .game-card {
        background: var(--white);
        border-radius: 16px;
        padding: 28px 24px;
        text-align: center;
        box-shadow: 0 4px 15px rgba(6, 95, 70, 0.06);
        transition: transform 0.3s, box-shadow 0.3s;
        border-top: 4px solid var(--primary);
    }
    .game-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(6, 95, 70, 0.12);
    }
    .game-card img {
        width: 72px;
        height: 72px;
        object-fit: contain;
        margin-bottom: 14px;
        border-radius: 16px;
        background: var(--primary-light);
        padding: 14px;
    }
    .game-card h3 {
        font-size: 18px;
        color: var(--primary-dark);
        margin-bottom: 8px;
    }
    .game-card p {
        font-size: 14px;
        color: var(--gray);
    }

    /* Testimonials */
    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 28px;
    }
    .testimonial-card {
        background: var(--white);
        border-radius: 16px;
        padding: 28px 30px;
        box-shadow: 0 4px 15px rgba(6, 95, 70, 0.06);
        position: relative;
        border-left: 4px solid var(--accent);
    }
    .testimonial-card p {
        font-size: 15px;
        color: #374151;
        line-height: 1.8;
        font-style: italic;
        margin-bottom: 16px;
    }
    .testimonial-card .user {
        font-weight: 700;
        color: var(--primary-dark);
        text-align: right;
        font-size: 14px;
    }

    /* Vision */
    .vision-box {
        background: linear-gradient(135deg, var(--primary-dark), #047857);
        border-radius: 20px;
        padding: 50px 60px;
        color: var(--white);
        text-align: center;
        box-shadow: 0 8px 30px rgba(6, 95, 70, 0.25);
    }
    .vision-box h2 {
        color: var(--white);
        font-size: 30px;
        margin-bottom: 24px;
    }
    .vision-box p {
        font-size: 16px;
        line-height: 1.9;
        max-width: 750px;
        margin: 0 auto;
        color: rgba(255, 255, 255, 0.9);
    }

    /* News */
    .news-list {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }
    .news-item {
        background: var(--white);
        border-radius: 16px;
        padding: 28px 30px;
        box-shadow: 0 4px 15px rgba(6, 95, 70, 0.05);
        border-left: 5px solid var(--primary);
        transition: box-shadow 0.3s;
    }
    .news-item:hover {
        box-shadow: 0 8px 25px rgba(6, 95, 70, 0.1);
    }
    .news-meta {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 10px;
        flex-wrap: wrap;
    }
    .news-tag {
        display: inline-block;
        background: linear-gradient(135deg, var(--primary), var(--primary-dark));
        color: var(--white);
        font-size: 12px;
        font-weight: 700;
        padding: 4px 14px;
        border-radius: 20px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    .news-date {
        font-size: 13px;
        color: var(--gray);
        font-weight: 500;
    }
    .news-item h3 {
        font-size: 19px;
        color: var(--primary-dark);
        font-weight: 700;
        margin-bottom: 10px;
        line-height: 1.5;
    }
    .news-item p {
        font-size: 14px;
        color: #4b5563;
        line-height: 1.8;
        margin-bottom: 12px;
    }
    .news-read-more {
        display: inline-block;
        color: var(--primary);
        font-weight: 600;
        font-size: 14px;
        text-decoration: none;
        transition: color 0.3s;
    }
    .news-read-more:hover {
        color: var(--primary-dark);
        text-decoration: underline;
    }

    /* FAQ */
    .faq-list {
        max-width: 900px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .faq-item {
        background: var(--white);
        border-radius: 16px;
        padding: 28px 32px;
        box-shadow: 0 4px 15px rgba(6, 95, 70, 0.05);
    }
    .faq-item h3 {
        font-size: 16px;
        color: var(--primary-dark);
        font-weight: 700;
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .faq-item h3::before {
        content: "❓";
        color: var(--primary);
    }
    .faq-item p {
        font-size: 14px;
        color: #4b5563;
        line-height: 1.8;
    }

    /* CTA */
    .cta-section {
        padding: 80px 0;
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
        text-align: center;
        border-radius: 0;
    }
    .cta-section h2 {
        color: var(--white);
        font-size: 34px;
        font-weight: 800;
        margin-bottom: 16px;
    }
    .cta-section p {
        color: rgba(255, 255, 255, 0.9);
        font-size: 16px;
        margin-bottom: 30px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    .cta-section .btn-primary {
        background: var(--white);
        color: var(--primary-dark) !important;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }
    .cta-section .btn-primary:hover {
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    }

    /* Footer */
    .footer {
        background: #0b2e26;
        color: rgba(255, 255, 255, 0.8);
        padding: 50px 0 30px;
        font-size: 14px;
    }
    .footer .container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 30px;
    }
    .footer-col {
        flex: 1;
        min-width: 200px;
    }
    .footer-col h4 {
        color: var(--accent);
        font-size: 16px;
        margin-bottom: 14px;
        font-weight: 700;
    }
    .footer-col a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        display: block;
        padding: 4px 0;
        transition: color 0.3s;
    }
    .footer-col a:hover {
        color: var(--white);
    }
    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 30px;
        padding-top: 20px;
        text-align: center;
        font-size: 13px;
        color: rgba(255, 255, 255, 0.5);
    }
    .footer-bottom a {
        color: rgba(255, 255, 255, 0.6);
        text-decoration: none;
        margin: 0 8px;
    }
    .footer-bottom a:hover {
        color: var(--white);
    }
    @media (max-width: 768px) {
        .hero-section h1 { font-size: 28px; }
        .nav-links { gap: 10px; }
        .nav-links a { font-size: 13px; padding: 6px 14px; }
        .vision-box { padding: 30px 20px; }
        .story-content { flex-direction: column; }
    }