
    /* 幻境创造者 样式表 */
    body {
        margin: 0;
        padding: 0;
        font-family: 'Inter', sans-serif;
        line-height: 1.6;
        background: linear-gradient(135deg, #00008B, #8A2BE2, #00FF7F);
        color: #FFFFFF;
        overflow-x: hidden;
    }

    header {
        text-align: center;
        padding: 50px 20px;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(10px);
    }

    header h1 {
        font-size: 3rem;
        margin-bottom: 20px;
        color: #FFFFFF;
    }

    header p {
        font-size: 1.2rem;
        max-width: 800px;
        margin: 0 auto;
    }

    .container {
        display: grid;
        grid-template-columns: 1fr 2fr 1fr;
        gap: 20px;
        padding: 40px 20px;
    }

    .content {
        grid-column: 2 / 3;
        background-color: rgba(255, 255, 255, 0.1);
        padding: 20px;
        border-radius: 10px;
    }

    .content h2 {
        font-size: 2rem;
        margin-bottom: 15px;
        color: #FFFFFF;
    }

    .content h3 {
        font-size: 1.5rem;
        margin-top: 30px;
        color: #FFD700;
    }

    .content p {
        margin: 15px 0;
        color: #F0F8FF;
    }

    .content pre {
        background: rgba(0, 0, 0, 0.7);
        padding: 15px;
        border-radius: 5px;
        overflow: auto;
        white-space: pre-wrap;
        word-wrap: break-word;
    }

    .content code {
        color: #7CFC00;
        font-family: 'Courier New', Courier, monospace;
    }

    .sidebar, .sidebar-2 {
        background-color: rgba(0, 0, 0, 0.8);
        padding: 20px;
        border-radius: 10px;
    }

    .sidebar a, .sidebar-2 a {
        color: #00FFFF;
        text-decoration: none;
        display: block;
        margin: 10px 0;
    }

    .sidebar a:hover, .sidebar-2 a:hover {
        text-decoration: underline;
    }

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

    .gallery img {
        width: 100px;
        height: 100px;
        object-fit: cover;
        border-radius: 5px;
        transition: transform 0.3s;
    }

    .gallery img:hover {
        transform: scale(1.1);
    }

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

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

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

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

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

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

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

        .gallery img {
            width: 80px;
            height: 80px;
        }
    }

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

        .content h2 {
            font-size: 1.5rem;
        }

        .content h3 {
            font-size: 1.2rem;
        }

        .gallery img {
            width: 60px;
            height: 60px;
        }
    }

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

        .content h2 {
            font-size: 1.2rem;
        }

        .content h3 {
            font-size: 1rem;
        }

        .gallery img {
            width: 50px;
            height: 50px;
        }
    }

