.titulo_juegos{
    font-size: 28px;
    margin-top: 20px;
}

.juegosWrapper {
    height: 100%;
    padding: 0 20px 20px 20px;
    gap: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    place-items: center;
}

.juegosWrapper__no_login {
    height: 100%;
    padding: 0 20px 20px 20px;
    margin-top: -35px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.juegosWrapper__no_login a{
    text-decoration: none;
}

.juegosWrapper a {
    max-height: 200px;
    max-width: 360px;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 5px;
    text-decoration: none; 
    display: block;      
}

.juegosWrapper a:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.juego {
    background-color: rgb(197, 195, 195);
    border-radius: 5px;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    overflow: hidden; 
    display: flex;
    flex-direction: column;
}


.juego h3 {
    color: black;
    text-align: center;
    padding: 20px 10px 10px 10px; 
    margin: 0;
    font-size: 1.2rem; 
}

.juego img {
    flex-grow: 1;
    width: 100%;
    max-width: 180px; 
    min-height: 0;
    margin: 0 auto;
    margin-bottom: 5px;
    object-fit: contain; 
}


.juego .info__texto {
    display: flex;
    justify-content: center;
    background-color: #1a9e53; 
}

.juego .info__texto h4 {
    color: white;
    margin: 0;
    padding: 10px;
    font-weight: bold;
}

