
/* 赛博朋克风格基础样式 */
body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #000000, #1a1a1a);
    color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.container {
    max-width: 1400px;
    width: 95%;
    margin: 0 auto;
    padding: 20px 0;
}
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}
.grid-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.grid-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(255, 0, 255, 0.5);
}
.neon-text {
    color: #ff00ff;
    text-shadow: 0 0 5px #ff00ff, 0 0 10px #ff00ff, 0 0 20px #ff00ff;
}
.button {
    background: linear-gradient(135deg, #ff00ff, #00ffff);
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 0, 255, 0.5);
}
.button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 255, 255, 0.8);
}
@media (max-width: 768px) {
    .grid-container {
        grid-template-columns: 1fr;
    }
    h1 {
        font-size: 24px;
    }
}
img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}
img:hover {
    transform: scale(1.05);
}
pre {
    background: rgba(0, 0, 0, 0.7);
    padding: 15px;
    border-radius: 10px;
    color: #00ffff;
    font-size: 14px;
    overflow-x: auto;
}
.article {
    background: rgba(0, 0, 0, 0.8);
    padding: 30px;
    border-radius: 20px;
    margin-top: 40px;
    box-shadow: 0 8px 25px rgba(255, 0, 255, 0.3);
}
.article h2 {
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff;
}
.article p {
    line-height: 1.8;
    color: #dcdcdc;
}
.article pre {
    margin: 20px 0;
}

