/*
Description: Theme for streaming movies and series
*/
@import url("https://fonts.googleapis.com/css?family=Roboto:300,300i,400,400i,500,500i,700,700i&display=swap");
@import url("https://fonts.googleapis.com/css?family=Fira+Sans:400,400i,500,500i,600,600i,700,700i&display=swap");

/* ===============================================================================
   HEADER SECTION - MODERN DESIGN WITH CLEAN & RESPONSIVE LAYOUT
   =============================================================================== */

/* ─────────────────────────────────────────────────────────────────────────────
   1. BASE HEADER CONTAINER
   ───────────────────────────────────────────────────────────────────────────── */
#main-menu {
    position: relative;
    background: linear-gradient(135deg, #0d1117 0%, #161b22 100%);
    height: 88px;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

/* ─────────────────────────────────────────────────────────────────────────────
   2. HEADER CONTAINER & LAYOUT
   ───────────────────────────────────────────────────────────────────────────── */
#main-menu .centernav {
    max-width: 1370px;
    margin: 0 auto;
    padding: 0 15px;
    height: 88px;
    display: flex;
    align-items: center;
}

#main-menu .centernav .bound {
    height: 88px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Header Flex Layout */
.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 88px;
}

/* ─────────────────────────────────────────────────────────────────────────────
   3. LOGO SECTION
   ───────────────────────────────────────────────────────────────────────────── */
#main-menu .centernav .logo {
    margin-right: 20px;
    max-width: 200px;
    height: 88px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

#main-menu .centernav .logo:hover {
    transform: scale(1.05);
}

#main-menu .centernav .logo img {
    width: auto;
    max-height: 50px;
    filter: brightness(1.1);
    transition: filter 0.3s ease;
}

#main-menu .centernav .logo:hover img {
    filter: brightness(1.3);
}

/* ─────────────────────────────────────────────────────────────────────────────
   4. NAVIGATION CONTAINER
   ───────────────────────────────────────────────────────────────────────────── */
#main-menu .nav-container {
    flex: 0;
    display: flex;
    justify-content: flex-start;
    margin-left: 0;
}

#main-menu nav {
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

/* ─────────────────────────────────────────────────────────────────────────────
   5. DESKTOP MENU ITEMS
   ───────────────────────────────────────────────────────────────────────────── */
#main-menu ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 88px;
    align-items: center;
}

#main-menu ul li {
    margin: 0 5px;
}

#main-menu ul li a {
    display: block;
    padding: 12px 16px;
    color: #8b949e;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

#main-menu ul li a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

/* ─────────────────────────────────────────────────────────────────────────────
   6. SEARCH CONTAINER
   ───────────────────────────────────────────────────────────────────────────── */
#main-menu .search-container {
    flex: 1;
    min-width: 340px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-shrink: 0;
    margin-left: 20px;
}

/* Desktop Search Box */
#main-menu .searchx {
    position: relative;
    width: 340px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

#main-menu .searchx:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

#main-menu .searchx #form {
    display: flex;
    align-items: center;
    height: 48px;
}

#main-menu .searchx #s {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0 20px;
    color: #e6edf3;
    font-size: 14px;
    outline: none;
}

#main-menu .searchx #s::placeholder {
    color: #8b949e;
}

#main-menu .searchx #submit {
    background: transparent;
    border: none;
    padding: 12px 16px;
    color: #8b949e;
    cursor: pointer;
    transition: color 0.3s ease;
}

#main-menu .searchx #submit:hover {
    color: #00acc1;
}

/* ─────────────────────────────────────────────────────────────────────────────
   7. MOBILE MENU TOGGLES (Hidden by default)
   ───────────────────────────────────────────────────────────────────────────── */
.show-menu {
    display: none;
    cursor: pointer;
}

/* Mobile Search Toggle - Hidden by default */
.ms {
    display: none;
    cursor: pointer;
}

/* Mobile Menu Checkbox - Hidden */
#show-menu {
    display: none;
    position: absolute;
    pointer-events: none;
}

/* ===============================================================================
   CSS RESET & BASE STYLES
   =============================================================================== */

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
    direction: ltr
    }
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block
    }
*, ::before, ::after {
    box-sizing: border-box
    }
html {
    height: 100%
    }
body {
    line-height: 1
    }
ol, ul {
    list-style: none
    }
blockquote, q {
    margin: 5px 0;
    quotes: none;
    background: #FAFAFA;
    border-left: 3px solid #F2F2F2;
    padding: 5px 10px
    }
blockquote:before, blockquote:after, q:before, q:after {
    content: "";
    content: none
    }
table {
    border-collapse: collapse;
    border-spacing: 0
    }
a {
    color: #00acc1;
    text-decoration: none;
    transition: color 0.1s linear;
    -moz-transition: color 0.1s linear;
    -webkit-transition: color 0.1s linear
    }
:focus {
    outline: none
    }
a:hover {
    text-decoration: none;
    color: #FFF
    }
p {
    margin: 10px 0
    }
p.ntf {
    line-height: normal
    }
body {
    color: #b8b8b8;
    font-size: 15px;
    background: #0e0e0e;
    font-family: "Fira Sans", sans-serif;
    margin: 0 auto;
    padding: 0;
    overflow-y: auto !important;
    position: relative;
    min-height: 100%
    }
/* ===============================================
   INDEX PAGE STYLES
   =============================================== */

/* Main Content Container - moved to sticky footer section */

/* Home Description Section */
.homedesc {
    background: linear-gradient(135deg, #1c1c1c 0%, #2a2a2a 100%);
    color: #b9bdc7;
    padding: 20px;
    margin-bottom: 25px;
    border-radius: 12px;
    border: 1px solid #333;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.homedesc::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00acc1 0%, #2196F3 100%);
    border-radius: 12px 12px 0 0;
}

.homedesc .fas {
    width: auto;
    height: auto;
    font-size: 45px;
    float: left;
    margin-right: 15px;
    color: #00acc1;
    text-shadow: 0 2px 4px rgba(0, 172, 193, 0.3);
}

.homedesc h1 {
    font-weight: 600;
    font-size: 20px;
    color: #fff;
    margin: 0 0 8px 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.homedesc p {
    margin: 0;
    margin-top: 8px;
    font-size: 16px;
    line-height: 1.5;
    color: #b9bdc7;
}

/* Layout Modes */
.sdtrue {
    overflow: hidden;
    max-width: 1220px;
    margin: 0 auto;
    margin-top: clamp(20px, 4vw, 35px);
    padding: 0 clamp(15px, 3vw, 20px);
    position: relative;
}

.sdtrue .psbody {
    float: left;
    width: 70%;
}

.sdtrue .psbody .swiper-container {
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.sdtrue .psbody .swiper-container .mainslider .limit {
    padding: 40% 0 0;
}

.sdtrue .psbody #content {
    padding: 0;
    max-width: unset;
    margin-top: 0;
}

.sdsingle .psbody #content {
    margin-top: 0;
}

.sdfalse {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(15px, 3vw, 20px);
    margin-top: clamp(20px, 4vw, 30px);
}

.sdfalse #content {
    padding: 0;
}
.left, .alignleft {
    float: left
    }
.relative {
    position: relative
    }
/* Responsive Typography */
.box h1 {
    font-size: clamp(16px, 4vw, 20px);
    margin-bottom: clamp(8px, 2vw, 10px);
    line-height: 1.2
    }
.clear {
    clear: both
    }
.notf {
    text-align: center;
    margin: 30px 0
    }
#header {
    margin: 15px;
    overflow: hidden
    }
#header .logo {
    height: 35px;
    float: left
    }
#header .headads {
    float: right
    }
/* Removed duplicate homedesc styles - now using enhanced version in INDEX PAGE STYLES section */
.kln {
    text-align: center;
    margin-bottom: 10px;
    overflow: hidden;
    line-height: normal
    }
.kln img {
    max-width: 100% !important;
    height: auto
    }
img {
    max-width: 100%;
    height: auto
    }
#btm_banner {
    position: absolute;
    z-index: 9999;
    width: 100%
    }
.bgclose {
    background-color: #d44112;
    color: #FFF;
    font-size: 12px;
    padding: 2px 5px;
    font-family: inherit;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 103
    }
.centered {
    width: 300px;
    position: relative;
    overflow: hidden;
    margin-top: 10%
    }
#btm_banner .kln {
    background-color: #000;
    overflow: hidden;
    position: relative;
    max-width: 300px;
    max-height: 250px
    }
.ann {
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 5px;
    color: #b9bdc7;
    background: #2f3441;
    line-height: 21px
    }
.annsingle {
    background: #d1ecf1;
    color: #0c5460;
    margin-bottom: 20px;
    padding: 15px;
    line-height: 160%;
    border-radius: 5px
    }
.pnn {
    padding: 15px 10px;
    text-align: center;
    background: #4c2a85;
    position: relative;
    color: #DDD
    }
.hades {
    text-align: center;
    margin: 10px 0;
    overflow: hidden
    }
.hades img {
    max-width: 100%;
    height: auto
    }
a.random {
    display: block;
    float: right;
    margin-top: 3px;
    background: #17151c;
    font-weight: 700;
    font-size: 10px;
    border-radius: 3px;
    text-transform: uppercase;
    padding: 4px 7px;
    color: #888;
    border: 1px solid #484848
    }
a.random:hover {
    text-decoration: none;
    background: #0f0e13;
    color: #CCC
    }
a.random .dashicons {
    font-size: 14px;
    line-height: 22px;
    font-weight: 700
    }
#shadow {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.93);
    width: 100%;
    height: 100%;
    z-index: 100;
    transition: all 0.5s ease
    }
.lightSwitcher {
    float: left;
    cursor: pointer
    }
/* #main-menu box-shadow moved to main definition above */
#main-menu .centernav .logo img {
    width: auto;
    max-height: 50px;
    filter: brightness(1.1);
    transition: filter 0.3s ease
    }
#main-menu .centernav .logo:hover img {
    filter: brightness(1.3)
    }
#main-menu ul .menu-item-has-children > a:after {
    content: "";
    padding: 0;
    display: none;
    width: auto;
    height: auto;
    padding-left: 5px;
    font-size: 19px;
    float: right;
    line-height: 35px;
    font-family: dashicons
    }
#main-menu ul li a:hover {
    text-decoration: none;
    color: #fff
    }
#main-menu ul li ul {
    position: absolute;
    top: 70px;
    padding: 16px;
    min-width: 360px;
    display: none;
    z-index: 9999;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(22, 27, 34, 0.95) 0%, rgba(13, 17, 23, 0.95) 100%);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    font-family: inherit;
    float: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px)
    }
#main-menu ul li:hover ul {
    display: block
    }
#main-menu ul li ul li {
    float: left;
    margin: 0;
    width: 33.333333%;
    padding: 3px
    }
#main-menu ul li:hover ul li ul {
    display: none
    }
#main-menu ul li ul li a {
    margin: 0;
    display: block;
    background: none;
    font-size: 14px;
    font-weight: 400;
    padding: 8px 12px;
    line-height: 20px;
    text-align: left;
    color: #8b949e;
    font-family: inherit;
    text-transform: none;
    border-radius: 8px;
    transition: all 0.3s ease
    }
#main-menu ul li ul li a:hover {
    background: rgba(0, 172, 193, 0.1);
    color: #00acc1;
    transform: translatex(2px)
    }
#main-menu .random {
    float: right;
    color: #FFF;
    cursor: pointer;
    text-transform: none;
    font-weight: 400;
    font-size: 14px;
    margin: 0;
    border-radius: 0;
    border: 0;
    line-height: 33px;
    background: #2866a7;
    padding: 0 10px
    }
#main-menu .random:hover {
    background: #ECECEC;
    color: #333;
    text-decoration: none
    }
input[type=checkbox] {
    display: none;
    -webkit-appearance: none
    }
.searchx #form #submit i {
    line-height: 45px;
    font-size: 20px
    }
.rec {
    background: #dadada;
    margin-bottom: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0 10px;
    font-size: 11px;
    color: #333;
    white-space: nowrap
    }
.rec a {
    line-height: 26px;
    padding: 0 12px;
    color: #333
    }
.searchx #form {
    padding: 0;
    overflow: hidden;
    border-radius: 25px;
    padding-left: 45px;
    transition: all 0.3s ease
    }
.searchx #form #s {
    font-family: inherit;
    display: block;
    border: none;
    height: 45px;
    font-size: 15px;
    line-height: 1.428571;
    letter-spacing: 0.5px;
    color: #e6edf3;
    background: none;
    font-weight: 400
    }
.searchx #form #s::placeholder {
    color: #6b7280;
    opacity: 1
    }
.searchx #form #sel {
    margin: 0;
    color: #888;
    border: none;
    outline: none;
    display: inline-block;
    font-family: "Open Sans", sans-serif;
    background-color: #fff;
    border: 1px solid #e5e2e2;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    transition: border linear 0.2s, box-shadow linear 0.2s;
    border-radius: 3px;
    padding: 4px 5px
    }
.searchx #form #submit {
    position: absolute;
    color: #8b949e;
    cursor: pointer;
    background: none;
    font-family: inherit;
    border: 0;
    padding: 0 12px;
    left: 12px;
    top: 0;
    transition: color 0.3s ease
    }
.searchx #form #submit i {
    display: block;
    font-size: 20px;
    transition: transform 0.3s ease
    }
.searchx:hover {
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translatey(-1px)
    }
.searchx:hover #form #s {
    color: #fff
    }
.searchx:hover #form #submit {
    color: #00acc1
    }
.searchx:hover #form #submit i {
    transform: scale(1.1)
    }
.stgap {
    height: 88px
    }
/* =============================================
   RESPONSIVE BREAKPOINTS
   ============================================= */

/* Sticky Footer Solution */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

#content {
    margin: clamp(20px, 4vw, 30px) auto;
    max-width: 1370px;
    width: 100%;
    box-sizing: border-box;
    flex: 1 0 auto;
}

.modern-footer, #footer {
    flex-shrink: 0;
}
    
    .searchx.mse #form:focus-within {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(0, 172, 193, 0.4);
        box-shadow: 0 0 0 3px rgba(0, 172, 193, 0.1);
    }
    
    .searchx.mse #form #s {
        flex: 1;
        background: transparent;
        border: none;
        padding: 0 56px 0 24px;
        color: #e6edf3;
        font-size: 16px;
        outline: none;
    }
    
    .searchx.mse #form #submit {
        position: absolute;
        right: 8px;
        top: 50%;
        transform: translateY(-50%);
        background: linear-gradient(135deg, #00acc1 0%, #2196F3 100%);
        border: none;
        border-radius: 10px;
        width: 42px;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .searchx.mse #form #submit:hover {
        background: linear-gradient(135deg, #2196F3 0%, #00acc1 100%);
        transform: translateY(-50%) scale(1.05);
    }
    
    /* Sticky Gap - Moved to main header section */
/* ===============================================================================
   END OF HEADER STYLES
   =============================================================================== */

/* ===============================================================================
   GENERAL LAYOUT & COMPONENTS
   =============================================================================== */

/* Tablet Header */
.taxlist {
    overflow: hidden;
    margin: 0 -5px;
    min-height: 300px
    }
.taxlist li {
    float: left;
    width: auto
    }
.taxlist li a {
    display: block;
    padding: 8px;
    margin: 5px;
    color: #333;
    text-align: center;
    background: #fff
    }
.mainslider {
    position: relative;
    overflow: hidden;
    cursor: grab
    }
.mainslider:before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    content: ""
    }
.mainslider .limit {
    position: relative;
    padding: 31.6% 0 0;
    background: #DDD;
    overflow: hidden
    }
.mainslider .limit img {
    position: absolute;
    top: 0;
    width: 100%;
    height: auto
    }
.mainslider .limit:before {
    position: absolute;
    bottom: 0;
    display: block;
    width: 100%;
    height: 25%;
    content: "";
    background-color: rgba(255, 255, 255, 0);
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(#111));
    background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0), #111);
    background-image: -moz-linear-gradient(top, rgba(255, 255, 255, 0), #111);
    background-image: -ms-linear-gradient(top, rgba(255, 255, 255, 0), #111);
    background-image: -o-linear-gradient(top, rgba(255, 255, 255, 0), #111);
    background-image: linear-gradient(top, rgba(255, 255, 255, 0), #111);
    z-index: 3
    }
.mainslider .limit .sliderinfo {
    position: absolute;
    bottom: 15%;
    z-index: 2;
    width: 100%
    }
.mainslider .limit .sliderinfo .sliderinfolimit {
    max-width: 1370px;
    margin: 0 auto;
    padding: 0 15px
    }
.mainslider .limit .sliderinfo .sliderinfolimit span.name {
    color: #FFF;
    font-weight: bold;
    font-size: 30px;
    margin-bottom: 10px;
    display: block;
    max-width: 700px;
    line-height: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-shadow: 0 1px 10px #111
    }
.mainslider .limit .sliderinfo .sliderinfolimit a.name:hover {
    color: #ccc
    }
.mainslider .limit .sliderinfo .sliderinfolimit .meta {
    margin-bottom: 8px
    }
.mainslider .limit .sliderinfo .sliderinfolimit .meta .quality {
    display: inline-block;
    padding: 2px 4px;
    background: #00acc1;
    color: #333;
    vertical-align: top;
    font-weight: 700;
    font-size: 12px;
    border-radius: 2px;
    margin-right: 15px;
    text-transform: uppercase
    }
.mainslider .limit .sliderinfo .sliderinfolimit .meta span.text {
    margin-right: 15px;
    color: #FFF;
    font-weight: 300;
    font-size: 14px;
    text-shadow: 0 1px 15px #111
    }
.mainslider .limit .sliderinfo .sliderinfolimit .meta span.text a {
    color: #FFF;
    font-weight: 400
    }
.mainslider .limit .sliderinfo .sliderinfolimit .desc {
    color: #adb5bd;
    max-width: 570px;
    max-height: 65px;
    overflow: hidden;
    line-height: 21px;
    font-size: 15px;
    font-weight: 300;
    text-shadow: 0 1px 15px #111
    }
.mainslider .limit .sliderinfo .sliderinfolimit .desc p {
    margin: 0
    }
.slider .paging {
    position: absolute;
    bottom: 25px;
    width: 100%;
    display: block
    }
.slider .paging .centerpaging {
    max-width: 1300px;
    margin: 0 auto
    }
.slider .paging .centerpaging .swiper-pagination {
    z-index: 5;
    position: relative
    }
.slider .paging .centerpaging .swiper-pagination span.swiper-pagination-bullet {
    margin: 0 4px;
    width: 10px;
    height: 10px;
    background: #fff;
    opacity: 0.3
    }
.slider .paging .centerpaging .swiper-pagination span.swiper-pagination-bullet-active {
    background: #00acc1;
    opacity: 1;
    cursor: pointer
    }
/* Enhanced Latest Section with Responsive Design */
.latest {
    margin-bottom: clamp(20px, 5vw, 25px);
    background: linear-gradient(135deg, #1c1c1c 0%, #2a2d30 100%);
    border-radius: clamp(8px, 2vw, 12px);
    padding: clamp(15px, 4vw, 25px);
    border: 1px solid #333;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease
    }
.latest:hover {
    transform: translatey(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5)
    }
.latest.relat {
    margin-top: clamp(20px, 5vw, 25px)
    }
/* Enhanced Typography with Responsive Scaling */
.latest > h2, .latest > h1, .latest .more h2, .latest .more h1, .latest .more h3 {
    font-size: clamp(18px, 4vw, 24px);
    display: block;
    float: left;
    color: #FFF;
    font-weight: 600;
    vertical-align: middle;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin: 0 0 clamp(8px, 2vw, 12px) 0;
    line-height: 1.2
    }
.latest h2 span.dashicons {
    height: auto;
    font-size: 18px;
    margin-right: 8px;
    width: auto;
    color: #00acc1
    }
.latest.polar h3 {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    padding: 20px 25px;
    margin-bottom: 25px;
    font-size: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3)
    }
.latest.polar h3 span {
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 8px;
    backdrop-filter: blur(10px)
    }
.latest .more a {
    float: right;
    font-size: 16px;
    line-height: 24px;
    color: #00acc1;
    font-weight: 500;
    transition: all 0.3s ease
    }
.latest .more a .fas {
    height: auto;
    font-size: 16px;
    margin-left: 8px;
    transition: transform 0.3s ease
    }
.latest .more a:hover {
    color: #2196F3;
    transform: translatex(5px)
    }
.latest .more a:hover .fas {
    transform: translatex(3px)
    }
.latest .more {
    margin-bottom: 20px;
    position: relative;
    background: linear-gradient(135deg, #212529 0%, #1c1c1c 100%);
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px solid #333
    }
.latest .more .mostax {
    display: flex;
    align-items: center;
    margin-left: 15px;
    gap: 5px
    }
.latest .more .mostax li {
    padding: 8px 15px;
    position: relative;
    color: #8e95a5;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #444
    }
.latest .more .mostax li a {
    float: none;
    line-height: unset;
    font-size: inherit;
    color: inherit;
    text-decoration: none
    }
.latest .more .mostax li.first {
    background: linear-gradient(135deg, #00acc1 0%, #2196F3 100%);
    color: #fff;
    border-color: #00acc1;
    position: relative
    }
.latest .more .mostax li.first:after {
    display: none
    }
.latest .more .mostax li:hover {
    background: linear-gradient(135deg, #333640 0%, #2a2d30 100%);
    color: #fff;
    transform: translatey(-2px);
    border-color: #555
    }
.latest .more .mostax li a:hover {
    color: #fff
    }
.latest .los .box {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease
    }
.latest.related .los .box {
    width: auto
    }
.minwidth .latest .los .box {
    width: auto
    }
/* Enhanced Movie Card with Consistent Responsive Design */
.latest .los .box .bx {
    margin: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #2a2d30 0%, #1c1c1c 100%);
    border-radius: clamp(8px, 2vw, 10px);
    border: 1px solid #333;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column
    }
.latest .los .box .bx:hover {
    transform: translatey(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
    border-color: #444
    }
.latest .los .box .bx .limit {
    overflow: hidden;
    position: relative;
    padding: 0 0 140%;
    border-radius: 10px 10px 0 0
    }
.latest .los .box .bx .limit img {
    width: 100%;
    height: auto;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 10px 10px 0 0;
    transition: transform 0.3s ease
    }
.latest .los .box .bx:hover .limit img {
    transform: scale(1.05)
    }
.latest .los .box .bx .limit .overlay {
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
    border-radius: 10px 10px 0 0;
    transition: all 0.3s ease
    }
.latest .los .box .bx:hover .limit .overlay {
    background: rgba(0, 0, 0, 0.2)
    }
.latest .los .box .bx .limit .overlay .status {
    position: absolute;
    top: 13px;
    left: -22px;
    line-height: normal;
    color: #fff;
    text-transform: uppercase;
    z-index: 3;
    padding: 2px 18px;
    font-size: 9px;
    background: #e74c3c;
    transform: rotate(-45deg);
    font-weight: 600
    }
.latest .los .box .bx .limit .overlay .quality {
    background: linear-gradient(135deg, #00acc1 0%, #2196F3 100%) !important;
    color: #fff !important;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 4px 8px;
    position: absolute;
    right: 8px;
    top: 8px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3)
    }
.latest .los .box .bx .limit .overlay .scr {
    position: absolute;
    top: 8px;
    border-radius: 6px;
    left: 8px;
    background: rgba(0, 0, 0, 0.7);
    color: #FFD700;
    padding: 3px 6px;
    font-size: 11px;
    font-weight: 500;
    line-height: normal;
    backdrop-filter: blur(10px)
    }
.latest .los .box .bx .limit .overlay .scr .dashicons {
    width: auto;
    height: auto;
    font-size: 11px;
    color: #FFD700;
    line-height: normal
    }
.latest .los .box .bx .limit .overlay .eps {
    background: linear-gradient(135deg, #00acc1 0%, #2196F3 100%);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    border-radius: 6px;
    padding: 3px 6px;
    position: absolute;
    top: 8px;
    right: 8px;
    line-height: normal;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3)
    }
.latest .los .box .bx .limit .overlay .eps span {
    display: block;
    font-weight: 600;
    font-size: 13px;
    font-style: normal;
    margin-bottom: 2px
    }
.latest .los .box .bx .limit .overlay .ttl {
    position: absolute;
    width: 100%;
    bottom: 0;
    padding: 15px 10px 10px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    border-radius: 0 0 10px 10px
    }
.latest .los .box .bx .limit .overlay .ttl h2 {
    padding: 0;
    text-align: center;
    line-height: 14px;
    font-size: 12px;
    font-weight: 500;
    color: #FFF;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8)
    }
.latest .los .box .bx .limit:before {
    display: none
    }
.latest .los .box .bx .note {
    position: absolute;
    height: 1px;
    width: 1px;
    overflow: hidden
    }
/* Responsive Card Content */
.latest .los .box .bx .addinfox {
    margin-top: auto;
    margin-bottom: 0;
    height: auto;
    padding: clamp(8px, 2vw, 12px);
    background: inherit
    }
.latest .los .box .bx .addinfox .entry-title {
    font-weight: 500;
    color: #fff;
    overflow: hidden;
    margin-bottom: clamp(4px, 1vw, 8px);
    letter-spacing: 0.3px;
    font-size: clamp(12px, 2.5vw, 14px);
    line-height: 1.3;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    height: clamp(30px, 6vw, 36px)
    }
.latest .los .box .bx .addinfox .addinfox-text {
    font-size: clamp(10px, 2vw, 12px);
    color: #8e95a5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px
    }
.latest .los .box .bx .addinfox .addinfox-text .dot {
    display: none
    }
.latest .los .box .bx .addinfox .addinfox-text .type {
    display: inline-block;
    font-style: normal;
    background: linear-gradient(135deg, #00acc1 0%, #2196F3 100%);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 3px 8px;
    font-size: 10px;
    line-height: normal;
    font-weight: 600;
    text-transform: uppercase
    }
.latest .los .box .bx .addinfox .addinfox-text .addyear {
    max-width: none;
    overflow: hidden;
    display: inline-block;
    white-space: nowrap;
    margin-right: 0;
    color: #bbb;
    font-weight: 500
    }
.latest .los .box .bx .limit i {
    border-radius: 50%;
    font-size: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    display: none;
    text-align: center;
    margin-top: -20px;
    margin-left: -20px;
    color: #00acc1;
    background: rgba(0, 0, 0, 0.8);
    width: 40px;
    height: 40px;
    line-height: 40px;
    transition: all 0.3s ease;
    z-index: 3;
    backdrop-filter: blur(10px)
    }
.latest .los .box .bx:hover .limit i {
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(1.1)
    }
.latest .los.carousel {
    margin: 0
    }
.latest .los.carousel .box {
    width: 14.5%
    }
.singlecontent {
    margin: 0 auto;
    position: relative
    }
.singlecontent #hapus {
    display: inline-block;
    padding: 2px 18px;
    font-size: 13px;
    line-height: 20px;
    border-radius: 3px;
    color: #e5e5e5;
    background: #e53427;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0
    }
.latest .los .box .delmark {
    position: absolute;
    z-index: 9;
    cursor: pointer;
    top: 10px;
    right: 10px;
    color: #fff;
    font-size: 13px;
    padding: 1px 5px;
    border-radius: 5px;
    background: #e53427
    }
.breadcrumb {
    margin-bottom: 10px;
    font-weight: 300;
    color: #00acc1;
    padding: 8px 0
    }
.breadcrumb a {
    color: #8e95a5
    }
.breadcrumb span {
    color: #8e95a5
    }
.playerx {
    position: relative;
    overflow: hidden;
    background: #000
    }
.playerx .bigplayer {
    width: auto;
    float: none;
    overflow: hidden
    }
.playerx .controller {
    position: absolute;
    width: 25%;
    height: 100%;
    right: 0;
    overflow: hidden
    }
.playerx .bigplayer .centerplayer {
    z-index: 102
    }
.playerx .bigplayer .centerplayer #embed_holder {
    background: #1c1c1c
    }
.playerx .bigplayer .centerplayer #embed_holder #pembed {
    margin: 0 auto;
    position: relative;
    height: 0;
    padding-bottom: 50%
    }
.playerx .controller .mt {
    display: block;
    padding: 10px;
    margin: 0;
    margin-bottom: 3px;
    font-size: medium;
    font-weight: 700;
    color: #DDD
    }
.playerx .controller ul.mirror {
    overflow: hidden
    }
.playerx .controller ul.mirror li {
    overflow: hidden
    }
.playerx .controller ul.mirror li a {
    display: block;
    padding: 10px;
    margin: 3px 0;
    font-size: medium;
    border-radius: 3px;
    color: #DDD;
    background: #222;
    box-shadow: 0 1px 3px #000
    }
.playerx .controller ul.mirror li a.active {
    background: #30649a;
    color: #FFF
    }
.playerx .bigplayer .centerplayer #embed_holder #pembed iframe, .playerx .bigplayer .centerplayer #embed_holder #pembed embed {
    z-index: 102;
    position: absolute;
    border: 0;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0
    }
.sora_navigation {
    float: right;
    overflow: hidden;
    font-size: 12px;
    margin: 0 auto;
    display: inline-block;
    text-align: center
    }
.sora_navigation .nav a {
    display: block;
    padding: 7px 15px;
    margin: 5px;
    background: #f0f0f0;
    border-bottom: 3px solid #e0e0e0;
    font-weight: 700;
    color: #333;
    border-radius: 3px;
    font-size: 13px
    }
.sora_navigation .nav.next {
    float: right
    }
.sora_navigation .nav.prev {
    float: left
    }
.sora_navigation .nav.all {
    display: inline-block
    }
.singlecontent h1 {
    font-size: 22px;
    color: #FFF;
    font-weight: 500;
    vertical-align: middle;
    margin-bottom: 15px
    }
.singlecontent .filterm {
    float: none;
    position: absolute;
    top: 0;
    line-height: normal;
    right: 0
    }
.singlecontent .plot {
    line-height: 17px;
    color: #aaa;
    font-size: 13px;
    font-style: italic
    }
.infodb {
    overflow: hidden
    }
.infodb img {
    max-width: 170px
    }
.infodb .right {
    overflow: hidden
    }
.infodb .entry-content .data li .colspan {
    display: block;
    margin-left: 100px;
    padding-left: 10px;
    border-left: 1px solid #2d2d2d
    }
.infodb .entry-content p {
    font-size: 15px
    }
.botpr {
    overflow: hidden;
    background: #111;
    border-radius: 0 0 3px 3px;
    color: #c8c8c8;
    font-size: 13px;
    line-height: 36px;
    padding: 0 8px
    }
.botpr .mirror {
    float: left;
    overflow: hidden
    }
.botpr .mirror li {
    float: left
    }
.botpr .mirror li a {
    background-color: #f0f0f0;
    border-bottom: 3px solid #e0e0e0;
    border-radius: 3px;
    color: #333;
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    margin: 5px;
    padding: 7px 15px
    }
.botpr .mirror li a.active {
    background: #2196f3;
    color: #FFF;
    border-color: #1c7fce
    }
.singlecontent.minwidth {
    max-width: 1180px
    }
.rating-prc {
    position: relative;
    margin-top: 5px;
    margin-bottom: 5px;
    margin-right: 25px;
    border-radius: 5px;
    padding: 8px;
    background: #242424
    }
.lightSwitcher:hover {
    color: #FFF
    }
.lightSwitcher .dashicons, .scom .dashicons {
    font-size: inherit;
    width: auto;
    height: auto;
    line-height: inherit
    }
.scom {
    float: right;
    padding-left: 8px
    }
.scom a {
    color: #ccc
    }
.scom a:hover {
    color: #FFF
    }
.rating-prc .rtp {
    overflow: hidden;
    text-align: center
    }
.rating-prc .rtp .rtb {
    position: relative;
    overflow: hidden;
    color: #ffc700;
    height: 15px;
    line-height: 1;
    width: 85px;
    font-size: 15px;
    margin: 0 auto;
    display: block;
    margin-bottom: 3px
    }
.rating-prc .rtp .rtb:before {
    content: "";
    font-family: "Font Awesome 5 Free";
    position: absolute;
    top: 0;
    left: 0;
    color: #868686
    }
.rating-prc .rtp .rtb span:before {
    content: "";
    font-family: "Font Awesome 5 Free";
    top: 0;
    position: absolute;
    font-weight: 900;
    left: 0
    }
.rating-prc .rtp .rtb span {
    overflow: hidden;
    top: 0;
    left: 0;
    position: absolute;
    padding-top: 15px
    }
.rating-prc .rtp .rtd {
    line-height: 1.5;
    font-size: 11px;
    font-weight: 300;
    color: #777
    }
.singlecontent .infodb h1 {
    font-size: 1.7rem;
    margin-bottom: 10px;
    font-weight: 500;
    text-transform: none;
    line-height: normal
    }
.infodb .infr {
    min-height: 1px;
    overflow: hidden
    }
.infodb .right .mgn .l {
    float: left;
    width: 60%
    }
.infodb .right .mgn {
    width: 100%;
    overflow: hidden;
    position: relative
    }
i.imdbx {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    color: #fff;
    padding: 2px 5px;
    border-radius: 3px;
    background: #f9a302;
    font-style: normal
    }
i.qua {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    color: #fff;
    padding: 2px 5px;
    border-radius: 3px;
    background: #282c35;
    font-style: normal
    }
.trl {
    overflow: hidden;
    margin-top: 5px
    }
.trl a {
    display: block;
    float: left;
    padding: 6px 15px;
    color: #FFF;
    font-size: 13px;
    border-radius: 15px;
    background: #2196f3;
    margin-right: 5px;
    border-bottom: 3px solid #1c7fce !important
    }
.infodb .trl a span {
    display: inline-block !important;
    margin: 0 !important;
    color: #FFF !important;
    line-height: normal;
    height: auto;
    width: auto
    }
.infodb .infl .server {
    overflow: hidden;
    padding: 15px;
    -webkit-border-radius: 3px;
    -khtml-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    background: #1c1c1c;
    font-size: 13px;
    margin-bottom: 20px
    }
.infodb .infl .server .lserv {
    display: block;
    clear: both;
    overflow: hidden;
    padding: 0;
    list-style: none;
    background: #262626;
    padding: 10px 10px 6px;
    margin: 2px 10px;
    -webkit-border-radius: 3px;
    -khtml-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px
    }
.infodb .infl .server .tserv {
    padding-top: 6px;
    color: #848484;
    width: 16%;
    float: left
    }
.infodb .infl .server .tserv .i {
    width: auto;
    height: auto;
    font-size: 14px;
    line-height: 14px
    }
.infodb .infl .server .lserv ul.mirror {
    width: 84%;
    float: left
    }
.infodb .infl .server .lserv ul.mirror li {
    display: inline
    }
.infodb .infl .server .lserv ul.mirror li a.active {
    background: #00acc1;
    color: #0e0e0e
    }
.infodb .infl .server .lserv ul.mirror li a {
    display: inline-block;
    margin: 0 2px 5px;
    padding: 6px 8px;
    color: #8e95a5;
    background: #3a3a3a;
    -webkit-border-radius: 2px;
    -khtml-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    border-radius: 2px;
    text-transform: capitalize
    }
.infodb .infl .server .lserv ul.mirror li a:hover {
    background: #00acc1;
    color: #fff
    }
.mvinfo {
    font-size: 13px;
    margin-bottom: 15px
    }
.mvinfo h2, .mvinfo h3 {
    position: absolute;
    height: 1px;
    width: 1px;
    overflow: hidden
    }
.mvinfo .entry-author {
    font-weight: 700;
    color: #fbb829
    }
.mvinfo .entry-author .fn {
    font-style: normal
    }
.mvinfo .seasoninx {
    background: #04abc1;
    color: #111;
    padding: 2px 6px;
    border-radius: 5px
    }
.infodb .entry-content {
    line-height: 160%;
    font-size: 14px
    }
.infodb .entry-content .data {
    overflow: hidden;
    margin-bottom: 15px
    }
.infodb .entry-content .data li {
    margin-right: 5px;
    margin-bottom: 5px;
    border-bottom: 1px solid #2d2d2d;
    padding: 4px 0
    }
.infodb .entry-content .data li b {
    font-weight: 500;
    display: block;
    float: left
    }
.infodb .infr .bmarea {
    margin-bottom: 20px
    }
.infodb .infr .minfr {
    margin-left: 20px
    }
.infodb .infr .bmarea .bookmark {
    color: #fff;
    background-color: #00acc1;
    text-align: center;
    line-height: 35px;
    border-radius: 3px;
    margin-bottom: 7px;
    cursor: pointer
    }
.infodb .infr .bmarea .bookmark .dashicons {
    width: auto;
    height: auto;
    font-size: inherit;
    line-height: inherit
    }
.infodb .infr .bmarea .bmc {
    font-size: 13px;
    text-align: center;
    font-weight: 300
    }
.infodb .infr .bmarea .bookmark:hover {
    background-color: #009eb2
    }
.infodb .infr .bmarea .bookmark.marked {
    background: #262626;
    color: #8e95a5
    }
.infodb .infr .bmarea .bookmark i {
    font-size: 13px;
    margin-right: 2px
    }
.trailerbutton {
    text-align: center;
    background: #bb102a;
    font-size: 13px;
    color: #FFF;
    border-radius: 3px;
    padding: 8px 5px;
    display: block;
    margin-bottom: 6px;
    margin-right: 25px
    }
.trailerbutton:hover {
    background: #b20c0c;
    color: #FFF
    }
.infodb .infl #tags {
    margin-top: 15px;
    color: #777;
    font-size: 13px
    }
.infodb .infl #tags label {
    margin-right: 5px
    }
.infodb .infl #tags h3 {
    font-weight: 300;
    display: inline-block;
    color: #848484;
    line-height: normal;
    padding: 2px 7px;
    margin-bottom: 5px;
    border-radius: 10px;
    background: #1c1c1c;
    border: 1px solid #2f3338
    }
.infodb #gallery img {
    max-width: unset
    }
.infodb .infl #tags h3 a {
    color: #848484
    }
.infodb .infl #tags h3 a:hover {
    color: #6a6a6a
    }
.infodb .entry-content .data li i {
    padding: 2px 6px;
    background: #00acc1;
    color: #252525;
    font-weight: 500;
    font-size: 11px;
    -webkit-border-radius: 2px;
    -khtml-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    border-radius: 2px;
    font-style: normal
    }
.trailershow {
    display: none;
    margin-bottom: 15px;
    position: relative
    }
.trailershow .limit {
    position: relative;
    padding-bottom: 50%
    }
.trailershow .limit iframe {
    position: absolute;
    top: 0
    }
.trailershow.shw {
    display: block
    }
.bigplay {
    position: relative;
    padding-top: 52%;
    overflow: hidden
    }
.bigplay img {
    position: absolute;
    top: 0;
    width: 100%
    }
.bigplay .overlay {
    position: absolute;
    z-index: 1;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3)
    }
.bigplay .overlay .dashicons {
    position: absolute;
    top: 40%;
    left: 44%;
    font-size: 80px;
    width: auto;
    height: auto;
    padding: 4px 0;
    color: #FFF;
    background: #00acc1;
    border-radius: 50%;
    border: 5px solid #FFF
    }
.bigplay .overlay .dashicons:before {
    margin-left: 10px
    }
.bigplay:hover .overlay {
    background: none
    }
.bigplay:hover .overlay .dashicons {
    background: #009eb2
    }
.bigplay .overlay .dashicons.dashicons-download {
    padding: 0;
    background: none;
    border: 0;
    left: 45%;
    color: rgba(255, 255, 255, 0.5)
    }
.bigplay .overlay .dashicons.dashicons-download:before {
    margin-left: 0
    }
.bigplay .overlay i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 100px;
    color: rgba(255, 255, 255, 0.74)
    }
.epg {
    overflow: hidden;
    -webkit-border-radius: 3px;
    -khtml-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    margin-bottom: 20px;
    font-size: 13px
    }
.epg h3 {
    cursor: pointer;
    background: #343946;
    color: #8e95a5;
    padding: 10px 15px;
    line-height: normal;
    font-weight: 400
    }
.epg .epgl {
    border: 1px solid #292d38;
    border-top: 0;
    -webkit-border-top-left-radius: 0;
    -webkit-border-top-right-radius: 0;
    -webkit-border-bottom-right-radius: 3px;
    -webkit-border-bottom-left-radius: 3px;
    -moz-border-radius-topleft: 0;
    -moz-border-radius-topright: 0;
    -moz-border-radius-bottomright: 3px;
    -moz-border-radius-bottomleft: 3px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px
    }
.epg .epgl ul {
    max-height: 251px;
    overflow-y: auto
    }
.epg .epgl ul li {
    border-bottom: 1px solid #292d38;
    overflow: hidden
    }
.epg .epgl ul li .l {
    float: left;
    width: 90%;
    color: #777
    }
.epg .epgl ul li .l .eptlx {
    margin-bottom: 5px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden
    }
.epg .epgl ul li .l .eptlx i {
    color: #00acc1;
    font-weight: 500;
    font-style: normal
    }
.epg .epgl ul li .l .eptlx b {
    font-weight: 400;
    color: #aab0bc
    }
.epg .epgl ul li .l .epdatex {
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 10.5px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden
    }
.epg .epgl ul li .r {
    overflow: hidden;
    text-align: right
    }
.epg .epgl ul li .r .fas {
    width: auto;
    height: auto;
    line-height: 30px
    }
.epg .epgl ul li:last-child {
    border-bottom: 0
    }
.epg .epgl ul li a {
    display: block;
    overflow: hidden;
    padding: 5px 15px
    }
.epg .epgl ul::-webkit-scrollbar {
    width: 8px
    }
.epg .epgl ul::-webkit-scrollbar-thumb {
    background: #282c36;
    border-radius: 35px
    }
.epg .epgl ul li:hover {
    background: #292d38
    }
.trl a:hover {
    text-decoration: none
    }
.lim {
    padding: 20px;
    background: #FFF;
    border-top: 1px solid #ebebeb
    }
.dl-box {
    border-radius: 3px;
    background: #1c1c1c;
    margin-top: 15px;
    margin-bottom: 15px
    }
.dl-box .dl-title {
    font-weight: 700;
    margin-bottom: 10px
    }
.dl-box .dl-item a {
    display: table;
    width: 100%;
    table-layout: fixed;
    border-collapse: separate;
    color: inherit
    }
.dl-box .dlhead {
    display: table;
    width: 100%;
    table-layout: fixed;
    color: #FFF;
    border-collapse: separate
    }
.dl-box .dlhead span {
    background: #242424;
    padding: 10px;
    margin-right: 3px;
    padding: 8px 8px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.428571;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border-radius: 2px;
    display: table-cell;
    border-radius: 0
    }
.dl-box .dl-item a span {
    margin-right: 3px;
    padding: 10px;
    margin-bottom: 0;
    font-size: 13px;
    line-height: 1.428571;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border-radius: 2px;
    display: table-cell;
    border-radius: 0
    }
.dl-box .dl-item a span i {
    font-style: normal
    }
.dl-box .dl-item a img {
    vertical-align: middle;
    margin-right: 5px
    }
.dl-box .dl-item a span:last-child, .dl-box .dlhead span:last-child {
    border: 0
    }
.dl-box .dl-item a:hover span {
    text-decoration: none
    }
.dl-box .dl-item a span.dlxxx .fas {
    width: auto;
    height: auto;
    font-size: 14px;
    line-height: 20px;
    margin-right: 4px;
    color: #00acc1
    }
.dl-box .dl-item a:nth-child(odd) {
    background: #191919
    }
.dl-box .dl-item a:hover {
    background: #212121 !important
    }
.dl-box .dl-item a span strong {
    font-size: 12px;
    background: #0e0e0e;
    padding: 3px 10px;
    border: 1px solid #272727;
    border-radius: 5px
    }
.epl {
    overflow: hidden;
    font-size: 14px;
    background: #FFF;
    padding: 20px;
    border-top: 1px solid #ebebeb
    }
.epl.sg {
    border-top: 1px solid #ebebeb;
    margin-bottom: 15px
    }
.epl h3 {
    font-size: medium;
    padding-bottom: 15px
    }
.epl ul {
    overflow: hidden
    }
.epl ul li {
    float: left
    }
.epl ul li a {
    background-color: #f0f0f0;
    border-bottom: 3px solid #e0e0e0;
    border-radius: 3px;
    color: #333;
    text-transform: uppercase;
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    margin: 5px;
    text-align: center;
    width: 50px;
    padding: 10px 15px
    }
.epl ul li .t2 {
    float: right;
    color: #999
    }
.epl ul li:hover span.t2 {
    color: #FFF
    }
.epl ul li:hover a {
    color: #FFF;
    background: #2196F3;
    border-color: #1c7fce;
    text-decoration: none
    }
.key {
    line-height: normal
    }
.key a {
    color: #888
    }
#breadcrum {
    overflow: hidden;
    line-height: normal;
    margin-bottom: 15px;
    color: #777
    }
#breadcrum > div {
    display: inline-block
    }
#breadcrum > div > a {
    color: #333
    }
.filterm {
    float: right;
    background: #00acc1;
    vertical-align: middle;
    font-size: 13px;
    padding: 7px 12px;
    color: #212529;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.1s ease-in-out 0
    }
.filterm:hover {
    color: #aab0bc;
    background: #212529
    }
.filterm .fas {
    font-size: 13px;
    height: auto;
    width: auto
    }
.bigfilter {
    display: none;
    position: absolute;
    z-index: 5;
    top: 25px;
    width: 100%;
    color: #DDD;
    background: #212529
    }
.bigfilter.bigshow {
    display: block
    }
.bigfilter .medium {
    padding: 0 15px
    }
.bigfilter .medium .col-8 {
    width: 33.333333%;
    float: left
    }
.bigfilter .medium .limit {
    overflow: hidden
    }
.bigfilter .medium .col-6 {
    width: 25%;
    float: left
    }
.bigfilter .medium .col-8 .filter-genre, .bigfilter .medium .col-6 .filter-country, .bigfilter .medium .col-4 .filter-sort, .bigfilter .medium .col-3 > div {
    overflow: hidden;
    padding: 20px 15px
    }
.bigfilter .medium .limit .filter-heading {
    margin-bottom: 10px;
    color: #fff;
    font-weight: 400;
    font-size: 17px
    }
.bigfilter .medium .limit .checkbox {
    overflow-y: auto;
    font-weight: 300;
    font-size: 13px;
    max-height: 275px
    }
.bigfilter .medium .limit .checkbox li {
    width: 33.333333%;
    float: left;
    line-height: 25px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis
    }
.bigfilter .medium .limit .checkbox li input[type="checkbox"] {
    position: inherit
    }
.bigfilter .medium .limit .checkbox li label {
    padding-right: 5px;
    min-height: 18px;
    cursor: pointer
    }
.bigfilter .medium .limit .checkbox li input + label:before, .bigfilter .medium .limit .checkbox li input:not(:checked) + label:before {
    display: inline-block;
    margin-top: 6px;
    margin-right: 5px;
    background: #777;
    content: "";
    vertical-align: top;
    line-height: 12px;
    width: 12px;
    height: 12px;
    -webkit-border-radius: 2px;
    -khtml-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    border-radius: 2px
    }
.bigfilter .medium .limit .checkbox li input:checked + label:before {
    background: 0 0;
    color: #00acc1;
    content: "";
    font-size: 12px;
    font-weight: 700;
    margin-left: 0;
    margin-right: 5px;
    font-family: "Font Awesome 5 Free"
    }
.bigfilter .medium .limit .filter-country .checkbox li {
    width: 50%
    }
.bigfilter .medium .limit .checkbox li:hover {
    color: #00acc1
    }
.bigfilter .medium .limit .col-4 {
    width: 16.66667%;
    float: left
    }
.bigfilter .medium .col-4 .filter-sort .ul-sort {
    position: relative;
    margin-right: 5px
    }
.bigfilter .medium .col-4 .filter-sort .ul-sort li {
    position: relative;
    margin: 2px 0;
    height: 33px;
    line-height: 33px;
    cursor: pointer;
    -webkit-border-radius: 3px;
    -khtml-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px
    }
.bigfilter .medium .col-4 .filter-sort .ul-sort li input {
    display: none
    }
.bigfilter .medium .col-4 .filter-sort .ul-sort li .fas, .bigfilter .medium .col-4 .filter-sort .ul-sort li .far, .bigfilter .medium .col-4 .filter-sort .ul-sort li .fab {
    height: auto;
    width: auto;
    font-size: 13px;
    margin-right: 5px
    }
.bigfilter .medium .col-4 .filter-sort .ul-sort li label {
    display: block;
    cursor: pointer;
    padding: 0 12px;
    position: relative
    }
.bigfilter .medium .col-4 .filter-sort .ul-sort li label:after {
    position: absolute;
    top: 4px;
    right: -11px;
    display: none;
    width: 24.75px;
    height: 24.75px;
    background: #00acc1;
    content: "";
    -webkit-transform: rotate(45deg);
    -khtml-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    zoom: 1;
    -webkit-border-radius: 3px;
    -khtml-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px
    }
.bigfilter .medium .col-4 .filter-sort .ul-sort li input:checked + label:after, .bigfilter .medium .col-4 .filter-sort .ul-sort li:hover label:after {
    display: block
    }
.bigfilter .medium .col-4 .filter-sort .ul-sort li input:checked + label, .bigfilter .medium .col-4 .filter-sort .ul-sort li label:hover {
    background: #00acc1;
    color: #212529;
    -webkit-border-radius: 3px;
    -khtml-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px
    }
.bigfilter .medium .col-3 {
    width: 12.5%;
    float: left
    }
.bigfilter .medium .col-3 .checkbox li {
    width: auto;
    float: none
    }
.bigfilter .medium .limit .filter-year .checkbox {
    max-height: 145px;
    overflow-y: auto
    }
.bigfilter .medium .limit .filter-year .checkbox::-webkit-scrollbar, .bigfilter .medium .limit .filter-year .checkbox::-webkit-scrollbar {
    width: 5px
    }
.bigfilter .medium .limit .filter-year .checkbox::-webkit-scrollbar-thumb, .bigfilter .medium .limit .filter-year .checkbox::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 3px
    }
.bigfilter .btn {
    text-align: center;
    margin-top: 30px
    }
.bigfilter .btn .searchz {
    cursor: pointer;
    padding: 8px 50px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 400;
    font-size: 14px;
    -webkit-border-top-left-radius: 3px;
    -webkit-border-top-right-radius: 3px;
    -webkit-border-bottom-right-radius: 0;
    -webkit-border-bottom-left-radius: 0;
    -moz-border-radius-topleft: 3px;
    -moz-border-radius-topright: 3px;
    -moz-border-radius-bottomright: 0;
    -moz-border-radius-bottomleft: 0;
    border: 1px solid;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    color: #212529;
    background-color: #00acc1;
    border-color: #00acc1
    }
.bigfilter .btn .searchz:hover {
    background-color: #009eb2;
    border-color: #009eb2
    }
.limage {
    margin-right: 25px
    }
.shd {
    margin-top: -2px;
    display: block;
    background: url(img/shadow.png) no-repeat;
    background-size: contain;
    background-position: 1px 0;
    width: 100%;
    height: 10px
    }
.qtip-default {
    box-shadow: 0 2px 5px #000 !important;
    border: 0 !important;
    max-width: 360px !important;
    font-size: 14px !important;
    line-height: 22px !important;
    padding: 0 !important;
    background: #1c1c1c !important;
    color: #DDD !important;
    margin: 5px;
    border-radius: 5px
    }
.tooltip {
    padding: 9px 14px
    }
.tooltip .totitle {
    clear: both;
    margin-top: 0;
    overflow: hidden
    }
.tooltip .totitle h4 {
    float: left;
    font-size: 15px;
    font-weight: 400;
    max-width: 80%;
    padding: 7px 0 10px
    }
.tooltip .totitle span {
    background-color: #00acc1;
    color: #fff;
    float: right;
    font-size: 11px;
    line-height: 13px;
    margin-right: 10px;
    margin-top: 10px;
    padding: 3px 5px
    }
.tooltip .totop {
    background: #0c0c0c none repeat scroll 0 0;
    font-size: 12px;
    margin: 4px -15px;
    padding: 5px 12px
    }
.tooltip .totop .infox {
    display: inline-block;
    margin-right: 20px;
    padding: 3px 0
    }
.tooltip .totop .infox.imdb {
    background: #d46303 none repeat scroll 0 0;
    margin-right: 15px;
    padding: 1px 7px
    }
.qtip-content {
    padding: 0 !important
    }
.tooltip .todesc {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.3em
    }
.tooltip .toblock {
    font-size: 12px;
    font-weight: 300;
    padding-left: 0;
    padding-right: 0
    }
.tooltip .toblock a:hover {
    color: #333
    }
.tooltip .towatch {
    margin: -15px;
    margin-bottom: -19px;
    margin-top: 10px
    }
.tooltip .towatch a {
    background-color: #00acc1;
    border-radius: 3px;
    color: #fff;
    text-align: center;
    display: block;
    margin: 10px 0;
    padding: 8px 15px;
    text-decoration: none
    }
.qtip .qtip-tip {
    display: none !important
    }
.share {
    margin-top: 5px;
    text-align: center;
    overflow: hidden
    }
.share .sosmed {
    width: 24px;
    height: 24px;
    display: inline-block
    }
.share .sosmed.fb {
    background: url(img/icon-facebook.png)
    }
.share .sosmed.gplus {
    background: url(img/icon-google-plus.png)
    }
.share .sosmed.twitter {
    background: url(img/icon-twitter.png)
    }
.share .sosmed span {
    display: none
    }
.share .sosmed.fb:hover, .share .sosmed.gplus:hover, .share .sosmed.twitter:hover {
    background-position: 0 24px
    }
/* ==============================================
   RESPONSIVE TYPOGRAPHY IMPROVEMENTS
   ============================================= */
/* Enhanced Content Typography */
.konten {
    font-size: clamp(14px, 2.5vw, 16px);
    line-height: 1.6
    }
.konten p {
    font-weight: 300;
    margin: clamp(8px, 2vw, 10px) 0
    }
.konten blockquote {
    background: #1c1c1c;
    border: 0
    }
/* ===== START OF SOCIAL SHARE STYLES ===== */

/* 1. SOCIAL SHARE CONTAINER */
.socialts {
    overflow: hidden;
    margin-bottom: 15px;
    text-align: center;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 8px;
    justify-content: center;
    align-items: stretch
}

/* 2. SOCIAL SHARE BUTTONS - BASE STYLES */
.socialts a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 2px;
    margin-bottom: 2px;
    background: #333;
    color: #FFF !important;
    padding: 8px 12px;
    line-height: 1;
    font-size: 12px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 100px;
    font-weight: 500
}

.socialts a i {
    padding-right: 6px;
    font-size: 14px
}

.socialts a span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px
}

/* 3. SOCIAL PLATFORM SPECIFIC COLORS */
.socialts a.fb {
    background: linear-gradient(135deg, #3b5999 0%, #2f477b 100%);
    border: 1px solid #4267B2
}

.socialts a.fb:hover {
    background: linear-gradient(135deg, #2f477b 0%, #1e2f4f 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 89, 153, 0.3)
}

.socialts a.twt {
    background: linear-gradient(135deg, #1DA1F2 0%, #1781c3 100%);
    border: 1px solid #1DA1F2
}

.socialts a.twt:hover {
    background: linear-gradient(135deg, #1781c3 0%, #0f5f8a 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(29, 161, 242, 0.3)
}

.socialts a.wa {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border: 1px solid #25D366
}

.socialts a.wa:hover {
    background: linear-gradient(135deg, #128C7E 0%, #0a5d56 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3)
}

.socialts a.pntrs {
    background: linear-gradient(135deg, #BD081C 0%, #8b0000 100%);
    border: 1px solid #BD081C
}

.socialts a.pntrs:hover {
    background: linear-gradient(135deg, #8b0000 0%, #5c0000 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(189, 8, 28, 0.3)
}

.socialts a.tlgrm {
    background: linear-gradient(135deg, #0088cc 0%, #0072ab 100%);
    border: 1px solid #0088cc
}

.socialts a.tlgrm:hover {
    background: linear-gradient(135deg, #0072ab 0%, #005580 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 136, 204, 0.3)
}
.nav_apb {
    margin-bottom: 10px;
    -webkit-font-smoothing: antialiased !important;
    text-align: center
    }
.nav_apb a {
    padding: 5px 10px;
    text-align: center;
    display: inline-block;
    background-color: #212529;
    color: #a9afbb;
    margin: 2px;
    border-radius: 3px
    }
.nav_apb a:hover {
    background: #00acc1;
    color: #111;
    text-decoration: none
    }
.soralist {
    overflow: hidden;
    -moz-column-count: 2;
    -moz-column-gap: 15px;
    -webkit-column-count: 2;
    -webkit-column-gap: 15px;
    column-count: 2;
    column-gap: 15px;
    width: 100%
    }
.blc {
    background-color: #212529;
    border-radius: 2px;
    padding: 10px 20px;
    margin-bottom: 15px;
    overflow: hidden;
    -webkit-box-shadow: 0 14px 27px #16181e;
    -khtml-box-shadow: 0 14px 27px #16181e;
    -moz-box-shadow: 0 14px 27px #16181e;
    -ms-box-shadow: 0 14px 27px #16181e;
    -o-box-shadow: 0 14px 27px #16181e;
    box-shadow: 0 14px 27px #16181e;
    break-inside: avoid
    }
.soralist span {
    display: block;
    padding: 15px 0
    }
.soralist span a {
    font-size: 16px;
    color: #aaa;
    display: inline-block;
    padding: 5px 12px;
    background: #131010;
    transform: rotate(-7deg)
    }
.soralist ul {
    margin: 0;
    padding: 0;
    margin-top: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    list-style: initial
    }
.soralist ul li {
    margin-left: 16px;
    color: #00acc1;
    padding: 3px 0;
    line-height: 160%
    }
.soralist ul li a.series {
    color: #8e95a5
    }
.soralist ul li a.series:hover {
    text-decoration: none;
    color: #FFF
    }
.soralist ul li a.series b {
    margin-left: 5px;
    color: #DDD;
    text-transform: uppercase;
    font-size: 11px;
    border-radius: 4px;
    padding: 2px 5px;
    background: #222
    }
.soralist ul li a.series b.stat.Ongoing {
    background: #4CAF50;
    color: #FFF
    }
.soralist ul li a.series b.stat.Completed {
    font-weight: 400;
    color: #999
    }
#live-search_results {
    background: #212529;
    border: none;
    z-index: 550 !important;
    overflow: hidden;
    color: #bbb;
    -webkit-border-radius: 3px;
    -khtml-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    box-shadow: 0 0 11px #111
    }
.live-search_header {
    display: none
    }
.live-search_result_container {
    font-size: 13px;
    line-height: normal
    }
.live-search_result_container ul {
    margin: 0;
    padding: 0;
    overflow: hidden
    }
.live-search_result_container li {
    font-family: inherit;
    padding: 12px;
    border-bottom: none;
    overflow: hidden
    }
.live-search_result_container li:hover {
    background: #111 !important
    }
.live-search_result_container li:nth-child(even) {
    background: #1c2023
    }
.live-search_result_container li a {
    display: block;
    color: #848484
    }
.live-search_result_container .post-thumbnail {
    width: 50px;
    height: auto;
    margin-right: 15px;
    float: left;
    overflow: hidden
    }
.live-search_result_container .post-thumbnail img {
    width: 100% !important;
    height: auto !important;
    border-radius: 5px
    }
span.live-search_text {
    display: block;
    color: #adb5bd;
    margin-bottom: 7px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 15px
    }
.live-search_result_container .post-meta {
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 13px;
    font-weight: 300;
    margin-bottom: 6px
    }
#live-search_loading {
    display: block !important;
    width: 100%;
    height: auto !important
    }
.live-search_result_container a:hover {
    text-decoration: none;
    color: #999
    }
ul.live-search_main {
    margin: 0;
    padding: 0;
    list-style: none
    }
.live-search_result_container li:hover span.live-search_text {
    color: #00acc1
    }
.live-search_result_container .post-meta .quality {
    display: inline-block;
    float: left;
    padding: 1px 4px;
    vertical-align: middle;
    background: #00acc1;
    color: #111;
    font-weight: 500;
    font-style: normal;
    font-size: 11px;
    margin-right: 8px;
    -webkit-border-radius: 2px;
    -khtml-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    border-radius: 2px;
    margin-bottom: 2px
    }
.live-search_result_container .post-meta span.text {
    margin-right: 8px
    }
.live-search_result_container .post-meta span.text b {
    color: #00acc1;
    font-weight: 500
    }
.live-search_more a {
    display: block;
    text-align: center;
    padding: 10px 5px;
    font-size: 13px;
    background: #16181b;
    color: #6c757d;
    font-weight: 300
    }
.live-search_more a:hover {
    background: #009eb2
    }
/* Legacy container styles - moved to responsive utilities section */
.sdtrue .psbody .swiper-container {
    border-radius: 10px;
    margin-bottom: 30px
    }
.sdtrue .psbody .swiper-container .mainslider .limit {
    padding: 40% 0 0
    }
.sdtrue .psbody #content {
    padding: 0;
    max-width: unset;
    margin-top: 0
    }
.sdsingle .psbody #content {
    margin-top: 0
    }
#sidebar .section {
    margin-left: 15px;
    background: #1c1c1c;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    margin-bottom: 18px
    }
#sidebar .section .releases {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-bottom: 1px solid #232323;
    padding: 8px 15px
    }
#sidebar .section .releases h3 {
    font-size: 15px;
    color: #fff;
    line-height: 20px;
    font-weight: 500;
    margin: 0;
    position: relative
    }
#sidebar .section .textwidget {
    padding: 10px;
    line-height: 160%;
    color: #aaa
    }
#sidebar .section ul li {
    padding: 10px
    }
#sidebar .section ul li:nth-child(odd) {
    background: #191919
    }
.bixbox {
    background: linear-gradient(135deg, #1c1c1c 0%, #2a2d30 100%);
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #333;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    position: relative;
    transition: all 0.3s ease
    }
.bixbox:hover {
    transform: translatey(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
    border-color: #444
    }
.bixbox::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00acc1 0%, #2196F3 100%);
    border-radius: 12px 12px 0 0
    }
.bixbox .bxtitle {
    margin: -25px -25px 20px -25px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-bottom: 2px solid #333;
    padding: 15px 25px;
    background: linear-gradient(135deg, #212529 0%, #1c1c1c 100%);
    border-radius: 12px 12px 0 0
    }
.bixbox .bxtitle h2, .bixbox .bxtitle h3 {
    font-size: 18px;
    color: #fff;
    line-height: 24px;
    font-weight: 600;
    margin: 0;
    position: relative;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3)
    }
.bmarea {
    text-align: center;
    margin-right: 25px
    }
.bmarea .bookmark {
    text-align: center;
    background: #00acc1;
    font-size: 13px;
    color: #fff;
    border-radius: 3px;
    padding: 8px 5px;
    cursor: pointer;
    margin-bottom: 5px
    }
.bmarea .bmc {
    font-size: 11px;
    color: #777
    }
.bmarea .bookmark.marked {
    background: #242424;
    color: #999
    }
/* Removed duplicate sdfalse styles - now using enhanced version in INDEX PAGE STYLES section */
/* Removed unused CSS for episode watch, navigation, and taxonomy index - not used in index.php */
/* Removed unused CSS for taxindex and comments - not used in index.php */
#sidebar .section ul.genre {
    overflow: hidden;
    list-style: none;
    position: relative;
    padding: 5px 0 15px
    }
#sidebar .section ul.genre li {
    float: left;
    width: 33.33%;
    overflow: hidden;
    text-overflow: ellipsis;
    border: 0;
    padding: 0;
    background: none
    }
#sidebar .section ul.genre li a {
    font-size: 13px;
    padding: 8px 15px;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis
    }
#sidebar .section ul.genre:before, #sidebar .section ul.genre:after {
    content: "";
    position: absolute;
    width: 1px;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 33.33%;
    background: #232323
    }
#sidebar .section ul.genre:after {
    left: 66.66%
    }
#sidebar .section .widgetpopular ul li {
    overflow: hidden;
    position: relative
    }
#sidebar .section .widgetpopular ul li .imgseries {
    float: left;
    overflow: hidden;
    width: 58px;
    max-height: 72px;
    margin-right: 10px;
    border-radius: 3px;
    position: relative
    }
#sidebar .section .widgetpopular ul li .leftseries {
    overflow: hidden
    }
#sidebar .section .widgetpopular ul li .leftseries h4 {
    font-weight: 500;
    margin: 0 0 5px;
    line-height: 140%
    }
#sidebar .section .widgetpopular ul li .leftseries span {
    display: block;
    margin-bottom: 2px;
    line-height: 140%;
    color: #777;
    font-size: 13px
    }
#sidebar .section .widgetpopular ul li .leftseries span a {
    color: #aaa
    }
#sidebar .section .widgetpopular ul li .leftseries span a:hover {
    color: #fff
    }
#sidebar .section .serieslist .numscore {
    display: inline-block;
    margin-left: 5px;
    font-size: 12px;
    line-height: normal;
    font-style: italic;
    color: #999
    }
#sidebar .section .serieslist .rating {
    overflow: hidden;
    margin-top: 6px
    }
#sidebar .section .serieslist .rating .rating-prc {
    float: left;
    background: none;
    padding: 0;
    margin: 0;
    border-radius: 0
    }
#sidebar .section .serieslist .rating-prc .rtp .rtb {
    margin: 0;
    font-size: 12px;
    width: 67px;
    height: 14px
    }
#sidebar .section .serieslist .rating-prc .rtp .rtb span {
    margin: 0;
    font-size: inherit;
    color: inherit !important;
    line-height: inherit
    }
#sidebar .section .serieslist.pop ul li.topone .numscore {
    color: #FFF
    }
#sidebar .section .widgetpopular ul li .ctr {
    position: absolute;
    background: #2f2f2f;
    padding: 3px 0;
    width: 16px;
    border-bottom-right-radius: 5px;
    font-size: 11px;
    text-align: center;
    color: #FFF
    }
#sidebar .section .ts-wpop-series-gen .ts-wpop-nav-tabs {
    list-style: none;
    margin: 10px;
    padding: 6px;
    overflow: hidden;
    background: #292929;
    border-radius: 3px
    }
#sidebar .section .ts-wpop-series-gen .ts-wpop-nav-tabs li.active a {
    display: block;
    background: #00acc1;
    border-radius: 3px;
    color: #080808
    }
#sidebar .section .ts-wpop-series-gen .ts-wpop-nav-tabs li {
    float: left;
    width: 33.333333%;
    padding: 0;
    border: 0;
    text-align: center;
    background: none
    }
.ts-wpop-series-gen .ts-wpop-nav-tabs li a {
    padding: 6px;
    display: block;
    font-size: 12px;
    cursor: pointer;
    color: #868686
    }
#wpop-items .serieslist > div {
    display: none
    }
.ts-wpop-series-gen .ts-wpop-nav-tabs li a:hover {
    color: #FFF
    }
/* ==============================================
   CONSOLIDATED RESPONSIVE BREAKPOINTS
   ============================================= */
/* Large Desktop (1200px+) */
/* Desktop (926px - 1199px) */
/* Tablet Portrait (768px - 925px) */
/* Mobile Landscape (480px - 767px) */
/* Mobile Portrait (320px - 479px) */
/* Mobile search and player styles moved to unified mobile media queries */
/* Custom CSS */
.menutab {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px
    }
.tab-content {
    display: none
    }
.tab-content.active {
    display: block
    }
/* 6. SUBHEADING STYLES */
.subheading h2 {
    font-size: 16px;
    text-align: center;
    padding: 15px 20px;
    margin-top: 25px;
    margin-bottom: 15px;
    border-radius: 10px;
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    color: #fff;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(108, 117, 125, 0.2);
    border: 2px solid #6c757d;
    line-height: 1.4
}
.smokeddl {
    font-size: 12px;
    font-weight: 500;
    padding: 10px;
    background: #fff
    }
.smokettl, .smokeurl h3 {
    padding: 10px 15px;
    color: #FFF;
    background: #1e2f6c;
    font-size: 17px;
    margin-top: 10px
    }
.smokeurl {
    color: #fff;
    background: #1e1f20;
    border-bottom: 1px solid #4e4e4e;
    padding-top: 10px
    }
.smokeurl a {
    display: inline-block;
    padding: 2px 10px;
    color: #fff;
    font-weight: normal;
    margin-bottom: 5px;
    border-right: 3px solid #444;
    transition: 0.02s
    }
.smokeurl a:hover {
    color: #1e2f6c
    }
.smokeurl strong {
    background: #14406c;
    padding: 10px;
    display: inline-block;
    color: #fff;
    border-radius: 2px;
    width: 65px;
    text-align: center;
    font-weight: normal
    }
/* RECOMMENDATION SLIDER CSS */
.los::-webkit-scrollbar {
    height: 6px
    }
.los::-webkit-scrollbar-track {
    background: #2a2d30;
    border-radius: 3px
    }
.los::-webkit-scrollbar-thumb {
    background: #2196F3;
    border-radius: 3px
    }
/* Slider Container */
.slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px
    }
/* Slider Items */
.slider-item {
    width: 175px;
    min-width: 175px;
    max-width: 175px;
    background: #2a2d30;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #444;
    scroll-snap-align: start;
    flex-shrink: 0
    }
.slider-item:hover {
    transform: translatey(-8px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border-color: #666;
    z-index: 10
    }
.slider-item .bx {
    margin: 0;
    padding: 0
    }
.slider-item .bx a {
    text-decoration: none;
    color: inherit;
    display: block
    }
.slider-item .limit {
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
    display: block
    }
.slider-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.3s ease;
    display: block;
    margin: 0;
    padding: 0
    }
.slider-item:hover img {
    transform: scale(1.05)
    }
.slider-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease
    }
.slider-item:hover .overlay {
    opacity: 1
    }
.slider-item .overlay .fas {
    font-size: 40px;
    color: #2196F3
    }
/* Content Type Badge */
.content-type-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase
    }
.content-type-badge.movie {
    background: #FF5722;
    color: white
    }
.content-type-badge.series {
    background: #2196F3;
    color: white
    }
/* Rating Badge */
.rating-badge {
    position: absolute;
    bottom: 55px;
    left: 8px;
    background: rgba(255, 193, 7, 0.9);
    color: #333;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: bold;
    backdrop-filter: blur(10px)
    }
/* Quality Badge */
.quality-badge {
    position: absolute;
    bottom: 55px;
    right: 8px;
    background: rgba(33, 37, 41, 0.9);
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 9px;
    font-weight: bold;
    backdrop-filter: blur(10px)
    }
/* Info Section */
.slider-item .addinfox {
    padding: 10px 12px 12px 12px;
    margin: 0
    }
.slider-item .addinfox .entry-title {
    color: #fff;
    margin: 0 0 6px 0;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 28px
    }
.slider-item .addinfox .info-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 10px;
    margin: 0
    }
.slider-item .addinfox .info-row .date-info {
    color: #bbb;
    display: flex;
    align-items: center
    }
.slider-item .addinfox .info-row .date-info .fas {
    margin-right: 3px;
    color: #2196F3;
    font-size: 9px
    }
.slider-item .addinfox .info-row .watch-link {
    color: #4CAF50;
    font-weight: 600
    }
.slider-item .addinfox .info-row .watch-link .fas {
    margin-right: 3px;
    font-size: 9px
    }
/* HOME MOVIES & SERIES MODERN STYLING */
/* Modern Section Container */
.modern-section {
    background: linear-gradient(135deg, #0d1117 0%, #161b22 100%);
    border-radius: 15px;
    padding: clamp(15px, 4vw, 25px);
    margin-bottom: clamp(20px, 5vw, 30px);
    border: 1px solid #30363d;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
    overflow: hidden
    }
/* Section Header */
.section-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    gap: 20px
    }
/* Title Wrapper */
.section-title-wrapper {
    display: flex;
    align-items: center;
    gap: 15px
    }
.section-icon {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    border-radius: 12px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(33, 150, 243, 0.3)
    }
.section-icon i {
    font-size: 24px;
    color: #fff
    }
.section-title-content {
    flex: 1
    }
.section-title {
    color: #fff;
    font-size: clamp(18px, 4vw, 24px);
    font-weight: 700;
    margin: 0 0 5px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3)
    }
.section-subtitle {
    color: #8b949e;
    font-size: clamp(12px, 3vw, 14px);
    margin: 0;
    font-weight: 400
    }
/* Filter Tabs */
.filter-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap
    }
.filter-tab {
    background: rgba(255, 255, 255, 0.05);
    color: #8b949e;
    padding: 8px 12px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 6px
    }
.filter-tab:hover {
    background: rgba(33, 150, 243, 0.1);
    color: #58a6ff;
    border-color: rgba(33, 150, 243, 0.3);
    transform: translatey(-1px)
    }
.filter-tab.active {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    color: #fff;
    border-color: #2196F3;
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3)
    }
.filter-tab i {
    font-size: 11px
    }
/* View All Button */
.view-all-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3)
    }
.view-all-btn:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translatey(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    color: #fff;
    text-decoration: none
    }
.view-all-btn i {
    font-size: 12px;
    transition: transform 0.3s ease
    }
.view-all-btn:hover i {
    transform: translatex(3px)
    }
.modern-grid, .movies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(clamp(160px, 20vw, 200px), 1fr));
    gap: clamp(15px, 3vw, 25px);
    margin-top: 20px
    }
/* Movie Card */
.movie-card {
    background: #21262d;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #30363d;
    position: relative
    }
.movie-card:hover {
    transform: translatey(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
    border-color: #404952
    }
.card-wrapper {
    height: 100%;
    display: flex;
    flex-direction: column
    }
.card-link {
    text-decoration: none;
    color: inherit;
    flex: 1
    }
/* Card Image */
.card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 2/3;
    background: #161b22;
    z-index: 1
    }
.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease
    }
.movie-card:hover .card-image img {
    transform: scale(1.05)
    }
/* Modern Card Badges - Responsive */
.modern-card-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 20;
    pointer-events: none
    }
.modern-badge {
    border-radius: 6px;
    font-weight: 700;
    font-size: 10px;
    line-height: 1;
    white-space: nowrap;
    text-align: center;
    min-width: 45px;
    padding: 4px 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease
    }
.modern-rating-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px
    }
.modern-rating-badge i {
    font-size: 8px
    }
.modern-quality-badge {
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px
    }
.modern-duration-badge {
    font-size: 9px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px
    }
.modern-duration-badge i {
    font-size: 7px
    }
.modern-content-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 10px;
    padding: 4px 8px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    z-index: 20;
    width: 60px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden
    }
.modern-content-badge i {
    font-size: 8px
    }
/* Responsive Badge Sizing */
/* Hot Updates Section - Modern Design */
.hot-updates-section {
    background: linear-gradient(135deg, #0d1117 0%, #161b22 100%);
    border-radius: 12px;
    padding: clamp(12px, 3vw, 20px);
    margin-bottom: clamp(15px, 4vw, 25px);
    border: 1px solid #30363d;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden
    }
.hot-updates-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF6B35 0%, #F7931E 50%, #FF0040 100%);
    z-index: 1
    }
/* Hot Updates Header */
.hot-updates-section .section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 12px
    }
.hot-icon {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    border-radius: 10px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 12px rgba(255, 107, 53, 0.3);
    animation: hotPulse 2s infinite
    }
@keyframes hotPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 3px 12px rgba(255, 107, 53, 0.3);
        } 50% {
        transform: scale(1.03);
        box-shadow: 0 4px 16px rgba(255, 107, 53, 0.5);
        }
    }
.hot-icon i {
    font-size: 18px;
    color: #fff
    }
/* Live Indicator */
.hot-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 0, 64, 0.1);
    padding: 8px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255, 0, 64, 0.3)
    }
.live-dot {
    width: 8px;
    height: 8px;
    background: #FF0040;
    border-radius: 50%;
    animation: liveBlink 1.5s infinite
    }
@keyframes liveBlink {
    0%, 100% {
        opacity: 1;
        } 50% {
        opacity: 0.3;
        }
    }
.live-text {
    color: #FF0040;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px
    }
/* Hot Updates Grid */
.hot-updates-grid {
    display: flex;
    gap: clamp(10px, 2vw, 15px);
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
    scrollbar-width: none;
    -ms-overflow-style: none
    }
.hot-updates-grid::-webkit-scrollbar {
    display: none
    }
.hot-update-card {
    min-width: clamp(120px, 18vw, 160px);
    max-width: clamp(120px, 18vw, 160px);
    scroll-snap-align: start;
    flex-shrink: 0
    }
/* Hot Updates Scroll Container */
.hot-updates-scroll-container {
    position: relative;
    overflow: hidden
    }

/* Recommendations Scroll Container */
.slider-container, .detail-slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px
    }
/* Hot Update Style for Detail Recommendation Slider */
.los.detail-recommendation-slider {
    display: flex;
    gap: clamp(12px, 2.5vw, 16px);
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 15px 0 20px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    will-change: scroll-position;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 0, 64, 0.05) 100%);
    border-radius: 12px;
    position: relative;
}

.los.detail-recommendation-slider::-webkit-scrollbar {
    display: none;
}

.los.detail-recommendation-slider::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        rgba(13, 17, 23, 0.8) 0%, 
        transparent 5%, 
        transparent 95%, 
        rgba(13, 17, 23, 0.8) 100%);
    pointer-events: none;
    z-index: 5;
    border-radius: 12px;
}
/* Hot Update Responsive Sizing */
.detail-slider-item, .slider-item, .los.detail-recommendation-slider .box {
    min-width: clamp(160px, 20vw, 185px);
    max-width: clamp(160px, 20vw, 185px);
    scroll-snap-align: start;
    flex-shrink: 0;
}

/* Responsive Breakpoints for Hot Updates */
@media (max-width: 768px) {
    .los.detail-recommendation-slider, .detail-recommendation-slider {
        gap: 10px;
        padding: 10px 0 15px 0;
    }
    
    .detail-slider-item, .los.detail-recommendation-slider .box {
        min-width: 140px;
        max-width: 140px;
        width: 140px;
    }
    
    .detail-slider-img, .los.detail-recommendation-slider .box .bx .limit img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .los.detail-recommendation-slider, .detail-recommendation-slider {
        gap: 8px;
        padding: 8px 0 12px 0;
    }
    
    .detail-slider-item, .los.detail-recommendation-slider .box {
        min-width: 120px;
        max-width: 120px;
        width: 120px;
    }
    
    .detail-slider-img, .los.detail-recommendation-slider .box .bx .limit img {
        height: 180px;
    }
    
    .detail-slider-item::after, .los.detail-recommendation-slider .box::after {
        width: 24px;
        height: 24px;
        font-size: 10px;
        top: -6px;
        left: -6px;
    }
}
/* Mobile optimizations for scroll buttons */
/* Enhanced Touch Gestures for Hot Updates */
.hot-updates-grid, .detail-recommendation-slider, .slider-container .los, .los.detail-recommendation-slider {
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scroll-padding-left: 15px;
    scroll-padding-right: 15px;
}
/* Scroll indicators for better UX */
.scroll-container::before, .scroll-container::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 20px;
    pointer-events: none;
    z-index: 5;
    transition: opacity 0.3s ease
    }
.scroll-container::before {
    left: 0;
    background: linear-gradient(90deg, rgba(13, 17, 23, 0.8) 0%, transparent 100%)
    }
.scroll-container::after {
    right: 0;
    background: linear-gradient(270deg, rgba(13, 17, 23, 0.8) 0%, transparent 100%)
    }
/* Hide scroll indicators on small screens */
/* ===========================================
   ENHANCED RESPONSIVE GRID FALLBACKS
   =========================================== */
/* Alternative grid layout for devices that prefer non-scroll */
/* Performance optimizations */
.hot-updates-grid, .detail-recommendation-slider {
    will-change: scroll-position
    }
/* Hot Update Card */
.hot-update-card {
    background: #21262d;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #30363d;
    position: relative
    }
.hot-update-card:hover {
    transform: translatey(-4px);
    box-shadow: 0 12px 24px rgba(255, 107, 53, 0.2);
    border-color: #FF6B35
    }
.hot-card-wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative
    }
.hot-card-link {
    text-decoration: none;
    color: inherit;
    flex: 1
    }
/* Hot Card Image */
.hot-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 2/3;
    background: #161b22
    }
.hot-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease
    }
.hot-update-card:hover .hot-card-image img {
    transform: scale(1.1)
    }
/* Hot Number Badge */
.hot-number-badge {
    position: absolute;
    top: -3px;
    left: -3px;
    background: linear-gradient(135deg, #FF0040 0%, #FF6B35 100%);
    color: #fff;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 700;
    z-index: 25;
    box-shadow: 0 2px 6px rgba(255, 0, 64, 0.4);
    border: 2px solid #21262d
    }
/* Hot Card Overlay */
.hot-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.9) 0%, rgba(255, 0, 64, 0.8) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 20;
    backdrop-filter: blur(5px)
    }
.hot-update-card:hover .hot-card-overlay {
    opacity: 1
    }
/* Hot Play Button */
.hot-play-button {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3)
    }
.hot-play-button:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.3)
    }
.hot-play-button i {
    color: #fff;
    font-size: 16px;
    margin-left: 2px
    }
/* Hot Overlay Info */
.hot-overlay-info {
    text-align: center;
    padding: 0 15px
    }
.hot-overlay-title {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5)
    }
.hot-overlay-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    font-size: 11px
    }
.hot-trend-icon {
    font-size: 12px;
    animation: hotFlame 1s infinite alternate
    }
@keyframes hotFlame {
    0% {
        transform: scale(1) rotate(-2deg);
        } 100% {
        transform: scale(1.1) rotate(2deg);
        }
    }
.hot-trend-text {
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5)
    }
/* Hot Card Info */
.hot-card-info {
    padding: 8px 10px 10px;
    background: #21262d
    }
.hot-card-title {
    margin: 0 0 6px 0;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 30px
    }
.hot-card-title a {
    color: #e6edf3;
    text-decoration: none;
    transition: color 0.3s ease
    }
.hot-card-title a:hover {
    color: #FF6B35
    }
.hot-card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px
    }
.hot-card-type {
    color: #8b949e;
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 107, 53, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid rgba(255, 107, 53, 0.2)
    }
/* Hot Error State */
.hot-error {
    text-align: center;
    padding: 40px 20px;
    color: #8b949e;
    font-size: 16px
    }
.page-title-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px
    }
.page-title-content {
    flex: 1;
    padding-top: 2px;
    }
.page-subtitle {
    font-size: 11px !important;
    color: #8b949e;
    padding: 0 12px !important;
    line-height: 1.2 !important;
    margin: 0 0 8px 0 !important;
    text-align: center !important;
    }
.page-stats {
    justify-content: center !important;
    flex-direction: column;
    align-items: center;
    display: flex;
    gap: 6px !important;
    margin-top: 6px !important;
    flex-wrap: wrap !important;
    width: 100% !important;
    }
.stats-item {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 1px !important;
    font-size: 9px !important;
    padding: 8px 12px;
    color: #8b949e;
    /* font-size: 14px; */
    background: rgba(255, 255, 255, 0.05);
    /* padding: 6px 12px; */
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    }
.stats-item i {
    color: #2196F3;
    font-size: 12px
    }
/* Movies Filter Section */
.movies-filter-section {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1)
    }
.movies-filter-section .filter-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center
    }
.movies-filter-section .filter-tab {
    background: rgba(255, 255, 255, 0.05);
    color: #8b949e;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 120px;
    justify-content: center
    }
.movies-filter-section .filter-tab:hover {
    background: rgba(33, 150, 243, 0.1);
    color: #58a6ff;
    border-color: rgba(33, 150, 243, 0.3);
    transform: translatey(-2px);
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.2)
    }
.movies-filter-section .filter-tab.active {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    color: #fff;
    border-color: #2196F3;
    box-shadow: 0 6px 16px rgba(33, 150, 243, 0.4);
    transform: translatey(-1px)
    }
.movies-filter-section .filter-tab i {
    font-size: 13px
    }
/* Modern Grid */
.modern-grid, .movies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: clamp(15px, 3vw, 25px);
    margin-top: 25px
    }
.modern-movie-card {
    background: #21262d;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #30363d;
    position: relative
    }
.modern-movie-card:hover {
    transform: translatey(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
    border-color: #404952
    }
/* Responsive Design for Movies Page */
/* Card Overlay */
.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
    backdrop-filter: blur(5px)
    }
.movie-card:hover .card-overlay {
    opacity: 1
    }
/* Play Button */
.play-button {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(33, 150, 243, 0.4)
    }
.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(33, 150, 243, 0.6)
    }
.play-button i {
    color: #fff;
    font-size: 20px;
    margin-left: 2px
    }
/* Overlay Info */
.overlay-info {
    text-align: center;
    padding: 0 15px
    }
.overlay-title {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis
    }
.overlay-meta {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 11px
    }
.post-time {
    color: #8b949e;
    display: flex;
    align-items: center;
    gap: 4px
    }
.post-time i {
    font-size: 9px;
    color: #2196F3
    }
/* Card Info */
.card-info {
    padding: 12px 15px 15px;
    background: #21262d
    }
.card-title {
    margin: 0 0 8px 0;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 33px
    }
.card-title a {
    color: #e6edf3;
    text-decoration: none;
    transition: color 0.3s ease
    }
.card-title a:hover {
    color: #58a6ff
    }
.card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px
    }
.card-type {
    color: #8b949e;
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.05);
    padding: 2px 6px;
    border-radius: 4px
    }
.card-type i {
    font-size: 9px;
    color: #2196F3
    }
/* Responsive Design */
/* Loading Animation */
.movie-card img {
    background: linear-gradient(90deg, #21262d 25%, #30363d 50%, #21262d 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite
    }
@keyframes shimmer {
    0% {
        background-position: -200% 0;
        } 100% {
        background-position: 200% 0;
        }
    }
.movie-card img[src] {
    animation: none;
    background: none
    }
/* Smooth Scroll for Filter Tabs */
.filter-tabs {
    scroll-behavior: smooth;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none
    }
.filter-tabs::-webkit-scrollbar {
    display: none
    }
/* Hover overlay for series cards - same as movie cards */
.series-card:hover .card-overlay {
    opacity: 1;
    visibility: visible
    }
.series-card .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.8) 100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2
    }
.modern-series-card:hover .card-overlay {
    opacity: 1;
    visibility: visible
    }
.modern-series-card .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.8) 100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2
    }
/* Also add for hot updates */
.hot-update-card:hover .hot-card-overlay {
    opacity: 1;
    visibility: visible
    }
.hot-update-card .hot-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.8) 100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2
    }
.series-page-section .page-icon {
    background: linear-gradient(135deg, #9C27B0 0%, #673AB7 100%);
    box-shadow: 0 4px 15px rgba(156, 39, 176, 0.3);
    border-radius: 15px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px !important;
    margin-bottom: 4px !important;
    min-width: 36px !important;
    }
.movies-page-section .page-icon {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
    border-radius: 15px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px !important;
    margin-bottom: 4px !important;
    min-width: 36px !important;
    }
.movies-page-section .page-title {
    margin: 0 0 8px 0;
    color: #e6edf3;
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, #2196F3 0%, #1565C0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2
    }
.series-page-section .page-title {
    margin: 0 0 8px 0;
    color: #e6edf3;
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, #9C27B0 0%, #7B1FA2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2
    }
/* ===== 1. BASE FOOTER CONTAINER ===== */
.modern-footer {
    background: linear-gradient(135deg, #0d1117 0%, #161b22 50%, #0d1117 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    margin-top: 60px;
    overflow: hidden
    }

.modern-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #00acc1 20%, #2196F3 50%, #9C27B0 80%, transparent 100%)
    }

/* ===== 2. FOOTER WRAPPER & LAYOUT ===== */
.footer-wrapper {
    max-width: 1390px;
    margin: 0 auto;
    padding: 0 20px
    }

.footer-content {
    padding: 60px 0 40px;
    position: relative;
    z-index: 2
    }

.footer-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: center;
    text-align: center
    }

/* ===== 3. FOOTER SECTIONS ===== */
.footer-section {
    position: relative;
    animation: fadeInUp 0.6s ease-out
    }

.footer-brand {
    padding-right: 0
    }

/* ===== 4. BRAND LOGO SECTION ===== */
.brand-logo {
    margin-bottom: 25px
    }

.footer-logo {
    max-height: 45px;
    width: auto;
    filter: brightness(1.1);
    transition: all 0.3s ease
    }

.footer-logo:hover {
    filter: brightness(1.3);
    transform: scale(1.05)
    }

.brand-description {
    color: #8b949e;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 300
    }

/* ===== 5. SOCIAL LINKS SECTION ===== */
.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center
    }

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.08) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #8b949e;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px)
    }

.social-link:hover {
    transform: translatey(-2px);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff
    }

.social-link.facebook:hover {
    background: linear-gradient(135deg, rgba(24, 119, 242, 0.2) 0%, rgba(24, 119, 242, 0.3) 100%);
    border-color: rgba(24, 119, 242, 0.4);
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.15)
    }

.social-link.twitter:hover {
    background: linear-gradient(135deg, rgba(29, 161, 242, 0.2) 0%, rgba(29, 161, 242, 0.3) 100%);
    border-color: rgba(29, 161, 242, 0.4);
    box-shadow: 0 8px 25px rgba(29, 161, 242, 0.15)
    }

.social-link.youtube:hover {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.2) 0%, rgba(255, 0, 0, 0.3) 100%);
    border-color: rgba(255, 0, 0, 0.4);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.15)
    }

.social-link i {
    font-size: 16px;
    transition: all 0.3s ease
    }

.social-link:hover i {
    transform: scale(1.1)
    }

.social-link:focus {
    outline: 2px solid #00acc1;
    outline-offset: 2px;
    border-radius: 4px
    }

/* ===== 6. FOOTER BOTTOM SECTION ===== */
.footer-bottom {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    margin-top: 20px
    }

.footer-bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    text-align: center
    }

.copyright {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #8b949e;
    font-size: 14px;
    font-weight: 400
    }

.copyright i {
    color: #00acc1;
    font-size: 12px
    }

/* ===== 7. FOOTER ANIMATIONS & EFFECTS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
        } to {
        opacity: 1;
        transform: translateY(0);
        }
    }

/* Subtle background pattern */
.modern-footer::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 25% 25%, rgba(0, 172, 193, 0.05) 0%, transparent 50%), radial-gradient(circle at 75% 75%, rgba(33, 150, 243, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1
    }

/* ===== 8. RESPONSIVE FOOTER DESIGN - MOVED TO ORGANIZED RESPONSIVE SECTION ===== */

/* ==============================================
   END OF FOOTER STYLES
   ============================================== */
/* ===== GENRE PAGE STYLING - USE EXISTING MODERN CARD COMPONENTS ===== */
.genre-card, .genre-grid .modern-genre-card {
    background: #21262d;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #30363d;
    position: relative
    }
.genre-card:hover, .modern-genre-card:hover {
    transform: translatey(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
    border-color: #404952
    }
/* Genre Card Overlay (same as movie cards) */
.genre-card .card-overlay, .modern-genre-card .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
    backdrop-filter: blur(5px)
    }
.genre-card:hover .card-overlay, .modern-genre-card:hover .card-overlay {
    opacity: 1
    }
/* Genre Play Button with green theme */
.genre-page-section .play-button {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4)
    }
.genre-page-section .play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(16, 185, 129, 0.6)
    }
.genre-page-section .play-button i {
    color: #fff;
    font-size: 20px;
    margin-left: 2px
    }
/* Genre Overlay Info */
.genre-page-section .overlay-info {
    text-align: center;
    padding: 0 15px
    }
.genre-page-section .overlay-title {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis
    }
.genre-page-section .overlay-meta {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 11px
    }
.genre-page-section .post-time {
    color: #8b949e;
    display: flex;
    align-items: center;
    gap: 4px
    }
.genre-page-section .card-info {
    padding: 12px 15px 15px;
    background: #21262d
    }
.genre-page-section .card-title {
    margin: 0 0 8px 0;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 33px
    }
.genre-page-section .card-title a {
    color: #e6edf3;
    text-decoration: none;
    transition: color 0.3s ease
    }
.genre-page-section .card-title a:hover {
    color: #34d399
    }
.genre-page-section .card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px
    }
.genre-page-section .card-type {
    color: #8b949e;
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.05);
    padding: 2px 6px;
    border-radius: 4px
    }
.genre-page-section .card-type i {
    font-size: 9px;
    color: #10B981
    }
/* Use existing modern card badges but with genre colors */
/* ===== PAGE-SPECIFIC BADGE COLORS - SAME SIZE, DIFFERENT COLORS ===== */
/* Home Movies & Movies Page - Blue Theme */
.latest .modern-badge.modern-rating-badge, .movies-page-section .modern-badge.modern-rating-badge, .modern-section:not(.series-page-section):not(.genre-page-section) .modern-badge.modern-rating-badge {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000
    }
.latest .modern-badge.modern-quality-badge, .movies-page-section .modern-badge.modern-quality-badge, .modern-section:not(.series-page-section):not(.genre-page-section) .modern-badge.modern-quality-badge {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    color: #fff
    }
.latest .modern-badge.modern-duration-badge, .movies-page-section .modern-badge.modern-duration-badge, .modern-section:not(.series-page-section):not(.genre-page-section) .modern-badge.modern-duration-badge {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: #fff
    }
/* Home Series & Series Page - Purple Theme */
.series-page-section .modern-badge.modern-rating-badge {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000
    }
.series-page-section .modern-badge.modern-quality-badge {
    background: linear-gradient(135deg, #9C27B0 0%, #7B1FA2 100%);
    color: #fff
    }
.series-page-section .modern-badge.modern-duration-badge {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #fff
    }
/* Genre Page - Green Theme */
.genre-page-section .modern-badge.modern-rating-badge {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000
    }
.genre-page-section .modern-badge.modern-quality-badge {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: #fff
    }
.genre-page-section .modern-badge.modern-duration-badge {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #fff
    }
/* ===== PAGE-SPECIFIC CONTENT BADGE COLORS ===== */
.latest .modern-content-badge:not(.series-badge), .movies-page-section .modern-content-badge:not(.series-badge), .modern-section:not(.series-page-section):not(.genre-page-section) .modern-content-badge:not(.series-badge) {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    box-shadow: 0 2px 8px rgba(33, 150, 243, 0.4);
    color: #fff
    }
.series-page-section .modern-content-badge:not(.series-badge) {
    background: linear-gradient(135deg, #9C27B0 0%, #7B1FA2 100%);
    box-shadow: 0 2px 8px rgba(156, 39, 176, 0.4);
    color: #fff
    }
.genre-page-section .modern-content-badge:not(.series-badge) {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.4);
    color: #fff
    }
/* Series Badge - Amber Theme (Same for All Pages) */
.latest .modern-content-badge.series-badge, .movies-page-section .modern-content-badge.series-badge, .series-page-section .modern-content-badge.series-badge, .genre-page-section .modern-content-badge.series-badge, .modern-section .modern-content-badge.series-badge {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.4);
    color: #fff
    }
/* Responsive adjustments for genre page */
/* Print styles */
/* MODERN EPISODES SECTION RESPONSIVE CSS */
/* Desktop & Large Screens */
.episodes-section {
    margin: 30px 0;
    padding: 25px;
    background: #1e1f20;
    border-radius: 10px;
    border: 1px solid #333;
    border-left: 4px solid #9C27B0
    }
.episodes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: clamp(8px, 2vw, 12px);
    margin-top: 15px
    }
.episode-card {
    background: #2a2d30;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid #444;
    cursor: pointer;
    position: relative
    }
.episode-card:hover {
    transform: translatey(-3px);
    border-color: #9C27B0;
    box-shadow: 0 8px 20px rgba(156, 39, 176, 0.3)
    }
.episode-card.active {
    border-color: #9C27B0;
    transform: translatey(-3px);
    box-shadow: 0 8px 20px rgba(156, 39, 176, 0.4)
    }
.episode-active-indicator {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #9C27B0;
    transform: scalex(0);
    transition: transform 0.3s ease;
    border-radius: 0 0 6px 6px
    }
.episode-card.active .episode-active-indicator {
    transform: scalex(1)
    }
.player-tabs {
    margin: 0 0 20px 0;
    padding: 0;
    background: transparent;
    border-radius: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px
    }
.player-tab-button {
    background: #2a2d30;
    color: white;
    border: 2px solid #444;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    min-width: 140px;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.5px
    }
.player-tab-button:hover {
    background: #333640;
    border-color: #555;
    transform: translatey(-2px)
    }
.player-tab-button.active {
    background: #9C27B0;
    border-color: #9C27B0
    }
.player-tab-content {
    display: none
    }
.player-tab-content.active {
    display: block
    }
/* Movies Page Specific Styles */
.movies-page-section {
    position: relative
    }
.movies-page-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2196F3 0%, #1976D2 100%);
    border-radius: 15px 15px 0 0
    }
/* Series Page Specific Styles - MISSING! */
.series-page-section {
    position: relative
    }
.series-page-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #9C27B0 0%, #7B1FA2 100%);
    border-radius: 15px 15px 0 0
    }
.page-title-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px
    }
.page-icon i {
    color: #fff;
    font-size: 24px
    }
.movies-page-section .stats-item i {
    color: #2196F3;
    font-size: 12px
    }
.series-page-section .stats-item i {
    color: #9C27B0;
    font-size: 12px
    }
.modern-movie-card, .modern-series-card {
    background: #21262d;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #30363d;
    position: relative
    }
.modern-movie-card:hover, .modern-series-card:hover {
    transform: translatey(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
    border-color: #404952
    }
/* Detail Movie/Series Specific Styles */
.detail-bookmark {
    cursor: pointer;
    transition: all 0.3s ease
    }
.detail-subheading {
    margin: 30px 0 25px 0;
    padding: 20px;
    background: #1e1f20;
    border-radius: 10px;
    border: 1px solid #333
    }
.detail-subheading h1 {
    color: #fff;
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center
    }
.detail-subheading .film-icon {
    margin-right: 12px;
    color: #2196F3;
    font-size: 22px
    }
.detail-subheading .series-icon {
    margin-right: 12px;
    color: #9C27B0;
    font-size: 22px
    }
.detail-tab-button {
    background: #2a2d30;
    color: white;
    border: 2px solid #444;
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    width: 35%;
    margin: 5px;
    min-height: 45px;
    min-width: 90px;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    }
.detail-tab-button.active {
    background: #2196F3;
    border-color: #2196F3
    }
.detail-tab-button:not(.active) {
    background: #2a2d30;
    border-color: #444
    }
.detail-tab-button i {
    margin-right: 8px;
    color: #fff
    }
.detail-tab-button:not(.active):hover {
    background: #333640;
    border-color: #555;
    transform: translatey(-2px)
    }
.detail-tab-button .fas {
    margin-right: 8px
    }
.detail-tab-content {
    margin: 20px 0
    }
.detail-tab-content:not(.active) {
    display: none
    }
.detail-synops {
    padding: 25px;
    background: #1e1f20;
    border-radius: 10px;
    border: 1px solid #333;
    border-left: 4px solid #2196F3
    }
.detail-synops h3 {
    color: #2196F3;
    margin: 0 0 20px 0;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center
    }
.detail-synops-content {
    background: #2a2d30;
    padding: 20px;
    border-radius: 8px;
    border-left: 3px solid #4CAF50
    }
.detail-synops-content p {
    color: #e0e0e0;
    margin: 0;
    line-height: 1.7;
    font-size: 15px;
    text-align: justify
    }
.detail-recommendations {
    padding: 25px;
    background: #1e1f20;
    border-radius: 10px;
    border: 1px solid #333;
    border-left: 4px solid #FF9800
    }
.detail-recommendations h3 {
    color: #FF9800;
    margin: 0 0 25px 0;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center
    }
.detail-latest-info {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 20px
    }
.detail-latest-badge {
    color: #bbb;
    font-size: 12px;
    display: flex;
    align-items: center
    }
.detail-latest-badge i {
    margin-right: 6px;
    color: #4CAF50
    }
.detail-slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px
    }
/* Enhanced Hot Update Recommendation Slider */
.detail-recommendation-slider {
    display: flex;
    gap: clamp(12px, 2.5vw, 16px);
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 15px 0 20px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    will-change: scroll-position;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 0, 64, 0.05) 100%);
    border-radius: 12px;
    position: relative;
}

.detail-recommendation-slider::-webkit-scrollbar {
    display: none;
}
/* Hot Update Style Cards */
.detail-slider-item, .los.detail-recommendation-slider .box {
    width: clamp(160px, 20vw, 185px);
    min-width: clamp(160px, 20vw, 185px);
    max-width: clamp(160px, 20vw, 185px);
    background: linear-gradient(135deg, #21262d 0%, #1a1f26 100%);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid #30363d;
    scroll-snap-align: start;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.detail-slider-item:hover, .los.detail-recommendation-slider .box:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.25), 0 8px 16px rgba(0, 0, 0, 0.3);
    border-color: #FF6B35;
    z-index: 15;
}

.detail-slider-item::before, .los.detail-recommendation-slider .box::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF0040 100%);
    border-radius: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.detail-slider-item:hover::before, .los.detail-recommendation-slider .box:hover::before {
    opacity: 1;
}
.detail-slider-bx {
    margin: 0;
    padding: 0
    }
.detail-slider-link {
    text-decoration: none;
    color: inherit;
    display: block
    }
.detail-slider-limit {
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
    display: block
    }
/* Hot Update Image Styling */
.detail-slider-img, .los.detail-recommendation-slider .box .bx .limit img {
    width: 100%;
    height: clamp(220px, 30vw, 260px);
    object-fit: cover;
    object-position: center top;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: block;
    margin: 0;
    padding: 0;
    filter: brightness(0.9) contrast(1.1);
}

.detail-slider-item:hover .detail-slider-img, 
.los.detail-recommendation-slider .box:hover .bx .limit img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.2) saturate(1.2);
}

/* Hot Number Badge for Recommendations */
.detail-slider-item::after, .los.detail-recommendation-slider .box::after {
    content: counter(item-counter);
    counter-increment: item-counter;
    position: absolute;
    top: -8px;
    left: -8px;
    background: linear-gradient(135deg, #FF0040 0%, #FF6B35 100%);
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    z-index: 25;
    box-shadow: 0 4px 8px rgba(255, 0, 64, 0.4);
    border: 3px solid #21262d;
    transition: all 0.3s ease;
}

.los.detail-recommendation-slider {
    counter-reset: item-counter;
}

.detail-slider-item:hover::after, .los.detail-recommendation-slider .box:hover::after {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(255, 0, 64, 0.6);
}
/* Hot Update Overlay */
.detail-slider-overlay, .los.detail-recommendation-slider .box .bx .limit .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.9) 0%, rgba(255, 0, 64, 0.85) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(8px);
    border-radius: 12px 12px 0 0;
}

.detail-slider-item:hover .detail-slider-overlay,
.los.detail-recommendation-slider .box:hover .bx .limit .overlay {
    opacity: 1;
    transform: translateY(0);
}

/* Hot Play Button */
.detail-slider-overlay::before, .los.detail-recommendation-slider .box .bx .limit .overlay::before {
    content: "▶";
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    font-size: 16px;
    font-weight: bold;
}

.detail-slider-overlay:hover::before, .los.detail-recommendation-slider .box:hover .bx .limit .overlay:hover::before {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.35);
}

/* Hot Trend Indicator */
.detail-slider-overlay::after, .los.detail-recommendation-slider .box .bx .limit .overlay::after {
    content: "🔥 HOT";
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    animation: hotPulse 2s infinite alternate;
}

@keyframes hotPulse {
    0% { opacity: 0.8; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.05); }
}
.detail-slider-play {
    font-size: 56px;
    color: #2196F3
    }
.detail-series-play {
    font-size: 56px;
    color: #9C27B0
    }
.detail-slider-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start
    }
.detail-badge-left {
    display: flex;
    flex-direction: column;
    gap: 5px
    }
.detail-badge-series {
    background: #9C27B0;
    color: white;
    padding: 3px 6px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase
    }
.detail-badge-movie {
    background: #4CAF50;
    color: white;
    padding: 3px 6px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase
    }
.detail-badge-tag {
    background: #FF9800;
    color: white;
    padding: 3px 6px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600
    }
.detail-badge-quality {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 3px 6px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600
    }
.detail-slider-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px 10px 10px;
    color: white
    }
.detail-slider-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 10px
    }
.detail-slider-rating {
    display: flex;
    align-items: center
    }
.detail-slider-rating i {
    margin-right: 4px;
    color: #FFD700
    }
.detail-slider-duration {
    display: flex;
    align-items: center
    }
.detail-slider-duration i {
    margin-right: 4px;
    color: #4CAF50
    }
/* Hot Update Info Section */
.detail-slider-info, .los.detail-recommendation-slider .box .bx .addinfox {
    padding: 12px 14px 14px 14px;
    margin: 0;
    background: linear-gradient(135deg, #21262d 0%, #1a1f26 100%);
    position: relative;
}

.detail-slider-info::before, .los.detail-recommendation-slider .box .bx .addinfox::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #FF6B35 0%, #FF0040 100%);
}
.detail-slider-header {
    margin: 0
    }
/* Hot Update Title */
.detail-slider-title, .los.detail-recommendation-slider .box .bx .addinfox .entry-title {
    color: #fff;
    margin: 0 0 8px 0;
    font-size: clamp(11px, 1.5vw, 13px);
    font-weight: 700;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: auto;
    min-height: 32px;
    transition: color 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.detail-slider-item:hover .detail-slider-title,
.los.detail-recommendation-slider .box:hover .bx .addinfox .entry-title {
    color: #FF6B35;
    text-shadow: 0 2px 4px rgba(255, 107, 53, 0.3);
}

/* Hot Update Meta Information */
.detail-slider-date, .los.detail-recommendation-slider .box .bx .addinfox .addinfox-text {
    color: #bbb;
    display: flex;
    align-items: center;
    font-size: 10px;
    margin-top: 4px;
}

.detail-slider-date i, .los.detail-recommendation-slider .box .bx .addinfox .addinfox-text i {
    margin-right: 4px;
    color: #FF6B35;
    font-size: 10px;
    transition: color 0.3s ease;
}

.detail-slider-item:hover .detail-slider-date i,
.los.detail-recommendation-slider .box:hover .bx .addinfox .addinfox-text i {
    color: #FF0040;
}

.detail-series-date i {
    color: #FF6B35;
}

.detail-slider-item:hover .detail-series-date i {
    color: #FF0040;
}
.detail-slider-watch {
    color: #4CAF50;
    font-weight: 600
    }
.detail-slider-watch i {
    margin-right: 3px;
    font-size: 9px
    }
.detail-empty-recommendations {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    color: #bbb;
    width: 100%
    }
.detail-empty-content {
    text-align: center
    }
.detail-empty-icon {
    font-size: 48px;
    margin-bottom: 15px;
    color: #FF9800
    }
.detail-empty-title {
    color: #fff;
    margin: 0 0 10px 0;
    font-size: 18px
    }
.detail-empty-text {
    margin: 0;
    font-size: 14px
    }
/* Player and Episode Specific Styles */
.detail-player-hidden {
    display: none
    }
.detail-ready-watch {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background: #1c1c1c;
    border-radius: 10px;
    border: 1px solid #2f3338;
    text-align: center;
    min-height: 442px;
    max-width: 100%
    }
.detail-ready-play-btn {
    background: linear-gradient(135deg, #9C27B0 0%, #7B1FA2 100%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(156, 39, 176, 0.4)
    }
.detail-ready-play-icon {
    color: white;
    font-size: 32px;
    margin-left: 4px
    }
.detail-ready-title {
    color: #9C27B0;
    margin: 0 0 12px 0;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.5px
    }
.detail-ready-text {
    color: #bbb;
    margin: 0 0 8px 0;
    font-size: 16px;
    line-height: 1.5
    }
.detail-ready-note {
    color: #777;
    margin: 0;
    font-size: 13px;
    font-style: italic
    }
.detail-ready-note i {
    margin-right: 6px;
    color: #FF9800
    }
.detail-quality-section {
    margin: 20px 0;
    padding: 20px;
    background: #1e1f20;
    border-radius: 10px;
    border: 1px solid #333
    }
.detail-quality-title {
    color: #fff;
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center
    }
.detail-quality-icon {
    margin-right: 10px;
    color: #2196F3
    }
.detail-series-quality-icon {
    margin-right: 10px;
    color: #9C27B0
    }
.detail-quality-note {
    color: #bbb;
    margin: 0 0 15px 0;
    font-size: 13px;
    font-style: italic
    }
.detail-quality-note i {
    margin-right: 6px;
    color: #FF9800
    }
.detail-server-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center
    }
.detail-player-btn {
    background: #2a2d30;
    color: white;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 12px;
    border: 2px solid #444;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    min-width: 100px;
    justify-content: center
    }
.detail-player-btn:hover:not(.active) {
    background-color: #333640;
    border-color: #555;
    transform: translatey(-2px)
    }
.detail-player-btn.active {
    background: #2196F3;
    border-color: #2196F3
    }
.detail-quality-crown {
    margin-right: 6px;
    color: #FFD700
    }
.detail-quality-gem {
    margin-right: 6px;
    color: #00BCD4
    }
.detail-download-icon {
    margin-right: 10px;
    color: #4CAF50
    }
.detail-download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px
    }
.detail-download-item {
    background: #2a2d30;
    border-radius: 8px;
    padding: 15px;
    transition: all 0.3s ease;
    cursor: pointer
    }
.detail-download-item.direct {
    border-left: 4px solid #4CAF50
    }
.detail-download-item.filemoon {
    border-left: 4px solid #FF9800
    }
.detail-download-item:hover {
    background-color: #333640;
    transform: translatey(-2px)
    }
.detail-download-content {
    display: flex;
    align-items: center;
    justify-content: space-between
    }
.detail-download-info h5 {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center
    }
.detail-download-info p {
    color: #bbb;
    margin: 0;
    font-size: 13px
    }
.detail-download-direct {
    color: #4CAF50
    }
.detail-download-filemoon {
    color: #FF9800
    }
.detail-download-btn {
    color: white;
    padding: 8px 16px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: background 0.3s ease
    }
.detail-download-btn.direct {
    background: #4CAF50
    }
.detail-download-btn.direct:hover {
    background: #45a049
    }
.detail-download-btn.filemoon {
    background: #FF9800
    }
.detail-download-btn.filemoon:hover {
    background: #f57c00
    }
.detail-episodes-section {
    margin: 30px 0;
    padding: 25px;
    background: #1e1f20;
    border-radius: 10px;
    border: 1px solid #333;
    border-left: 4px solid #9C27B0
    }
.detail-episodes-header {
    margin-bottom: 25px
    }
.detail-episodes-title {
    color: #9C27B0;
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center
    }
.detail-episodes-icon {
    margin-right: 12px;
    font-size: 20px
    }
.detail-episodes-note {
    color: #bbb;
    margin: 0;
    font-size: 13px;
    font-style: italic
    }
.detail-no-video {
    margin: 20px 0;
    padding: 20px;
    background: #1e1f20;
    border-radius: 10px;
    border: 1px solid #333;
    text-align: center
    }
.detail-no-video-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column
    }
.detail-no-video-icon {
    font-size: 48px;
    color: #FF9800;
    margin-bottom: 15px
    }
.detail-no-video-title {
    color: #fff;
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 600
    }
.detail-no-video-text {
    color: #bbb;
    margin: 0;
    font-size: 14px
    }
/* Enhanced Mobile Responsiveness for Movies Page */
.detail-series-icon {
    margin-right: 12px;
    color: #9C27B0;
    font-size: 22px
    }
/* ===========================================
   DETAIL PAGE CLEANUP - RECOMMENDATION SLIDER
   =========================================== */
/* Overlay untuk recommendation slider */
.detail-recommendation-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease
    }
.detail-recommendation-overlay:hover {
    opacity: 1
    }
.detail-recommendation-overlay .fas {
    font-size: 56px;
    color: #2196F3
    }
/* Top badges untuk recommendation items */
.detail-recommendation-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start
    }
.detail-recommendation-badges-left {
    display: flex;
    flex-direction: column;
    gap: 5px
    }
.detail-badge-resolution {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 3px 6px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600
    }
/* Bottom info untuk recommendation items */
.detail-recommendation-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px 10px 10px;
    color: white
    }
.detail-recommendation-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 10px
    }
.detail-recommendation-rating {
    display: flex;
    align-items: center
    }
.detail-recommendation-rating .fas {
    margin-right: 4px;
    color: #FFD700
    }
.detail-recommendation-duration {
    display: flex;
    align-items: center
    }
.detail-recommendation-duration .fas {
    margin-right: 4px;
    color: #4CAF50
    }
/* Recommendation item content */
.detail-recommendation-content {
    padding: 10px 12px 12px 12px;
    margin: 0
    }
.detail-recommendation-header {
    margin: 0
    }
.detail-recommendation-title {
    color: #fff;
    margin: 0 0 6px 0;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 28px
    }

.detail-recommendation-date {
    color: #bbb;
    display: flex;
    align-items: center
    }
.detail-recommendation-date .fas {
    margin-right: 3px;
    color: #2196F3;
    font-size: 9px
    }
.detail-recommendation-watch {
    color: #4CAF50;
    font-weight: 600
    }
.detail-recommendation-watch .fas {
    margin-right: 3px;
    font-size: 9px
    }
/* Empty state */
.detail-empty-state {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    color: #bbb;
    width: 100%
    }
.detail-empty-content .fas {
    font-size: 48px;
    margin-bottom: 15px;
    color: #FF9800
    }
/* ===========================================
   PLAYER TABS STYLING
   =========================================== */
/* Tab container */
.detail-player-tabs {
    margin: 20px 0 0 0;
    padding: 0;
    background: transparent;
    border-radius: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center
    }
.detail-tab-hardsub {
    color: #4CAF50 !important
    }
.detail-tab-softsub {
    color: #2196F3 !important
    }
.detail-tab-raw {
    color: #FF9800 !important
    }
.detail-tab-default {
    color: #9C27B0 !important
    }
/* ===========================================
   TAB SINOPSIS & REKOMENDASI ICON COLORS
   =========================================== */
/* Tab button icons */
.tab-button .fa-book-open {
    color: #2196F3 !important
    }
.tab-button .fa-thumbs-up {
    color: #FF9800 !important
    }
/* Section title icons */
.detail-synops-icon {
    color: #2196F3 !important
    }
.detail-recommendations-icon {
    color: #FF9800 !important
    }
/* Latest update badge icon */
.detail-latest-badge .fa-clock {
    color: #4CAF50 !important
    }
/* Recommendation overlay icon */
.detail-recommendation-overlay .fa-play-circle {
    color: #fff !important;
    opacity: 0.9
    }
/* Recommendation meta icons */
.detail-recommendation-rating .fa-star {
    color: #000 !important
    }
.detail-recommendation-duration .fa-clock {
    color: #00BCD4 !important
    }
.detail-recommendation-date .fa-calendar {
    color: #9C27B0 !important
    }
.detail-recommendation-watch .fa-eye {
    color: #4CAF50 !important
    }
/* ===========================================
   ADDITIONAL MISSING ICON COLORS
   =========================================== */
/* Empty state icons */
.detail-empty-content .fa-exclamation-circle {
    color: #FF9800 !important
    }
.detail-no-video-content .fa-exclamation-triangle {
    color: #FF9800 !important
    }
/* Download section icons */
.detail-download-title .fa-download {
    color: #4CAF50 !important
    }
.detail-download-info .fa-cloud-download-alt {
    color: #4CAF50 !important
    }
.detail-download-info .fa-moon {
    color: #FF9800 !important
    }
/* Subtitle section icons */
.detail-subtitle-info .fa-file-alt {
    color: #2196F3 !important
    }
.detail-subtitle-info .fa-info-circle {
    color: #FF9800 !important
    }
.detail-subtitle-download .fa-download {
    color: #fff !important
    }
/* Quality section icons */
.detail-quality-title .fa-play-circle {
    color: #2196F3 !important
    }
.detail-quality-description .fa-info-circle {
    color: #FF9800 !important
    }
/* ===========================================
   MOVIES & SERIES PAGINATION STYLING
   =========================================== */
/* Movie pagination styling */
.movie-pagination {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 20px;
    margin-top: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center
    }
.movie-pagination .page-numbers {
    display: inline-block;
    position: relative;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.05);
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #8b949e;
    margin: 0 4px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 600;
    pointer-events: all !important;
    cursor: pointer !important;
    z-index: 99 !important
    }
.movie-pagination .page-numbers:hover {
    background: rgba(33, 150, 243, 0.1);
    color: #58a6ff;
    border-color: rgba(33, 150, 243, 0.3);
    transform: translatey(-1px);
    text-decoration: none
    }
.movie-pagination .page-numbers.current {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    color: #fff;
    border-color: #2196F3;
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3)
    }
.movie-pagination .page-numbers.dots {
    background: transparent;
    border: none;
    color: #484f58;
    cursor: default
    }
.movie-pagination .prev.page-numbers, .movie-pagination .next.page-numbers {
    font-weight: 700;
    padding: 10px 20px;
    pointer-events: all !important;
    cursor: pointer !important;
    z-index: 100 !important
    }
.movie-pagination .prev.page-numbers:hover, .movie-pagination .next.page-numbers:hover {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    border-color: #10b981;
    text-decoration: none
    }
.movie-pagination .prev.page-numbers .fa-chevron-left, .movie-pagination .next.page-numbers .fa-chevron-right {
    color: inherit !important
    }
.movie-pagination .pagination-info {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1)
    }
.movie-pagination .page-info {
    color: #8b949e;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 12px;
    border-radius: 20px
    }
.movie-pagination .page-info i {
    color: #2196F3 !important;
    font-size: 12px
    }
.movie-pagination .pagination-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap
    }
/* Series pagination (same styling) */
.series-pagination {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 20px;
    margin-top: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center
    }
.series-pagination .page-numbers {
    display: inline-block;
    position: relative;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.05);
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #8b949e;
    margin: 0 4px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 600;
    pointer-events: all !important;
    cursor: pointer !important;
    z-index: 99 !important
    }
.series-pagination .page-numbers:hover {
    background: rgba(156, 39, 176, 0.1);
    color: #e1bee7;
    border-color: rgba(156, 39, 176, 0.3);
    transform: translatey(-1px);
    text-decoration: none
    }
.series-pagination .page-numbers.current {
    background: linear-gradient(135deg, #9C27B0 0%, #7B1FA2 100%);
    color: #fff;
    border-color: #9C27B0;
    box-shadow: 0 4px 12px rgba(156, 39, 176, 0.3)
    }
.series-pagination .page-numbers.dots {
    background: transparent;
    border: none;
    color: #484f58;
    cursor: default
    }
.series-pagination .prev.page-numbers, .series-pagination .next.page-numbers {
    font-weight: 700;
    padding: 10px 20px;
    pointer-events: all !important;
    cursor: pointer !important;
    z-index: 100 !important
    }
.series-pagination .prev.page-numbers:hover, .series-pagination .next.page-numbers:hover {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    border-color: #10b981;
    text-decoration: none
    }
.series-pagination .prev.page-numbers .fa-chevron-left, .series-pagination .next.page-numbers .fa-chevron-right {
    color: inherit !important
    }
.series-pagination .pagination-info {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1)
    }
.series-pagination .page-info {
    color: #8b949e;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 12px;
    border-radius: 20px
    }
.series-pagination .page-info i {
    color: #9C27B0 !important;
    font-size: 12px
    }
.series-pagination .pagination-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap
    }
/* Responsive pagination */
/* ===========================================
   MOVIES & SERIES PAGE ICON COLORS
   =========================================== */
/* Movies page icons */
.movies-page-section .page-icon .fa-film {
    color: #2196F3 !important
    }
.movies-page-section .stats-item .fa-video {
    color: #2196F3 !important
    }
.movies-page-section .card-overlay .fa-play {
    color: #fff !important
    }
.movies-page-section .overlay-meta .fa-clock {
    color: #00BCD4 !important
    }
.movies-page-section .card-meta .fa-calendar {
    color: #FF9800 !important
    }
.movies-page-section .modern-rating-badge .fa-star {
    color: #000 !important
    }
.movies-page-section .modern-content-badge .fa-film {
    color: #fff !important
    }
.movies-page-section .modern-duration-badge .fa-globe {
    color: #fff !important
    }
.series-page-section .page-icon .fa-tv {
    color: #9C27B0 !important
    }
.series-page-section .stats-item .fa-tv {
    color: #9C27B0 !important
    }
.series-page-section .card-overlay .fa-play {
    color: #fff !important
    }
.series-page-section .overlay-meta .fa-clock {
    color: #00BCD4 !important
    }
.series-page-section .card-meta .fa-calendar {
    color: #FF9800 !important
    }
.series-page-section .modern-rating-badge .fa-star {
    color: #000 !important
    }
.series-page-section .modern-content-badge .fa-tv {
    color: #fff !important
    }
.series-page-section .modern-duration-badge .fa-flag-checkered {
    color: #fff !important
    }
/* ===== MISSING SERIES CARD FIXES ===== */
/* Fix icon bintang hitam di series-card */
.series-card .modern-rating-badge .fa-star, .modern-series-card .modern-rating-badge .fa-star, .series-card .fa-star, .modern-series-card .fa-star {
    color: #000 !important
    }
/* Fix missing basic series card styling */
.series-card, .modern-series-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #1e1f20;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1)
    }
.series-card:hover, .modern-series-card:hover {
    transform: translatey(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2)
    }
/* Fix series card image container */
.series-card .card-image, .modern-series-card .card-image {
    position: relative;
    overflow: hidden;
    flex-shrink: 0
    }
.series-card .card-image img, .modern-series-card .card-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease
    }
.series-card:hover .card-image img, .modern-series-card:hover .card-image img {
    transform: scale(1.05)
    }
/* Fix missing card info styling untuk series card */
.series-card .card-info, .modern-series-card .card-info {
    padding: 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px
    }
.series-card .card-title, .modern-series-card .card-title {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
    margin: 0 0 8px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis
    }
.series-card .card-title a, .modern-series-card .card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease
    }
.series-card .card-title a:hover, .modern-series-card .card-title a:hover {
    color: #9C27B0
    }
.series-card .card-meta, .modern-series-card .card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: #999;
    margin-top: auto
    }
.series-card .card-meta .fa-calendar, .modern-series-card .card-meta .fa-calendar {
    color: #FF9800 !important
    }
/* Player quality section */
.detail-player-quality-section {
    margin: 20px 0;
    padding: 20px;
    background: #1e1f20;
    border-radius: 10px;
    border: 1px solid #333
    }
.detail-quality-title .fas {
    margin-right: 10px;
    color: #2196F3
    }
.detail-quality-description {
    color: #bbb;
    margin: 0 0 15px 0;
    font-size: 13px;
    font-style: italic
    }
.detail-quality-description .fas {
    margin-right: 6px;
    color: #FF9800
    }
/* Player quality buttons */
.detail-player-btn:not(.active):hover {
    background: #333640;
    border-color: #555;
    transform: translatey(-2px);
    color: white;
    text-decoration: none
    }
.detail-player-btn .fas {
    margin-right: 6px
    }
.detail-player-btn .fa-crown {
    color: #FFD700 !important
    }
.detail-player-btn .fa-gem {
    color: #00BCD4 !important
    }
.detail-player-btn .fa-dot-circle {
    color: #4CAF50 !important
    }
/* Empty player state */
.detail-no-player {
    color: #bbb;
    margin: 0;
    font-style: italic
    }
/* ===========================================
   SUBTITLE INFO STYLING
   =========================================== */
.detail-subtitle-available {
    padding: 20px;
    background: #1e1f20;
    border-radius: 10px;
    border: 1px solid #333;
    border-left: 4px solid #2196F3
    }
.detail-subtitle-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px
    }
.detail-subtitle-info {
    display: flex;
    align-items: center
    }
.detail-subtitle-info .fas {
    margin-right: 12px;
    color: #2196F3;
    font-size: 20px
    }
.detail-subtitle-title {
    color: #2196F3;
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 600
    }
.detail-subtitle-description {
    color: #bbb;
    margin: 0;
    font-size: 13px
    }
.detail-subtitle-download {
    background: #2196F3;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: background 0.3s ease;
    display: inline-flex;
    align-items: center
    }
.detail-subtitle-download:hover {
    background: #1976D2;
    color: white;
    text-decoration: none
    }
.detail-subtitle-download .fas {
    margin-right: 8px
    }
/* No subtitle available */
.detail-subtitle-unavailable {
    padding: 20px;
    background: #1e1f20;
    border-radius: 10px;
    border: 1px solid #333;
    border-left: 4px solid #FF9800
    }
.detail-subtitle-unavailable .detail-subtitle-info .fas {
    color: #FF9800
    }
.detail-subtitle-unavailable .detail-subtitle-title {
    color: #FF9800
    }
/* ===========================================
   NO VIDEO OPTIONS STYLING
   =========================================== */
.detail-no-video-content .fas {
    font-size: 48px;
    color: #FF9800;
    margin-bottom: 15px
    }
/* ===========================================
   DOWNLOAD SECTION STYLING
   =========================================== */
.detail-download-section {
    margin: 25px 0;
    padding: 15px;
    background: #1e1f20;
    border-radius: 10px;
    border: 1px solid #333
    }
.detail-download-title {
    color: #fff;
    margin: 0 0 20px 0;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center
    }
.detail-download-title .fas {
    margin-right: 10px;
    color: #4CAF50
    }
/* Download items */
.detail-download-item:hover {
    background: #333640;
    transform: translatey(-2px)
    }
.detail-download-item-direct {
    border-left: 4px solid #4CAF50
    }
.detail-download-item-filemoon {
    border-left: 4px solid #FF9800
    }
.detail-download-info .fas {
    margin-right: 8px
    }
.detail-download-info h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center
    }
.detail-download-info p {
    margin: 0;
    font-size: 13px;
    color: #bbb
    }
.detail-download-direct h4 {
    color: #4CAF50
    }
.detail-download-filemoon h4 {
    color: #FF9800
    }
.detail-download-btn {
    padding: 8px 16px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: background 0.3s ease;
    color: white
    }
.detail-download-btn-direct {
    background: #4CAF50
    }
.detail-download-btn-direct:hover {
    background: #45a049;
    color: white;
    text-decoration: none
    }
.detail-download-btn-filemoon {
    background: #FF9800
    }
.detail-download-btn-filemoon:hover {
    background: #f57c00;
    color: white;
    text-decoration: none
    }
/* ===========================================
   RESPONSIVE IMPROVEMENTS
   =========================================== */
/* ===========================================
   DETAIL SERIES PAGE SPECIFIC STYLES
   =========================================== */
/* Series specific colors and styling */
.detail-series-icon {
    color: #9C27B0
    }
.detail-series-date {
    color: #9C27B0
    }
/* Series slider styling - purple theme */
.detail-slider-rating .fas {
    margin-right: 4px;
    color: #FFD700
    }
.detail-slider-duration .fas {
    margin-right: 4px;
    color: #4CAF50
    }
.detail-slider-date .fas {
    margin-right: 3px;
    font-size: 9px
    }
.detail-slider-watch .fas {
    margin-right: 3px;
    font-size: 9px
    }
/* Ready to watch section */
.detail-ready-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background: #1c1c1c;
    border-radius: 10px;
    border: 1px solid #2f3338;
    text-align: center;
    min-height: 442px;
    max-width: 884px;
    margin: 0 auto;
    position: relative
    }
.detail-ready-play-button {
    background: linear-gradient(135deg, #9C27B0 0%, #7B1FA2 100%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(156, 39, 176, 0.4);
    animation: pulse 2s infinite
    }
.detail-ready-play-button .fas {
    color: white;
    font-size: 32px;
    margin-left: 4px
    }
.detail-ready-description {
    color: #bbb;
    margin: 0 0 8px 0;
    font-size: 16px;
    line-height: 1.5
    }
.detail-ready-info {
    color: #777;
    margin: 0;
    font-size: 13px;
    font-style: italic
    }
.detail-ready-info .fas {
    margin-right: 6px;
    color: #FF9800
    }
.detail-episode-subtitle-btn {
    background: #FF9800;
    color: white;
    border-color: #FF9800
    }
.detail-episode-subtitle-btn:hover {
    background: #f57c00;
    border-color: #f57c00;
    color: white;
    text-decoration: none
    }
.detail-episode-download-info h5 {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center
    }
.detail-episode-download-info p {
    margin: 0;
    font-size: 13px;
    color: #bbb
    }
.detail-episode-download-info .fas {
    margin-right: 8px
    }
.detail-episode-download-direct h5 {
    color: #4CAF50
    }
.detail-episode-download-filemoon h5 {
    color: #FF9800
    }
.detail-episode-download-btn {
    padding: 8px 16px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: background 0.3s ease;
    color: white
    }
.detail-episode-download-btn-direct {
    background: #4CAF50
    }
.detail-episode-download-btn-direct:hover {
    background: #45a049;
    color: white;
    text-decoration: none
    }
.detail-episode-download-btn-filemoon {
    background: #FF9800
    }
.detail-episode-download-btn-filemoon:hover {
    background: #f57c00;
    color: white;
    text-decoration: none
    }
/* Episodes section */
.detail-episodes-title .fas {
    margin-right: 12px;
    font-size: 20px
    }
.detail-episodes-description {
    color: #bbb;
    margin: 0;
    font-size: 13px;
    font-style: italic
    }
.detail-episodes-description .fas {
    margin-right: 6px;
    color: #FF9800
    }
.detail-player-tab-button {
    color: white;
    border: 2px solid #444;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    min-width: 140px;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: #2a2d30
    }
.detail-player-tab-button.active {
    background: #9C27B0;
    border-color: #9C27B0
    }
.detail-player-tab-button:not(.active):hover {
    background: #333640;
    border-color: #555;
    transform: translatey(-2px)
    }
.detail-player-tab-button .fas {
    margin-right: 8px;
    color: #fff
    }
/* Episode info */
.detail-episode-info {
    margin-bottom: 20px;
    padding: 15px;
    background: #2a2d30;
    border-radius: 8px;
    border-left: 3px solid #4CAF50
    }
.detail-episode-info-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px
    }
.detail-episode-info-main {
    display: flex;
    align-items: center
    }
.detail-episode-info-main .fas {
    margin-right: 12px;
    color: #9C27B0;
    font-size: 18px
    }
.detail-episode-info-title {
    color: #9C27B0;
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 600
    }
.detail-episode-info-count {
    color: #bbb;
    margin: 0;
    font-size: 12px
    }
.detail-episode-info-id {
    color: #666;
    font-size: 11px;
    font-family: monospace
    }
/* ===========================================
   REMAINING CLEANUP CLASSES FOR SERIES
   =========================================== */
/* Synopsis section specific purple border */
.detail-synops-purple-border {
    border-left: 4px solid #9C27B0
    }
.detail-synops-title-purple {
    color: #9C27B0
    }
.detail-episodes-scroll-container {
    position: relative
    }
.detail-scroll-button {
    position: absolute;
    top: 50%;
    transform: translatey(-50%);
    z-index: 10;
    background: linear-gradient(135deg, #9C27B0 0%, #7B1FA2 100%);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(156, 39, 176, 0.3);
    transition: all 0.3s ease
    }
.detail-scroll-button:hover {
    transform: translatey(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(156, 39, 176, 0.5)
    }
.detail-scroll-button-left {
    left: -15px
    }
.detail-scroll-button-right {
    right: -15px
    }
.detail-episodes-grid-horizontal {
    display: flex;
    gap: 12px;
    margin-top: 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 30px;
    scrollbar-width: thin;
    scrollbar-color: #9C27B0 #2a2d30
    }
.detail-episodes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
    margin-top: 15px
    }
.detail-episode-card {
    background: #2a2d30;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid #444;
    cursor: pointer;
    position: relative
    }
.detail-episode-card-horizontal {
    flex-shrink: 0;
    width: 140px
    }
.detail-episode-card:hover {
    transform: translatey(-3px);
    border-color: #9C27B0;
    box-shadow: 0 8px 20px rgba(156, 39, 176, 0.3)
    }
.detail-episode-card.active {
    border-color: #9C27B0;
    transform: translatey(-3px);
    box-shadow: 0 8px 20px rgba(156, 39, 176, 0.4)
    }
.detail-episode-new-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: linear-gradient(45deg, #FF6B6B, #FF8E53);
    color: white;
    padding: 3px 6px;
    border-radius: 12px;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2
    }
.detail-episode-new-badge .fas {
    margin-right: 2px
    }
.detail-episode-card-content {
    padding: 15px;
    text-align: center
    }
.detail-episode-play-button {
    background: linear-gradient(135deg, #9C27B0 0%, #7B1FA2 100%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    box-shadow: 0 4px 12px rgba(156, 39, 176, 0.3)
    }
.detail-episode-play-button .fas {
    color: white;
    font-size: 16px;
    margin-left: 2px
    }
.detail-episode-card-title {
    color: #fff;
    margin: 0 0 6px 0;
    font-size: 14px;
    font-weight: 600
    }
.detail-episode-card-meta {
    color: #bbb;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center
    }
.detail-episode-card-meta .fas {
    margin-right: 4px;
    color: #9C27B0;
    font-size: 10px
    }
.detail-episode-active-indicator {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #9C27B0;
    transform: scalex(0);
    transition: transform 0.3s ease;
    border-radius: 0 0 6px 6px
    }
.detail-episode-card.active .detail-episode-active-indicator {
    transform: scalex(1)
    }
/* No episodes available */
.detail-no-episodes {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    color: #bbb
    }
.detail-no-episodes-content {
    text-align: center
    }
.detail-no-episodes-content .fas {
    font-size: 48px;
    margin-bottom: 15px;
    color: #FF9800
    }
.detail-no-episodes-title {
    color: #fff;
    margin: 0 0 10px 0;
    font-size: 18px
    }
.detail-no-episodes-text {
    margin: 0;
    font-size: 14px
    }
/* Custom scrollbar for horizontal episode scroll */
.detail-episodes-grid-horizontal::-webkit-scrollbar {
    height: 8px
    }
.detail-episodes-grid-horizontal::-webkit-scrollbar-track {
    background: #2a2d30;
    border-radius: 4px
    }
.detail-episodes-grid-horizontal::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #9C27B0, #7B1FA2);
    border-radius: 4px
    }
/* Subtitle info container - FIXED */
.detail-subtitle-container {
    margin: 20px 0;
    padding: 0
    }
/* Notification icon fix */
.notification-icon {
    margin-right: 8px
    }
/* JavaScript generated player buttons */
.detail-dynamic-player-btn {
    background: #2a2d30;
    color: white;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 12px;
    border: 2px solid #444;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    min-width: 100px;
    justify-content: center;
    margin-right: 10px;
    margin-bottom: 10px
    }
.detail-dynamic-player-btn:not(.active):hover {
    background: #333640;
    border-color: #555;
    transform: translatey(-2px);
    color: white;
    text-decoration: none
    }
.detail-dynamic-player-btn .fas {
    margin-right: 6px
    }
.detail-dynamic-player-btn .fa-crown {
    color: #FFD700 !important
    }
.detail-dynamic-player-btn .fa-gem {
    color: #00BCD4 !important
    }
.detail-dynamic-player-btn .fa-dot-circle {
    color: #4CAF50 !important
    }
/* No player options available message */
/* Episode notification specific styling */
.detail-episode-notification-content {
    display: flex;
    align-items: center
    }
.detail-episode-notification-icon {
    margin-right: 10px;
    font-size: 18px
    }
.detail-episode-notification-title {
    font-size: 14px;
    margin-bottom: 2px
    }
.detail-episode-notification-message {
    font-size: 12px;
    opacity: 0.9
    }
/* Genre page icon fixes - MISSING RULES */
.genre-page-section .modern-rating-badge .fa-star {
    color: #000 !important
    }
.genre-page-section .modern-content-badge .fa-tv {
    color: #fff !important
    }
.genre-page-section .modern-content-badge .fa-film {
    color: #fff !important
    }
/* ===== RESPONSIVE SERIES CARD CONSISTENCY ===== */
/* ===== GENRE PAGE STYLING - MODERN AND PROFESSIONAL ===== */
/* Genre page styling - modern and professional with different color scheme */
.genre-page-section {
    position: relative
    }
.genre-page-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10B981 0%, #059669 100%);
    border-radius: 15px 15px 0 0
    }
.genre-page-header, .series-page-header, .movies-page-header {
    margin-bottom: 30px
    }
.genre-page-section .page-title-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px
    }
.genre-page-section .page-icon {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    border-radius: 15px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px !important;
    margin-bottom: 4px !important;
    min-width: 36px !important;
    }
.genre-page-section .page-icon i {
    color: #fff;
    font-size: 24px
    }
.genre-page-section .page-title-content {
    flex: 1
    }
.genre-page-section .page-title {
    margin: 0 0 8px 0;
    color: #e6edf3;
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, #10B981 0%, #047857 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    }
.genre-page-section .stats-item i {
    color: #10B981;
    font-size: 12px
    }
/* Genre Grid */
.genre-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: clamp(15px, 3vw, 25px);
    margin-top: 25px
    }
.modern-genre-card {
    background: #21262d;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #30363d;
    position: relative
    }
.modern-genre-card:hover {
    transform: translatey(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
    border-color: #404952
    }
/* Genre pagination styling - avoid AJAX interference */
.genre-pagination {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 20px;
    margin-top: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center
    }
.genre-pagination .page-numbers {
    display: inline-block;
    position: relative;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.05);
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #8b949e;
    margin: 0 4px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 600;
    pointer-events: all !important;
    cursor: pointer !important;
    z-index: 99 !important
    }
.genre-pagination .page-numbers:hover {
    background: rgba(16, 185, 129, 0.1);
    color: #34d399;
    border-color: rgba(16, 185, 129, 0.3);
    transform: translatey(-1px)
    }
.genre-pagination .page-numbers.current {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: #fff;
    border-color: #10B981;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3)
    }
.genre-pagination .page-numbers.dots {
    background: transparent;
    border: none;
    color: #484f58;
    cursor: default
    }
.genre-pagination .prev.page-numbers, .genre-pagination .next.page-numbers {
    font-weight: 700;
    padding: 10px 20px;
    pointer-events: all !important;
    cursor: pointer !important;
    z-index: 100 !important
    }
.genre-pagination .prev.page-numbers:hover, .genre-pagination .next.page-numbers:hover {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #fff;
    border-color: #f59e0b
    }
.genre-pagination .pagination-info {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1)
    }
.genre-pagination .page-info {
    color: #8b949e;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 12px;
    border-radius: 20px
    }
.genre-pagination .page-info i {
    color: #10B981;
    font-size: 12px
    }
.genre-pagination .pagination-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap
    }
/* Responsive Design for Genre Page */
/* =============================================
   SEARCH PAGE BLUE THEME OVERRIDE
   ============================================= */
/* Search Theme Blue Color Override */
.search-theme::before {
    background: linear-gradient(90deg, #00acc1 0%, #2196F3 100%) !important
    }
.search-theme .page-icon {
    background: linear-gradient(135deg, #00acc1 0%, #2196F3 100%) !important;
    box-shadow: 0 4px 15px rgba(0, 172, 193, 0.3) !important
    }
.search-theme .page-title {
    background: linear-gradient(135deg, #00acc1 0%, #2196F3 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important
    }
.search-theme .stats-item i {
    color: #00acc1 !important
    }
.search-theme .stats-item:hover {
    background: rgba(0, 172, 193, 0.1) !important;
    color: #00acc1 !important;
    border-color: rgba(0, 172, 193, 0.3) !important
    }
.search-theme.genre-pagination .page-numbers:hover {
    background: rgba(0, 172, 193, 0.1) !important;
    color: #00acc1 !important;
    border-color: rgba(0, 172, 193, 0.3) !important
    }
.search-theme.genre-pagination .page-numbers.current {
    background: linear-gradient(135deg, #00acc1 0%, #2196F3 100%) !important;
    border-color: #00acc1 !important;
    box-shadow: 0 4px 12px rgba(0, 172, 193, 0.3) !important
    }
.search-theme.genre-pagination .prev.page-numbers:hover, .search-theme.genre-pagination .next.page-numbers:hover {
    background: linear-gradient(135deg, #2196F3 0%, #00acc1 100%) !important;
    border-color: #2196F3 !important
    }
.search-theme.genre-pagination .page-info i {
    color: #00acc1 !important
    }
/* ===== HEADER SEMANTIC IMPROVEMENTS ===== */
.bookmark-icon {
    margin-right: 5px
    }
/* ===== SOCIAL SHARE INFO BOXES ===== */
/* 4. SOCIAL INFORMATION BOXES */
.social-download-info {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    padding: 15px;
    width: auto;
    text-align: center;
    color: #212529;
    margin-bottom: 15px;
    border-radius: 10px;
    border: 2px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    font-weight: 600
}

.social-request-info {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    padding: 15px;
    width: auto;
    text-align: center;
    color: #155724;
    margin-bottom: 15px;
    border-radius: 10px;
    border: 2px solid #c3e6cb;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.15);
    font-weight: 600
}

.social-vpn-info {
    background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%);
    padding: 15px;
    width: auto;
    text-align: center;
    color: #0c5460;
    margin-bottom: 15px;
    border-radius: 10px;
    border: 2px solid #bee5eb;
    box-shadow: 0 2px 8px rgba(23, 162, 184, 0.15);
    font-weight: 600
}

.social-browser-info {
    background: linear-gradient(135deg, #d4f6f3 0%, #a7f0e4 100%);
    padding: 15px;
    width: auto;
    text-align: center;
    color: #0d4f47;
    margin-bottom: 15px;
    border-radius: 10px;
    border: 2px solid #a7f0e4;
    box-shadow: 0 2px 8px rgba(32, 201, 151, 0.15);
    font-weight: 600
}

.social-drive-info {
    background: linear-gradient(135deg, #f0f9d8 0%, #e8f5c8 100%);
    padding: 15px;
    width: auto;
    text-align: center;
    color: #3d5016;
    margin-bottom: 15px;
    border-radius: 10px;
    border: 2px solid #e8f5c8;
    box-shadow: 0 2px 8px rgba(111, 171, 24, 0.15);
    font-weight: 600
}

.social-info-alert {
    background: linear-gradient(135deg, #cce7ff 0%, #b3d9ff 100%);
    padding: 20px;
    width: auto;
    color: #004085;
    margin-bottom: 20px;
    border-radius: 12px;
    border: 2px solid #b3d9ff;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.15);
    font-weight: 500;
    line-height: 1.6
}

.social-info-alert p {
    margin-bottom: 10px;
    line-height: 1.6
}

/* 5. SOCIAL TEXT COLORS */
.social-text-red {
    color: #dc3545;
    font-weight: 600
}

.social-text-dark {
    color: #495057;
    font-weight: 600
}

.social-text-blue {
    color: #007bff;
    font-weight: 600
}

/* 7. RESPONSIVE SOCIAL SHARE DESIGN - MOVED TO ORGANIZED RESPONSIVE SECTION */

/* ===== END OF SOCIAL SHARE STYLES ===== */
/* ===== BOOKMARK PAGE STYLES ===== */
/* Main bookmark container */
.bookmark-container {
    background: linear-gradient(135deg, #0d1117 0%, #161b22 100%);
    border-radius: 15px;
    padding: clamp(15px, 5vw, 30px);
    border: 1px solid #30363d;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
    margin-bottom: clamp(15px, 4vw, 30px)
    }
/* Bookmark header section */
.bookmark-header {
    margin-bottom: clamp(20px, 5vw, 30px);
    text-align: center
    }
.bookmark-header-title-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    padding: clamp(10px, 3vw, 15px) clamp(15px, 5vw, 25px);
    border-radius: 12px;
    margin-bottom: clamp(15px, 4vw, 20px)
    }
.bookmark-header-icon {
    font-size: clamp(20px, 6vw, 28px);
    color: #fff;
    margin-right: clamp(8px, 3vw, 15px)
    }
.bookmark-header-title {
    color: #fff;
    font-size: clamp(18px, 5vw, 24px);
    font-weight: 700;
    margin: 0
    }
.bookmark-header-description {
    color: #e6edf3;
    font-size: clamp(13px, 4vw, 16px);
    margin: 0 auto;
    max-width: 600px;
    line-height: 1.6;
    padding: 0 15px;
    text-align: center
    }
/* Bookmark stats section */
.bookmark-stats {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: clamp(15px, 4vw, 20px);
    margin-bottom: clamp(20px, 5vw, 30px);
    border: 1px solid #30363d
    }
.bookmark-stats-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: clamp(10px, 3vw, 15px)
    }
.bookmark-stats-info {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 200px
    }
.bookmark-stats-icon {
    font-size: clamp(16px, 4vw, 20px);
    color: #58a6ff;
    margin-right: clamp(6px, 2vw, 10px)
    }
.bookmark-stats-text {
    color: #e6edf3;
    font-size: clamp(13px, 3.5vw, 16px)
    }
.bookmark-clear-btn {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    border: none;
    padding: clamp(8px, 2vw, 10px) clamp(15px, 4vw, 20px);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: none;
    font-size: clamp(12px, 3vw, 14px);
    white-space: nowrap
    }
.bookmark-clear-icon {
    margin-right: clamp(4px, 1vw, 8px)
    }
.bookmark-progress-track {
    background: #1e293b;
    border-radius: 8px;
    height: 8px;
    overflow: hidden
    }
.bookmark-progress-bar {
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
    height: 100%;
    width: 0%;
    transition: width 0.3s ease
    }
/* Bookmark controls section */
.bookmark-controls {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: clamp(15px, 4vw, 20px);
    margin-bottom: clamp(20px, 5vw, 30px);
    border: 1px solid #30363d
    }
.bookmark-controls-wrapper {
    display: flex;
    gap: clamp(10px, 3vw, 15px);
    flex-wrap: wrap;
    align-items: stretch
    }
.bookmark-search-wrapper {
    flex: 1;
    min-width: clamp(180px, 40vw, 200px)
    }
.bookmark-search-input {
    width: 100%;
    padding: clamp(10px, 3vw, 12px) clamp(12px, 3vw, 16px);
    background: #21262d;
    border: 2px solid #30363d;
    border-radius: 8px;
    color: #e6edf3;
    font-size: clamp(12px, 3.5vw, 14px);
    transition: border-color 0.3s ease;
    box-sizing: border-box
    }
.bookmark-search-input:focus {
    border-color: #58a6ff;
    outline: none
    }
.bookmark-search-input:blur {
    border-color: #30363d
    }
.bookmark-filter-select, .bookmark-sort-select {
    padding: clamp(10px, 3vw, 12px) clamp(12px, 3vw, 16px);
    background: #21262d;
    border: 2px solid #30363d;
    border-radius: 8px;
    color: #e6edf3;
    font-size: clamp(12px, 3.5vw, 14px);
    cursor: pointer;
    min-width: clamp(120px, 25vw, 140px)
    }
/* Empty state section */
.bookmark-empty-state {
    text-align: center;
    padding: clamp(30px, 8vw, 60px) clamp(15px, 5vw, 20px);
    display: none
    }
.bookmark-empty-wrapper {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: clamp(25px, 6vw, 40px);
    border: 2px dashed #30363d
    }
.bookmark-empty-icon {
    font-size: clamp(40px, 12vw, 64px);
    color: #30363d;
    margin-bottom: clamp(15px, 4vw, 20px)
    }
.bookmark-empty-title {
    color: #e6edf3;
    font-size: clamp(16px, 4.5vw, 20px);
    margin: 0 0 clamp(8px, 2vw, 10px) 0
    }
.bookmark-empty-description {
    color: #8b949e;
    font-size: clamp(13px, 3.5vw, 16px);
    margin: 0;
    line-height: 1.6;
    padding: 0 15px
    }
.bookmark-empty-actions {
    margin-top: clamp(20px, 5vw, 25px);
    display: flex;
    gap: clamp(8px, 2vw, 10px);
    flex-wrap: wrap;
    justify-content: center
    }
.bookmark-browse-movies {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    padding: clamp(10px, 2.5vw, 12px) clamp(18px, 4vw, 24px);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    font-size: clamp(12px, 3vw, 14px);
    white-space: nowrap
    }
.bookmark-browse-series {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: clamp(10px, 2.5vw, 12px) clamp(18px, 4vw, 24px);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    font-size: clamp(12px, 3vw, 14px);
    white-space: nowrap
    }
.bookmark-browse-icon {
    margin-right: clamp(6px, 1.5vw, 8px)
    }
/* No results state */
.bookmark-no-results {
    text-align: center;
    padding: clamp(25px, 6vw, 40px) clamp(15px, 4vw, 20px);
    display: none
    }
.bookmark-no-results-wrapper {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: clamp(20px, 5vw, 30px);
    border: 1px solid #30363d
    }
.bookmark-no-results-icon {
    font-size: clamp(32px, 8vw, 48px);
    color: #6b7280;
    margin-bottom: clamp(12px, 3vw, 15px)
    }
.bookmark-no-results-title {
    color: #e6edf3;
    font-size: clamp(15px, 4vw, 18px);
    margin: 0 0 clamp(6px, 1.5vw, 8px) 0
    }
.bookmark-no-results-description {
    color: #8b949e;
    font-size: clamp(12px, 3vw, 14px);
    margin: 0;
    padding: 0 15px
    }
/* Bookmark grid */
.bookmark-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    column-gap: 12px;
    row-gap: 15px;
    justify-content: center
    }

/* ─────────────────────────────────────────────────────────────────────────────
   BOOKMARK GRID RESPONSIVE STYLES
   ───────────────────────────────────────────────────────────────────────────── */

/* Desktop (926px and above) */
@media (min-width: 926px) {
    .bookmark-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        column-gap: 15px;
        row-gap: 18px;
    }
}

/* Tablet (691px - 925px) */
@media (max-width: 925px) and (min-width: 691px) {
    .bookmark-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        column-gap: 12px;
        row-gap: 15px;
    }
}

/* Mobile (481px - 690px) */
@media (max-width: 690px) and (min-width: 481px) {
    .bookmark-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        column-gap: 10px;
        row-gap: 12px;
    }
}

/* Small Mobile (361px - 480px) */
@media (max-width: 480px) and (min-width: 361px) {
    .bookmark-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        column-gap: 8px;
        row-gap: 10px;
    }
}

/* Ultra Small Mobile (360px and below) */
@media (max-width: 360px) {
    .bookmark-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        column-gap: 6px;
        row-gap: 8px;
    }
}
/* ===== BOOKMARK ITEM STYLES (JavaScript Generated) ===== */
.bookmark-item {
    background: #2a2d30;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #444;
    position: relative
    }
.bookmark-item:hover {
    transform: translatey(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border-color: #666
    }
.bookmark-item-link {
    text-decoration: none;
    color: inherit;
    display: block
    }
.bookmark-item-image-wrapper {
    position: relative;
    overflow: hidden
    }
.bookmark-item-image {
    width: 100%;
    height: clamp(200px, 35vw, 250px);
    object-fit: cover;
    transition: transform 0.3s ease
    }
.bookmark-item-type-badge-wrapper {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 2
    }
.bookmark-item-type-badge {
    padding: 3px 6px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    color: white
    }
.bookmark-item-type-badge.movie {
    background: #10B981
    }
.bookmark-item-type-badge.series {
    background: #9C27B0
    }
.bookmark-item-type-icon {
    margin-right: 3px
    }
.bookmark-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none
    }
.bookmark-item:hover .bookmark-item-overlay {
    opacity: 1
    }
.bookmark-item-play-icon {
    font-size: clamp(32px, 8vw, 40px);
    color: #2196F3
    }
.bookmark-item-remove-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(220, 38, 38, 0.95);
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    font-size: 12px;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3)
    }
.bookmark-item-remove-btn:hover {
    background: #dc2626;
    transform: scale(1.1)
    }
.bookmark-item-info {
    padding: clamp(10px, 3vw, 12px)
    }
.bookmark-item-title {
    color: #fff;
    margin: 0 0 clamp(6px, 2vw, 8px) 0;
    font-size: clamp(11px, 3vw, 12px);
    font-weight: 600;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: clamp(24px, 6vw, 28px)
    }
.bookmark-item-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: clamp(9px, 2.5vw, 10px);
    gap: 5px
    }
.bookmark-item-date {
    color: #bbb;
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0
    }
.bookmark-item-date-icon {
    margin-right: clamp(2px, 1vw, 3px);
    color: #2196F3;
    font-size: clamp(8px, 2vw, 9px)
    }
.bookmark-item-date span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
    }
.bookmark-item-saved {
    color: #10B981;
    font-weight: 600;
    white-space: nowrap
    }
.bookmark-item-saved-icon {
    margin-right: clamp(2px, 1vw, 3px);
    font-size: clamp(8px, 2vw, 9px)
    }
/* ===== BOOKMARK NOTIFICATION STYLES ===== */
.bookmark-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 12px 20px;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    z-index: 10000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transform: translatex(100%);
    opacity: 0
    }
.bookmark-notification.success {
    background: linear-gradient(135deg, #22C55E 0%, #10B981 100%);
    border: 1px solid rgba(34, 197, 94, 0.6);
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.4);
    color: #fff !important;
    text-shadow: none
    }
.bookmark-notification.error {
    background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%)
    }
.bookmark-notification.show {
    transform: translatex(0);
    opacity: 1
    }
.bookmark-notification-icon {
    margin-right: 8px
    }
/* ===== DETAIL SERIES PAGE STYLES ===== */
/* Loading states and spinners */
.modern-loading-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 17, 23, 0.95) 0%, rgba(22, 27, 34, 0.98) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center
    }
.loading-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 100 100\"><defs><pattern id=\"grain\" patternUnits=\"userSpaceOnUse\" width=\"100\" height=\"100\"><circle cx=\"25\" cy=\"25\" r=\"1\" fill=\"%23ffffff\" opacity=\"0.02\"/><circle cx=\"75\" cy=\"75\" r=\"1\" fill=\"%23ffffff\" opacity=\"0.01\"/><circle cx=\"50\" cy=\"10\" r=\"0.5\" fill=\"%23ffffff\" opacity=\"0.03\"/></pattern></defs><rect width=\"100\" height=\"100\" fill=\"url(%23grain)\"/></svg>");
    opacity: 0.4
    }
.loading-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: min(400px, 90vw);
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    padding: clamp(20px, 5vw, 40px)
    }
.modern-spinner-container {
    margin: 0 auto clamp(25px, 6vw, 40px) auto;
    display: flex;
    align-items: center;
    justify-content: center
    }
.spinner-outer {
    position: relative;
    width: clamp(60px, 15vw, 80px);
    height: clamp(60px, 15vw, 80px);
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotate 2s linear infinite;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%)
    }
.spinner-inner {
    width: clamp(40px, 10vw, 55px);
    height: clamp(40px, 10vw, 55px);
    border: 3px solid rgba(16, 185, 129, 0.3);
    border-top: 3px solid #10B981;
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
    display: flex;
    align-items: center;
    justify-content: center
    }
.spinner-core {
    width: clamp(20px, 5vw, 28px);
    height: clamp(20px, 5vw, 28px);
    background: linear-gradient(45deg, #3B82F6, #10B981);
    border-radius: 50%;
    animation: pulse 1s ease-in-out infinite alternate;
    box-shadow: 0 0 clamp(10px, 3vw, 20px) rgba(59, 130, 246, 0.3)
    }
.loading-text h3 {
    color: #e6edf3;
    font-size: clamp(16px, 4vw, 20px);
    font-weight: 600;
    margin: 0 0 clamp(8px, 2vw, 12px) 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3)
    }
.loading-subtitle {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.08) 50%, rgba(255, 255, 255, 0.03) 100%);
    border-radius: 8px;
    padding: clamp(12px, 3vw, 16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: clamp(20px, 5vw, 25px)
    }
.loading-subtitle p {
    color: #8b949e;
    font-size: clamp(12px, 3vw, 14px);
    margin: 0;
    line-height: 1.6;
    text-align: center
    }
.progress-bar {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    height: 6px;
    overflow: hidden;
    margin-bottom: clamp(15px, 4vw, 20px);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2)
    }
.progress-indicator {
    height: 100%;
    background: linear-gradient(90deg, #3B82F6 0%, #10B981 50%, #3B82F6 100%);
    background-size: 200% 100%;
    animation: progressFlow 2s ease-in-out infinite;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.3)
    }
.loading-info {
    margin-top: clamp(20px, 5vw, 25px)
    }
.loading-tips {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(8px, 2vw, 12px);
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 8px;
    padding: clamp(12px, 3vw, 16px);
    margin-bottom: clamp(15px, 4vw, 20px)
    }
.loading-flash-icon {
    font-size: clamp(14px, 3.5vw, 18px);
    animation: flash 2s ease-in-out infinite
    }
.loading-tips p {
    color: #10B981;
    font-size: clamp(11px, 2.8vw, 13px);
    margin: 0;
    font-weight: 500
    }
/* Success notification styles */
.success-notification-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box
    }
.success-notification-content {
    max-width: min(500px, 90vw);
    width: 90%;
    margin: 0 auto;
    box-sizing: border-box;
    padding: clamp(20px, 4vw, 40px) clamp(15px, 3vw, 20px)
    }
.success-notification-wrapper {
    background: linear-gradient(135deg, #0d1117 0%, #161b22 100%);
    border-radius: 16px;
    padding: 0;
    border: 1px solid rgba(16, 185, 129, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(16, 185, 129, 0.1);
    position: relative;
    overflow: hidden
    }
.success-notification-icon-wrapper {
    width: clamp(60px, 15vw, 80px);
    height: clamp(60px, 15vw, 80px);
    margin: 0 auto clamp(16px, 4vw, 24px);
    background: linear-gradient(135deg, #10B981, #06B6D4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.4)
    }
.success-notification-icon {
    font-size: clamp(20px, 6vw, 32px);
    color: #fff !important
    }
.success-notification-title {
    color: #e6edf3;
    font-size: clamp(18px, 4.5vw, 22px);
    font-weight: 700;
    margin: 0 0 clamp(12px, 3vw, 15px) 0;
    text-align: center
    }
.success-notification-description {
    color: #8b949e;
    font-size: clamp(13px, 3.5vw, 16px);
    margin: 0 0 clamp(20px, 5vw, 25px) 0;
    line-height: 1.6;
    text-align: center
    }
.success-notification-details {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: clamp(15px, 4vw, 20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: clamp(20px, 5vw, 25px)
    }
.success-notification-details h4 {
    color: #10B981;
    font-size: clamp(14px, 3.5vw, 16px);
    font-weight: 600;
    margin: 0 0 clamp(8px, 2vw, 10px) 0
    }
.success-notification-code {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: clamp(10px, 2.5vw, 12px);
    color: #10B981;
    font-size: clamp(11px, 2.8vw, 13px);
    font-family: "Courier New", monospace;
    margin: 0;
    border: 1px solid rgba(16, 185, 129, 0.2);
    line-height: 1.4
    }

.success-thumbs-icon {
    margin-right: 8px
    }
.success-info-icon {
    margin-right: 4px
    }
/* Error notification styles */
.error-notification-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box
    }
.error-notification-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(220, 38, 38, 0.1) 0%, transparent 50%)
    }
.error-notification-content {
    max-width: min(420px, 90vw);
    width: 90%;
    margin: 0 auto;
    z-index: 2;
    position: relative;
    box-sizing: border-box;
    padding: clamp(20px, 4vw, 50px) clamp(15px, 3vw, 30px)
    }
.error-notification-wrapper {
    background: linear-gradient(135deg, #1a0e0e 0%, #2d1b1b 100%);
    border-radius: 20px;
    padding: 0;
    border: 2px solid rgba(220, 38, 38, 0.4);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(220, 38, 38, 0.2);
    position: relative;
    overflow: hidden
    }
.error-notification-icon-wrapper {
    width: clamp(70px, 18vw, 100px);
    height: clamp(70px, 18vw, 100px);
    margin: 0 auto clamp(20px, 5vw, 30px);
    background: linear-gradient(135deg, #FF5722, #FF8A65);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 48px rgba(255, 87, 34, 0.4);
    animation: shake 0.5s ease-in-out
    }
.error-notification-icon {
    font-size: clamp(24px, 7vw, 36px);
    color: white
    }
.error-notification-episode {
    display: inline-block;
    padding: clamp(6px, 1.5vw, 8px) clamp(15px, 4vw, 20px);
    background: rgba(255, 138, 101, 0.2);
    border-radius: 25px;
    border: 1px solid rgba(255, 138, 101, 0.3);
    margin-bottom: clamp(15px, 4vw, 20px)
    }
.error-notification-episode p {
    color: #fff;
    font-size: clamp(13px, 3.5vw, 16px);
    margin: 0;
    font-weight: 600
    }
.error-notification-title {
    color: #fef2f2;
    font-size: clamp(20px, 5vw, 24px);
    font-weight: 700;
    margin: 0 0 clamp(15px, 4vw, 20px) 0;
    text-align: center
    }
.error-notification-message {
    background: rgba(220, 38, 38, 0.1);
    border-radius: 12px;
    padding: clamp(15px, 4vw, 20px);
    border: 1px solid rgba(220, 38, 38, 0.3);
    margin-bottom: clamp(20px, 5vw, 25px)
    }
.error-notification-message p {
    color: #fca5a5;
    font-size: clamp(14px, 3.5vw, 16px);
    margin: 0 0 clamp(10px, 2.5vw, 12px) 0;
    line-height: 1.6
    }
.error-notification-reload-btn {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    border: none;
    padding: clamp(12px, 3vw, 16px) clamp(24px, 6vw, 32px);
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: clamp(14px, 3.5vw, 16px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
    display: block;
    margin: 0 auto
    }
.error-notification-reload-btn:hover {
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
    transform: translatey(-2px);
    box-shadow: 0 6px 16px rgba(220, 38, 38, 0.4)
    }
/* Toast notification styles */
.toast-notification {
    display: flex;
    align-items: flex-start;
    gap: 16px
    }
.toast-icon-wrapper {
    width: clamp(24px, 6vw, 32px);
    height: clamp(24px, 6vw, 32px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px
    }
.toast-icon-wrapper.success {
    background: linear-gradient(135deg, #22C55E 0%, #10B981 100%);
    border: 1px solid rgba(34, 197, 94, 0.6);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3)
    }
.toast-icon-wrapper.error {
    background: rgba(220, 38, 38, 0.2);
    border: 1px solid rgba(220, 38, 38, 0.3)
    }
.toast-icon {
    font-size: clamp(12px, 3vw, 14px)
    }
.toast-icon.success {
    color: #fff
    }
.toast-icon.error {
    color: #dc2626
    }
.toast-content {
    flex: 1;
    min-width: 0
    }
.toast-title {
    font-weight: 600;
    font-size: clamp(13px, 3.2vw, 15px);
    margin: 0 0 clamp(4px, 1vw, 6px) 0;
    line-height: 1.4
    }
.toast-title.error {
    color: #dc2626
    }
.toast-message {
    color: #8b949e;
    font-size: clamp(11px, 2.8vw, 13px);
    margin: 0;
    line-height: 1.5
    }
.toast-timestamp {
    color: #6b7280;
    font-size: clamp(10px, 2.5vw, 11px);
    margin: clamp(4px, 1vw, 6px) 0 0 0;
    font-style: italic
    }
.toast-close-btn {
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
    padding: clamp(4px, 1vw, 6px);
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: clamp(10px, 2.5vw, 12px);
    margin-left: clamp(8px, 2vw, 12px);
    flex-shrink: 0
    }
.toast-close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff
    }
/* Animations */
@keyframes rotate {
    from {
        transform: rotate(0deg);
        } to {
        transform: rotate(360deg);
        }
    }
@keyframes spin {
    from {
        transform: rotate(0deg);
        } to {
        transform: rotate(360deg);
        }
    }
@keyframes pulse {
    from {
        transform: scale(1);
        opacity: 1;
        } to {
        transform: scale(1.1);
        opacity: 0.8;
        }
    }
@keyframes flash {
    0%, 100% {
        opacity: 1;
        } 50% {
        opacity: 0.5;
        }
    }
@keyframes progressFlow {
    0% {
        background-position: 200% 0;
        } 100% {
        background-position: -200% 0;
        }
    }
@keyframes shake {
    0%, 100% {
        transform: translateX(0);
        } 25% {
        transform: translateX(-5px);
        } 75% {
        transform: translateX(5px);
        }
    }
/* Success notification text and icon color override */
.bookmark-notification.success, .bookmark-notification.success * {
    color: #fff !important
    }
.bookmark-notification.success i, .bookmark-notification.success .fa, .bookmark-notification.success .fas, .bookmark-notification.success .far, .bookmark-notification.success .fab {
    color: #fff !important
    }
/* ==============================================
   RESPONSIVE UTILITIES & PERFORMANCE OPTIMIZATIONS
   ============================================= */
/* Responsive Container Layouts */
.sdtrue {
    overflow: hidden;
    max-width: 1220px;
    margin: 0 auto;
    margin-top: clamp(20px, 4vw, 35px);
    padding: 0 clamp(15px, 3vw, 20px);
    position: relative
    }
/* Modern Grid Layout for Sidebar */
/* Full Width Layout */
.sdfalse {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(15px, 3vw, 20px);
    margin-top: clamp(20px, 4vw, 30px)
    }
/* ==============================================
   RESPONSIVE GRID ENHANCEMENTS 
   ============================================= */
/* Grid Auto-sizing for Different Content Types */
.latest.related .los {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr))
    }
.latest.carousel .los {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 10px
    }
.latest.carousel .los .box {
    flex: 0 0 auto;
    width: clamp(140px, 20vw, 180px);
    scroll-snap-align: start
    }
/* ==============================================
   RESPONSIVE UTILITIES
   ============================================= */
/* Responsive Margins and Padding */
.responsive-margin {
    margin: clamp(15px, 3vw, 25px)
    }
.responsive-padding {
    padding: clamp(12px, 3vw, 20px)
    }
.responsive-border-radius {
    border-radius: clamp(6px, 1.5vw, 12px)
    }
/* Responsive Text Alignment */
/* ==============================================
   PERFORMANCE OPTIMIZATIONS
   ============================================= */
/* GPU Acceleration for Animations */
.latest .los .box .bx, .latest .los .box .bx .limit img {
    will-change: transform
    }
/* Removed duplicate responsive CSS - now using organized version above */
    .modern-card-badges {
        top: 6px;
        left: 6px;
        gap: 3px
        }
    .modern-badge {
        font-size: 8px;
        padding: 2px 5px;
        min-width: 35px
        }
    .modern-content-badge {
        top: 6px;
        right: 6px;
        font-size: 8px;
        padding: 2px 5px;
        width: 50px
        }
    .modern-quality-badge {
        font-size: 7px;
        letter-spacing: 0.3px
        }
    .modern-duration-badge i {
        font-size: 5px
        }

    .hot-update-card {
        min-width: clamp(95px, 22vw, 120px);
        max-width: clamp(95px, 22vw, 120px)
        }
    .hot-updates-section {
        padding: 12px 10px;
        margin-bottom: 15px
        }
    .hot-updates-grid {
        grid-template-columns: repeat(auto-fit, minmax(95px, 1fr));
        gap: 10px;
        margin-top: 12px
        }
    .hot-icon {
        padding: 6px
        }
    .hot-icon i {
        font-size: 16px
        }
    .hot-overlay-title {
        font-size: 11px
        }
    .hot-number-badge {
        width: 18px;
        height: 18px;
        font-size: 7px
        }
    .hot-card-info {
        padding: 6px 8px 8px
        }
    .hot-card-title {
        font-size: 11px;
        height: 26px
        }
    .movies-filter-section .filter-tabs {
        gap: 6px
        }
    .movies-filter-section .filter-tab {
        padding: 6px 8px;
        font-size: 11px;
        min-width: 80px;
        gap: 4px
        }
    .modern-grid, .movies-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 12px
        }
    .modern-grid, .movies-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 15px
        }
    .filter-tabs {
        gap: 6px
        }
    .filter-tab {
        padding: 6px 8px;
        font-size: 12px
        }
    .section-icon {
        padding: 10px
        }
    .section-icon i {
        font-size: 20px
        }
    .play-button {
        width: 50px;
        height: 50px
        }
    .play-button i {
        font-size: 16px
        }
    .overlay-title {
        font-size: 12px
        }
    .genre-page-section .play-button {
        width: 50px;
        height: 50px
        }
    .genre-page-section .play-button i {
        font-size: 16px
        }
    .genre-page-section .overlay-title {
        font-size: 12px
        }
    .episodes-section {
        margin: 15px 0;
        padding: 15px;
        border-radius: 8px
        }
    .episodes-header h3 {
        font-size: 16px !important;
        flex-direction: column;
        align-items: flex-start !important;
        gap: 8px
        }
    .episodes-header h3 i {
        margin-right: 8px !important;
        font-size: 18px !important
        }
    .episodes-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 8px
        }
    .player-tabs {
        gap: 4px;
        justify-content: center
        }
    .player-tab-button {
        padding: 8px 12px;
        font-size: 11px;
        min-width: 100px;
        letter-spacing: 0.3px
        }
    .player-tab-button i {
        margin-right: 6px !important;
        font-size: 12px !important
        }
    .episode-card {
        border-radius: 6px;
        border-width: 1px
        }
    .episode-card div[style*="padding: 15px"] {
        padding: 10px !important
        }
    .episode-card h5 {
        font-size: 12px !important;
        margin-bottom: 4px !important
        }
    .episode-card div[style*="font-size: 11px"] {
        font-size: 10px !important
        }
    .episode-card div[style*="width: 40px; height: 40px"] {
        width: 30px !important;
        height: 30px !important;
        margin-bottom: 8px !important
        }
    .episode-card div[style*="width: 40px; height: 40px"] i {
        font-size: 12px !important
        }
    .episode-info {
        margin-bottom: 15px !important;
        padding: 12px !important
        }
    .episode-info h4 {
        font-size: 14px !important;
        margin-bottom: 3px !important
        }
    .episode-info p {
        font-size: 11px !important
        }
    .episode-info div[style*="display: flex"] {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 10px !important
        }
    .page-title-wrapper {
        gap: 8px !important;
        margin-bottom: 12px !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important
        }
    .page-icon i {
        font-size: 14px !important
        }
    .modern-grid, .movies-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)) !important;
        gap: 12px !important;
        margin-top: 15px !important
        }
    .movie-pagination .page-numbers, .series-pagination .page-numbers, .genre-pagination .page-numbers  {
        padding: 6px 10px;
        font-size: 12px;
        margin: 0 1px
        }
    .movie-pagination .prev.page-numbers, .movie-pagination .next.page-numbers, .series-pagination .prev.page-numbers, .series-pagination .next.page-numbers, .genre-pagination .next.page-numbers {
        padding: 6px 12px
        }
    .movie-pagination .page-info, .series-pagination .page-info, .genre-pagination .page-info {
        font-size: 12px;
        padding: 8px 12px
        }
    .detail-recommendation-overlay .fas {
        font-size: 40px
        }
    .detail-no-video-content .fas, .detail-empty-content .fas {
        font-size: 36px
        }
    .series-card .card-info, .modern-series-card .card-info {
        padding: 8px;
        gap: 4px
        }
    .series-card .card-title, .modern-series-card .card-title {
        font-size: 12px;
        margin: 0 0 4px 0
        }
    .series-card .card-meta, .modern-series-card .card-meta {
        font-size: 10px
        }
    .genre-page-section .page-title-wrapper {
        gap: 8px !important;
        margin-bottom: 12px !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important
        }
    .genre-page-section .page-title-content {
        width: 100% !important;
        text-align: center !important
        }
    #sidebar {
        width: auto;
        float: none !important;
        margin-top: 30px
        }
    #sidebar .section {
        margin-left: 0;
        margin-right: 0 !important
        }
    ul.taxindex li {
        width: 25%
        }
    .bigfilter.bigshow {
        display: block;
        position: relative;
        margin-bottom: 20px
        }
    .bigfilter .medium .limit {
        overflow: hidden;
        width: 100%
        }
    .bigfilter .medium .limit .col-4, .bigfilter .medium .limit .col-8, .bigfilter .medium .limit .col-6 {
        float: none !important;
        width: auto
        }
    .bigfilter .medium .col-3 {
        width: 50%
        }
@media (prefers-reduced-motion: reduce) {
    .hot-updates-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        overflow-x: visible;
        scroll-behavior: auto
        }
    .detail-recommendation-slider {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
        overflow-x: visible;
        scroll-behavior: auto
        }

    .latest .los .box .bx, .latest, .latest .los .box .bx .limit img {
        transition: none !important;
        transform: none !important
        }
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important
        }
    }
/* ═══════════════════════════════════════════════════════════════════════════════
   ORGANIZED RESPONSIVE STYLES
   ═══════════════════════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────────────────────
   DESKTOP RESPONSIVE STYLES (1300px and above)
   ───────────────────────────────────────────────────────────────────────────── */
@media (min-width: 926px) {
    /* Desktop Hot Updates - Remove Scroll Container */
    .hot-updates-section .hot-updates-scroll-container {
        position: static;
        overflow: visible;
    }
    

    
    .hot-updates-section .hot-updates-grid {
        display: flex;
        gap: 20px;
        justify-content: flex-start;
    }
    
    .hot-updates-section .hot-update-card {
        flex: 0 0 calc(12.5% - 17.5px);
        min-width: 140px;
        max-width: 180px;
    }
    
    .modern-grid, .movies-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 25px;
    }
    
    /* Desktop Menu Styles */
    #main-menu .nav-container nav ul {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin: 0;
        padding: 0;
        list-style: none;
        height: 100%;
    }
    
    #main-menu .nav-container nav ul li {
        position: relative;
        margin: 0;
        padding: 0;
    }
    
    #main-menu .nav-container nav ul li a {
        display: flex;
        align-items: center;
        padding: 12px 18px;
        color: #8b949e;
        text-decoration: none;
        font-weight: 500;
        font-size: 14px;
        border-radius: 10px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    #main-menu .nav-container nav ul li a::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(0, 172, 193, 0.1), transparent);
        transition: left 0.5s ease;
    }
    
    #main-menu .nav-container nav ul li a:hover::before {
        left: 100%;
    }
    
    #main-menu .nav-container nav ul li a:hover {
        color: #00acc1;
        background: linear-gradient(135deg, rgba(0, 172, 193, 0.08) 0%, rgba(33, 150, 243, 0.08) 100%);
        border: 1px solid rgba(0, 172, 193, 0.15);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 172, 193, 0.15);
    }
    
    #main-menu .nav-container nav ul li a.current {
        color: #00acc1;
        background: linear-gradient(135deg, rgba(0, 172, 193, 0.12) 0%, rgba(33, 150, 243, 0.12) 100%);
        border: 1px solid rgba(0, 172, 193, 0.2);
        box-shadow: 0 2px 8px rgba(0, 172, 193, 0.2);
    }
    
    /* Social Share Desktop */
    .socialts {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 10px;
        max-width: 800px;
        margin: 0 auto 20px;
    }
    
    .socialts a {
        min-width: 140px;
        padding: 10px 15px;
        font-size: 13px;
    }
    
    /* Social Info Boxes Desktop */
    .social-download-info,
    .social-request-info,
    .social-vpn-info,
    .social-browser-info,
    .social-drive-info {
        padding: 18px 25px;
        margin-bottom: 18px;
        font-size: 15px;
        border-radius: 12px;
    }
    
    .social-info-alert {
        padding: 25px 30px;
        margin-bottom: 25px;
        font-size: 15px;
        border-radius: 15px;
    }
    
    .subheading h2 {
        font-size: 18px;
        padding: 18px 25px;
        margin-top: 30px;
        margin-bottom: 18px;
        border-radius: 12px;
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   RESPONSIVE BREAKPOINTS - OPTIMIZED
   ───────────────────────────────────────────────────────────────────────────── */

/* Large Desktop (1300px and below) */
@media (max-width: 1300px) {
    #main-menu .searchx {
        width: 320px;
    }
}

/* Desktop (1200px and below) */
@media (max-width: 1200px) {
    .hot-updates-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 18px;
    }
    .modern-grid, .movies-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 20px;
    }
    #main-menu .searchx {
        width: 300px;
    }
    #main-menu ul li a {
        padding: 10px 12px;
        font-size: 14px;
    }
    .genre-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 20px;
    }
}

/* Small Desktop (1100px and below) */
@media (max-width: 1100px) {
    #main-menu .searchx {
        width: 260px;
    }
    #main-menu ul li a {
        padding: 10px;
        font-size: 14px;
    }
    #main-menu ul li {
        margin: 0 3px;
    }
}

/* Laptop (1000px and below) */
@media (max-width: 1000px) {
    #main-menu .searchx {
        width: 240px;
    }
    #main-menu .searchx #s {
        font-size: 14px;
        padding: 0 15px;
    }
    #main-menu ul li a {
        padding: 8px;
        font-size: 13px;
    }
}

/* Small Laptop (980px and below) */
@media (max-width: 980px) {
    #main-menu .centernav .logo {
        margin-right: 15px;
        max-width: 180px;
    }
}

/* Tablet Landscape (950px and below) */
@media (max-width: 950px) {
    #main-menu .searchx {
        width: 220px;
    }
    #main-menu .searchx #s {
        font-size: 13px;
        padding: 0 12px;
    }
    #main-menu .searchx #submit {
        padding: 8px 12px;
    }
    #main-menu ul li a {
        padding: 6px 8px;
        font-size: 13px;
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   TABLET (925px and below)
   ───────────────────────────────────────────────────────────────────────────── */
@media (max-width: 925px) and (min-width: 691px) {
    #main-menu .searchx {
        width: 280px;
    }
    
    #main-menu .centernav .logo {
        max-width: 150px;
    }
    
    #main-menu .centernav .logo img {
        max-height: 44px;
    }
    
    /* Social Share Tablet */
    .socialts {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 8px;
        margin-bottom: 18px;
    }
    
    .socialts a {
        min-width: 120px;
        padding: 9px 12px;
        font-size: 12px;
    }
    
    /* Social Info Boxes Tablet */
    .social-download-info,
    .social-request-info,
    .social-vpn-info,
    .social-browser-info,
    .social-drive-info {
        padding: 16px 20px;
        margin-bottom: 16px;
        font-size: 14px;
        border-radius: 10px;
    }
    
    .social-info-alert {
        padding: 20px 25px;
        margin-bottom: 20px;
        font-size: 14px;
        border-radius: 12px;
    }
    
    .subheading h2 {
        font-size: 16px;
        padding: 16px 20px;
        margin-top: 25px;
        margin-bottom: 16px;
        border-radius: 10px;
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   TABLET PORTRAIT (768px and above)
   ───────────────────────────────────────────────────────────────────────────── */
@media (min-width: 768px) {
    .sdtrue {
        display: grid;
        grid-template-columns: 1fr 300px;
        gap: clamp(20px, 4vw, 30px);
    }
    .sdtrue .psbody {
        min-width: 0;
        /* Prevent grid blowout */
        float: none;
        width: auto;
    }
    #sidebar {
        position: relative;
        font-size: 14px;
        min-width: 0;
        /* Prevent grid blowout */
        float: none;
        width: auto;
    }
    .modern-grid, .movies-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 18px;
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   MOBILE (767px and below)
   ───────────────────────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
    .text-center-mobile {
        text-align: center !important;
    }
    .float-none-mobile {
        float: none !important;
    }
}

/* ==================================================================
   ELEGANT RESPONSIVE ADJUSTMENTS FOR BOOKMARK & LATEST SECTIONS  
   ================================================================== */

/* Desktop Large (1200px+) - Spacious & Premium */
@media (min-width: 1200px) {
    .los.bookmark-grid {
        grid-template-columns: repeat(auto-fill, minmax(185px, 1fr));
        gap: 20px;
    }
    
    .slider-item.bookmark-item {
        width: 185px;
        min-width: 185px;
        max-width: 185px;
    }
    
    .latest .los .box {
        width: calc(16.666% - 16px);
        min-width: 180px;
    }
}

/* Desktop (926px-1199px) - Balanced & Clean */
@media (max-width: 1199px) and (min-width: 926px) {
    .los.bookmark-grid {
        grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
        gap: 18px;
    }
    
    .slider-item.bookmark-item {
        width: 170px;
        min-width: 170px;
        max-width: 170px;
    }
    
    .latest .los .box {
        width: calc(20% - 14px);
        min-width: 165px;
    }
}

/* Tablet (691px-925px) - Comfortable Spacing */
@media (max-width: 925px) and (min-width: 691px) {
    .los.bookmark-grid {
        grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
        gap: 16px;
    }
    
    .slider-item.bookmark-item {
        width: 155px;
        min-width: 155px;
        max-width: 155px;
    }
    
    .latest .los .box {
        width: calc(25% - 12px);
        min-width: 150px;
    }
}

/* Mobile Large (481px-690px) - Optimized for Touch */
@media (max-width: 690px) and (min-width: 481px) {
    .los.bookmark-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
        gap: 12px;
    }
    
    .slider-item.bookmark-item {
        width: 150px;
        min-width: 150px;
        max-width: 150px;
    }
    
    .latest .los .box {
        width: calc(33.333% - 10px);
        min-width: 130px;
    }
}

/* Mobile (361px-480px) - Compact but Clear */
@media (max-width: 480px) and (min-width: 361px) {
    .los.bookmark-grid {
        grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
        gap: 10px;
    }
    
    .slider-item.bookmark-item {
        width: 135px;
        min-width: 135px;
        max-width: 135px;
    }
    
    .latest .los .box {
        width: calc(50% - 8px);
        min-width: 110px;
    }
}

/* Mobile Small (≤360px) - Minimal but Functional */
@media (max-width: 360px) {
    .los.bookmark-grid {
        grid-template-columns: repeat(auto-fill, minmax(95px, 1fr));
        gap: 8px;
    }
    
    .slider-item.bookmark-item {
        width: 120px;
        min-width: 120px;
        max-width: 120px;
    }
    
    .latest .los .box {
        width: calc(50% - 6px);
        min-width: 95px;
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   MOBILE (690px and below)
   ───────────────────────────────────────────────────────────────────────────── */
@media (max-width: 690px) {
    /* Mobile Header Height */
    #main-menu {
        height: 60px;
        position: sticky;
        top: 0;
        z-index: 1000;
    }
    
    #main-menu .centernav,
    #main-menu .centernav .bound,
    .header-flex {
        height: 60px;
    }
    
    /* Mobile Menu Toggle Button */
    .show-menu {
        display: flex !important;
        position: absolute;
        left: 12px;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.12) 100%);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 12px;
        align-items: center;
        justify-content: center;
        z-index: 1001;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        user-select: none;
        -webkit-tap-highlight-color: transparent;
    }
    
    .show-menu i {
        font-size: 16px;
        color: #e6edf3;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        pointer-events: none;
    }
    
    .show-menu:hover,
    .show-menu:active {
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.18) 100%);
        transform: translateY(-50%) scale(1.05);
        border-color: rgba(255, 255, 255, 0.25);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    
    /* Mobile Search Toggle Button */
    .ms {
        display: flex !important;
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, rgba(0, 172, 193, 0.1) 0%, rgba(33, 150, 243, 0.1) 100%);
        border: 1px solid rgba(0, 172, 193, 0.2);
        border-radius: 12px;
        align-items: center;
        justify-content: center;
        z-index: 1001;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        user-select: none;
        -webkit-tap-highlight-color: transparent;
    }
    
    .ms i {
        font-size: 16px;
        color: #00acc1;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        pointer-events: none;
    }
    
    .ms:hover,
    .ms:active {
        background: linear-gradient(135deg, rgba(0, 172, 193, 0.15) 0%, rgba(33, 150, 243, 0.15) 100%);
        transform: translateY(-50%) scale(1.05);
    }
    
    /* Social Share Mobile */
    .socialts {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 6px;
        margin-bottom: 15px;
    }
    
    .socialts a {
        min-width: 100px;
        padding: 8px 10px;
        font-size: 11px;
        margin-bottom: 4px;
    }
    
    .socialts a i {
        font-size: 12px;
        padding-right: 4px;
    }
    
    .socialts a span {
        font-size: 10px;
    }
    
    /* Social Info Boxes Mobile */
    .social-download-info,
    .social-request-info,
    .social-vpn-info,
    .social-browser-info,
    .social-drive-info {
        padding: 14px 16px;
        margin-bottom: 14px;
        font-size: 13px;
        border-radius: 8px;
        text-align: center;
    }
    
    .social-info-alert {
        padding: 18px 20px;
        margin-bottom: 18px;
        font-size: 13px;
        border-radius: 10px;
        text-align: left;
    }
    
    .social-info-alert p {
        margin-bottom: 8px;
        line-height: 1.5;
    }
    
    .subheading h2 {
        font-size: 15px;
        padding: 14px 18px;
        margin-top: 20px;
        margin-bottom: 14px;
        border-radius: 8px;
    }
    
    /* Mobile Logo Positioning */
    #main-menu .centernav .logo {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        margin: 0;
        max-width: 140px;
        z-index: 999;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    #main-menu .centernav .logo img {
        max-height: 36px;
        transition: filter 0.3s ease;
    }
    
    #main-menu .centernav .logo:hover {
        transform: translate(-50%, -50%) scale(1.05);
    }
    
    /* Hide Desktop Elements */
    #main-menu .nav-container nav ul {
        display: none;
    }
    
    #main-menu .search-container .searchx {
        display: none;
    }
    
    /* Mobile Menu Overlay (Active State) */
    #show-menu:checked ~ .nav-container nav ul {
        display: flex !important;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        width: 100%;
        height: auto;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
        background: linear-gradient(135deg, rgba(13, 17, 23, 0.98) 0%, rgba(22, 27, 34, 0.98) 100%);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        z-index: 9999;
        padding: 20px 0;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        flex-direction: column;
        animation: slideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    #show-menu:checked ~ .nav-container nav ul li {
        width: calc(100% - 20px);
        margin: 0 10px 8px 10px;
        border-radius: 12px;
        overflow: hidden;
    }
    
    #show-menu:checked ~ .nav-container nav ul li:last-child {
        margin-bottom: 0;
    }
    
    #show-menu:checked ~ .nav-container nav ul li a {
        padding: 16px 20px;
        display: block;
        text-align: left;
        color: #8b949e;
        font-weight: 500;
        font-size: 16px;
        border-radius: 12px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        -webkit-tap-highlight-color: transparent;
    }
    
    #show-menu:checked ~ .nav-container nav ul li a::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(0, 172, 193, 0.1), transparent);
        transition: left 0.5s ease;
    }
    
    #show-menu:checked ~ .nav-container nav ul li a:hover::before,
    #show-menu:checked ~ .nav-container nav ul li a:active::before {
        left: 100%;
    }
    
    #show-menu:checked ~ .nav-container nav ul li a:hover,
    #show-menu:checked ~ .nav-container nav ul li a:active {
        background: linear-gradient(135deg, rgba(0, 172, 193, 0.1) 0%, rgba(33, 150, 243, 0.1) 100%);
        color: #00acc1;
        transform: translateX(8px);
        border: 1px solid rgba(0, 172, 193, 0.15);
    }
    
    /* Mobile Search Overlay */
    .searchx.mse {
        display: block !important;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        width: 100vw;
        padding: 20px;
        box-sizing: border-box;
        background: linear-gradient(135deg, rgba(13, 17, 23, 0.98) 0%, rgba(22, 27, 34, 0.98) 100%);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        z-index: 950;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
        animation: slideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .searchx.mse #form {
        width: 100%;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        height: 54px;
        display: flex;
        align-items: center;
        position: relative;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .searchx.mse #form:focus-within {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(0, 172, 193, 0.3);
        box-shadow: 0 0 0 3px rgba(0, 172, 193, 0.1);
    }
    
    .searchx.mse #s {
        flex: 1;
        background: transparent;
        border: none;
        padding: 0 20px;
        color: #e6edf3;
        font-size: 16px;
        outline: none;
    }
    
    .searchx.mse #s::placeholder {
        color: #8b949e;
    }
    
    .searchx.mse #submit {
        background: transparent;
        border: none;
        padding: 12px 16px;
        color: #8b949e;
        cursor: pointer;
        transition: color 0.3s ease;
        border-radius: 12px;
    }
    
    .searchx.mse #submit:hover {
        color: #00acc1;
        background: rgba(0, 172, 193, 0.1);
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   SMALL MOBILE (480px and below)
   ───────────────────────────────────────────────────────────────────────────── */
@media (max-width: 480px) {
    .show-menu {
        left: 8px !important;
        width: 36px !important;
        height: 36px !important;
    }
    
    .ms {
        right: 8px !important;
        width: 36px !important;
        height: 36px !important;
    }
    
    .show-menu i,
    .ms i {
        font-size: 14px !important;
    }
    
    #main-menu .centernav .logo {
        max-width: 120px !important;
    }
    
    #main-menu .centernav .logo img {
        max-height: 32px !important;
    }
    
    /* Adjust mobile menu items for smaller screens */
    #show-menu:checked ~ .nav-container nav ul {
        padding: 15px 0 !important;
    }
    
    #show-menu:checked ~ .nav-container nav ul li {
        margin: 0 8px 6px 8px !important;
    }
    
    #show-menu:checked ~ .nav-container nav ul li a {
        padding: 14px 16px !important;
        font-size: 15px !important;
    }
    
    /* Adjust mobile search for smaller screens */
    .searchx.mse {
        padding: 15px !important;
    }
    
    .searchx.mse #form {
        height: 48px !important;
    }
    
    .searchx.mse #s {
        font-size: 15px !important;
        padding: 0 16px !important;
    }
    
    .searchx.mse #submit {
        padding: 10px 14px !important;
    }
    .modern-grid, .movies-grid {
        grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)) !important;
        gap: 10px !important;
        margin-top: 15px !important
    }
    /* Footer Responsive */
    .footer-content {
        padding: 30px 0 20px;
    }
    
    .footer-wrapper {
        padding: 0 10px;
    }
    
    .footer-logo {
        max-height: 40px;
    }
    
    .brand-description {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 20px;
    }
    
    .social-links {
        gap: 10px;
        justify-content: center;
    }
    
    .social-link {
        padding: 8px 12px;
        font-size: 12px;
        gap: 6px;
    }
    
    .social-link i {
        font-size: 14px;
    }
    
    .footer-bottom {
        padding: 15px 0;
    }
    
    .copyright {
        font-size: 12px;
        flex-direction: column;
        gap: 5px;
    }
    
    /* Social Share Small Mobile */
    .socialts {
        grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
        gap: 4px;
        margin-bottom: 12px;
    }
    
    .socialts a {
        min-width: 90px;
        padding: 8px 6px;
        font-size: 10px;
        margin-bottom: 2px;
    }
    
    .socialts a i {
        font-size: 11px;
        padding-right: 3px;
    }
    
    .socialts a span {
        font-size: 9px;
    }
    
    /* Social Info Boxes Small Mobile */
    .social-download-info,
    .social-request-info,
    .social-vpn-info,
    .social-browser-info,
    .social-drive-info {
        padding: 12px 14px;
        margin-bottom: 12px;
        font-size: 12px;
        border-radius: 6px;
        text-align: center;
    }
    
    .social-info-alert {
        padding: 16px 18px;
        margin-bottom: 16px;
        font-size: 12px;
        border-radius: 8px;
        text-align: left;
    }
    
    .social-info-alert p {
        margin-bottom: 6px;
        line-height: 1.4;
    }
    
    .subheading h2 {
        font-size: 14px;
        padding: 12px 16px;
        margin-top: 18px;
        margin-bottom: 12px;
        border-radius: 6px;
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   ULTRA MOBILE (360px and below)
   ───────────────────────────────────────────────────────────────────────────── */
@media (max-width: 360px) {
    .episodes-section {
        margin: 10px 0;
        padding: 12px;
        border-radius: 6px;
    }
    .episodes-grid {
        grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
        gap: 6px;
    }
    .player-tab-button {
        padding: 6px 10px;
        font-size: 10px;
        min-width: 90px;
    }
    .episode-card div[style*="padding: 15px"] {
        padding: 8px !important;
    }
    .episode-card h5 {
        font-size: 11px !important;
    }
    .episode-card div[style*="width: 40px; height: 40px"] {
        width: 25px !important;
        height: 25px !important;
    }
    
    /* Social Share Ultra Mobile */
    .socialts {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: 3px;
        margin-bottom: 10px;
    }
    
    .socialts a {
        min-width: 80px;
        padding: 6px 4px;
        font-size: 9px;
        margin-bottom: 1px;
    }
    
    .socialts a i {
        font-size: 10px;
        padding-right: 2px;
    }
    
    .socialts a span {
        font-size: 8px;
    }
    
    /* Social Info Boxes Ultra Mobile */
    .social-download-info,
    .social-request-info,
    .social-vpn-info,
    .social-browser-info,
    .social-drive-info {
        padding: 10px 12px;
        margin-bottom: 10px;
        font-size: 11px;
        border-radius: 5px;
        text-align: center;
    }
    
    .social-info-alert {
        padding: 14px 16px;
        margin-bottom: 14px;
        font-size: 11px;
        border-radius: 6px;
        text-align: left;
    }
    
    .social-info-alert p {
        margin-bottom: 5px;
        line-height: 1.3;
    }
    
    .subheading h2 {
        font-size: 13px;
        padding: 10px 14px;
        margin-top: 16px;
        margin-bottom: 10px;
        border-radius: 5px;
    }
    .episode-card div[style*="width: 40px; height: 40px"] i {
        font-size: 10px !important;
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   SPECIAL MEDIA QUERIES
   ───────────────────────────────────────────────────────────────────────────── */

/* Print Styles */
@media print {
    .modern-footer {
        background: white !important;
        color: black !important;
        border-top: 2px solid #000;
    }
    .social-links, .footer-bottom {
        display: none;
    }
}

/* Tablet Footer & Social Share Styles */
@media (max-width: 768px) {
    /* Footer Responsive */
    .footer-content {
        padding: 40px 0 30px;
    }
    
    .footer-wrapper {
        padding: 0 15px;
    }
    
    .brand-description {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .social-links {
        gap: 12px;
    }
    
    .social-link {
        padding: 10px 14px;
        font-size: 13px;
    }
    .footer-bottom {
        padding: 20px 0;
    }
    
    .copyright {
        font-size: 13px;
    }
    
    /* Social Share Responsive - Basic for 768px */
    .socialts {
        gap: 6px;
        margin-bottom: 20px;
    }
    
    .socialts a {
        min-width: 80px;
        padding: 10px 8px;
        font-size: 11px;
        margin-bottom: 6px;
    }
    
    .socialts a i {
        font-size: 12px;
        padding-right: 4px;
    }
    
    .socialts a span {
        font-size: 10px;
    }
}

/* Touch Device Styles */
@media (hover: none) and (pointer: coarse) {
    .episode-card:hover {
        transform: none;
        border-color: #444;
        box-shadow: none;
    }
    .player-tab-button:hover {
        background: #2a2d30;
        border-color: #444;
        transform: none;
    }
    .episode-card, .player-tab-button {
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        user-select: none;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .episode-card {
        border-width: 1px;
    }
    .episode-active-indicator {
        height: 2px;
    }
}

/* Hover Capable Devices */
@media (hover: hover) {
    .latest .los .box .bx:hover {
        transform: translatey(-8px);
    }
    .latest:hover {
        transform: translatey(-2px);
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   DETAIL INFO RESPONSIVE STYLES
   ───────────────────────────────────────────────────────────────────────────── */

/* Tablet and Mobile Responsive for Detail Info */
@media only screen and (max-width: 875px) {
    .infodb .left, .detail-info-left {
        float: none;
        text-align: center;
    }
    
    .infodb .right, .detail-info-right {
        margin: 0;
        border: 0;
        padding: 0;
    }
    .limage, .rating-prc, .bmarea, .trailerbutton {
    margin-right: 0;
    margin-left: 0 !important;
    }
    .singlecontent .infodb h1 {
        text-align: center;
        margin-top: 10px;
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   Floating Telegram Button
   ───────────────────────────────────────────────────────────────────────────── */

.floating-telegram {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: telegramPulse 2s ease-in-out infinite;
}

.floating-telegram-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0088cc 0%, #229ed9 100%);
    border: none;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 136, 204, 0.15);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
}

.floating-telegram-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.floating-telegram-btn:hover::before {
    left: 100%;
}

.floating-telegram-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(0, 136, 204, 0.25);
    background: linear-gradient(135deg, #229ed9 0%, #0088cc 100%);
}

.floating-telegram-btn:active {
    transform: scale(0.95);
}

.floating-telegram-btn i {
    font-size: 28px;
    transition: transform 0.3s ease;
}

.floating-telegram-btn:hover i {
    transform: rotate(15deg) scale(1.1);
}

@keyframes telegramPulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(0, 136, 204, 0.15);
    }
    50% {
        box-shadow: 0 4px 30px rgba(0, 136, 204, 0.3);
    }
}

/* Responsive Design untuk Telegram Button */

/* Desktop Large */
@media (min-width: 1200px) {
    .floating-telegram {
        bottom: 30px;
        right: 30px;
    }
    
    .floating-telegram-btn {
        width: 65px;
        height: 65px;
    }
    
    .floating-telegram-btn i {
        font-size: 30px;
    }
}

/* Desktop Medium */
@media (max-width: 1199px) and (min-width: 992px) {
    .floating-telegram {
        bottom: 25px;
        right: 25px;
    }
    
    .floating-telegram-btn {
        width: 60px;
        height: 60px;
    }
    
    .floating-telegram-btn i {
        font-size: 28px;
    }
}

/* Tablet */
@media (max-width: 991px) and (min-width: 768px) {
    .floating-telegram {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-telegram-btn {
        width: 55px;
        height: 55px;
    }
    
    .floating-telegram-btn i {
        font-size: 26px;
    }
}

/* Mobile Large */
@media (max-width: 767px) and (min-width: 481px) {
    .floating-telegram {
        bottom: 15px;
        right: 15px;
    }
    
    .floating-telegram-btn {
        width: 50px;
        height: 50px;
    }
    
    .floating-telegram-btn i {
        font-size: 24px;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    .floating-telegram {
        bottom: 12px;
        right: 12px;
    }
    
    .floating-telegram-btn {
        width: 45px;
        height: 45px;
    }
    
    .floating-telegram-btn i {
        font-size: 22px;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .floating-telegram {
        bottom: 10px;
        right: 10px;
    }
    
    .floating-telegram-btn {
        width: 42px;
        height: 42px;
    }
    
    .floating-telegram-btn i {
        font-size: 20px;
    }
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .floating-telegram {
        animation: none;
    }
    
    .floating-telegram-btn {
        transition: transform 0.1s ease;
    }
    
    .floating-telegram-btn:hover {
        animation: none;
    }
}

/* Print - Hide floating button */
@media print {
    .floating-telegram {
        display: none !important;
    }
}