
/* ...otros estilos... */

.boton-rojo, .boton-amarillo {
    font-weight: bold;
    text-transform: uppercase;
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    margin: 8px 10px; /* separa entre ellos */
}

.boton-rojo {
    background-color: #dc3545;
    color: #fff;
}

.boton-amarillo {
    background-color: #ffc107;
    color: #000;
}

.botones-contenedor {
    margin-top: 40px;
    margin-bottom: 40px;
}

/* Reproductor */
.reproductor-personalizado {
    width: 100%;
    max-width: 100%;
    height: 400px;
    background-color: #000;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
    margin-bottom: 60px;
}

.cuenta-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    color: #fff;
    font-size: 1.6rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.card--big {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
    border-radius: 10px;
}

.card--big:hover .info-hover {
    opacity: 1;
    transform: translateY(0);
}

.info-hover {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 15, 15, 0.9);
    padding: 15px;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.4;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.3s ease-in-out;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.badge-serie {
    background-color: #ff00008f; /* amarillo */
    color: #fff;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 5px;
    font-size: 0.75rem;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
    
}

.badge-anio {
    background-color: #092550ff; /* azul */
    color: #fff;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 5px;
    font-size: 0.75rem;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
}

.card.card--big:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(255, 243, 243, 0.5);
}


