/*
#reels-overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 999;
}
*/

#reels-overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 999;
    pointer-events: none; /* Esta línea es la clave */
    touch-action: none;
}


#swipe-message {
    position: fixed;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    background: #222;
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 15px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 10000;
    pointer-events: none;
}
