
    /* 基本样式重置 */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Roboto Mono', monospace;
        background: radial-gradient(circle at top right, #1a1a4d, #000022);
        color: #ffffff;
        line-height: 1.6;
        padding: 20px;
        animation: backgroundMove 15s linear infinite;
    }

    @keyframes backgroundMove {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
    }

    h1, h2, h3 {
        font-family: 'Orbitron', sans-serif;
        color: #00ff99;
        text-shadow: 0 0 10px #00ff99, 0 0 20px #00ff99;
        margin-bottom: 20px;
    }

    h1 {
        font-size: 2.5em;
        text-align: center;
        margin-top: 20px;
    }

    h2 {
        font-size: 2em;
        margin-top: 40px;
    }

    h3 {
        font-size: 1.5em;
        margin-top: 30px;
    }

    p {
        margin-bottom: 20px;
        padding: 0 10px;
    }

    pre {
        background: rgba(255, 255, 255, 0.1);
        padding: 15px;
        border-radius: 10px;
        overflow-x: auto;
        margin-bottom: 20px;
    }

    code {
        color: #00ff99;
        font-family: 'Roboto Mono', monospace;
    }

    table {
        width: 100%;
        border-collapse: collapse;
        margin-bottom: 20px;
    }

    th, td {
        border: 1px solid #00ff99;
        padding: 10px;
        text-align: left;
    }

    th {
        background: rgba(0, 255, 153, 0.2);
    }

    ul {
        list-style-type: disc;
        margin-left: 20px;
        margin-bottom: 20px;
    }

    a {
        color: #ff00ff;
        text-decoration: none;
        position: relative;
        transition: all 0.3s ease;
    }

    a:hover {
        color: #00ff99;
        text-shadow: 0 0 10px #00ff99;
    }

    a:active {
        transform: scale(0.95);
        box-shadow: 0 0 20px #00ff99;
    }

    button {
        background-color: #00ff99;
        border: none;
        padding: 10px 20px;
        color: #000022;
        font-size: 1em;
        border-radius: 5px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    button:hover {
        background-color: #ff00ff;
        box-shadow: 0 0 15px #ff00ff;
    }

    .container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
        padding: 20px 0;
    }

    .module {
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid #00ff99;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 0 10px rgba(0, 255, 153, 0.5);
        position: relative;
        overflow: hidden;
    }

    .module img {
        width: 100%;
        border-radius: 10px;
        margin-bottom: 15px;
    }

    .module h4 {
        color: #ff00ff;
        margin-bottom: 10px;
    }

    .data-stream {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        pointer-events: none;
        z-index: -1;
    }

    .stream-item {
        font-family: 'Roboto Mono', monospace;
        color: #00ff99;
        animation: dataStream 10s linear infinite;
        white-space: nowrap;
        font-size: 0.9em;
    }

    @keyframes dataStream {
        0% { transform: translateY(100%); }
        100% { transform: translateY(-100%); }
    }

    .featured-item {
        background: rgba(0, 0, 0, 0.8);
        border: 1px solid #00ff99;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 0 20px rgba(0, 255, 153, 0.8);
        text-shadow: 0 0 10px #00ff99;
    }

    /* 响应式设计 */
    @media (max-width: 320px) {
        body {
            padding: 10px;
        }

        h1 {
            font-size: 1.8em;
        }

        h2 {
            font-size: 1.5em;
        }

        .container {
            grid-template-columns: 1fr;
        }
    }

    @media (min-width: 321px) and (max-width: 480px) {
        h1 {
            font-size: 2em;
        }

        h2 {
            font-size: 1.7em;
        }
    }

    @media (min-width: 481px) and (max-width: 768px) {
        h1 {
            font-size: 2.2em;
        }

        h2 {
            font-size: 1.8em;
        }
    }

    @media (min-width: 769px) and (max-width: 1024px) {
        .container {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (min-width: 1025px) and (max-width: 1200px) {
        .container {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    @media (min-width: 1201px) {
        .container {
            grid-template-columns: repeat(4, 1fr);
        }
    }

    /* 提示信息样式 */
    .reference-note {
        text-align: center;
        margin-top: 40px;
        font-size: 1.2em;
        color: #ff00ff;
        text-shadow: 0 0 5px #ff00ff;
    }

    /* 代码块预览样式 */
    .code-preview {
        background: #000022;
        border-left: 5px solid #00ff99;
        padding: 10px;
        margin-bottom: 20px;
        border-radius: 5px;
        overflow-x: auto;
    }

    /* 示例展示区 */
    .example-display {
        background: rgba(255, 255, 255, 0.05);
        padding: 30px;
        border: 2px dashed #ff00ff;
        border-radius: 10px;
        margin-top: 50px;
    }

    .example-display h2 {
        color: #ff00ff;
        text-align: center;
        margin-bottom: 20px;
    }

    .example-display article {
        max-width: 800px;
        margin: 0 auto;
    }

    /* 动态粒子效果 */
    .particles {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: transparent;
        pointer-events: none;
        z-index: -2;
    }

    .particle {
        width: 5px;
        height: 5px;
        background: #00ff99;
        border-radius: 50%;
        position: absolute;
        animation: float 10s infinite;
    }

    @keyframes float {
        0% { transform: translateY(0) scale(1); opacity: 1; }
        100% { transform: translateY(-1000px) scale(0.5); opacity: 0; }
    }


