body {
    margin: 0;
    min-height: 100vh;
    background: url('https://lsqkk.github.io/image/bg.png') no-repeat center center fixed;
    background-size: cover;
    }
/* 游戏内容区域 */
.game-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    padding-top: 100px;
}
/* 游戏分类标题 */
.game-section-title {
    color: white;
    font-size: 24px;
    margin: 30px 0 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
}
.game-section-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, #4facfe 0%, #00f2fe 100%);
}
/* 游戏列表 */
.game-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}
/* 游戏卡片 */
.game-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    aspect-ratio: 1/1;
}
.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}
.game-card a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: white;
}
.game-card-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}
.game-card:hover .game-card-bg {
    transform: scale(1.1);
}
.game-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}
.game-card-name {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
/* 响应式调整 */
@media (max-width: 768px) {
    .game-list {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }
    .game-section-title {
        font-size: 20px;
        margin: 20px 0 10px;
    }
    .game-card-name {
        font-size: 16px;
    }
}
@media (max-width: 480px) {
    .game-list {
        grid-template-columns: repeat(2, 1fr);
    }
}