.lista-videojuegos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 30px;
    background: #f4f7fa;
    border-radius: 12px;
}

.videojuego {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.videojuego:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.videojuego img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.videojuego h3 {
    font-size: 20px;
    padding: 15px;
    background-color: #f9fafb;
    margin: 0;
    text-align: center;
    color: #222;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    border-top: 1px solid #eee;
}
