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


header {
    background-color: #262626;
}

li {
    column-gap: 20px;
    list-style: none;
}


a {
    color: white;
    text-decoration: none;
}

.navbar {
    position: fixed;
    width: 100%;
    border-bottom-style: solid;
    min-height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
    background-color: black;
    z-index: 9999;
}

.nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;

}

/*.hamburger {*/
/*    padding-left: 50px;*/
/*    position: absolute;*/
/*    display: none;*/
/*    cursor: pointer;*/
/*}*/

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: white;
}

.auth-container {
    position: absolute;
    right: 60px;
    max-width: 150px;
    width: 100%;
    column-gap: 20px;
    list-style: none;
    display: flex;
    align-items: center;
}

@media {
    .hamburger {
        left: 0;
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        background-color: #262626;
        width: 250px;
        padding: 35px;
        height: 100%;
        text-align: center;
        transition: 0.7s;
        flex-direction: column;
        z-index: 9999;
        display: block;
        color: white;

    }

    .nav-item {
        margin: 16px 0;
    }

    .nav-menu.active {
        left: 0;
    }


    .poster {
        width: 150px;
        text-align: center;
        background-color: #222;
        padding: 1em;
        border-radius: 5px;
        overflow: hidden;
        margin-right: 1em;
    }

    .poster img {
        max-width: 100%;
        height: auto;
        border-radius: 5px;
    }

    .row {
            display: flex;
            overflow-x: auto;
            margin-bottom: 1em;
        }
}

/* css custom dropdown */

.filter_div{
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Dropdown Container */
.custom-dropdown {
    position: relative;
    font-family: Arial, sans-serif;
}

/* Selected Option */
.dropdown-selected {
    background: #ffffff;
    color: black;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 10px;
    padding-right: 10px;
    border: 1px solid #ccc;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 5px;
}

/* Dropdown List */
.dropdown-options {
    position: absolute;
    top: -9%;
    left: 100%;
    width: 100%;
    background: #051b11;
    /*border: 1px solid #ccc;*/
    display: none;
    max-height: 166px; /* Controls height when open */
    overflow-y: auto; /* Scroll if too many options */
    /*border-radius: 5px;*/
    box-shadow:     0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

/* Individual Option */
.dropdown-option {
    padding: 10px;
    cursor: pointer;
    transition: background 0.2s;

}

.dropdown-option:hover {
    background: #f1f1f1;
}

/* Show Dropdown */
.dropdown-options.show {
    display: block;
}

/* search bar box css start  */

.search-box {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%; /* Adjust as needed */
}

.search-box i {
    position: absolute;
    left: 10px; /* Adjust for spacing */
    color: #888; /* Icon color */
}

.search-box input {
    width: 100%;
    padding: 6px 10px 6px 35px;
    border: 1px solid #ccc;
    border-radius: 25px;
    outline: none;
    background: #262643;
    color: white;
}
/* search bar box css end */

        .container{
            margin-top:2rem !important;
            margin-bottom:2rem;
        }

@media screen and (max-width: 932px) and (orientation: landscape) {
  html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }

  *, *::before, *::after {
    box-sizing: border-box;
  }

  .video-container{
    display: block !important;
  }

  

  .video-js .vjs-tech{
    position: relative !important;
  }

  .card-body{
    padding-top: 0px;
  }

  .main-content.expanded{
    width: 90% !important;
  }

  .comments-list{
    height: 10vh !important;
  }
}