
    /* 全局样式 */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Roboto', sans-serif;
        background: linear-gradient(135deg, #0f1a2b, #4c566a);
        color: #ffffff;
        line-height: 1.6;
        overflow-x: hidden;
    }

    a {
        color: #00ff8f;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    a:hover {
        color: #ff69b4;
    }

    /* 容器 */
    .container {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
    }

    /* 头部 */
    header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 0;
        position: relative;
        z-index: 2;
    }

    .logo {
        font-size: 1.8em;
        font-weight: bold;
        background: linear-gradient(45deg, #00ff8f, #ff69b4);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    nav ul {
        list-style: none;
        display: flex;
        gap: 20px;
    }

    nav ul li a {
        position: relative;
    }

    nav ul li a::after {
        content: '';
        position: absolute;
        width: 0%;
        height: 2px;
        background: #00ff8f;
        left: 0;
        bottom: -5px;
        transition: width 0.3s ease;
    }

    nav ul li a:hover::after {
        width: 100%;
    }

    /* 主视觉区域 */
    .hero {
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(10px);
        border-radius: 15px;
    }

    .hero h1 {
        font-size: 3em;
        margin-bottom: 20px;
        background: linear-gradient(90deg, #00ff8f, #ff69b4);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .hero p {
        font-size: 1.2em;
        margin-bottom: 30px;
    }

    .cta-button {
        background-color: #00ff8f;
        border: none;
        padding: 15px 30px;
        border-radius: 50px;
        font-size: 1em;
        color: #ffffff;
        cursor: pointer;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .cta-button:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 16px rgba(0, 255, 143, 0.5);
    }

    /* 功能亮点 */
    .features {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        margin: 50px 0;
    }

    .feature-card {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: 10px;
        padding: 20px;
        flex: 1 1 calc(33.333% - 40px);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    }

    .feature-card img {
        width: 100%;
        height: auto;
        border-radius: 5px;
        margin-bottom: 15px;
    }

    .feature-card h3 {
        margin-bottom: 10px;
        font-size: 1.5em;
        color: #00ff8f;
    }

    .feature-card p {
        font-size: 1em;
        color: #dddddd;
    }

    /* 示例展示 */
    .example-section {
        margin: 50px 0;
    }

    .example-section h2 {
        text-align: center;
        margin-bottom: 30px;
        font-size: 2em;
        background: linear-gradient(45deg, #00ff8f, #ff69b4);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .example-article {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: 10px;
        padding: 20px;
    }

    .example-article pre {
        background: #1e1e1e;
        padding: 15px;
        border-radius: 5px;
        overflow-x: auto;
        margin: 20px 0;
    }

    .example-article code {
        font-family: 'Courier New', Courier, monospace;
        color: #00ff8f;
    }

    /* 底部信息区域 */
    footer {
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(5px);
        padding: 20px 0;
        text-align: center;
        color: #aaaaaa;
    }

    footer a {
        color: #ff69b4;
    }

    /* 响应式设计 */
    @media (max-width: 1440px) {
        .feature-card {
            flex: 1 1 calc(33.333% - 40px);
        }
    }

    @media (max-width: 1200px) {
        .container {
            width: 95%;
        }
    }

    @media (max-width: 1024px) {
        .features {
            flex-direction: column;
        }

        .feature-card {
            flex: 1 1 100%;
        }

        .hero h1 {
            font-size: 2.5em;
        }
    }

    @media (max-width: 768px) {
        .hero h1 {
            font-size: 2em;
        }

        .cta-button {
            padding: 10px 20px;
            font-size: 0.9em;
        }

        .feature-card {
            padding: 15px;
        }
    }

    @media (max-width: 480px) {
        header {
            flex-direction: column;
            align-items: flex-start;
        }

        nav ul {
            flex-direction: column;
            gap: 10px;
        }

        .hero {
            padding: 10px;
        }

        .hero h1 {
            font-size: 1.8em;
        }

        .features {
            margin: 30px 0;
        }
    }

    @media (max-width: 320px) {
        .feature-card h3 {
            font-size: 1.2em;
        }

        .feature-card p {
            font-size: 0.9em;
        }

        .example-section h2 {
            font-size: 1.5em;
        }
    }

    /* 动态粒子背景 */
    .particles {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: 1;
    }

    /* 赛博朋克霓虹灯效果 */
    .neon-border {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 5px solid transparent;
        border-image: linear-gradient(45deg, #00ff8f, #ff69b4, #00ff8f) 1;
        pointer-events: none;
        animation: neonGlow 3s infinite;
    }

    @keyframes neonGlow {
        0% {
            border-image: linear-gradient(45deg, #00ff8f, #ff69b4, #00ff8f) 1;
        }
        50% {
            border-image: linear-gradient(45deg, #ff69b4, #00ff8f, #ff69b4) 1;
        }
        100% {
            border-image: linear-gradient(45deg, #00ff8f, #ff69b4, #00ff8f) 1;
        }
    }

