/* Pantalla completa del loader */
#peliculaCHEMA_loader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: #0b0f19; /* Mismo color que tu fondo */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Por encima de todo */
    transition: opacity 0.5s ease;
}

/* Diseño de la Claqueta */
.peliculaCHEMA_claqueta {
    width: 60px;
    height: 50px;
    margin-bottom: 20px;
}

.peliculaCHEMA_parte_superior {
    width: 100%;
    height: 15px;
    background: repeating-linear-gradient(-45deg, #000, #000 10px, #fff 10px, #fff 20px);
    border-radius: 5px 5px 0 0;
    transform-origin: bottom left;
    animation: claqueta_anim 1.2s infinite ease-in-out;
}

.peliculaCHEMA_parte_inferior {
    width: 100%;
    height: 35px;
    background: #000;
    border: 2px solid #333;
    border-top: none;
    position: relative;
}

/* Animación de apertura y cierre */
@keyframes claqueta_anim {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(-30deg); }
}

#peliculaCHEMA_loader p {
    color: var(--peliculaCHEMA_primary);
    font-family: 'Inter', sans-serif;
    letter-spacing: 2px;
    font-size: 0.8rem;
    text-transform: uppercase;
}