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

    /* 全局字体与颜色 */
    body {
        font-family: 'Inter', sans-serif;
        background: radial-gradient(circle, rgba(0, 74, 173, 0.9), rgba(26, 26, 26, 0.9));
        color: #E0E0E0;
        line-height: 1.6;
        padding: 20px;
    }

    /* 标题样式 */
    h1, h2, h3, h4 {
        font-family: 'Poppins', sans-serif;
        color: #FFFFFF;
        margin-bottom: 20px;
    }

    h1 {
        font-size: 36px;
        text-align: center;
        margin-top: 40px;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    }

    h2 {
        font-size: 28px;
        border-bottom: 2px solid #FFD700;
        padding-bottom: 10px;
    }

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

    h4 {
        font-size: 18px;
        margin-top: 20px;
    }

    /* 段落样式 */
    p {
        font-size: 16px;
        margin-bottom: 15px;
        color: #E0E0E0;
    }

    /* 代码块样式 */
    pre {
        background: rgba(255, 255, 255, 0.1);
        padding: 15px;
        border-radius: 8px;
        overflow-x: auto;
        margin-bottom: 20px;
    }

    code {
        font-family: 'Courier New', Courier, monospace;
        color: #FFD700;
    }

    /* 列表样式 */
    ul {
        list-style: disc inside;
        margin-bottom: 20px;
    }

    li {
        margin-bottom: 10px;
    }

    /* 按钮样式 */
    .highlight-button, .cta-button {
        transition: transform 0.3s ease, background-color 0.3s ease;
        cursor: pointer;
    }

    .highlight-button {
        background-color: #FFD700;
        color: #000;
        border: none;
        padding: 10px 20px;
        border-radius: 5px;
        font-weight: bold;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .highlight-button:hover {
        transform: scale(1.05);
        background-color: #FFC000;
    }

    .cta-button {
        background-color: #FF4500;
        color: #FFFFFF;
        padding: 15px 30px;
        border: none;
        border-radius: 8px;
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
        font-weight: bold;
    }

    .cta-button:hover {
        background-color: #E03E00;
        transform: scale(1.1);
    }

    /* 导航栏样式 */
    .transparent-navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(10px);
        z-index: 1000;
        padding: 15px 30px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .navbar-logo {
        font-family: 'Poppins', sans-serif;
        font-size: 24px;
        color: #FFD700;
    }

    .navbar-menu a {
        color: #FFFFFF;
        margin-left: 20px;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .navbar-menu a:hover {
        color: #FFD700;
    }

    /* 主内容区 */
    .container {
        max-width: 1200px;
        margin: 100px auto 50px auto;
        padding: 20px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    /* 代码示例预览 */
    .code-preview {
        background: rgba(0, 0, 0, 0.6);
        padding: 20px;
        border-radius: 8px;
        margin-bottom: 30px;
    }

    /* 图片样式 */
    .image-gallery {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        margin-bottom: 30px;
    }

    .image-gallery img {
        width: 100%;
        max-width: 320px;
        border-radius: 8px;
        transition: transform 0.3s ease;
    }

    .image-gallery img:hover {
        transform: scale(1.05);
    }

    /* 响应式布局 */
    @media (max-width: 1440px) {
        .container {
            max-width: 1024px;
        }
    }

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

    @media (max-width: 1024px) {
        .image-gallery {
            justify-content: center;
        }
    }

    @media (max-width: 768px) {
        .transparent-navbar {
            flex-direction: column;
            align-items: flex-start;
        }

        .navbar-menu {
            margin-top: 10px;
            width: 100%;
            display: flex;
            flex-direction: column;
        }

        .navbar-menu a {
            margin: 10px 0;
        }

        .image-gallery {
            flex-direction: column;
            align-items: center;
        }
    }

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

        h2 {
            font-size: 24px;
        }

        h3 {
            font-size: 20px;
        }

        p, li {
            font-size: 14px;
        }

        .highlight-button, .cta-button {
            padding: 8px 16px;
            font-size: 14px;
        }
    }

    @media (max-width: 320px) {
        .transparent-navbar {
            padding: 10px 15px;
        }

        .navbar-logo {
            font-size: 20px;
        }

        .navbar-menu a {
            margin-left: 10px;
            font-size: 14px;
        }
    }

    /* 动画效果 */
    @keyframes aurora-move {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
    }

    .aurora-background {
        background: radial-gradient(circle, rgb(255, 87, 34), transparent);
        animation: aurora-move 15s linear infinite;
    }

    /* 提示文本样式 */
    .reference-note {
        text-align: center;
        font-size: 16px;
        color: #FFD700;
        margin-top: 40px;
        font-weight: bold;
        text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
    }

