
/* 全局样式 */
body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #1E3C72, #2A5298, #B06AB3);
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
    margin-top: 2rem;
}
a {
    color: #FFD700;
    text-decoration: none;
}
a:hover {
    text-shadow: 0 0 5px #FFD700;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
.gradient-container {
    background: linear-gradient(135deg, #4568DC, #B06AB3);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.blur-text {
    filter: blur(2px);
    color: rgba(255, 255, 255, 0.7);
}
code {
    background: rgba(0, 0, 0, 0.5);
    color: #00FF00;
    padding: 5px;
    border-radius: 5px;
    font-family: 'Courier New', Courier, monospace;
}
pre code {
    display: block;
    white-space: pre-wrap;
    word-break: break-word;
}
.button {
    background: linear-gradient(135deg, #FF6F61, #FF9966);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}
.menu {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 5px;
    padding: 10px;
}
.blurred-image {
    filter: blur(5px);
    opacity: 0.8;
}
.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
}
.image-grid img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    h1, h2, h3, h4, h5, h6 {
        font-size: 1.2rem;
    }
    pre code {
        font-size: 0.9rem;
    }
}

