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

    body {
        font-family: 'Roboto', 'Poppins', sans-serif;
        background: linear-gradient(135deg, #000046, #292E49, #6A00FF);
        color: #FFFFFF;
        line-height: 1.6;
        overflow-x: hidden;
    }

    header {
        text-align: center;
        padding: 50px 20px;
    }

    header h1 {
        font-family: 'Poppins', sans-serif;
        font-size: 3rem;
        text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.8);
        margin-bottom: 20px;
    }

    header p {
        font-size: 1.2rem;
        color: #CCCCCC;
    }

    .container {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 0;
    }

    section {
        margin-bottom: 60px;
    }

    h2, h3 {
        font-family: 'Poppins', sans-serif;
        margin-bottom: 20px;
        color: #FFD700;
    }

    p {
        margin-bottom: 20px;
    }

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

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

    .button {
        background-color: #00BFFF;
        border: none;
        color: white;
        padding: 15px 32px;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        font-size: 16px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        cursor: pointer;
        border-radius: 5px;
    }

    .button:hover {
        transform: scale(1.1);
        box-shadow: 0px 0px 20px rgba(0, 191, 255, 0.8);
    }

    img {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
        margin-bottom: 20px;
    }

    .example-display {
        background: rgba(255, 255, 255, 0.05);
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
    }

    .example-display h2 {
        color: #00FFFF;
    }

    .tags {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 20px;
    }

    .tag {
        background-color: #FF4500;
        padding: 5px 10px;
        border-radius: 20px;
        font-size: 0.9rem;
    }

    footer {
        text-align: center;
        padding: 20px;
        background: rgba(0, 0, 0, 0.5);
    }

    footer p {
        color: #AAAAAA;
        font-size: 0.9rem;
    }

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

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

    @media (max-width: 1024px) {
        header h1 {
            font-size: 2rem;
        }

        .button {
            padding: 12px 24px;
            font-size: 14px;
        }
    }

    @media (max-width: 768px) {
        header h1 {
            font-size: 1.8rem;
        }

        .tag {
            font-size: 0.8rem;
        }

        pre {
            padding: 15px;
        }
    }

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

        h2 {
            font-size: 1.5rem;
        }

        h3 {
            font-size: 1.2rem;
        }

        .button {
            padding: 10px 20px;
            font-size: 12px;
        }
    }

    @media (max-width: 320px) {
        header h1 {
            font-size: 1.2rem;
        }

        h2 {
            font-size: 1.2rem;
        }

        h3 {
            font-size: 1rem;
        }

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

    /* 光标跟随效果 */
    body::cursor {
        cursor: url('https://images.gptkong.com/demo/sample1.png'), auto;
    }

    /* 平滑滚动 */
    html {
        scroll-behavior: smooth;
    }

    /* 链接样式 */
    a {
        color: #00FFFF;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    a:hover {
        color: #FFD700;
    }

    /* 样式设计参考提示 */
    .design-reference {
        position: fixed;
        bottom: 10px;
        right: 10px;
        background: rgba(255, 255, 255, 0.2);
        padding: 10px 15px;
        border-radius: 5px;
        font-size: 0.8rem;
        color: #FFFFFF;
    }

    /* 代码块样式优化 */
    .code-block {
        background: rgba(30, 30, 30, 0.9);
        padding: 20px;
        border-radius: 8px;
        overflow-x: auto;
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .code-block code {
        color: #7CFC00;
    }

    /* 按钮动画 */
    .animated-button {
        position: relative;
        overflow: hidden;
    }

    .animated-button::after {
        content: '';
        position: absolute;
        left: 50%;
        top: 50%;
        width: 300%;
        height: 300%;
        background: rgba(255, 255, 255, 0.15);
        transform: translate(-50%, -50%) rotate(45deg);
        transition: all 0.75s ease;
    }

    .animated-button:hover::after {
        width: 0;
        height: 0;
        opacity: 0;
    }


