

.modal video{
    width: 200px;
    height: 300px;  
    border-radius: 20px;
    border: 1px solid black;
    background-color: rgb(56, 55, 55);

}


@media (min-width: 350px) and (max-width: 700px){
    .modal video{
    width: 200px;
    height: 300px;  
    border-radius: 20px;
    border: 1px solid black;
    background-color: rgb(56, 55, 55);

}
    .modal.show video{
    width: 100%;
    height: 100%;  
    border-radius: 20px;
    border: 1px solid black;
    background-color: rgb(56, 55, 55);

    
}

.modaldos video{
    width: 200px;
    height: 300px;  
    border-radius: 20px;
    border: 1px solid black;
    background-color: rgb(56, 55, 55);

}
.modaldos.show video{
    width: 100%;
    height: 100%;  
    border-radius: 20px;
    border: 1px solid black;
    background-color: rgb(56, 55, 55);

    
}
 

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100vh;
    width: 100vw;
    background-color: #000;
    overflow: hidden;
    font-family: Arial, sans-serif;
}

.app-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.reels-container {
    height: 100%;
    width: 100%;
    max-width: 450px; /* Ancho ideal para móviles o vista centrada */
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scrollbar-width: none; /* Ocultar barra de scroll en Firefox */
}

/* Ocultar barra de scroll en Chrome/Safari */
.reels-container::-webkit-scrollbar {
    display: none; 
}

.reel {
    position: relative;
    height: 100%;
    width: 100%;
    scroll-snap-align: start;
    display: flex;
    justify-content: center;
    align-items: center;
}

.reel video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Interfaz superpuesta (UI) */
.reel-info {
    position: absolute;
    bottom: 80px;
    left: 20px;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}

.reel-actions {
    position: absolute;
    bottom: 80px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.reel-actions button {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    color: white;
    font-size: 20px;
    cursor: pointer;
    backdrop-filter: blur(5px);
}
