* {
    margin: 0;
    box-sizing: border-box;
}



html {
    scroll-snap-type: y mandatory;
}

body {
    color: white;
    font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    text-rendering: geometricPrecision;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.4);
    background-color: black;
    width: 100%;
    height: 100vh;
    display: grid;
    place-items: center;
    overflow-x: hidden;
    margin: 0; /* Eliminamos el margen para ajustar completamente al navegador */
}

.app__videos {
    position: relative;
    height: 100vh; /* Cambiamos la altura para ocupar toda la ventana */
    background-color: white;
    overflow: scroll;
    width: 100%;
    max-width: 400px;
    scroll-snap-type: y mandatory;
    border-radius: 20px;
    overflow-x: hidden;
}

.app__videos::-webkit-scrollbar {
    display: none;
}

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

.video {
    position: relative;
    height: 100%;
    width: 100%;
    background-color: white;
    scroll-snap-align: start;
    border-radius: 20px; /* Mantenemos el mismo borde redondeado */
}


.video__player {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.videoSidebar {
    position: absolute;
    top: 45%;
    right: 10px;
}

.videoSidebar .material-symbols-outlined {
    font-size: 28px;
    cursor: pointer;
}

.videoSidebar_button {
    padding: 10px;
    text-align: center;
}

.videoFooter {
    position: relative;
    bottom: 120px;
    margin-left: 20px;
    color: white;
    display: flex;
}

.videoFooter__text {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.videoFooter__text h3 {
    padding-bottom: 4px;
}

.videoFooter_icon {
    position: absolute;
}

.videoFooter__ticker {
    width: 400px;
    display: flex;
    align-items: center;
}

.video__ticker marquee {
    height: fit-content;
    margin-left: 30px;
    width: 60px;
}

.videoFooter__description {
    padding-bottom: 20px;
}

@media (max-width: 425px) {
    .app_videos {
        width: 100%;
        height: 100%;
        max-width: 100%;
        border-radius: 0;
    }
}

