body { margin:0; overflow:hidden; font-family:sans-serif; }

.reels {
    height:100vh;
    overflow-y:scroll;
    scroll-snap-type:y mandatory;
}

.reel {
    height:100vh;
    position:relative;
    scroll-snap-align:start;
}

.reel video {
    width:100%;
    height:100%;
    object-fit:cover;
}

.overlay {
    position:absolute;
    bottom:20px;
    left:15px;
    color:#fff;
}

.actions button, .actions a {
    display:block;
    margin-top:10px;
    background:#0008;
    color:#fff;
    padding:8px;
    border:none;
    text-decoration:none;
}