/* Modern Green Theme 
name: Eco Green Serial,
creation date: 30 july 2023, 
version dle: 12-14
*/

/* SET BASE
----------------------------------------------- */
* {
    background: transparent; 
    margin: 0; 
    padding: 0; 
    outline: none; 
    border: 0; 
    box-sizing: border-box;
}
ol, ul {list-style: none;}
blockquote, q {quotes: none;}
table {border-collapse: collapse; border-spacing: 0;}
input, select {vertical-align: middle;}
article, aside, figure, figure img, hgroup, footer, header, nav, section, main {display: block;}
img {max-width: 100%;}
.clr {clear: both;}
.clearfix:after {content: ""; display: table; clear: both;}

:root {
    --primary-color: #4CAF50;
    --primary-light: #81C784;
    --primary-dark: #388E3C;
    --secondary-color: #8BC34A;
    --accent-color: #CDDC39;
    --text-dark: #2E7D32;
    --text-medium: #4a4a4a;
    --text-light: #757575;
    --bg-light: #E8F5E9; /* Slightly darker background */
    --bg-lighter: #F1F8E9;
    --bg-white: #FFFFFF;
    --border-color: #E0E0E0;
    --shadow-light: rgba(76, 175, 80, 0.1);
    --shadow-medium: rgba(76, 175, 80, 0.2);
    --shadow-dark: rgba(76, 175, 80, 0.3);
    --success-color: #4CAF50;
    --warning-color: #FFC107;
    --error-color: #F44336;
    --info-color: #2196F3;
    --rating-good: #4CAF50;
    --rating-average: #FFC107;
    --rating-bad: #F44336;
}

body {
    font: 14px 'Montserrat', sans-serif; /* Slightly smaller base font size */
    line-height: 1.6;
    padding: 0;
    margin: 0;
    color: var(--text-medium);
    background: var(--bg-light);
    min-height: 100%;
    width: 100%;
    font-weight: 400;
}
a {
    color: var(--primary-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}
a:hover, a:focus {
    color: var(--primary-color);
    text-decoration: underline;
}
h1, h2, h3, h4, h5 {
    font-weight: 600; 
    color: var(--text-dark);
    font-size: 1.1em; /* Adjusted heading sizes */
}

button, textarea, select, 
input[type="text"], input[type="password"], 
input[type="button"], input[type="submit"] {
    appearance: none; 
    -webkit-appearance: none; 
    font-size: 14px; /* Smaller form elements */
    font-family: 'Montserrat', sans-serif;
}

/* Buttons */
.button, .btn, .pagi-load a, .up-second li a, .usp-edit a, .qq-upload-button, 
button:not(.color-btn):not([class*=fr]):not(.search-btn):not([class*=owl-]), 
html input[type="button"], input[type="reset"], input[type="submit"], .meta-fav a, .usp-btn a {
    display: inline-block; 
    text-align: center; 
    padding: 0 18px; 
    height: 36px; 
    line-height: 36px;
    border-radius: 6px; 
    cursor: pointer; 
    font-weight: 500;
    background: linear-gradient(to right, var(--primary-light), var(--primary-color));
    color: var(--bg-white); 
    font-size: 14px; 
    border: none;
    box-shadow: 0 3px 12px var(--shadow-light);
    transition: all 0.3s ease;
}
.button:hover, .btn:hover, .up-second li a:hover, .usp-edit a:hover, 
.qq-upload-button:hover, .pagi-load a:hover, .usp-btn a:hover,
button:not(.color-btn):not([class*=fr]):not(.search-btn):not([class*=owl-]):hover, 
html input[type="button"]:hover, input[type="reset"]:hover, 
input[type="submit"]:hover, .meta-fav a:hover {
    background: linear-gradient(to right, var(--primary-color), var(--primary-light));
    color: var(--bg-white); 
    box-shadow: 0 5px 18px var(--shadow-medium);
}
button:active, input[type="button"]:active, input[type="submit"]:active {
    transform: translateY(1px);
}

/* Form Elements */
input[type="text"], input[type="password"] {
    height: 36px; 
    line-height: 36px;
    border-radius: 6px; 
    border: 1px solid var(--border-color); 
    padding: 0 12px;
    transition: all 0.3s ease;
}
select {
    height: 36px; 
    border: 1px solid var(--border-color); 
    padding: 0 12px;
    border-radius: 6px;
}
textarea {
    padding: 12px; 
    overflow: auto; 
    vertical-align: top; 
    resize: vertical;
    border-radius: 6px;
    border: 1px solid var(--border-color);
}
input[type="text"], input[type="password"], select, textarea {
    width: 100%; 
    background-color: var(--bg-white); 
    color: var(--text-medium); 
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
select {width: auto;}
input[type="text"]:focus, input[type="password"]:focus, textarea:focus {
    border-color: var(--primary-color); 
    box-shadow: 0 0 0 3px var(--shadow-light);
}
input::placeholder, textarea::placeholder {
    color: var(--text-light); 
    opacity: 1; 
    font-size: 13px;
} 
input:focus::placeholder, textarea:focus::placeholder {
    color: transparent;
}

/* Image Styles */
.img-box, .img-wide, .img-resp, .img-resp-vert, .img-fit {
    overflow: hidden; 
    position: relative;
    border-radius: 6px;
}
.img-resp {padding-top: 70%;}
.img-resp-vert {padding-top: 140%;}
.img-box img, .img-resp img, .img-resp-vert img {
    width: 100%; 
    min-height: 100%; 
    display: block;
    object-fit: cover;
}
.img-resp img, .img-resp-vert img {
    position: absolute; 
    left: 0; 
    top: 0;
}
.img-wide img {width: 100%; display: block;}
.img-fit img {
    width: 100%; 
    height: 100%; 
    object-fit: cover;
}
.nowrap {
    white-space: nowrap; 
    overflow: hidden; 
    text-overflow: ellipsis;
}

/* Flex Utilities */
.fx-row, #dle-content {
    display:-ms-flexbox;
    display:-webkit-flex;
    display:flex;
    -ms-flex-wrap:wrap;
    -webkit-flex-wrap:wrap;
    flex-wrap:wrap;
    -ms-flex-pack:justify;
    -webkit-justify-content:space-between;
    justify-content:space-between;
}
.fx-col {
    display:-ms-flexbox;
    display:-webkit-flex;
    display:flex; 
    -ms-flex-direction:column;
    -webkit-flex-direction:column;
    flex-direction:column;
}
.fx-center {
    -ms-flex-pack:center;
    -webkit-justify-content:center;
    justify-content:center;
}
.fx-middle {
    -ms-flex-align:center;
    -webkit-align-items:center;
    align-items:center;
}
.fx-start {
    -webkit-justify-content:flex-start;
    justify-content:flex-start;
}
.fx-first {
    -ms-flex-order: -1;
    -webkit-order: -1;
    order: -1;
}
.fx-last {
    -ms-flex-order: 10;
    -webkit-order: 10;
    order: 10;
}
.fx-1 {
    -ms-flex-preferred-size: 0; 
    flex-basis: 0; 
    -webkit-box-flex: 1; 
    -ms-flex-positive: 1; 
    flex-grow: 1; 
    max-width: 100%; 
    min-width: 50px;
}
.fx-between {
    -ms-flex-pack:justify;
    -webkit-justify-content:space-between;
    justify-content:space-between;
}

/* Typography */
b, strong, .fw700 {font-weight: 600;}
.icon-left [class*="fa-"], .icon-left .icon {margin-right: 8px;}
.icon-right [class*="fa-"], .icon-right .icon {margin-left: 8px;}
.hidden, #dofullsearch {display: none;}
.anim, .btn, button, .popular-item-img:before, .short-item a, .sidebar a, .header-btn, 
.short-img, .footer a, .side-nav a {transition: all .3s ease;}
.mtitle, .sub-title h1, .form-wrap h1 {
    margin-bottom: 24px; 
    font-size: 20px !important; 
    font-weight: 600;
    color: var(--text-dark);
}
#dle-content > * {width: 100%;}

/* BASIC GRID
----------------------------------------------- */
.wrap {
    min-width:320px; 
    position: relative; 
    padding: 24px;
}
.wrap-center {
    max-width:1200px; 
    margin:0 auto; 
    position:relative; 
    z-index:20;
}
.wrap-main {
    background-color: var(--bg-white); 
    border-radius: 10px; 
    box-shadow: 0 4px 24px var(--shadow-light);
}
.header {
    padding: 16px 32px; 
    background-color: var(--bg-white); 
    border-radius: 10px 10px 0 0; 
    border-bottom: 1px solid var(--border-color);
}
.cols {padding: 32px 32px;}
.main {min-height: 100vh;}
.sidebar {width: 280px; margin-right: 32px;}

.footer {
    background: var(--bg-white);
    padding: 24px 32px;
    color: var(--text-light);
    border-radius: 0 0 10px 10px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}
.footer a {
    color: var(--primary-dark); 
    text-decoration: none;
}
.footer a:hover {
    color: var(--primary-color); 
    text-decoration: underline;
}

#gotop {
    position:fixed; 
    width:44px; 
    height:44px; 
    line-height:44px; 
    right:16px; 
    bottom:16px;
    z-index:990; 
    display:none; 
    background: linear-gradient(to right, var(--primary-light), var(--primary-color));
    color:var(--bg-white); 
    cursor:pointer; 
    font-size:18px; 
    border-radius:50%; 
    text-align:center; 
    box-shadow: 0 4px 16px var(--shadow-light);
    transition: all 0.3s ease;
}
#gotop:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px var(--shadow-medium);
}

/* HEADER
----------------------------------------------- */
.logo {
    display: flex;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(to right, var(--primary-light), var(--primary-color));
    color: var(--bg-white);
    border-radius: 6px;
    margin-right: 10px;
    font-size: 16px;
}

.logo-text {
    font-weight: 700;
}

.logo-text span {
    color: var(--primary-color);
}

.header-btn {padding: 0 32px;}
.search-wrap {position:relative; margin: 0 16px 0 32px;}
.search-box input, .search-box input:focus {
    padding: 0 42px 0 14px; 
    border-radius: 6px; 
    background-color: var(--bg-lighter);
    border: 1px solid var(--border-color);
    box-shadow: none;
    transition: all 0.3s ease;
}
.search-box input:focus {
    background-color: var(--bg-white);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px var(--shadow-light);
}
.search-box input:not(:focus)::placeholder {
    color: var(--text-light); 
    opacity: 1; 
    font-size: 12px;
} 
.search-box button {
    position:absolute; 
    right:0px; 
    top:0px; 
    z-index:10; 
    width: 42px; 
    cursor: pointer; 
    background: none; 
    color: var(--text-light); 
    line-height: 36px; 
    text-align: center; 
    border-radius: 0 6px 6px 0;
    transition: color 0.3s ease;
}
.search-box button:hover {
    color: var(--primary-color);
}

.carou-content {height: 180px;}
.carou-sect {
    padding: 16px 32px; 
    background-color: var(--bg-lighter); 
    border-radius: 6px; 
    margin: 16px 0;
}
.carou-title {
    font-size: 16px; 
    font-weight: 500; 
    margin-bottom: 16px;
    color: var(--text-dark);
}
.popular-item-img {
    display: block; 
    border-radius: 6px; 
    height: 180px; 
    overflow: hidden;
    position: relative;
}
.popular-item-title {
    position: absolute; 
    z-index: 10; 
    left: 0; 
    bottom: 0; 
    right: 0; 
    padding: 16px; 
    color: var(--bg-white); 
    font-weight: 500; 
    word-wrap: break-word;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    transition: opacity 0.3s ease;
    font-size: 14px;
}
.popular-item-img:before {
    content: ''; 
    position: absolute; 
    z-index: 5;  
    left: 0; 
    right: 0; 
    bottom: 0; 
    height: 70%; 
    background: linear-gradient(to bottom, transparent 0%,rgba(0,0,0,0.7) 100%); 
    opacity: 1;
    transition: opacity 0.3s ease;
}
.popular-item:hover .popular-item-img:before, 
.popular-item:hover .popular-item-title {
    opacity: 0.8;
}

/* SIDEBAR
----------------------------------------------- */
.side-box {
    margin-bottom: 32px;
    background: var(--bg-white);
    padding: 16px;
    border-radius: 6px;
    box-shadow: 0 2px 8px var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.side-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px var(--shadow-medium);
}
.side-bt {
    font-size: 16px; 
    font-weight: 500; 
    margin-bottom: 16px; 
    color: var(--text-dark);
    position: relative;
    padding-bottom: 8px;
}
.side-bt:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 32px;
    height: 2px;
    background: linear-gradient(to right, var(--primary-light), var(--primary-color));
    border-radius: 2px;
}
.mb-remove {margin-bottom: -16px;}

.nav-col {width: 55%;}
.nav-col + .nav-col {width: 40%;}
.nav-title {
    font-weight: 500; 
    margin-bottom: 12px;
    color: var(--text-dark);
    font-size: 14px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--border-color);
}
.nav-menu + .nav-title {margin-top: 10px;}
.nav-menu a {
    display:block; 
    padding: 6px 0; 
    font-size: 13px; 
    color: var(--text-light);
    transition: all 0.3s ease;
}
.nav-menu a:hover, 
a.short-title:hover, 
.side-popular-item:hover .side-popular-item-title {
    color: var(--primary-color); 
    text-decoration: none;
}

.side-popular-item {
    margin-bottom: 16px; 
    display: flex; 
    align-items: center;
    transition: transform 0.3s ease;
}
.side-popular-item:hover {
    transform: translateX(5px);
}
.side-popular-item-img {
    width: 60px; 
    height: 80px; 
    border-radius: 5px; 
    margin-right: 12px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}
.side-popular-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.side-popular-item-title {
    font-weight: 500; 
    font-size: 13px;
    color: var(--text-medium);
    transition: color 0.3s ease;
}
.side-popular-item-info {
    color: var(--text-light); 
    margin-top: 4px; 
    font-size: 11px;
}
.side-popular-item-date {
    color: var(--text-light); 
    margin-top: 4px; 
    font-size: 10px; 
    font-weight: 300;
}

.side-recommend-item {
    display: block; 
    margin-bottom: 16px; 
    width: 46.6%;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}
.side-recommend-item-img {
    border-radius: 6px; 
    transition: transform 0.3s ease;
    width: 100%;
    height: auto;
    display: block;
}
.side-recommend-item:hover .side-recommend-item-img {
    transform: scale(1.03);
}

.lcomm {
    margin-bottom: 16px;
    background: var(--bg-white);
    padding: 12px;
    border-radius: 6px;
    box-shadow: 0 2px 8px var(--shadow-light);
}
.ltitle {
    display: block; 
    line-height: 1; 
    font-weight: 300; 
    font-size: 12px; 
    margin-top: 8px; 
    padding-left: 2px;
    color: var(--text-light);
}
.ltext {
    line-height: 1.3; 
    background-color: var(--bg-lighter); 
    padding: 8px; 
    border-radius: 6px;
    color: var(--text-medium);
}
.lmeta {
    font-size: 12px; 
    margin: 8px 0; 
    color: var(--text-light); 
    font-weight: 300;
}
.ldate, .lav, .lname {
    display: inline-block; 
    vertical-align: middle; 
    margin-right: 6px;
}
.lav {
    width: 18px; 
    height: 18px; 
    border-radius: 50%;
    background: linear-gradient(to right, var(--primary-light), var(--primary-color));
    color: var(--bg-white);
    text-align: center;
    line-height: 18px;
    font-size: 9px;
    font-weight: 600;
}
.lcomm .comm-letter {line-height: 18px; font-size: 11px;}
.lname {color: var(--text-medium); font-weight: 400;}

/* SECTION
----------------------------------------------- */
.sect {
    margin-bottom: 32px;
    background: var(--bg-white);
    padding: 16px;
    border-radius: 6px;
    box-shadow: 0 2px 8px var(--shadow-light);
}
.sect-header {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.sect:last-child {margin-bottom: 0;}
.sect-title {
    font-weight: 600; 
    font-size: 18px;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 8px;
}
.sect-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, var(--primary-light), var(--primary-color));
    border-radius: 2px;
}
.sect-title [class*=fa-], 
.side-bt [class*=fa-], 
.speedbar [class*=fa-], 
.carou-title [class*=fa-] {
    color: var(--primary-color); 
    margin-right: 12px;
}
.sorter, .sect-link {
    position:relative; 
    cursor:pointer; 
    height: 28px; 
    line-height: 28px; 
    margin-left: 12px;
    padding: 0 12px; 
    background-color: var(--bg-lighter); 
    border-radius: 5px; 
    font-size: 12px; 
    display: block;
    color: var(--text-light);
    transition: all 0.3s ease;
}
.sorter:before {
    content:attr(data-label); 
    display: inline-block; 
    vertical-align: top;
}
.sorter > span {
    display: inline-block; 
    vertical-align: top; 
    margin-left: 2px;
}
.sorter form {
    display:none; 
    background-color:var(--bg-white); 
    padding:12px; 
    line-height:24px; 
    box-shadow:0 4px 16px var(--shadow-light); 
    position:absolute; 
    right:0; 
    top:100%; 
    width:160px; 
    z-index:999; 
    border-radius: 6px;
    border: 1px solid var(--border-color);
}
.sorter a:hover {color: var(--primary-color);}
.sort li.asc a:after, .sort li.desc a:after {
    content:"\f063"; 
    font-family:"Font Awesome 5 Pro"; 
    display:inline-block; 
    margin-left:8px; 
    font-weight: 300;
}
.sort li.desc a:after {content:"\f062"}
.sorter:hover, .sect-link:hover {
    background: linear-gradient(to right, var(--primary-light), var(--primary-color));
    color: var(--bg-white);
}

/* SHORT ITEM
----------------------------------------------- */
.short-item {
    margin-bottom: 24px; 
    padding: 16px; 
    border-radius: 6px; 
    background-color: var(--bg-white);
    box-shadow: 0 2px 8px var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.short-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px var(--shadow-medium);
}
.short-img {
    width: 150px; 
    height: 220px; 
    margin-right: 16px; 
    display: block; 
    border-radius: 6px; 
    overflow: hidden;
    box-shadow: 0 2px 8px var(--shadow-light);
    transition: transform 0.3s ease;
}
.short-img:hover {
    transform: scale(1.02);
}
.short-header {margin-bottom: 12px;}
.short-title {
    display: block; 
    font-size: 18px; 
    font-weight: 600; 
    line-height: 1.4;
    color: var(--text-dark);
    transition: color 0.3s ease;
}
.short-title:hover {
    color: var(--primary-color);
}
.short-text {
    font-size: 13px; 
    line-height: 1.6;
    color: var(--text-medium);
}
.short-list li {
    position: relative; 
    padding-left: 100px; 
    margin: 6px 0; 
    font-size: 13px; 
    line-height: 1.5;
    color: var(--text-medium);
}
.short-list li > span:first-child {
    position: absolute; 
    left: 0; 
    top: 0; 
    color: var(--text-light);
    font-weight: 500;
}
.short-list a {
    color: var(--primary-dark); 
    text-decoration: none;
    transition: color 0.3s ease;
}
.short-list a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}
.short-meta {
    margin-top: 12px; 
    color: var(--text-light); 
    font-size: 12px; 
    font-weight: 300;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.short-meta-item {margin-right: 16px;}
.short-rating {
    line-height: 24px; 
    background-color: var(--bg-lighter); 
    padding: 0 10px; 
    font-size: 12px;
    border-radius: 5px; 
    margin-right: 16px;
    font-weight: 500;
    color: var(--text-dark);
}
.short-rating .fa-thumbs-up {color: var(--rating-good); margin-right: 6px;}
.short-rating .fa-thumbs-down {color: var(--error-color); margin: 0 6px;}
.short-label {
    background: linear-gradient(to right, var(--primary-light), var(--primary-color));
    padding: 2px 8px; 
    border-radius: 5px;
    position: absolute; 
    left: 8px; 
    top: 8px; 
    z-index: 10; 
    font-size: 11px; 
    font-weight: 600;
    color: var(--bg-white);
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.short-btn {
    height: 28px; 
    line-height: 28px; 
    font-size: 11px; 
    padding: 0 12px; 
    border-radius: 5px; 
    box-shadow: 0 1px 4px var(--shadow-light);
    background: var(--bg-lighter);
    color: var(--text-light);
    transition: all 0.3s ease;
}
.short-btn:hover {
    background: linear-gradient(to right, var(--primary-light), var(--primary-color));
    color: var(--bg-white);
    box-shadow: 0 2px 8px var(--shadow-medium);
}
.short-rate-in {
    line-height: 28px; 
    border-radius: 5px; 
    text-align: center; 
    font-size: 12px; 
    padding: 0 8px; 
    margin-left: 8px; 
    font-weight: 600; 
    box-shadow: 0 1px 4px var(--shadow-light);
    color: var(--bg-white);
}
.short-rate-in:before {
    content: attr(data-text); 
    display: inline; 
    margin-right: 4px; 
    text-transform: uppercase;
    font-size: 10px;
}
.short-rate-kp {background-color: var(--warning-color); color: #000;}
.short-rate-imdb {background-color: #F5DE50; color: #000;}
.mrating {margin-right: 16px; overflow: hidden;}
.mrating a {transition: none}
.short-img:hover {opacity: 0.9;}

/* SEO DESCRIPTION
----------------------------------------------- */
.site-desc {
    line-height: 1.6; 
    color: var(--text-medium); 
    font-size: 14px; 
    padding-top: 32px;
    background: var(--bg-white);
    padding: 16px;
    border-radius: 6px;
    box-shadow: 0 2px 8px var(--shadow-light);
    position: relative;
}
.site-desc:before {
    content: ''; 
    position: absolute; 
    left: 0; 
    top: 0; 
    right: 0; 
    height: 2px;
    background: linear-gradient(to right, var(--primary-light), var(--primary-color));
    border-radius: 2px;
}
.site-desc h1, .site-desc h2 {
    font-size: 18px; 
    font-weight: 600; 
    margin-bottom: 12px; 
    color: var(--text-dark);
}
.site-desc li {
    list-style-type: disc; 
    margin-left: 16px;
    margin-bottom: 6px;
}
.site-desc p {margin-bottom: 12px;}
.site-desc > *:last-child {margin-bottom: 0;}
.site-desc a {
    color: var(--primary-dark); 
    text-decoration: none;
    transition: color 0.3s ease;
}
.site-desc a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}
.site-desc img {
    float: left; 
    max-width: 180px; 
    margin: 0 16px 12px 0;
    border-radius: 6px;
    box-shadow: 0 2px 8px var(--shadow-light);
}

/* BOTTOM NAVIGATION
----------------------------------------------- */
.bottom-nav {
    margin-bottom: -8px; 
    text-align: center;
    padding: 16px 0;
}
.navigation a, .navigation span, .pnext a, .pprev a, .pprev > span, .pnext > span {
    display:inline-block; 
    padding:0 12px; 
    margin:0 4px 8px 0px; 
    line-height: 36px; 
    min-width: 36px; 
    background-color: var(--bg-lighter); 
    border-radius: 6px; 
    font-weight: 500; 
    font-size: 14px;
    color: var(--text-light);
    transition: all 0.3s ease;
}
.navigation span:not(.nav_ext), .pagi-nav a:hover {
    background: linear-gradient(to right, var(--primary-light), var(--primary-color));
    color: var(--bg-white);
    box-shadow: 0 2px 8px var(--shadow-medium);
}

/* FULL
----------------------------------------------- */
.speedbar {
    font-size: 13px; 
    color: var(--text-light); 
    margin-bottom: 16px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}
.speedbar .fal {margin-right: 6px; color: var(--primary-color);}
.fleft {width: 180px; margin-right: 16px;}
.fimg {
    border-radius: 6px; 
    box-shadow: 0 2px 8px var(--shadow-light);
    overflow: hidden;
}
.ftext {
    margin: 16px 0; 
    padding-top: 16px; 
    border-top: 1px solid var(--border-color);
    color: var(--text-medium);
    line-height: 1.6;
}
.fcols .short-list li {font-size: 12px;}
.fcols .short-meta-item:last-child {margin-right: 0;}
h1 a {
    margin-left: 8px; 
    font-size: 14px;
    color: var(--primary-color);
}
.fcols {
    padding: 16px;
    border-radius: 6px;
    background-color: var(--bg-white);
    box-shadow: 0 2px 8px var(--shadow-light);
}

.fsubtitle {
    text-align: center; 
    font-size: 16px; 
    font-weight: 500; 
    margin-bottom: 16px;
    color: var(--text-dark);
}
.fplayer {
    position:relative; 
    background-color: #000;
    border-radius: 6px;
    overflow: hidden;
    margin: 16px 0;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.fctrl {padding-right: 16px;}
.fplayer .tabs-sel span {
    display:inline-block; 
    padding:0 16px; 
    height:36px; 
    line-height:36px; 
    cursor:pointer; 
    background-color: rgba(0,0,0,0.5); 
    color: #fff; 
    font-weight: 500;
    transition: all 0.3s ease;
}
.fplayer .tabs-sel span.current {
    background: linear-gradient(to right, var(--primary-light), var(--primary-color));
    color: #fff;
}
.fplayer .tabs-sel span:hover {
    background-color: rgba(255,255,255,0.1);
}
.js .tabs-b {background-color: #000; display: none;}
.js .tabs-b.visible {display: block;}
.fcompl a, .ffav a {color: #fff;}
.fcompl a:hover, .ffav a:hover, .ffav span:hover {
    color: var(--primary-light); 
    cursor: pointer;
}
.fcompl, .ffav {margin-left: 16px;}

.fshare {
    padding: 8px; 
    text-align:center; 
    white-space:nowrap;
    margin: 16px 0;
}
.fshare .fab, .fshare .fas {
    width:36px; 
    height:36px; 
    border-radius:50%; 
    text-align:center; 
    line-height:36px; 
    background-color:var(--primary-color); 
    color:#fff; 
    font-size:14px; 
    margin:0 4px; 
    cursor:pointer;
    display: inline-block;
    transition: all 0.3s ease;
}
.fshare .fa:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px var(--shadow-medium);
}
.fab.fa-vk {background-color:#5075a5;}
.fab.fa-facebook-f {background-color:#3b5998;}
.fab.fa-twitter {background-color:#1da1f2;}
.fab.fa-odnoklassniki, .fa.fa-rss {background-color:#ee8208;}
.fas.fa-paper-plane {background-color:var(--primary-color);}
.fshare .fa-facebook-f::before {content: "\f39e" !important;}

/* FULL STORY STATIC
----------------------------------------------- */
.video-box embed,
.video-box object,
.video-box video,
.video-box iframe,
.video-box frame {
    max-width: 100%;
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9; 
    
}

.mejs-container {
    max-width: 100% !important;
}
.full-text {
    line-height: 1.6; 
    font-size: 14px;
    color: var(--text-medium);
    background: var(--bg-white);
    padding: 16px;
    border-radius: 6px;
    box-shadow: 0 2px 8px var(--shadow-light);
}
.full-text img:not(.emoji) {
    max-width:100%; 
    margin: 12px 0;
    border-radius: 6px;
    box-shadow: 0 2px 8px var(--shadow-light);
}
.full-text > img[style*="left"], .full-text > .highslide img[style*="left"] {
    margin:0 16px 12px 0;
    float: left;
}
.full-text > img[style*="right"], .full-text > .highslide img[style*="right"] {
    margin:0 0 12px 16px;
    float: right;
}
.full-text a {
    text-decoration:none; 
    color:var(--primary-dark);
    transition: color 0.3s ease;
}
.full-text a:hover {
    color:var(--primary-color);
    text-decoration: underline;
}
.full-text h2, .full-text h3, .full-text h4, .full-text h5 {
    margin:16px 0 12px 0; 
    font-size:18px; 
    font-weight:600;
    color: var(--text-dark);
}
.full-text p {margin-bottom:12px;}
.full-text > ul, .full-text > ol {margin:0 0 12px 0;}
.full-text > ul li {
    list-style:disc; 
    margin-left:16px;
    margin-bottom: 6px;
}
.full-text > ol li {
    list-style:decimal; 
    margin-left:16px;
    margin-bottom: 6px;
}

/* COMMENTS
----------------------------------------------- */
.add-comms {
    margin-bottom: 20px; 
    padding: 16px; 
    background-color: var(--bg-lighter); 
    border-radius: 6px;
    box-shadow: 0 2px 8px var(--shadow-light);
}
.ac-inputs input {width: 48.5%; margin-bottom: 12px;}
.ac-textarea textarea {height: 90px; margin-bottom: 12px;}
.add-comms input, .add-comms textarea, .ac-submit button {}
.ac-protect, .ac-textarea .bb-editor + br {display: none;}
.comments_subscribe input {margin-right: 8px;}
.comments_subscribe {display: block;}
.mass_comments_action {display: none;}
.last-comm-link {
    display: inline-block; 
    padding-bottom: 16px; 
    color: var(--primary-dark); 
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}
.last-comm-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.comm-avatar {
    position: absolute; 
    left: 0; 
    top: 0; 
    width: 36px; 
    height: 36px; 
    border-radius: 50%;
    overflow: hidden;
    background-color: var(--bg-lighter);
}
.comm-letter {
    position: absolute; 
    left: 0; 
    top: 0; 
    width: 100%; 
    height: 100%; 
    line-height: 36px; 
    text-align: center; 
    background: linear-gradient(to right, var(--primary-light), var(--primary-color));
    color: #fff; 
    font-size: 16px; 
    font-weight: 600; 
    text-transform: uppercase;
}
.comm-item {
    font-size: 13px; 
    padding-left: 50px; 
    position: relative; 
    min-height: 36px; 
    margin-bottom: 16px;
    background-color: var(--bg-white);
    padding: 12px;
    border-radius: 6px;
    box-shadow: 0 2px 8px var(--shadow-light);
}
.comm-two {margin: 4px 0 8px 0;}
.comm-one > span {
    margin-right: 12px; 
    color: var(--text-light);
    font-size: 12px;
}
.comm-one > span.comm-author, .comm-one > span.comm-author a {
    color: var(--text-dark); 
    font-weight: 500;
}
.comm-three-left > a, .comm-three-right li a {opacity: 0.8;}
.comm-three-right li {display: inline-block; margin-left: 12px;}
.comm-rate3 {
    white-space:nowrap; 
    margin-right: 12px; 
    height: 18px; 
    line-height: 18px; 
    display: inline-block; 
    vertical-align: top; 
    position: relative; 
    top: -3px;
}
.comm-rate3 a {
    display: inline-block; 
    vertical-align: middle; 
    position: relative; 
    opacity: 0.8;
    color: var(--text-light);
    transition: color 0.3s ease;
}
.comm-rate3 a:hover {
    color: var(--primary-color);
    opacity: 1;
}
.comm-rate3 a:first-child {top: -5px;}
.comm-rate3 > span {margin: 0 4px;}
.comm-rate3 > span > span.ratingtypeplus {color: var(--rating-good);}
.comm-rate3 > span > span.ratingplus {color: var(--rating-good);}
.comm-rate3 > span > span.ratingminus {color: var(--error-color);}
.comm-three a:hover {border-bottom-color: transparent;}
.comm-three-left > a {
    opacity: 1; 
    color: var(--primary-dark); 
    text-decoration: none;
    transition: color 0.3s ease;
}
.comm-three-left > a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* LOGIN
----------------------------------------------- */
.overlay-box {
    position: fixed; 
    z-index: 998; 
    left: 0; 
    top: 0; 
    width: 100%; 
    height: 100%; 
    opacity: 0.8; 
    background-color: #000; 
    cursor: pointer;
}
.login-box {
    position: fixed; 
    z-index: 999; 
    left: 50%; 
    top: 50%; 
    transform: translate(-50%,-50%); 
    background-color: var(--bg-white); 
    padding: 24px 48px 32px 48px; 
    border-top: 4px solid var(--primary-color); 
    width: 360px; 
    box-shadow: 0 16px 48px rgba(0,0,0,0.2);
    border-radius: 6px;
}
.login-close {
    width: 24px; 
    height: 24px; 
    line-height: 24px; 
    text-align: center; 
    font-size: 22px; 
    cursor: pointer; 
    position: absolute; 
    top: -28px; 
    right: -28px; 
    color: #fff;
    transition: color 0.3s ease;
}
.login-close:hover {
    color: var(--primary-light);
}
.login-title {
    font-size: 20px; 
    font-weight: 600; 
    margin-bottom: 12px; 
    text-align: center;
    color: var(--text-dark);
}
.login-avatar {
    width: 56px; 
    height: 56px; 
    border-radius: 50%; 
    margin: 0 auto 12px auto; 
    text-align: center; 
    line-height: 56px; 
    font-size: 22px; 
    background: linear-gradient(to right, var(--primary-light), var(--primary-color));
    color: #fff;
}
.login-input {margin-bottom: 12px;}
.login-btn button {width: 100%; margin: 12px 0;}
.login-btm a {
    border-bottom: 1px dotted var(--primary-color); 
    color: var(--primary-dark); 
    font-size: 12px;
    transition: color 0.3s ease;
}
.login-btm a:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}
.login-check {position: relative; font-size: 13px;}
.login-check input {opacity: 0; position: absolute; cursor: pointer;}
.login-check span {
    display: block; 
    padding-left: 32px; 
    height: 28px; 
    line-height: 28px; 
    color: var(--text-light);
}
.login-check span:before, .login-check span:after{content: '';position: absolute;top: 50%;transition: .3s;}
.login-check span:before{
    left: 0; 
    height: 8px; 
    margin-top: -4px; 
    width: 24px; 
    border-radius: 4px; 
    background: var(--border-color); 
    box-shadow: inset 0 1px 4px rgba(0,0,0,0.1);
}
.login-check span:after{
    left: 1px; 
    height: 10px; 
    width: 10px; 
    margin-top: -5px; 
    background: var(--bg-white);
    border-radius: 5px; 
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}
.login-check input:checked + span:before {background-color: var(--primary-color);}
.login-check input:checked + span:after {
    left: 13px; 
    background-color: var(--bg-white); 
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}
.login-menu {
    border-top: 1px solid var(--border-color); 
    border-left: 1px solid var(--border-color);
    display: flex;
    margin-top: 16px;
}
.login-menu li {
    text-align: center; 
    border-right: 1px solid var(--border-color); 
    border-bottom: 1px solid var(--border-color); 
    width: 50%;
    transition: background-color 0.3s ease;
}
.login-menu li:hover {
    background-color: var(--bg-lighter);
}
.login-menu a {
    display: block; 
    padding: 8px 4px; 
    font-size: 12px;
    color: var(--text-medium);
    transition: color 0.3s ease;
}
.login-menu li .fa {
    display: none; 
    height: 24px; 
    font-size: 20px; 
    color: var(--primary-color);
}
.login-admin {text-align: center; margin: -8px 0 20px 0;}
.login-soc-title {
    display: flex; 
    align-items: center; 
    margin: 24px 0 12px 0;
    color: var(--text-light);
    font-size: 13px;
}
.login-soc-title:before, .login-soc-title:after {
    content: ''; 
    height: 1px; 
    background-color: var(--border-color); 
    flex: 1;
}
.login-soc-title:before {margin-right: 12px;}
.login-soc-title:after {margin-left: 12px;}
.login-soc-btns {text-align: center; margin-top: 12px;}
.login-soc-btns a {
    display:inline-block; 
    margin: 0 4px; 
    vertical-align:top;
    transition: transform 0.3s ease;
}
.login-soc-btns a:hover {
    transform: translateY(-3px);
}
.login-soc-btns img {
    display:block; 
    width:36px; 
    height: 36px; 
    border-radius: 50%;
    box-shadow: 0 2px 8px var(--shadow-light);
}

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-carousel {display: none; opacity: 0; transition: opacity .3s ease; width: 100%; position: relative; z-index: 10;}
.owl-carousel .owl-stage {position: relative;
	display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-justify-content:flex-start;justify-content:flex-start;}
.owl-carousel .owl-stage-outer {position: relative; overflow: hidden; -webkit-transform: translate3d(0px, 0px, 0px);}
.owl-carousel .owl-item {position: relative; min-height: 1px;}
.owl-carousel .owl-nav.disabled, .owl-carousel .owl-dots.disabled, .owl-carousel.owl-refresh .owl-item {display: none;}
.owl-carousel.owl-loaded, .owl-carousel.owl-loading, .no-js .owl-carousel {display: block; opacity: 1;}
.owl-carousel.owl-loading, .owl-carousel.owl-hidden {opacity: 0;}
.owl-carousel.owl-drag .owl-item {user-select: none;}
.owl-carousel.owl-grab {cursor: move; cursor: grab;}
.owl-carousel .animated {animation-duration: 1000ms; animation-fill-mode: both;}
.owl-carousel .owl-animated-in {z-index: 0;}
.owl-carousel .owl-animated-out {z-index: 1;}
.owl-carousel .fadeOut {animation-name: fadeOut;}
@keyframes fadeOut { 0% {opacity: 1;} 100% {opacity: 0;} }
.owl-height {transition: height 500ms ease-in-out;}
.owl-carousel .owl-item .owl-lazy {opacity: 0; transition: opacity 400ms ease;}
.owl-carousel .owl-item img.owl-lazy {transform-style: preserve-3d;}
.owl-nav {position:absolute; right:0; top:0; z-index: 1;}
.owl-prev, .owl-next {
    display: block; 
    cursor: pointer; 
    background: none; 
    color: var(--primary-color); 
    box-shadow: none; 
    height: 36px; 
    line-height: 36px; 
    position: absolute; 
    top: -44px; 
    box-shadow: none; 
    font-size: 22px;
    transition: color 0.3s ease;
}
.owl-prev {right:40px; color: var(--primary-color);}
.owl-next {right:0px;}
.owl-prev:hover, .owl-next:hover {color:var(--primary-light);}

/* ADAPTIVE
----------------------------------------------- */
.btn-menu {display: none;}
.side-panel {
    width:260px; 
    height:100%; 
    overflow-x:hidden; 
    overflow-y:auto; 
    background-color:var(--bg-white);
    padding:16px; 
    z-index:9999; 
    position:fixed; 
    left:-280px; 
    top:0; 
    transition:left .4s ease;
    box-shadow: 0 0 24px rgba(0,0,0,0.2);
}
.side-panel.active {left:0;}
.close-overlay {
    width:100%; 
    height:100%; 
    background-color:rgba(0,0,0,0.5); 
    position:fixed; 
    left:0; 
    top:0; 
    z-index:9998; 
    display:none;
}
.btn-close {
    cursor:pointer; 
    display:block; 
    left: 260px; 
    top: -36px; 
    position: fixed; 
    z-index: 9999;
    width:36px; 
    height:36px; 
    line-height:36px; 
    text-align:center; 
    font-size:16px; 
    background: linear-gradient(to right, var(--primary-light), var(--primary-color));
    color: var(--bg-white); 
    transition:top .4s ease;
    border-radius: 0 0 6px 6px;
}
.btn-close.active {top:0px;}
body.opened-menu {overflow: hidden; width: 100%; height: 100%;}
.side-panel .side-nav a {white-space: nowrap; overflow: hidden; text-overflow: ellipsis;}
.side-panel .side-box {
    margin-bottom: 16px;
    background: var(--bg-lighter);
    padding: 12px;
    border-radius: 6px;
}

@media screen and (max-width: 1220px) {
.wrap {padding: 0; overflow: hidden;}
.header, .footer, .cols, .carou-sect {
    padding-left: 16px; 
    padding-right: 16px; 
    border-radius: 0; 
    background-image: none;
}
.wrap-center {max-width:1000px; border-radius: 0;}
.sidebar {display: none;}
.btn-menu {
    display: block; 
    font-size: 22px; 
    margin-left: 16px; 
    cursor: pointer; 
    color: var(--primary-color);
    transition: color 0.3s ease;
}
.btn-menu:hover {
    color: var(--primary-light);
}
.cols {padding-top: 16px;}

.video-box embed, .video-box object, .video-box video, .video-box iframe, .video-box frame
}

@media screen and (max-width: 950px) {
.wrap-center {max-width:768px;}
.short-meta-item:not(.mrating-count) {display: none;}
.footer {display: block; text-align: center;}
.footer-copyright {margin: 0 0 16px 0;}
}

@media screen and (max-width: 760px) {
.wrap-center {max-width:640px;}
.not-logged .login-avatar {display: none;}
.login-close {top: -5px;}
.login-title {font-size: 16px;}
.login-box {
    max-width: calc(100% - 48px); 
    padding: 12px;
    border-top: 2px solid var(--primary-color);
}
.search-wrap {
    -ms-flex-order: 10;
    -webkit-order: 10;
    order: 10; 
    min-width: 100%; 
    margin: 0; 
    margin-top: 16px;
}
.header-btn {padding: 0 8px;}
.logo {
    -ms-flex-preferred-size: 0; 
    flex-basis: 0; 
    -webkit-box-flex: 1; 
    -ms-flex-positive: 1; 
    flex-grow: 1; 
    max-width: 100%; 
    min-width: 50px; 
    position: relative; 
    margin-right: 16px;
    font-size: 20px;
}

.fcols {display: block; padding: 0; background-color: transparent;}
.fleft {margin: 0 auto 8px auto;}
.fcols:after {content: ""; display: table; clear: both;}
.short-rates {width: 100%; margin: 8px 0 0 -8px; justify-content: flex-start;} 
.fcols .short-list li {padding-left: 90px;}
.mrating-count {text-align: right; margin-right: 0; margin-left: -16px;}
.ffav, .fcompl {display: none;}
.fctrl {padding: 0;}


.dcont button {font-size:11px; padding:0 12px !important;}
.comments-tree-list .comments-tree-list {padding-left:0px !important;}
.comments-tree-list .comments-tree-list:before {display:none;}
.mass_comments_action {display:none;}
}

@media screen and (max-width: 590px) {
.wrap-center {max-width:480px;}
.short-item {
    width: 47% !important; 
    margin-bottom: 8px; 
    padding: 0; 
    background-color: transparent; 
    border: 0;
    box-shadow: none;
}
.short-item:hover {
    transform: none;
}
.short-item .short-img {
    width: 100%; 
    margin: 0; 
    margin-bottom: 8px; 
    padding-top: 140%; 
    height: auto;
}
.short-item .short-meta, .short-item .short-list, .short-item .short-rates, .sect-title .fal {display: none;}
.short-item .short-title {
    white-space: normal; 
    font-size: 14px;
    padding: 0 4px;
}
.short-item .short-img img {position: absolute; left: 0; top: 0;}
.navigation {justify-content: center;}
.sect-title, .logo {font-size: 16px;}

.ac-inputs input {width: 100%;}
.video-box embed, .video-box object, .video-box video, .video-box iframe, .video-box frame

.ui-dialog {width:100% !important;}
.upop-left, .upop-right {float:none !important; width:100% !important; margin:0; padding:0 16px;}
.upop-left {margin-bottom:8px; text-align:center;}
.ui-dialog-buttonset button {display:block; margin:0 0 4px 0; width:100%;}
#dofullsearch, #searchsuggestions span.seperator {display:none !important;}
.attach .download-link {margin:0 -12px 0 0; float:none; display:block; padding:0 8px;}
.attach-info {float:none;}
}

@media screen and (max-width: 470px) {
.wrap-center22 {max-width:360px;}

.fleft {width: 100%;}
.fimg {height: 120px;}
.fimg img {height: 100%; object-fit: cover;}
.fimg:before {
    content: ''; 
    position: absolute; 
    z-index: 5;  
    left: 0; 
    right: 0; 
    bottom: 0; 
    height: 70%; 
    background: linear-gradient(to bottom, transparent 0%,rgba(0,0,0,0.7) 100%); 
    opacity: 1;
}
.video-box embed, .video-box object, .video-box video, .video-box iframe, .video-box frame
}

/* Movie Info Block */
.movie-info-block-full {
  background: var(--bg-white);
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 4px 16px var(--shadow-light);
  margin: 24px 0;
  position: relative;
  overflow: hidden;
}

.movie-info-block-full::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--primary-light), var(--primary-color));
}

.movie-info-inner {
  background: var(--bg-white);
  padding: 16px;
  border-radius: 8px;
}

.movie-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  margin: 0;
  position: relative;
}

.movie-info-row:not(:last-child)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border-color);
}

.movie-info-label {
  color: var(--text-light);
  font-weight: 500;
  font-size: 14px;
}

.movie-info-value {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 14px;
  text-align: right;
}

@media (max-width: 768px) {
  .movie-info-inner {
    padding: 12px;
  }
  .movie-info-row {
    padding: 8px 0;
  }
  .movie-info-label {
    font-size: 13px;
  }
  .movie-info-value {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .movie-info-inner {
    padding: 10px;
  }
  .movie-info-label {
    font-size: 12px;
  }
  .movie-info-value {
    font-size: 12px;
  }
}

/* Player Styles */
.fplayer {
    background: var(--bg-white);
    border-radius: 10px;
    padding: 16px;
    box-shadow: 0 4px 16px var(--shadow-light);
    margin: 24px 0;
    position: relative;
    overflow: hidden;
}

.fplayer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary-light), var(--primary-color));
}

/* Tab Styles */
.tabs-sel {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.tabs-sel::-webkit-scrollbar {
    height: 3px;
}

.tabs-sel::-webkit-scrollbar-thumb {
    background: rgba(76, 175, 80, 0.3);
    border-radius: 2px;
}

.tab-btn {
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 5px;
    background: var(--bg-lighter);
    color: var(--text-light);
    font-weight: 500;
    font-size: 13px;
    white-space: nowrap;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.tab-btn.active {
    background: linear-gradient(to right, var(--primary-light), var(--primary-color));
    color: var(--bg-white);
    font-weight: 600;
}

/* Video Container */
.tabs-container {
    position: relative;
    width: 100%;
}

.video-box {
    display: none;
    width: 100%;
    background: #000;
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.video-box.active {
    display: block;
}

/* Social Buttons */
.fshare {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    justify-content: center;
}

.fshare span {
    cursor: pointer;
    color: var(--text-light);
    font-size: 14px;
    transition: color 0.3s ease;
}

.fshare span:hover {
    color: var(--primary-color);
}

/* Mobile Adaptation */
@media (max-width: 768px) {
    .fplayer {
        padding: 12px;
        margin: 16px 0;
    }
    
    .tab-btn {
        padding: 5px 10px;
        font-size: 12px;
    }
    
    .tabs-sel {
        gap: 6px;
    }
}

@media (max-width: 480px) {
    .fplayer {
        padding: 10px;
        margin: 12px 0;
        border-radius: 8px;
    }
    
    .tab-btn {
        padding: 4px 8px;
        font-size: 11px;
    }
    
    .tabs-sel {
        gap: 4px;
    }
}

/* Search Results */
.search-result-item {
    padding: 16px;
    margin-bottom: 16px;
    background: var(--bg-white);
    border-radius: 6px;
    box-shadow: 0 2px 8px var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.search-result-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px var(--shadow-medium);
}

.search-result-title {
    margin: 0 0 8px 0;
    font-size: 16px;
}

.search-result-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.search-result-title a:hover {
    color: var(--primary-color);
}

.search-result-meta {
    margin-bottom: 8px;
    font-size: 13px;
    color: var(--text-light);
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.search-result-excerpt {
    margin: 0 0 12px 0;
    color: var(--text-medium);
    font-size: 13px;
    line-height: 1.6;
}

.search-result-footer {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    align-items: center;
}

.search-rating {
    display: flex;
    gap: 8px;
}

.search-rating span {
    padding: 2px 6px;
    border-radius: 3px;
    font-weight: 500;
}

.kp-rating {
    background-color: var(--warning-color);
    color: #000;
}

.imdb-rating {
    background-color: #F5DE50;
    color: #000;
}

.search-date {
    color: var(--text-light);
}

/* Text Collapse */
@media (max-width: 768px) {
  .ftext {
    max-height: 100px;
    position: relative;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
  }

  .ftext::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--bg-white));
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .ftext.expanded {
    max-height: 2000px; 
  }

  .ftext.expanded::after {
    opacity: 0;
  }

  .read-more-btn {
    display: block;
    width: 100%;
    padding: 8px;
    margin-top: 12px;
    background: linear-gradient(to right, var(--primary-light), var(--primary-color));
    color: var(--bg-white);
    border-radius: 6px;
    text-align: center;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .read-more-btn:hover {
    box-shadow: 0 2px 8px var(--shadow-medium);
  }
}