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, 1),
        rgba(0, 0, 0, 0)
    );
}

.main_banner img,
.main_banner video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.playlists {
    position: relative;
    width: 100%;
    background: black;
    padding: 1rem;
    overflow-x: hidden;
}
.playlists .heading {
    font-size: 1.2rem;
    font-weight: bold;
    padding: 0.5rem 1rem 0.25rem 1rem;
    color: white;
}
.playlists .playlistContainer {
    width: max-content;
    flex-wrap: nowrap;
    padding: 0.5rem;
}
.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%;    
}

.movieTitle {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    position: absolute;
    bottom: 15%;
    left: 5%;
    z-index: 5;
    font-size: 3.5rem;
    font-weight: 600;
    color: white;
}
.buttonsDiv {
    position: absolute;
    bottom: 5%;
    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;
}

.content_details {
    color: white;
    margin: 2% 5% 1% 5%;
    font-size: 1.2rem;
}
.content_details span {
    color: rgb(164, 164, 164);
    font-weight: 500;
}

.cast_details {
    color: white;
    margin: 2% 5% 5% 5%; 
}
.cast_details .castContainer {
    display: flex;
    align-items: start;
    justify-content: space-between;
    flex-wrap: wrap;
}
.cast_details .castContainer .each-cast {
    width: 32%;
    margin-bottom: 2rem;
}
.cast_details .castContainer .each-cast .row {
    margin: 0;
}
.cast_details .castContainer .each-cast .row .col-6 {
    margin: 0;
    padding: 1rem 1rem 1rem 0;
}
.cast_details .castContainer .each-cast .row .col-6.text-desc { 
    padding-left: 1rem;
}
.cast_details .castContainer .each-cast .col-6 img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}
.cast_details .castContainer .each-cast .cast-name {
    font-weight: 600;
    font-size: 1.1rem;
}
.cast_details .castContainer .each-cast .cast-name span {
    color: rgb(164, 164, 164);
}
.cast_details .castContainer .each-cast .cast-desc {
    font-size: 0.9rem;
    color: rgb(224, 224, 224);
}