body {
    background: black;
    /* font-family: 'Montserrat', sans-serif; */
    font-family: var(--regular-font);
}

.main_banner {
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;
    background: black;
}

/* Thumbnail + video same size */
.main_banner img,
.main_banner video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Thumbnail visible first */
#bannerThumbnail {
    z-index: 1;
    transition: opacity 0.8s ease-in-out;
}

/* Video behind thumbnail */
.banner-video {
    z-index: 0;
}

/* Fade overlays */
.banner-fade-top,
.banner-fade-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    height: 20%;
    z-index: 3;
    pointer-events: none;
}

.banner-fade-top {
    top: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 1),
        rgba(0, 0, 0, 0)
    );
}

.banner-fade-bottom {
    bottom: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.95),
        rgba(0, 0, 0, 0)
    );
}

.main_banner img,
.main_banner video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.movieTitle {
    position: absolute;
    bottom: 20%;
    left: 5%;
    z-index: 5;
    font-size: 3.5rem;
    font-weight: 600;
    color: white;
}
.buttonsDiv {
    position: absolute;
    bottom: 10%;
    left: 5%;
    z-index: 5;
}
.play-btn {
    background: white;
    border: 2px solid white;
    color: black;
    border: none;
    font-size: 1.4rem;
    padding: 0.5rem 1.6rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}
.buttonsDiv .play-btn i {
    margin-right: 0.5rem;
}
.watchlist-btn {
    background: transparent;
    color: gainsboro;
    border: 2px solid gainsboro;
    font-size: 1.4rem;
    padding: 0.5rem 0.9rem;
    border-radius: 50px;
    cursor: pointer;
    margin-left: 1rem;
}
.watchlist-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
}


/* .playlist-Holder {
    margin-left: 5%;
    margin-right: 5%;
}
.playlists {
    position: relative;
    width: 100%;
    background: black;
    margin-bottom: 2rem;
    overflow-x: auto;
}
.playlists .heading {
    font-size: 1.25rem;
    font-weight: bold;
    padding: 0.5rem 1rem 0.25rem 0;
    color: rgb(221, 221, 221);
}
.playlists .playlistContainer {
    width: max-content;
    flex-wrap: nowrap;
}
.playlists .playlistContainer .each-playlist {
    display: inline-block;
    width: 250px;
    height: 150px;    
    background-color: black;
    margin: 0.5rem;
    cursor: pointer;
}
.playlists .playlistContainer .each-playlist img {
    width: 100%;
    height: 100%;    
    border-radius: 7px;
} */


.playlist-Holder {
    margin-left: 5%;
    margin-right: 5%;
}
.playlists {
    position: relative;
    width: 100%;
    background: black;
    margin-bottom: 2rem;
    overflow: hidden;
}
.playlists .heading {
    font-size: 1.25rem;
    font-weight: bold;
    padding: 0.5rem 1rem 0.25rem 0;
    color: rgb(221, 221, 221);
}
.playlists .playlistContainer {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    flex-wrap: nowrap;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.playlistContainer::-webkit-scrollbar {
    display: none;
}
.slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}
.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 45px;
    height: 90px;
    border: none;
    background: rgba(0,0,0,0.6);
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: 0.3s;
}
.slide-btn:hover {
    background: rgba(0,0,0,0.9);
}
.left-btn {
    left: 0;
}
.right-btn {
    right: 0;
}
.slide-btn {
    opacity: 0;
}
.slider-wrapper:hover .slide-btn {
    opacity: 1;
}
.playlists .playlistContainer .each-playlist {
    display: inline-block;
    flex: 0 0 auto;
    width: 250px;
    height: 150px;    
    background-color: black;
    margin: 0.5rem;
    cursor: pointer;
}
.playlists .playlistContainer .each-playlist img {
    width: 100%;
    height: 100%;    
    border-radius: 7px;
}