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

    body {
        font-family: 'Roboto Mono', monospace;
        background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
        color: #ffffff;
        line-height: 1.6;
        padding: 20px;
    }

    h1, h2, h3, h4, h5, h6 {
        font-family: 'Bebas Neue', sans-serif;
        color: #34C759;
        margin-bottom: 20px;
    }

    h1 {
        font-size: 3em;
        text-align: center;
        margin-top: 20px;
        text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    }

    h2 {
        font-size: 2.5em;
        margin-top: 40px;
        color: #651FFF;
    }

    h3 {
        font-size: 2em;
        margin-top: 30px;
        color: #34C759;
    }

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

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

    code {
        font-family: 'Fira Code', monospace;
        color: #34C759;
        background: rgba(255, 255, 255, 0.05);
        padding: 2px 4px;
        border-radius: 3px;
    }

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

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

    th {
        background: #651FFF;
        color: #ffffff;
    }

    ul, ol {
        margin-bottom: 20px;
        padding-left: 20px;
    }

    li {
        margin-bottom: 10px;
    }

    a {
        color: #34C759;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    a:hover {
        color: #651FFF;
    }

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

    .left-column {
        grid-column: span 8;
    }

    .right-column {
        grid-column: span 4;
    }

    .image-gallery {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }

    .image-gallery img {
        width: 100%;
        max-width: 320px;
        border-radius: 10px;
    }

    .highlight-green {
        color: #34C759;
    }

    .highlight-purple {
        color: #651FFF;
    }

    .button {
        display: inline-block;
        padding: 10px 20px;
        background: #34C759;
        color: #ffffff;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        transition: background 0.3s ease;
        text-decoration: none;
    }

    .button:hover {
        background: #651FFF;
    }

    .dynamic-background {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle, rgba(255, 87, 34, 0.5), transparent);
        animation: aurora-move 15s linear infinite;
        z-index: -1;
    }

    @keyframes aurora-move {
        0% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-20px);
        }
        100% {
            transform: translateY(0);
        }
    }

    .footer {
        margin-top: 40px;
        text-align: center;
        font-size: 0.9em;
        color: #cccccc;
    }

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

        h2 {
            font-size: 2em;
        }

        h3 {
            font-size: 1.8em;
        }
    }

    @media (max-width: 1200px) {
        .container {
            grid-template-columns: 1fr;
        }

        .left-column, .right-column {
            grid-column: span 1;
        }
    }

    @media (max-width: 1024px) {
        body {
            padding: 15px;
        }
    }

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

        h2 {
            font-size: 1.8em;
        }

        h3 {
            font-size: 1.5em;
        }

        p, pre, table, ul, ol {
            padding: 0 5px;
        }
    }

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

        h2 {
            font-size: 1.5em;
        }

        h3 {
            font-size: 1.2em;
        }

        .image-gallery img {
            max-width: 100%;
        }
    }

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

        h2 {
            font-size: 1.2em;
        }

        h3 {
            font-size: 1em;
        }

        .button {
            padding: 8px 16px;
            font-size: 0.9em;
        }
    }

    /* 动画与交互 */
    .fade-in {
        animation: fadeIn 2s ease-in-out;
    }

    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .slide-in {
        animation: slideIn 1s ease-out;
    }

    @keyframes slideIn {
        from { opacity: 0; transform: translateX(-50px); }
        to { opacity: 1; transform: translateX(0); }
    }

    /* 代码块样式优化 */
    pre code {
        display: block;
        white-space: pre-wrap;
        word-wrap: break-word;
    }

    /* 提示样式 */
    .reference-note {
        background: rgba(0, 0, 0, 0.7);
        padding: 15px;
        border-left: 5px solid #34C759;
        margin-bottom: 30px;
        font-size: 1em;
    }

