
body {
	font-family: sans-serif; overflow-x: hidden !important; background: #282828; overflow-y: scroll; line-height: 1.4; color: #333; font-size: 14px; font-weight: 400; margin: 0;
}

.menuactive{background:#f1f1f1;color:white!important;}.primg{height: 43px; width: 61px; border-radius: 10%; margin-top: -10px; border: 2px solid #480000;}.menusort{display: block; text-align: center; background: #120c28; width: 100%; margin-top: 18px;}.ftbtm{position:fixed; left:0px;height:40px; bottom:0px; height:30px; width:100%;background-color: rgba(255, 255, 255, 0.8);}.ftcntnt{display: block; float: right; margin-top: -30px; margin-right: 19px;}.ftmail{font-size: 13px;text-decoration: none;color: #8C8C8C;margin-right: 19px;}.ftmaila{text-decoration: none;font-size: 13px;color: #8C8C8C;}
.mynav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #315089;
    color: #fff;
    padding: 10px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999999999999999999999999999999999;
}

.menu-icon,
.search-icon {
    cursor: pointer;
    font-size: 24px;
    color: #fff;
}
.user-icon {
    cursor: pointer;
    font-size: 24px;
    color: #fff;
    margin-left: 15px;
}

.logo {
    flex-grow: 1;

}


.menu-links {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    flex-direction: column;
    font-size: 25px;
    border:1px solid;
    background: #f1f1f1;
    border-radius: 0.5rem;
    padding: 0.5rem 0.7rem;
    margin-left: 10px;
}

.menu-links a {
    text-decoration: none;
    color: #474752;
    text-align: left;
    display: block;
    padding: 0.2rem 2rem 0.2rem 0.5rem;
    margin: 0.2rem 0;
    font-weight: 600;
    font-size: 2rem;
    border-radius: 0.5rem;
    font-family: sans-serif;
}

.menu-links a:hover {
    background-color: #f1f1f1;
    color:#474747;
}

.menu-links.active {
    display: flex;
}

.search-form-container {
    display: none;
    position: absolute;
    top: 0;
    right: 11%;
    background-color: transparent;
    padding: 10px;
    width: 80%;
    text-align: center;
    transition: all 0.3s ease-in-out;
}
.searchinput{height: 40px;
    margin: 0;
    border-radius: 20px 0 0 20px;
    padding-right: 5px;
    background: #fff;
    color: #a8a8b7;
    width: 60%;
    font-size: 1em;
    font-weight: 300;
    padding-left: 20px;
    border: none;
    outline: none;
}

.search-form-container.active {
    display: inline-block; /* or display: ; */
}





#search-results-container {
    position: relative;
    padding: 10px;
    z-index: 1000;
    display: none;
    background-color: #000;
    border: none;
    border-radius: 23px;
}

#search-results-container a.result {
    display: block; border-bottom: 1px solid #000000; background: #1d1d1d; color: #fff; text-decoration: none; cursor: pointer; margin-bottom: 10px;
}
.thumbsearch{border-radius: 0.5rem; overflow: hidden; width: 50px; height: 58px; float: left; display: inline-block;}
p.tmtitle{
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 600;
}
p.rating-and-type{
    color: #7b7b7b;
}


  .figured {
        overflow: hidden;
        border-radius: 12px; /* Rounded corners */
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        background: #181818;
    }

    .figured:hover {
        transform: translateY(-12px); /* Increased lift */
        box-shadow: 0 6px 25px rgba(0, 204, 255, 0.9), /* Brighter neon blue glow */
                    0 12px 50px rgba(0, 204, 255, 0.5), /* Spotlight spread */
                    0 18px 80px rgba(0, 204, 255, 0.3); /* Enhanced depth */
                    background: #0085da;
    }

    /* Link styling */
    .figured a {
        background: #181818;
        height: auto;
        display: block;
        position: relative; /* For play button positioning */
    }

    /* Image container */
    .hovering {
        position: relative;
        overflow: hidden;
        transition: box-shadow 0.3s ease;
    }

    .figured:hover .hovering {
        box-shadow: inset 0 0 20px rgba(0, 204, 255, 0.7); /* Brighter inner spotlight */
        background: #0085da;
    }

    /* Spotlight overlay effect */
    .hovering::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(
            circle at center,
            rgba(0, 204, 255, 0.3) 0%, /* Brighter spotlight center */
            transparent 60%
        );
        opacity: 0;
        transform: scale(1);
        transition: opacity 0.3s ease, transform 0.3s ease;
        pointer-events: none;
    }

    .figured:hover .hovering::after {
        opacity: 1;
        transform: scale(1.1); /* Pulse for dynamic spotlight */
    }

   .play-button {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0.8); /* Centered, scaled down initially */
        opacity: 0;
        width: 60px; /* Larger circle */
        height: 60px;
        background: rgba(0, 204, 255, 0.8); /* Neon blue semi-transparent */
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 27px !important;
        line-height: 60px !important;
        text-align: center; /* Horizontal centering */
        transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
        pointer-events: none; /* Prevent interference with link */
        box-shadow: 0 0 15px rgba(0, 204, 255, 0.9); /* Glowing border */
    }

    .figured:hover .play-button {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1); /* Scale up on hover */
    }

    /* Fine-tune Font Awesome icon */
    .play-button::before {
        line-height: inherit; /* Ensure precise centering */
        vertical-align: middle; /* Align icon properly */
    }

    /* Image hover effect */
    .img-responsive:hover {
        transform: scale(1.05); /* Existing zoom */
        transition: all 0.2s ease-in-out; /* Existing transition */
    }

    /* Quality badge */
    .quality {
        z-index: 10; /* Above play button */
        position: absolute;
        top: 8px;
        left: 8px;
        color: white;
        font-size: 14px;
        font-weight: 900;
        padding: 5px 10px;
        text-shadow: 1px 1px 2px black, 0 0 1em black, 0 0 0.2em black;
        background: linear-gradient(45deg, rgba(0, 204, 255, 0.9), rgba(0, 179, 230, 0.9));
        border-radius: 5px;
        box-shadow: 0 0 10px rgba(0, 204, 255, 0.7);
    }

   .title {
    display: block;
    cursor: default;
    line-height: 1.4;
    max-height: 2.8em; 
    overflow: hidden;
}

.title-text {
    color: #d0d0d0;
    font-weight: bold;
    font-size: 14px;
    display: inline-block;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: top;
}

.title-year {
    font-size: 12px;
    color: #fff;
    display: inline-block;
    white-space: nowrap;
    float:right;
    vertical-align: top;
}

    /* Rating styling */
    .rating {
        display: inline-block;
        float: right;
        font-size: 14px;
        color: #a4a4a4;
        cursor: default;
        margin-right: 15px;
        padding: 0 12px;
        line-height: 1.5;
    }

    .rating i {
        color: #00ccff;
        margin-right: 5px;
        vertical-align: middle;
    }

    /* Meta container */
    .meta {
        background: #222;
        border-radius: 0 0 12px 12px;
        padding-bottom: 8px;
        overflow: hidden;
    }

    /* Clear float for proper layout */
    .meta::after {
        content: '';
        display: block;
        clear: both;
    }
    /* Responsive layout for small screens (up to 767px) */
    @media (max-width: 767px) {
        #search-results-container{
            width: 95%!important;
    display: block;
    left: 2.5%!important;
        }
        }
        
    

 .browse{background: #1a1a1a;}
.epzz{background: #1f1f1f; padding: 10px; margin-top: 25px; border-radius: 12px; margin-bottom: 45px;}

.browse-grid-eps {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 15px;
    margin-left: 5px;
    margin-right: 5px;
    position: relative;
}

/* Initially hide items beyond the first row */
.browse-grid-eps .figured {
    display: block;
}

.browse-grid-eps .figured.hidden {
    display: none;
}

/* Expanded state: show all items */
.browse-grid-eps.expanded .figured {
    display: block !important;
}

/* Show More button styling */
#showMoreBtn {
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    display: block;
    margin: 20px auto;
    transition: background-color 0.3s;
}

#showMoreBtn:hover {
    background-color: #0056b3;
}

/* Your existing media queries */
@media (max-width: 600px) {
    .browse-grid-eps {
        grid-template-columns: repeat(4, 1fr);
        grid-gap: 0px;
        margin-left: 0px;
        margin-right: 0px;
    }
}

@media (min-width: 600px) and (max-width: 767px) {
    .browse-grid-eps {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 767.01px) and (max-width: 959px) {
    .browse-grid-eps {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 960px) and (max-width: 1299px) {
    .browse-grid-eps {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (min-width: 1300px) {
    .browse-grid-eps {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (min-width: 2500px) {
    .browse-grid-eps {
        grid-template-columns: repeat(12, 1fr);
    }
}
.browse{background: #1a1a1a;}
.browse-grid {
    
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        grid-gap: 15px;
        margin-left: 5px;
        margin-right: 5px;
    }
/* For devices below 768px */
@media (max-width: 600px) {
    .browse-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 0px; 
     margin-left: 0px; 
     margin-right: 0px;
    }
}

@media (min-width: 600px) and (max-width: 767px) {
    .browse-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* For devices between 768px and 960px */
@media (min-width: 767.01px) and (max-width: 959px) {
    .browse-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* For devices between 960px and 1300px */
@media (min-width: 960px) and (max-width: 1299px) {
    .browse-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

/* For devices above 1300px */
@media (min-width: 1300px) {
    .browse-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

/* For devices above 2500px */
@media (min-width: 2500px) {
    .browse-grid {
        grid-template-columns: repeat(12, 1fr);
    }
}
 .tab-container {
            display: flex;
            justify-content: space-around;
            margin-top: 20px;
        }

        .tab {
    cursor: pointer;
    padding: 5px;
    border: 1px solid #315089;
    border-radius: 5px;
    color: #fff;
    width: auto; /* Add this line to set the width to auto */
    display: inline-block; /* Add this line to make the tabs inline */
}

.tab.active {
    background: linear-gradient(to bottom left, #006cc4, #0087d4);
    color: #fff;
}

        .trendingmovz,
        .trendingshowz {
            display: none;
        }
        .latestmovz,
        .latestshowz {
            display: none;
        }

        .trendingmovz.active,
        .trendingshowz.active {
            display: block;
        }
        .latestmovz.active,
        .latestshowz.active {
            display: block;
        }
    .favmovz,
        .favshowz {
            display: none;
        }
        .favmovz.active,
        .favshowz.active {
            display: block;
        }
.tfb-mynav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 20px;
        background: #111111;
        color: white;
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
        z-index: 1000;
    }

    
    .tfb-logo a {
        display: flex;
        align-items: center;
        text-decoration: none;
    }

    .tfb-logo img {
        height: 35px;
        border-radius: 7px;
    }

    .tfb-logo b {
        font-weight: 900;
        color: white;
        font-size: 24px;
        margin-left: 10px;
        transition: color 0.3s;
    }

    .tfb-logo a:hover b {
        color: #00ccff;
    }

    
    .tfb-pillmenu {
        display: flex;
        justify-content: center;
        align-items: center;
        background: #1d1d1d; border: 1px solid #282828;
        border-radius: 25px;
        padding: 8px;
        gap: 8px;
        max-width: 500px;
        position: relative;
        transition: all 0.3s ease;
    }

    
    .tfb-pillmenu a {
        color: white;
        text-decoration: none;
        padding: 8px 16px;
        border-radius: 15px;
        font-size: 15px;
        transition: background 0.3s, color 0.3s, opacity 0.3s;
    }

    .tfb-pillmenu a:hover {
        background: #00ccff;
        color: #fff;
        text-decoration:none;
    }

    .tfb-pillmenu a.tfb-active {
        background: #00ccff;
        color: #1a1a1a;
    }

   
    .tfb-search-icon {
        cursor: pointer;
        color: white;
        padding: 8px;
        border-radius: 50%;
        font-size: 16px;
        transition: background 0.3s, opacity 0.3s;
    }

    .tfb-search-icon:hover {
        background: #444;
    }

  
    .tfb-search-form-container {
        display: none;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 25px;
        transition: opacity 0.3s ease;
        opacity: 0;
    }

    .tfb-search-form-container.tfb-active {
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 1;
        padding: 8px;
    }

   
    .tfb-search {
        display: flex;
        align-items: center;
        border-radius: 20px;
        overflow: hidden;
        width: 100%;
        max-width: 450px;
    }

    .tfb-sform.tfb-searchinput {
        padding: 8px 12px;
        border: none;
        outline: none;
        font-size: 14px;
        background: #373737;
        flex-grow: 1;
    }

    .tfb-search-button {
        padding: 8px 15px;
        border: none;
        background:linear-gradient(to bottom left, #006cc4, #0087d4);
        color: #fff;
        cursor: pointer;
        border-radius: 0px 10px 10px 0px;
        font-size: 14px;
        transition: background 0.3s;
    }

    .tfb-search-button:hover {
        background: #00b3e6;
    }

    
    .tfb-search-close {
        cursor: pointer;
        color: white;
        padding: 8px;
        font-size: 16px;
        margin-left: 8px;
        transition: color 0.3s;
    }

    .tfb-search-close:hover {
        color: #00ccff;
    }

    
    .tfb-pillmenu.tfb-search-active a,
    .tfb-pillmenu.tfb-search-active .tfb-search-icon {
        opacity: 0;
        pointer-events: none;
    }

   
    .tfb-menu-icon {
        display: none;
        font-size: 28px;
        cursor: pointer;
        color: white;
        padding: 10px;
        transition: color 0.3s;
    }

    .tfb-menu-icon:hover {
        color: #00ccff;
    }

    
    .tfb-menu-links {
        display: none;
        flex-direction: column;
        background: #1a1a1a;
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 300px;
        padding: 20px;
        border-left: 1px solid #444;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 999;
    }

    .tfb-menu-links.tfb-active {
        display: flex;
        transform: translateX(0);
    }

    .tfb-menu-links a {
        color: white;
        text-decoration: none;
        padding: 12px 15px;
        font-size: 16px;
        transition: background 0.3s, color 0.3s;
    }

    .tfb-menu-links a:hover {
        background: #00ccff;
        color: #1a1a1a;
        border-radius: 5px;
    }

   
    .tfb-menu-links .tfb-search-form-container {
        display: flex;
        position:relative;
        margin: 15px 0;
    }

    .tfb-menu-links .tfb-search {
        width: 100%;
        border-radius: 20px;
    }

    .tfb-menu-links .tfb-searchinput {
        width: 100%;
    }

   
    .tfb-close-menu {
        align-self: flex-end;
        font-size: 24px;
        color: white;
        cursor: pointer;
        padding: 10px;
        transition: color 0.3s;
    }

    .tfb-close-menu:hover {
        color: #00ccff;
    }

   
    .tfb-menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        z-index: 998;
    }

    .tfb-menu-overlay.tfb-active {
        display: block;
    }

   
    @media (max-width: 768px) {
        .tfb-mynav {
            flex-wrap: wrap;
            padding: 10px;
        }

        .tfb-pillmenu {
            display: none;
        }

        .tfb-menu-icon {
            display: block;
        }

        .tfb-logo b {
            font-size: 20px;
        }

        .tfb-searchinput {
            width: 100%;
        }

        .tfb-search {
            border-radius: 15px;
        }
    }

    @media (min-width: 769px) {
        .tfb-menu-links, .tfb-menu-overlay {
            display: none !important;
        }
    }

    @media (max-width: 400px) {
        .tfb-menu-links {
            width: 100%;
        }
    }   
    
    .btns-under-jumbo{width:100%;padding:0 50px}.btns-under-jumbo .btn{border-left:0;color:#fff;border-radius:0;border-top:0;border-bottom:0;background-color:inherit;border-color:#cfcfcf}.no-bord-left{border-left:0 transparent}.no-bord-right{border-right:0 transparent}.btns-under-jumbo .active,.btns-under-jumbo li a:active,.btns-under-jumbo li a:focus,.btns-under-jumbo li a:hover{color:#fff}.btns-under-jumbo .active a{color: #ffffff; background: linear-gradient(to bottom left, #002c95, #4288f9); border: 1px solid #3c3c3c;}.lists-form{display:inline-block}.btns-under-jumbo .lists:active,.lists:focus{outline:0;border-top:0;color:#cfcfcf}.btns-under-jumbo .watchlisted .fa-heart:before,.btns-under-jumbo .watchlisted .fa-plus:before{content:"\f00c"}.jumbo-watchlist-btns a:first-child,.jumbo-watchlist-btns form:first-child{padding-left:110px}.btns-under-jumbo .active{top:0}.title-dt-group{margin-bottom:10px}.title-desc-crew dt{width:initial;font-weight:400;font-family:Quando,serif;font-size:12px}.title-desc-crew dd{margin-left:100px;color:#b3b3b3}.title-ratings dd{margin-left:120px}.title-ratings dt{margin-bottom:10px}.title-ratings>dd>strong{margin-left:5px}.reviews-not-released{text-align:center}.search-page h3,.title-page h3{font-family:'Cantora One',sans-serif}.title-jumbo-text{margin-top:20px}.btns-under-jumbo ul{list-style:none;margin-bottom:0;margin-top:0}.btns-under-jumbo li{float:left;list-style-type: none;}.btns-under-jumbo{padding:0}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;float:left}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:2}.btn-group-vertical>.btn:focus,.btn-group>.btn:focus{outline:0}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar:after,.btn-toolbar:before{content:" ";display:table}.btn-toolbar:after{clear:both}.btn-toolbar .btn-group{float:left}.btn-toolbar>.btn+.btn,.btn-toolbar>.btn+.btn-group,.btn-toolbar>.btn-group+.btn,.btn-toolbar>.btn-group+.btn-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child>.btn:last-child,.btn-group>.btn-group:first-child>.dropdown-toggle{border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn-group:last-child>.btn:first-child{border-bottom-left-radius:0;border-top-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group-xs>.btn{font-size:12px;line-height:1.5;border-radius:3px;padding:1px 5px}.btn-group-sm>.btn{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-group-lg>.btn{padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}.btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-left:12px;padding-right:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group:after,.btn-group-vertical>.btn-group:before{content:" ";display:table}.btn-group-vertical>.btn-group:after{clear:both}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-bottom-left-radius:4px;border-top-right-radius:0;border-top-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child>.btn:last-child,.btn-group-vertical>.btn-group:first-child>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child>.btn:first-child{border-top-right-radius:0;border-top-left-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified .btn{float:none;display:table-cell;width:1%}.btn-group .btn+.btn{margin-left:-1px}.btn-group .btn{color: #f1f1f1; background: #181818}.btn-group .drop-trans{color:#AAA}.trans-button .caret{border-top:4px solid #AAA}.drop-trans:hover{color:#FFF!important}.trans-button:active,.trans-button:focus,.trans-menu{border-radius:3px!important;background-color:rgba(76,76,76,.9)!important;border:1px solid rgba(86,86,86,.9)!important}.trans-menu a{color:#FFF!important}.edit-images-page .row{margin-left:20px}.edit-images-page .back-btn{margin-top:20px;margin-bottom:20px}.edit-images-page .col-sm-3{margin-top:10px}.search-page .btn-group{list-style:none;margin-bottom:0}.search-page .btn-group li{display:inline-block}.search-page .btn:active,.search-page .btn:focus{-webkit-box-shadow:initial;box-shadow:initial}.search-page .btn-group .active a{color:#F39C12;top:1px}.search-page .btn-group a{font-family:Ubuntu,sans-serif}.embed-youtube{position:relative;padding-bottom:56.25%;padding-top:30px;height:0;overflow:hidden}.embed-youtube embed,.embed-youtube iframe,.embed-youtube object{position:absolute;top:0;left:0;width:100%;height:100%}.trans-table{background-color:rgba(0,0,0,.6);color:#ccccd6;border:1px solid #4f5052}.trans-table td,.trans-table th{border:1px solid #4f5052!important}.browse .form-group,.user-profile .form-group{margin-right:10px;margin-left:10px}.browse .btn-group .form-control,.user-profile .btn-group .form-control{border-top:0;border-bottom:0;border-radius:0;margin-bottom:-12px;background-color:rgb(243, 243, 243);}.browse .btn-group .btn,.user-profile .btn-group .btn{padding:5px 12px}.no-bord-left{border-left:0 transparent}.btn-default.active,.btn-default:active,.btn-default:focus,.btn-default:hover,.open .dropdown-toggle.btn-default{color:#333;background-color:#000;border-color:#adadad}.btn-default.active,.btn-default:active,.open .dropdown-toggle.btn-default{background-image:none}.btn-default.disabled,.btn-default.disabled.active,.btn-default.disabled:active,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled],.btn-default[disabled].active,.btn-default[disabled]:active,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default,fieldset[disabled] .btn-default.active,fieldset[disabled] .btn-default:active,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#000;border-color:#fff}
.myButton {
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #b00000), color-stop(1, #000321));
	background:-moz-linear-gradient(top, #b00000 5%, #000321 100%);
	background:-webkit-linear-gradient(top, #b00000 5%, #000321 100%);
	background:-o-linear-gradient(top, #b00000 5%, #000321 100%);
	background:-ms-linear-gradient(top, #b00000 5%, #000321 100%);
	background:linear-gradient(to bottom, #b00000 5%, #000321 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#b00000', endColorstr='#000321',GradientType=0);
	background-color:#b00000;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	border-radius:3px;
	border:1px solid #002404;
	display:inline-block;
	cursor:pointer;
	color:#e6e6e6;
	font-family:Arial;
	font-size:17px;
	padding:2px 8px;
	text-decoration:none;
	text-shadow:0px 0px 0px #000000;
}
.myButton:hover {
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #000321), color-stop(1, #b00000));
	background:-moz-linear-gradient(top, #000321 5%, #b00000 100%);
	background:-webkit-linear-gradient(top, #000321 5%, #b00000 100%);
	background:-o-linear-gradient(top, #000321 5%, #b00000 100%);
	background:-ms-linear-gradient(top, #000321 5%, #b00000 100%);
	background:linear-gradient(to bottom, #000321 5%, #b00000 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#000321', endColorstr='#b00000',GradientType=0);
	background-color:#000321;
}
.myButton:active {
	position:relative;
	top:1px;
}
.myButton2 {
	background-color: #4267b2; border-color: #4267b2; color: white;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	border-radius:3px;
	border:1px solid #002404;
	display:inline-block;
	font-family:tahoma;
	font-size:17px;
	padding:2px 8px;
	text-decoration:none;
	text-shadow:0px 0px 0px #000000;
}
.tblink{
    background:#EAEAEA;
}
.tblink_alt{
    background:#fff;
}
a.visitedep{text-decoration: underline; color: #428bca; font-weight: 800; font-size: 15px; overflow: hidden; -webkit-line-clamp: 2; display: -webkit-box; -webkit-box-orient: vertical; text-overflow: ellipsis; white-space: normal; padding: 15px 0px 15px 30px; margin-left: -15px; margin-right: -15px; margin-bottom: -20px}




  .img-responsing {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

/* Media Queries in Reverse Order */
@media (min-width: 3850px) {
    .img-responsing {
        width: 100%;
        height: 1200px; /* Calculated value for 40vh */
    }
}

@media (max-width: 3850px) {
    .img-responsing {
        width: 100%;
        height: 1100px; /* Calculated value for 40vh */
    }
}

@media (max-width: 3450px) {
    .img-responsing {
        width: 100%;
        height: 950px; /* Calculated value for 85vh */
    }
}

@media (max-width: 3100px) {
    .img-responsing {
        width: 100%;
        height: 810px; /* Calculated value for 85vh */
    }
}

@media (max-width: 2850px) {
    .img-responsing {
        width: 100%;
        height: 710px; /* Calculated value for 85vh */
    }
}

@media (max-width: 2500px) {
    .img-responsing {
        width: 100%;
        height: 610px; /* Calculated value for 85vh */
    }
}

@media (max-width: 2200px) {
    .img-responsing {
        width: 100%;
        height: 550px; /* Calculated value for 85vh */
    }
}

@media (max-width: 1850px) {
    .img-responsing {
        width: 100%;
        height: 440px; /* Calculated value for 75vh */
    }
}

@media (max-width: 1500px) {
    .img-responsing {
        width: 100%;
        height: 350px; /* Calculated value for 60vh */
    }
}

@media (max-width: 1170px) {
    .img-responsing {
        width: 100%;
        height: 350px; /* Calculated value for 55vh */
    }
}

@media (max-width: 959px) {
    .img-responsing {
        width: 100%;
        height: 330px; /* Calculated value for 50vh */
    }
}

@media (max-width: 768px) {
    .img-responsing {
        width: 100%;
        height: 330px; /* Calculated value for 40vh */
    }
}



.video-play-button {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  box-sizing: content-box;
  display: block;
  width: 32px;
  height: 44px;
  /* background: #fa183d; */
  border-radius: 50%;
  padding: 18px 20px 18px 28px;
}

.video-play-button:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: #0059df;
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
}

.video-play-button:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background-image: linear-gradient(to bottom left, #1774f5, #064699);
  border-radius: 50%;
  transition: all 200ms;
}

.video-play-button:hover:after {
  background-color: darken(#fa183d, 10%);
}

.video-play-button img {
  position: relative;
  z-index: 3;
  max-width: 100%;
  width: auto;
  height: auto;
}

.video-play-button span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 32px solid #fff;
	border-top: 22px solid transparent;
	border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}    .seasonContainer {
        margin-bottom: 10px;
    }

    .seasonHeader {
    text-align: center; background: #0f0f0f; margin-left: -15px; margin-right: -15px;
    }

    .toggleArrow {
        font-size: 20px;
    }

    .episodeList {
        display: block;
    }

    .collapsed .episodeList {
        display: none;
    }
.episodeColorBlack {
    background-color: #161616;
}

.episodeColorGrey {
    background-color: #1f1f1f;
}.loader {
      position: relative;
      overflow: hidden;
    }

    /* Theatre Mode Styles */
    .theatre-mode {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        z-index: 1000;
        margin: 0 !important;
        border: none !important;
        background: black;
        overflow: hidden;
    }

    .theatre-mode .videomp4 {
        height: 100vh !important;
        width: 100vw !important;
        margin-top: 10px !important;
    }

    .theatre-mode .undervidbtns,
    .theatre-mode #toggleServerList {
        transition: opacity 0.5s ease;
    }
    
    .theatre-mode .optgrp,
    .theatre-mode #toggleServerList {
        transition: opacity 0.5s ease;
    }
    
    .theatre-mode.fade-out .optgrp,
    .theatre-mode.fade-out #toggleServerList {
        opacity: 0;
        pointer-events: none;
    }
    
    .theatre-mode.fade-out .undervidbtns,
    .theatre-mode.fade-out #toggleServerList {
        opacity: 0;
        pointer-events: none;
    }
.theatre-mode .optgrp{background:black !important;}
    .theatre-mode .undervidbtns {
        position: fixed;
        top: 5%;
        left: 0;
        width: 100%;
        padding: 10px 0;
        z-index: 1001;
        display: flex;
        justify-content: center;
        gap: 10px;
    }

    .theatre-mode #toggleServerList {
        position: fixed;
        z-index: 1002;
        border: 1px solid #444;
        padding: 8px 16px;
        border-radius: 5px;
        color: #fff;
        cursor: pointer;
    }

    body.theatre-mode-active {
        overflow: hidden;
    }

    /* Icon button positioning */
    #theatreModeBtn {
        transition: all 0.3s ease;
    }

    .theatre-mode #theatreModeBtn {
        bottom: 20px;
        right: 20px;
    }

    #theatreModeBtn i {
        font-size: 16px;
    }
    .theatre-mode .img-responsing {
    height: 100vh !important; /* Full viewport height */
    width: 100% !important; /* Full width */
}
@media (max-width: 990px) {
  .theatre-mode .img-responsing {
    height: calc(100vh - 10vh) !important;
    width: 100% !important; /* Full width */
  }
}






   