/* Puedes poner esto en tu CSS */
.modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0; top: 0; width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    /*background-color: #fff;*/
    margin: 10% auto;
    padding: 20px;
    width: 80%;
    max-width: 500px;
    position: relative;
    border-radius: 10px;
}

.close {
    position: absolute; top: 10px; right: 20px;
    font-size: 24px; cursor: pointer;
}
.game-detail {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.cover-column {
    flex: 0 0 auto;
    width: 220px; /* o ajusta al tamaño de tu carátula */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cover img {
    width: 100%;
    border-radius: 8px;
}

.cover-actions {
    margin-top: 10px;
}

.info-column {
    flex: 1;
    min-width: 250px;
}

.boton-add-lista {
    padding: 10px 16px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.boton-add-lista:hover {
    background-color: #0056b3;
}


/*ETIQUETA PARA DLCS*/
.badge-dlc {
    background-color: #3498db;
    color: #fff;
    font-size: 0.8em;
    font-weight: bold;
    padding: 3px 8px;
    margin-left: 10px;
    border-radius: 5px;
    text-transform: uppercase;
}

.game-link {
    text-decoration: none;
    color: #1e90ff;
}

.game-link:hover {
    text-decoration: underline;
}

