@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap");

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
.games-container {
    margin: auto;
    display: flex;
}

.main-container {
    width: 270px;
    height: 400px;
    position: relative;
    display: inline-block;
    margin-left: 100px;
    margin-bottom: 20px;
}

.poster-container {
    width: 230px;
    position: absolute;
    top: 0;
    left: 20px;
    z-index: 1;
}

.poster {
    width: 100%;
    box-shadow: 0 5px 20px 3px rgba(0, 0, 0, 0.6);
    z-index:0;
}

.ticket-container {
    background: white;
    width: 270px;
    height: 375px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 5px;
    position: absolute;
    top: 20px;
    box-shadow: 0 5px 20px 3px rgba(0, 0, 0, 0.6);
    opacity: 1;
}

.ticket-contenido {
    width: 100%;
    position: absolute;
    bottom: 0;
    text-align: center;
}

.ticket-game-titulo {
    text-transform: uppercase;
    margin-bottom: 5px;
}

.ticket-game-desc {
    color: #2f2f2f;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.ticket-precio-actual {
    color: green;
    font-size: 1.4rem;
    font-weight: bold;
}

.ticket-precio-viejo {
    color: gray;
    text-decoration: line-through;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.ticket-btn-jugar {
    cursor: pointer;
    width: 100%;
    background: #2f2f2f;
    color: white;
    padding: 15px 0;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    border: 0;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

a.enlacePagina:link, a.enlacePagina:visited, a.enlacePagina:active {
    text-decoration:none;
    color: white;
}