/* ESTILOS PARA A&Q IPTV - SIN ACENTOS EN MAYUSCULAS */
@tailwind base;
@tailwind components;
@tailwind utilities;

body {
    background-color: #080808;
    color: white;
}

.FILA-PELICULAS::-webkit-scrollbar {
    display: none;
}

.FILA-PELICULAS {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.TARJETA-PELICULA {
    transition: all 0.4s ease;
}

/* EFECTO DE SELECCION PARA CONTROL REMOTO DE TV */
.TARJETA-PELICULA:focus {
    transform: scale(1.1);
    outline: 4px solid white;
    z-index: 50;
    box-shadow: 0 10px 25px rgba(0,0,0,0.7);
}

/* ESTILOS PARA EL REPRODUCTOR DE A&Q IPTV */
#MODAL-REPRODUCTOR {
    display: none; /* OCULTO POR DEFECTO */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    z-index: 100;
}

video {
    width: 100%;
    height: 100%;
    outline: none;
}

.BOTON-CERRAR {
    position: absolute;
    top: 20px;
    right: 30px;
    background: rgba(255, 0, 0, 0.7);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    z-index: 110;
}