/* 游戏专区页面样式 */
.games-page {
    padding: 30px 0;
}

.game-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    transition: transform 0.3s;
    background-color: #fff;
    height: 100%;
}

.game-card:hover {
    transform: translateY(-5px);
}

.game-img {
    height: 200px;
    overflow: hidden;
}

.game-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.game-card:hover .game-img img {
    transform: scale(1.05);
}

.game-info {
    padding: 20px;
}

.game-tag {
    display: inline-block;
    background: #e7f3ff;
    color: #007bff;
    padding: 5px 10px;
    border-radius: 20px;
    margin-right: 8px;
    margin-bottom: 8px;
    font-size: 14px;
}

/* 响应式适配 */
@media (max-width: 768px) {
    .game-img {
        height: 160px;
    }
}

@media (max-width: 576px) {
    .game-img {
        height: 140px;
    }
    
    .game-info {
        padding: 15px;
    }
}