
.reels-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
}
.reel-slide {
    position: relative;
    width: 100%;
    height: 100vh;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.reel-video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}
.reel-iframe {
    width: 100%;
    height: 100%;
    border: none;
}
.reel-overlay {
    position: absolute;
    bottom: 30px;
    left: 20px;
    right: 20px;
    color: #fff;
    background: rgba(0, 0, 0, 0.4);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
}
.reel-overlay h2 {
    margin: 0 0 10px;
    font-size: 20px;
}
.reel-overlay .button {
    background: #00c853;
    padding: 10px 20px;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
}
