
/* 基础样式 */
body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 20px;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    color: #ff00ff;
    text-shadow: 0 0 5px #ff00ff, 0 0 10px #ff00ff;
}
p {
    font-size: 1rem;
    color: #dcdcdc;
    margin-bottom: 1.5em;
}
a {
    color: #00ffff;
    text-decoration: none;
    transition: all 0.3s ease;
}
a:hover {
    color: #ff00ff;
    text-shadow: 0 0 5px #00ffff, 0 0 10px #00ffff;
}
button {
    background: linear-gradient(90deg, #ff00ff, #00ffff);
    border: none;
    padding: 10px 20px;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
}
button:hover {
    box-shadow: 0 0 10px #fff, 0 0 20px #ff00ff;
}
img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}
/* 导航栏 */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}
.navbar .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff00ff;
    text-shadow: 0 0 5px #ff00ff;
}
.navbar .menu {
    display: flex;
    gap: 20px;
}
.navbar .menu a {
    color: #00ffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}
.navbar .menu a:hover {
    color: #ff00ff;
    text-shadow: 0 0 5px #00ffff, 0 0 10px #00ffff;
}
/* 响应式布局 */
@media (max-width: 768px) {
    .navbar .menu {
        display: none;
    }
    .container {
        padding: 10px;
    }
}
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 15px;
    }
}
@media (min-width: 1025px) {
    .container {
        padding: 20px;
    }
}
/* 霓虹光影效果 */
.neon-box {
    background: linear-gradient(45deg, #ff00ff, #00ffff);
    animation: glow 2s infinite alternate;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}
@keyframes glow {
    from { box-shadow: 0 0 10px #fff; }
    to { box-shadow: 0 0 20px #fff; }
}
/* 视差滚动效果 */
.parallax {
    background-image: url('https://images.gptkong.com/demo/sample1.png');
    height: 400px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    margin: 40px 0;
}
.parallax::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}
/* 数据展示模块 */
.data-module {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}
.data-card {
    background: rgba(0, 0, 0, 0.8);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}
.data-card:hover {
    transform: scale(1.05);
}
.data-card img {
    margin-bottom: 10px;
}
/* 文章样式 */
.article {
    background: rgba(0, 0, 0, 0.9);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    margin: 40px 0;
}
.article h2 {
    color: #00ffff;
    text-shadow: 0 0 5px #00ffff;
}
.article p {
    font-size: 1rem;
    color: #dcdcdc;
}
.article pre {
    background: rgba(0, 0, 0, 0.7);
    padding: 15px;
    border-radius: 5px;
    color: #00ffff;
    overflow-x: auto;
}

