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

    body {
        font-family: 'Roboto Mono', monospace;
        background: radial-gradient(circle, rgb(33, 150, 243), rgb(63, 81, 181));
        color: #ffffff;
        line-height: 1.6;
        overflow-x: hidden;
    }

    h1, h2, h3, h4 {
        font-family: 'Orbitron', sans-serif;
        color: #ff4081;
        text-align: center;
        margin-bottom: 20px;
    }

    h1 {
        font-size: 3em;
        margin-top: 40px;
        text-shadow: 0 0 10px rgba(255, 64, 129, 0.7);
    }

    h2 {
        font-size: 2.5em;
        margin-top: 30px;
        text-shadow: 0 0 8px rgba(255, 64, 129, 0.6);
    }

    h3 {
        font-size: 2em;
        margin-top: 25px;
        text-shadow: 0 0 6px rgba(255, 64, 129, 0.5);
    }

    p {
        font-size: 1.1em;
        margin: 15px 0;
        padding: 0 20px;
    }

    ul {
        list-style: none;
        padding: 0 40px;
        margin-bottom: 20px;
    }

    li {
        margin-bottom: 10px;
        position: relative;
        padding-left: 20px;
    }

    li::before {
        content: '•';
        position: absolute;
        left: 0;
        color: #00e5ff;
    }

    a {
        color: #ffeb3b;
        text-decoration: none;
        position: relative;
    }

    a::after {
        content: '';
        position: absolute;
        width: 100%;
        transform: scaleX(0);
        height: 2px;
        bottom: -2px;
        left: 0;
        background-color: #ff4081;
        transform-origin: bottom right;
        transition: transform 0.25s ease-out;
    }

    a:hover::after {
        transform: scaleX(1);
        transform-origin: bottom left;
    }

    .neon-button {
        display: inline-block;
        padding: 10px 20px;
        margin: 20px;
        border: 2px solid #00e5ff;
        border-radius: 5px;
        color: #00e5ff;
        transition: all 0.3s ease;
        text-shadow: 0 0 5px #00e5ff, 0 0 10px #00e5ff;
    }

    .neon-button:hover {
        background: rgba(0, 229, 255, 0.2);
        box-shadow: 0 0 20px rgba(0, 229, 255, 0.7), 0 0 30px rgba(0, 229, 255, 0.5);
    }

    /* 全屏滚动布局 */
    .section {
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 20px;
        scroll-snap-align: start;
        position: relative;
    }

    .container {
        scroll-snap-type: y mandatory;
        overflow-y: scroll;
        height: 100vh;
    }

    /* 渐变背景与动画 */
    .background-animation {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle, rgba(255,87,34,0.8), transparent);
        animation: aurora-move 15s linear infinite;
        z-index: -1;
    }

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

    /* 示例展示样式 */
    .example-article {
        background: rgba(0, 0, 0, 0.6);
        border-radius: 10px;
        padding: 30px;
        max-width: 800px;
        margin: 0 auto;
        box-shadow: 0 0 20px rgba(0, 229, 255, 0.5);
    }

    .example-article h2 {
        color: #ff4081;
        text-align: left;
    }

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

    .example-article code {
        color: #00e5ff;
        font-family: 'Roboto Mono', monospace;
    }

    /* 图片样式 */
    .images-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
        padding: 20px;
    }

    .images-grid img {
        width: 100%;
        height: auto;
        border-radius: 10px;
        transition: transform 0.3s ease;
    }

    .images-grid img:hover {
        transform: scale(1.05);
    }

    /* 响应式设计 */
    @media (max-width: 320px) {
        h1 {
            font-size: 2em;
        }

        h2 {
            font-size: 1.8em;
        }

        p {
            font-size: 1em;
        }
    }

    @media (max-width: 480px) {
        .images-grid {
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        }
    }

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

        h2 {
            font-size: 2.2em;
        }

        .example-article {
            padding: 20px;
        }
    }

    @media (max-width: 1024px) {
        .images-grid {
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        }
    }

    @media (min-width: 1200px) {
        .container {
            max-width: 1200px;
            margin: 0 auto;
        }
    }

    @media (min-width: 1440px) {
        h1 {
            font-size: 3.5em;
        }

        h2 {
            font-size: 3em;
        }

        p {
            font-size: 1.2em;
        }
    }

    /* 代码块样式 */
    .code-block {
        background: #2d2d2d;
        padding: 20px;
        border-radius: 8px;
        overflow-x: auto;
        margin: 20px 0;
    }

    .code-block code {
        color: #00e5ff;
        font-family: 'Roboto Mono', monospace;
        font-size: 1em;
    }

    /* 提示信息样式 */
    .reference-note {
        text-align: center;
        font-size: 1.2em;
        margin: 30px 0;
        color: #ffffff;
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.7);
    }

    /* 视觉效果增强 */
    .glitch {
        animation: glitch-effect 2s infinite;
    }

    @keyframes glitch-effect {
        0% { transform: translate(0); }
        20% { transform: translate(-5px, 0); }
        40% { transform: translate(5px, 0); }
        60% { transform: translate(-5px, 0); }
        80% { transform: translate(5px, 0); }
        100% { transform: translate(0); }
    }

    /* 动态交互 */
    .interactive:hover {
        box-shadow: 0 0 20px rgba(0, 229, 255, 0.7), 0 0 30px rgba(0, 229, 255, 0.5);
        transform: scale(1.05);
        transition: all 0.3s ease;
    }

    /* 浮动卡片 */
    .card {
        position: relative;
        width: 300px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
        transition: transform 0.3s ease-in-out;
    }

    .card:hover {
        transform: scale(1.1);
    }

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


