@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@500;600;700;800&display=swap');

/* Datalife Engine template - Streamverse Dark Theme
-------------------------------------------------- */

:root {
  --bg-primary: #0b0f19;
  --bg-secondary: #0e1322;
  --bg-card: #151c2e;
  --accent: #38bdf8;
  --accent-hover: #0ea5e9;
  --accent-glow: rgba(56, 189, 248, 0.25);
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --border-color: rgba(255, 255, 255, 0.08);
  --font-main: 'Inter', sans-serif;
  --font-heading: 'Montserrat', sans-serif;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.5);
  --border-radius-lg: 16px;
  --border-radius-md: 12px;
  --border-radius-sm: 8px;
}

/* SET BASE
----------------------------------------------- */
* {background: transparent; margin: 0; padding: 0; outline: none; border: 0;
-webkit-box-sizing: border-box; -moz-box-sizing: border-box; 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;}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--bg-card);
    border: 2px solid var(--bg-primary);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

body {
    font-family: var(--font-main);
    font-size: 14px;
    line-height: 1.6;
    padding: 0;
    margin: 0;
    color: var(--text-muted);
    background: var(--bg-primary);
    min-height: 100%;
    width: 100%;
    font-weight: 400;
}

a {
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.2s ease;
}
a:hover, a:focus {
    color: var(--accent);
    text-decoration: none;
}
h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.3;
}

button, textarea, input[type="text"], input[type="password"] {
    appearance: none;
    -webkit-appearance: none;
    font-size: 15px;
    font-family: var(--font-main) !important;
}

/* BUTTONS
----------------------------------------------- */
.button, .btn, .pagi-load a, .up-second li a, .usp-edit a, .qq-upload-button, button:not(.color-btn):not([class*=fr]), 
html input[type="button"], input[type="reset"], input[type="submit"], .meta-fav a, .usp-btn a {
    display: inline-block;
    text-align: center;
    padding: 0 24px;
    height: 42px;
    line-height: 42px;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    text-transform: uppercase;
    color: var(--bg-primary);
    background: var(--accent);
    font-size: 13px;
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px var(--accent-glow);
}

.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):hover, html input[type="button"]:hover, input[type="reset"]:hover, 
input[type="submit"]:hover, .meta-fav a:hover {
    background: var(--accent-hover);
    color: var(--bg-primary);
    box-shadow: 0 6px 20px rgba(56, 189, 248, 0.4);
    transform: translateY(-1px);
}

button:active, input[type="button"]:active, input[type="submit"]:active {
    transform: translateY(1px);
}

/* FORM CONTROLS
----------------------------------------------- */
input[type="text"], input[type="password"] {
    height: 42px;
    line-height: 42px;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-color);
    padding: 0 15px;
}
select {
    height: 42px;
    border: 1px solid var(--border-color);
    padding: 0 15px;
    border-radius: var(--border-radius-sm);
    background-color: var(--bg-card);
    color: var(--text-main);
}
textarea {
    padding: 15px;
    overflow: auto;
    vertical-align: top;
    resize: vertical;
    border-radius: var(--border-radius-sm);
}

input[type="text"], input[type="password"], select, textarea {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.03);
    color: var(--text-main);
    box-shadow: none;
    transition: all 0.3s ease;
}

input[type="text"]:focus, input[type="password"]:focus, textarea:focus {
    border-color: var(--accent);
    background-color: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 0 1px var(--accent), 0 0 12px var(--accent-glow);
}
input::placeholder, textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.5;
    font-size: 13px;
} 
input:focus::placeholder, textarea:focus::placeholder {
    color: transparent;
}

/* IMAGES & LAYOUTS
----------------------------------------------- */
.img-box, .img-wide, .img-square, .img-resp, .img-resp-vert, .img-resp-sq, .img-fit {
    overflow: hidden;
    position: relative;
    background-color: rgba(255, 255, 255, 0.02);
}
.img-resp {padding-top: 60%;}
.img-resp-vert {padding-top: 145%;}
.img-resp-sq {padding-top: 100%;}
.img-box img, .img-square img, .img-resp img, .img-resp-vert img, .img-resp-sq img {
    width: 100%;
    min-height: 100%;
    display: block;
    object-fit: cover;
}
.img-resp img, .img-resp-vert img, .img-resp-sq 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 SYSTEM
----------------------------------------------- */
.fx-row {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-top {-ms-flex-align:flex-start;-webkit-align-items:flex-start;align-items: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;}

b, strong {font-weight: 600; color: var(--text-main);}
.icon-left .fa, .icon-left .icon {margin-right: 10px;}
.icon-right .fa, .icon-right .icon {margin-left: 10px;}
.hidden, #dofullsearch {display: none;}
.anim {transition: all .3s ease;}
.anim-all {transition: all 0.5s ease;}
.mtitle, .sub-title h1, .form-wrap h1 {margin-bottom: 25px; font-size: 24px; font-weight: 700; font-family: var(--font-heading);}

/* BASIC GRID
----------------------------------------------- */
.wrap {min-width:320px; position: relative; padding-top: 100px;}
.wrap-center {max-width:1240px; margin:0 auto; position:relative; z-index:20;}
.wrap-main {
    background-color: var(--bg-secondary);
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
    margin-top: 20px;
    margin-bottom: 40px;
}
.content {padding: 30px;}
.footer {
    background-color: #080b12;
    color: var(--text-muted);
    padding: 40px 30px;
    border-top: 1px solid var(--border-color);
}

#gotop {
    position:fixed; width:45px; height:45px; line-height:45px; right:20px; bottom:20px;
    z-index:9998; display:none; background-color:var(--bg-card); color:var(--text-main); cursor:pointer; font-size:18px; 
    border-radius:50%; text-align:center; box-shadow: var(--shadow-md); border: 1px solid var(--border-color);
    transition: all 0.3s;
}
#gotop:hover {
    color: var(--accent);
    border-color: var(--accent);
    transform: translateY(-3px);
}

/* HEADER
----------------------------------------------- */
.header {
    background: rgba(14, 19, 34, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm); 
    transition: all .3s ease;
    position: relative;
    z-index: 99;
}
.header-in {
    padding: 0 30px;
    height: 80px;
}
.header.sticky {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
}
.header.sticky-hide {top: -80px;}
.header.sticky-vis {top: 0;}

.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}
.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: var(--bg-primary) !important;
    font-size: 15px;
    box-shadow: 0 0 15px var(--accent-glow);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-right: 12px;
}
.logo-icon .fa-play {
    position: relative;
    left: 1px;
    color: var(--bg-primary) !important;
}
.logo-text:hover .logo-icon {
    transform: rotate(360deg) scale(1.08);
}
.logo-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-main);
    user-select: none;
}
.logo-title span {
    color: var(--accent);
}

.search-wrap {
    margin: 0 20px;
}
.search-box {
    width: 100%;
    position: relative;
    border-radius: 20px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    box-sizing: border-box;
    transition: all 0.3s ease;
    overflow: hidden;
}
.search-box:focus-within {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent), 0 0 12px var(--accent-glow);
}
.search-box input {
    width: 100%;
    height: 100%;
    padding: 0 45px 0 20px;
    border: none !important;
    background: transparent !important;
    color: var(--text-main);
    box-sizing: border-box;
    outline: none !important;
    box-shadow: none !important;
}
.search-box button {
    position: absolute !important;
    right: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
    width: 45px !important;
    height: 100% !important;
    z-index: 10 !important;
    padding: 0 !important; 
    margin: 0 !important;
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    color: var(--text-muted) !important;
    font-size: 15px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: color 0.3s !important;
    transform: none !important;
    border-radius: 0 20px 20px 0 !important;
    text-transform: none !important;
    letter-spacing: normal !important;
}
.search-box button:hover,
.search-box button:focus,
.search-box button:active {
    background: transparent !important;
    background-color: transparent !important;
    color: var(--accent) !important;
    box-shadow: none !important;
    transform: none !important;
    outline: none !important;
}
.search-box button::-moz-focus-inner {
    border: 0 !important;
    padding: 0 !important;
}
.search-box:focus-within button {
    color: var(--accent) !important;
}

.btn-login {
    height: 36px;
    line-height: 34px;
    margin-left: 15px;
    border-radius: 18px;
    font-weight: 600;
    font-family: var(--font-heading);
    font-size: 13px;
    border: 1px solid rgba(56, 189, 248, 0.3);
    background: rgba(56, 189, 248, 0.08);
    color: var(--accent);
}

.hmenu {padding: 0 20px 0 40px;}
.hmenu > li {margin-right: 25px; position: relative;}
.hmenu > li > a {
    display: block;
    height: 80px;
    line-height: 80px;
    opacity: 0.7;
    font-size: 15px;
    color: var(--text-main);
    font-weight: 500;
    font-family: var(--font-heading);
    letter-spacing: 0.2px;
}
.hmenu > li:hover > a, .hmenu > li > a.is-active {
    opacity: 1;
    color: var(--accent);
    box-shadow: inset 0 -3px var(--accent);
}

/* Drodown Hidden Menu */
.hidden-menu {
    background: #0f172a;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    z-index: 100; 
    position: absolute;
    left: 0;
    top: 100%;
    width: 800px;
    padding: 20px;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.08);
    pointer-events: none;
    opacity: 0;
    transform: translateY(15px);
    transition: all .3s ease;
}
.hm-col {
    width: 20%; 
    float: left;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    box-sizing: border-box;
}
.hm-col:last-of-type {
    border-right: none;
}
.hm-col li {height: 30px; line-height: 30px; font-weight: 600; padding: 0 10px;}
.hm-col li.hm-title {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    font-weight: 700;
    line-height: 1.3;
    margin-top: 10px;
    margin-bottom: 6px;
    height: auto;
    border-left: 2px solid var(--accent);
    padding-left: 8px;
}
.hm-col a {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 500; 
    color: var(--text-muted);
    margin: 0 -10px;
    padding: 0 10px;
    font-size: 13px;
    display: block;
    border-radius: var(--border-radius-sm);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.hm-col a:hover {
    background-color: rgba(56, 189, 248, 0.12);
    color: var(--text-main);
    padding-left: 16px;
}
.hmenu > li:hover .hidden-menu {
    pointer-events: auto;
    opacity: 1;
    transform: translateY(0px);
}
.one-col {width: 180px;}
.one-col .hm-col {width: 100%;}


/* SECTION & CATEGORIES
----------------------------------------------- */
.sect {margin-bottom: 35px;}
.sect-header {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
    margin-bottom: 20px;
}
.sect-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-main) !important;
    background: transparent;
    padding: 0;
    margin-right: 25px;
    height: auto;
    line-height: normal;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    font-family: var(--font-heading);
}
a.sect-title:hover {
    text-decoration: none;
    color: var(--accent) !important;
}
.sect-title .fa {
    margin-left: 8px;
    font-size: 13px;
    transition: transform 0.25s;
    color: var(--accent);
}
a.sect-title:hover .fa {
    transform: translateX(5px);
}

.sect-tabs {
    display: flex;
    gap: 8px;
}
.sect-tabs span {
    height: 32px;
    line-height: 32px;
    padding: 0 16px;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.25s;
    display: inline-block;
}
.sect-tabs span.is-active {
    background-color: var(--accent);
    color: var(--bg-primary);
    font-weight: 600;
}
.sect-tabs span:not(.is-active):hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-main);
}

.sect-items {
    margin: 0 -8px -15px -8px;
}
.sect-cont > .fa {font-size:80px; color:rgba(255,255,255,0.05); display:block; text-align:center; padding: 40px 0;}


/* CARD THUMBNAIL (MOVIE CARD)
----------------------------------------------- */
.th-item {
    float: left;
    width: 16.66%;
    padding: 0 8px;
    margin-bottom: 20px;
}
.th-in {
    display: flex;
    flex-direction: column;
    position: relative;
    background: var(--bg-card);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}
.th-in:hover {
    transform: translateY(-6px);
    border-color: rgba(56, 189, 248, 0.35);
    box-shadow: var(--shadow-md), 0 0 15px var(--accent-glow);
}

.th-img {
    width: 100%;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    position: relative;
}
.th-img:before {
    display: none; /* Убираем старый градиент */
}
.th-img img {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.th-in:hover .th-img img {
    transform: scale(1.05);
}

/* Card details (Placed below image via flexbox style) */
.th-desc {
    position: static;
    padding: 12px 10px;
    color: var(--text-main);
    text-align: left;
    background: var(--bg-card);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.th-title {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-main);
    line-height: 1.35;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 38px;
    margin-bottom: 4px;
    transition: color 0.2s;
}
.th-in:hover .th-title {
    color: var(--accent);
}
.th-year {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 0;
    opacity: 1;
}

.th-rates {
    margin-top: 8px;
    display: flex;
    gap: 6px;
    justify-content: flex-start;
}
.th-rate {
    font-size: 11px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.th-rate:before {
    content: attr(data-text);
    display: inline-block;
    margin-right: 3px;
    text-transform: uppercase;
    font-size: 9px;
    opacity: 0.8;
}
.th-rate-kp:before {color: #f59e0b;}
.th-rate-imdb:before {color: #eab308;}

.th-series {
    position: absolute;
    z-index: 5;
    left: 8px;
    top: 8px;
    padding: 4px 8px;
    border-radius: var(--border-radius-sm);
    background-color: var(--accent);
    color: var(--bg-primary);
    font-weight: 700;
    font-size: 11px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* Play button hover overlay */
.th-mask {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 15, 25, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    z-index: 11;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
    border-radius: var(--border-radius-md);
}
.with-mask:hover .th-mask {
    opacity: 1;
}
.th-mask .fa {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    text-align: center;
    line-height: 48px;
    padding-left: 3px;
    font-size: 20px;
    color: var(--bg-primary);
    background-color: var(--accent);
    box-shadow: 0 0 15px var(--accent-glow);
    transition: transform 0.3s ease;
}
.th-in:hover .th-mask .fa {
    transform: scale(1.1);
}


/* SEO DESCRIPTION
----------------------------------------------- */
.desc-text {
    background-color: rgba(255, 255, 255, 0.02);
    margin: 0 -30px -30px -30px;
    padding: 30px;
    border-top: 1px solid var(--border-color);
}
.desc-text h1, .desc-text h2, .desc-text h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-main);
}
.desc-text p {
    line-height: 1.8;
    font-size: 13.5px;
    color: var(--text-muted);
}
.desc-text p + p {margin-top:12px;}
.desc-text p + h1, .desc-text p + h2, .desc-text p + h3 {margin-top:20px;}
.desc-text a {text-decoration: underline; color: var(--accent);}
.desc-text ul li {list-style-type: disc; margin-left: 25px; margin-bottom: 5px;}


/* FOOTER SPECIFICS
----------------------------------------------- */
.ft-desc {
    width: 50%;
    padding-top: 10px;
    background: none; /* Убираем старое фоновое лого */
}
.ft-desc p {
    margin-bottom: 10px;
    font-size: 13px;
}
.ft-counter {margin-top: 20px;}
.ft-menu p, .ft-menu li {color: var(--text-main); margin-bottom: 10px;}
.footer a:not(:hover) {color: var(--text-muted);}
.ft-menu a::before {content: "\f105"; margin-right: 8px; font-family: 'FontAwesome'; color: var(--accent);}


/* BOTTOM NAVIGATION (PAGINATION)
----------------------------------------------- */
.bottom-nav {text-align:center; padding-top: 20px;}
.pagi-load > span {display:none;}
.pagi-load a {
    margin-bottom: 20px;
    padding: 0 60px;
    border-radius: 20px;
}
.navigation a:hover {background-color: var(--accent); color: var(--bg-primary);}
.pagi-nav {max-width:100%; display:inline-block;}
.pagi-nav > span {display:inline-block;}
.pnext a, .pprev a, .pprev > span, .pnext > span {display:block; width:38px; text-align:center;}
.navigation {line-height: 38px;}
.navigation a, .navigation span, .pnext a, .pprev a, .pprev > span, .pnext > span {
    display:inline-block;
    padding:0 12px; 
    margin:5px 3px 0 3px;
    border-radius: var(--border-radius-sm);
    min-width: 38px;
    background-color: var(--bg-card);
    color: var(--text-main);
    border: 1px solid var(--border-color);
    box-shadow: none;
    font-weight: 500;
}
.navigation span, .pagi-nav a:hover {
    background-color: var(--accent);
    color: var(--bg-primary);
    border-color: var(--accent);
}
.navigation span.nav_ext {background: transparent; color: var(--text-muted); border-color: transparent;}
.dle-comments-navigation .pagi-nav {margin-bottom:0;}


/* FULL STORY PAGE
----------------------------------------------- */
.speedbar {
    font-size: 13px;
    margin: -10px 0 15px;
    color: var(--text-muted);
    padding: 8px 12px;
    background: rgba(255,255,255,0.02);
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-color);
}
.fmain {
    background-color: var(--bg-secondary);
    box-shadow: none;
    margin: 0;
    border-radius: var(--border-radius-md);
    overflow: hidden;
}
.fright {
    width: 300px;
    padding: 24px;
    background-color: rgba(255, 255, 255, 0.01);
    border-left: 1px solid var(--border-color);
}
.fleft {
    padding: 24px;
    color: var(--text-main);
}
.fleft-img {width: 210px; margin-right: 25px;}
.fposter {border-radius: var(--border-radius-sm) var(--border-radius-sm) 0 0;}
.fleft-img-in {
    box-shadow: var(--shadow-md);
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
    overflow: hidden;
}
.fleft-desc h1 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: var(--font-heading);
}
.fedit {position: absolute; z-index: 10; right: 10px; top: 10px; font-size: 18px;}

.slide-circle {
    width:50px; height:50px; border-radius: 50%; margin: -25px 0 0 -25px;
    background-color:var(--bg-card); box-shadow:0 0 0 5px var(--bg-secondary), var(--shadow-sm);
    position: absolute; left: 50%; top: 0;
    border: 1px solid var(--border-color);
}
.slide-circle > div {position: absolute; left:0; top:0; z-index: 1; width: 100%; height: 100%; 
text-align: center; font-size:18px; font-weight: 700; padding-top: 11px; color: var(--accent);}
.slide-circle > div div {display: none;}

.flikes {
    height:45px; position:relative; z-index:20; white-space: nowrap; padding: 0 10px;
    background: rgba(255,255,255,0.03);
    border-radius: 25px;
    border: 1px solid var(--border-color);
    display: inline-flex;
    align-items: center;
}
.rate-plus, .rate-minus {line-height:45px; cursor:pointer;}
.flikes .fa {
    width: 28px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    border-radius: 50%; 
    color: #fff;
    font-size: 14px;
    display: inline-block;
}
.rate-plus .fa {background-color: #10b981; margin-right: 8px;}
.rate-minus .fa {background-color: #ef4444; margin-left: 8px;}
.rate-plus:hover .fa, .rate-minus:hover .fa {opacity: 0.9;}

.fdesc {margin-bottom: 20px; color: var(--text-muted); font-size: 13.5px;}
.fdesc.slice-masked {margin-bottom:0;}
.slice {overflow:hidden; position:relative; transition:height .2s;}
.slice-masked:before {
    content:'';position:absolute;z-index:1;bottom:0px;left:0;right:0;height:70px;pointer-events:none;
    background:linear-gradient(to bottom, rgba(21, 28, 46, 0) 0%, var(--bg-card) 100%);
}
.slice-btn {margin:10px 0 15px 0;}
.slice-btn span {
    display:block; cursor:pointer; text-decoration:none; 
    border: 1px solid var(--border-color);
    background: rgba(255,255,255,0.03);
    text-align:center; padding:8px 10px; font-weight:600; border-radius:var(--border-radius-sm);
    color: var(--text-main);
    transition: all 0.3s;
}
.slice-btn span:hover {
    background: rgba(255,255,255,0.06);
    border-color: var(--accent);
    color: var(--accent);
}

.flist {width: 48%; line-height: 1.8; font-size: 13.5px;}
.flist li > span:first-child {font-weight: 600; color: var(--text-main); margin-right: 5px;}
.flist a {color: var(--accent); border-bottom: 1px dotted var(--accent);}
.flist-wide {width: 100%;}
.frate {
    line-height: 32px;
    border-radius: var(--border-radius-sm);
    text-align: center;
    width: 48%; 
    margin-top: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-main);
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-color);
}
.frate:before {content: attr(data-text); display: inline; margin-right: 5px; text-transform: uppercase; opacity: 0.8;}
.frate-kp {border-left: 3px solid #f59e0b;}
.frate-imdb {border-left: 3px solid #eab308;}

.fsubtitle {
    text-align: center;
    margin: 25px -20px -10px -20px;
    padding: 15px 20px 0 20px; 
    border-top: 1px solid var(--border-color);
    font-weight: 600;
    font-size: 16px;
    width: calc(100% + 40px);
    color: var(--text-main);
}
.fplayer {position:relative; border-radius: var(--border-radius-md); overflow: hidden; border: 1px solid var(--border-color); margin-top: 15px;}
.fctrl {background-color: #0b0f19; color: var(--text-muted); padding-right: 20px; border-top: 1px solid var(--border-color);}
.fplayer .tabs-sel {white-space:nowrap; overflow-y:hidden; overflow-x:auto; font-size: 0;}
.fplayer .tabs-sel span {
    display:inline-block;
    padding:0 20px;
    height:42px;
    line-height:42px;
    cursor:pointer; 
    font-weight:600;
    font-size: 13px;
    font-family: var(--font-heading);
    background-color: var(--bg-card);
    color: var(--text-muted);
    border-right: 1px solid var(--border-color);
}
.fplayer .tabs-sel span.current {background-color: var(--accent); color: var(--bg-primary);}
.fplayer .tabs-sel span:hover {color: var(--text-main);}
.js .tabs-b {background-color: #000; display: none;}
.js .tabs-b.visible {display: block;}

.fcompl a, .ffav a {color: var(--text-muted); transition: color 0.3s;}
.fcompl a:hover, .ffav a:hover, .ffav span:hover {color: var(--text-main); cursor: pointer;}
.fcompl, .ffav {margin-left: 20px;}
.flight {
    height: 30px;
    line-height: 30px;
    position: relative;
    padding-left: 50px;
    cursor: pointer;
    display: inline-block;
}
.flight:before, .flight:after{content: '';position: absolute;top: 50%;transition: .3s;}
.flight:before{
    height: 18px; margin-top: -9px; width: 36px; border-radius: 9px;
    background: #1e293b; border: 1px solid var(--border-color); left: 0;
}
.flight:after{
    left: 2px; height: 14px; width: 14px; margin-top: -7px; background: var(--text-muted);
    border-radius: 50%;
}
.light-overlay {position: fixed; left: 0; top: 0; right: 0; bottom: 0; 
	z-index: 99998; background-color: rgba(0,0,0,0.9); display: none;}
.light-off .flight:after{left: 20px; background-color: var(--accent);}
.light-off .light-overlay {display: block;}
.light-off .fplayer {z-index: 99999;}
.light-off #gotop {z-index: 10;}

.fshare {padding: 15px; text-align:center; white-space:nowrap; border-top: 1px solid var(--border-color);}
.fshare .fa {
    width:40px; height:32px; border-radius:var(--border-radius-sm); text-align:center; line-height:32px; 
    color:#fff; font-size:14px; margin:0 3px; cursor:pointer; display: inline-block;
}
.fshare .fa:hover {opacity:0.8;}
.fa.fa-vk {background-color:#4a76a8;}
.fa.fa-facebook {background-color:#3b5998;}
.fa.fa-twitter {background-color:#1da1f2;}
.fa.fa-odnoklassniki, .fa.fa-rss {background-color:#f26e2e;}
.fa.fa-paper-plane {background-color:#0088cc;}

.frels {
    margin: 0 -24px; margin-top: -24px; padding: 24px;
    background-color: #080b12; color: var(--text-main);
    position: relative; bottom: -24px;
    border-top: 1px solid var(--border-color);
}
.frels-title {
    font-size: 18px; font-weight: 700; padding-bottom: 15px;
    font-family: var(--font-heading);
}
.fcomms {padding-top: 30px;}
.full-comms, .add-comms{width:48%;}
.no-comms {-ms-flex-order:-1;-webkit-order:-1;order:-1}
.comm-letter {
    position: absolute; left: 0; top: 0; width: 32px; height: 32px; line-height: 32px; text-align: center; 
    background-color: var(--accent); color: var(--bg-primary); font-size: 14px; font-weight: 700; text-transform: uppercase; border-radius: 50%;
}
.add-comms > form {position: sticky; right: 0; top: 100px; margin-bottom: 20px;}


/* FULL STORY STATIC
----------------------------------------------- */
.video-box embed, .video-box object, .video-box video, .video-box iframe, .video-box frame {
    max-width:100% !important; display:block; width:100%; height:450px;
    border-radius: var(--border-radius-md) var(--border-radius-md) 0 0;
}
.mejs-container {max-width:100% !important;}
.full-text {line-height: 1.7; font-size: 14px;}
.full-text img:not(.emoji) {max-width:100%; margin:15px 0; border-radius: var(--border-radius-sm);}
.full-text a {text-decoration:underline; color:var(--accent);}
.full-text h2, .full-text h3, .full-text h4, .full-text h5 {margin:15px 0 10px; font-size:18px; font-weight:700;}
.full-text p {margin-bottom:12px;}
.full-text ul, .full-text ol {margin:10px 0;}
.full-text ul li {list-style:disc; margin-left:30px; margin-bottom: 5px;}
.full-text ol li {list-style:decimal; margin-left:30px; margin-bottom: 5px;}

.full-taglist a {color:var(--accent); font-weight: 500;}
.full-taglist {margin-top:20px; font-size: 13px;}
.full-taglist span:not(.fa):not(:last-child):after {content:","; display:inline; margin-right: 5px;}


/* COMMENTS SECTION
----------------------------------------------- */
.ac-inputs input {width: 48.5%; margin-bottom: 15px;}
.ac-textarea textarea {height: 100px; margin-bottom: 15px;}
.add-comms input, .add-comms textarea, .ac-submit button {box-shadow: var(--shadow-sm);}
.ac-protect, .ac-textarea .bb-editor + br {display: none;}
.comments_subscribe input {margin-right: 10px;}
.comments_subscribe {display: block; margin-top: 8px;}
.mass_comments_action {display: none;}
.last-comm-link {display: inline-block; padding-bottom: 20px; color: var(--text-main); font-size: 18px; font-weight: 700; font-family: var(--font-heading);}

.comm-item {margin-bottom: 20px; font-size: 13.5px; padding-left: 45px; position: relative; min-height: 40px;}
.comm-two {margin: 5px 0; color: var(--text-main);}
.comm-one > span {margin-right: 15px; opacity: 0.6; font-size: 12px;}
.comm-one > span.comm-author, .comm-one > span.comm-author a {font-weight: 600; color: var(--accent); opacity: 1;}
.comm-three-left > a, .comm-three-right li a {opacity: 0.6;}
.comm-three-right li {display: inline-block; margin-left: 15px;}
.comm-rate3 {white-space:nowrap; font-size:14px; margin-right: 15px; height: 20px; line-height: 20px; 
	display: inline-block; vertical-align: top; position: relative; top: -3px;}
.comm-rate3 a {display: inline-block; vertical-align: middle; position: relative; top: -1px; opacity: 0.6;}
.comm-rate3 a:last-child {margin-bottom: -4px;}
.comm-rate3 > span {margin: 0 5px; font-size: 13px; font-weight: 600;}
.comm-rate3 > span > span.ratingtypeplus {color: #10b981;}
.comm-rate3 > span > span.ratingplus {color: #10b981;}
.comm-rate3 > span > span.ratingminus {color: #ef4444;}
.comm-three a:hover {text-decoration: underline; color: var(--accent);}
.comm-three-left > a {opacity: 1; color: var(--accent); border-bottom: 1px dotted var(--accent);}


/* LOGIN popup
----------------------------------------------- */
.login-overlay, .mmenu-overlay {position: fixed; z-index: 998; left: 0; top: 0; width: 100%; height: 100%; 
opacity: 0.7; display: none; background-color: #06080c;}
.login-box {
    position: fixed; z-index: 999; left: 50%; top: 50%; transform: translate(-50%,-50%); 
    background-color: var(--bg-card); padding: 35px 50px 40px 50px; border-top: 4px solid var(--accent); width: 420px; 
    box-shadow: var(--shadow-lg); display: none; border-radius: var(--border-radius-md);
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.login-close {width: 28px; height: 28px; line-height: 28px; text-align: center; font-size: 24px; 
	cursor: pointer; position: absolute; top: -35px; right: 0; color: #fff;}
.login-title {font-size: 20px; font-weight: 700; margin-bottom: 20px; text-align: center; color: var(--text-main); font-family: var(--font-heading);}
.login-avatar {width: 60px; height: 60px; border-radius: 50%; margin: 0 auto 20px auto; 
text-align: center; line-height: 60px; font-size: 24px; background-color: rgba(255,255,255,0.05); color: var(--text-muted);}
.login-input {margin-bottom: 15px;}
.login-btn button {width: 100%; margin: 15px 0;}
.login-btm a {border-bottom: 1px dotted var(--accent); color: var(--accent); font-size: 14px;}
.login-check {position: relative; }
.login-check input {opacity: 0; position: absolute; cursor: pointer;}
.login-check span {display: block; padding-left: 36px; height: 30px; line-height: 30px; color: var(--text-muted);}
.login-check span:before, .login-check span:after{content: '';position: absolute;top: 50%;transition: .3s;}
.login-check span:before{left: 0; height: 12px; margin-top: -6px; width: 28px; border-radius: 6px; 
	background: #1e293b; border: 1px solid var(--border-color);}
.login-check span:after{left: 2px; height: 10px; width: 10px; margin-top: -5px; background: var(--text-muted);
	border-radius: 50%;}
.login-check input:checked + span:before {background-color: var(--accent); border-color: var(--accent);}
.login-check input:checked + span:after {left: 14px; background-color: var(--bg-primary);}
.login-menu {border-top: 1px solid var(--border-color); border-left: 1px solid var(--border-color); margin-top: 20px;}
.login-menu li {text-align: center; border-right: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); width: 50%;}
.login-menu a {display: block; padding: 12px 5px; font-size: 13.5px; color: var(--text-main); font-weight: 500;}
.login-menu a:hover {color: var(--accent);}
.login-menu li .fa {display: none; height: 28px; font-size: 22px; color: var(--accent);}
.login-admin {text-align: center; margin: -10px 0 25px 0;}
.login-soc-title {display: flex; align-items: center; margin: 30px 0 15px 0; font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px;}
.login-soc-title:before, .login-soc-title:after {content: ''; height: 1px; background-color: var(--border-color); flex: 1;}
.login-soc-title:before {margin-right: 15px;}
.login-soc-title:after {margin-left: 15px;}
.login-soc-btns {text-align: center;}
.login-soc-btns a {display:inline-block; margin: 0 4px; vertical-align:top;}
.login-soc-btns img {display:block; width:32px; height: 32px; border-radius: 50%;}


/* ADAPTIVE LAYOUTS & SIDE PANEL
----------------------------------------------- */
.btn-menu, .fright .filter-btn {display: none;}
.side-panel {
    width:280px; height:100%; overflow-x:hidden; overflow-y:auto; background-color:var(--bg-secondary);
    padding:20px; z-index:99999; position:fixed; left:-320px; top:0; transition:left .4s ease;
    border-right: 1px solid var(--border-color);
}
.side-panel.active {left:0;}
.close-overlay {width:100%; height:100%; background-color:rgba(0,0,0,0.7); 
position:fixed; left:0; top:0; z-index:99998; display:none;}
.btn-close {cursor:pointer; display:block; left: 280px; top: -40px; position: fixed; z-index: 99999;
width:40px; height:40px; line-height:40px; text-align:center; font-size:18px; 
background-color: var(--accent); color: var(--bg-primary); transition:top .4s ease;}
.btn-close.active {top:0px;}
body.opened-menu {overflow: hidden; width: 100%; height: 100%;}
.side-panel .hmenu {margin: 0; padding: 0;}
.side-panel .hmenu > li {width: 100%; margin: 0; padding: 0;}
.side-panel .hmenu > li > a {height: 44px; line-height: 44px; margin: 0; padding: 0; 
box-shadow: none !important; color: var(--text-main);}
.side-panel .search-wrap, .side-panel .btn-login {width: 100%; margin: 0 0 15px 0; padding: 0;}
.side-panel .hidden-menu {width: 100%; display: block; position: static; background-color: rgba(255,255,255,0.02); 
width: calc(100% + 40px); margin-left: -20px; opacity: 1; pointer-events: auto; transform: none; 
box-shadow: none; border-bottom: 2px solid var(--accent); border-top: none; border-left: none; border-right: none;}
.side-panel .hm-col {width: 50%; border-right: none !important;}
.side-panel .one-col .hm-col {width: 100%;}


@media screen and (max-width: 1220px) {
    .wrap-center {max-width:1000px;}
    .header .hmenu, .header .search-wrap, .header .btn-login {display: none;}
    .btn-menu {display: block; font-size: 30px; cursor: pointer; color: var(--text-main);}
    #gotop {display: none !important;}
    .not-logged .login-avatar {display: none;}
    .login-close {top: -5px;}
    .login-title {font-size: 18px;}
    .login-box {max-width: calc(100% - 60px); padding: 20px;}
    .sect-header.fx-start {display: block; white-space: nowrap; overflow-y: hidden; overflow-x: auto; padding-bottom: 15px;}
    .sect-header.fx-start > * {display: inline-block; vertical-align: top; margin-right: 15px;}
    .sect-tabs span, .sect-title {padding: 0 10px;}

    .th-item {width: 20%;} /* 5 items in a row */
    .fright {width: 100%; padding-top: 15px; padding-bottom: 15px; border-left: none; border-top: 1px solid var(--border-color);}
    .fright .frels-title {display: none;}
    .fright .filter-btn {width: 100%; display: block;}
    .fright .filter-wrap {padding: 20px 15px !important;}
    .video-box embed, .video-box object, .video-box video, .video-box iframe, .video-box frame {height:380px;}
}

@media screen and (max-width: 950px) {
    .wrap-center {max-width:768px;}
    .th-item {width: 25%;} /* 4 items in a row */
    .content, .header-in, .footer, .desc-text {padding-left: 15px; padding-right: 15px;}
    .desc-text {margin-left: -15px; margin-right: -15px;}
    .footer {text-align: center; display: block;}
    .ft-desc {padding-top: 0; padding-bottom: 20px; background-image: none; width: 100%;}

    .fmain, .fsubtitle, .frels {margin-left: -15px; margin-right: -15px;}
    .fleft, .fright, .fsubtitle, .frels {padding-left: 15px; padding-right: 15px;}
    .fsubtitle {width: calc(100% + 30px);}
    .full-comms, .add-comms{width:100%;}
    .add-comms {-ms-flex-order:-1;-webkit-order:-1;order:-1}
}

@media screen and (max-width: 760px) {
    .wrap-center {max-width:640px;}
    .th-item {width: 33.33%;} /* 3 items in a row */

    .fleft-img {margin: 0 auto 20px auto;}
    .fleft-desc {min-width: 100%;}
    .flist {width: 100%; margin-bottom: 5px;}
    .flight, .fcompl, .ffav {display: none;}

    .dcont button {font-size:12px; padding:0 15px !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;}
    .th-item {width: 50%;} /* 2 items in a row */

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

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

@media screen and (max-width: 470px) {
    .wrap-center22 {max-width:320px;}
    .wrap {padding-top: 0; overflow: hidden;}
    body {background-image: none;}
    .video-box embed, .video-box object, .video-box video, .video-box iframe, .video-box frame {height:220px;}
}


/* DLE EXTRA STYLES & PRESETS
----------------------------------------------- */
.dle_xfsearch {font-size: 16px; font-weight: 700; margin-bottom: 15px; font-family: var(--font-heading); color: var(--text-main);}
.flist-episode {background-color: var(--accent); color: var(--bg-primary); padding: 2px 6px; border-radius: 4px; display: inline-block; font-weight: 600;}


/* MODALS
----------------------------------------------- */
.modal {
    display: none; 
    position: fixed; 
    z-index: 9999; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%; 
    overflow: auto; 
    background-color: rgba(5, 7, 12, 0.85); 
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.modal-content {
    background-color: var(--bg-secondary);
    margin: 10% auto;
    padding: 30px; 
    border: 1px solid var(--border-color);
    width: 90%;
    max-width: 750px;
    position: relative;
    text-align: center;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
}

.close {
    color: var(--text-muted);
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close:hover,
.close:focus {
    color: var(--text-main);
    text-decoration: none;
}

iframe {
    width: 100%;
    height: 400px;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-color);
}

@media (max-width: 600px) {
    .modal-content {
        width: 95%;
        padding: 20px;
    }
    iframe {
        height: 250px;
    }
}


/* RATING EXTENSIONS & RING STYLES
----------------------------------------------- */
.d-flex { display: flex; }
.ai-center { align-items: center; }
.jc-space-between { justify-content: space-between; }
.p-relative { position: relative; }
.bdrs-50 { border-radius: 50%; }
.ratio-1-1 { aspect-ratio: 1 / 1; }

.page__rating-ext {
    position: relative;
    z-index: 10;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 32px 14px 12px 14px;
    box-sizing: border-box;
    background-color: rgba(255, 255, 255, 0.02);
    border-top: 1px solid var(--border-color);
}

.page__rating-ext .rate-plus,
.page__rating-ext .rate-minus {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 14px;
    font-weight: 600;
    height: 38px;
    cursor: pointer;
    border-radius: 19px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}
.page__rating-ext .rate-plus:hover {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.08);
}
.page__rating-ext .rate-minus:hover {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.08);
}

.page__rating-ext .rate-plus .fa,
.page__rating-ext .rate-minus .fa {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 14px;
    color: #fff;
}

.page__rating-ext .rate-plus .fa { background-color: #10b981; }
.page__rating-ext .rate-minus .fa { background-color: #ef4444; }

.page__ratingscore-ring {
    position: absolute;
    left: 50%;
    top: -24px;
    width: 48px;
    font-weight: 700;
    font-size: 15px;
    background-color: var(--bg-card);
    color: var(--text-main);
    box-shadow: var(--shadow-sm);
    isolation: isolate;
    display: flex;
    align-items: center;
    justify-content: center;
    translate: -50% 0;
    border: 1px solid var(--border-color);
}

.page__ratingscore-ring::before {
    content: '';
    position: absolute;
    z-index: -2;
    inset: 0;
    border-radius: 50%;
    background: conic-gradient(from 0deg, #FDC830 0%, #F37335 var(--p), rgba(255,255,255,0.1) var(--p));
}

.page__ratingscore-ring::after {
    content: '';
    position: absolute;
    z-index: -1;
    background-color: var(--bg-card);
    inset: 3px;
    border-radius: 50%;
}

.fa-thumbs-up:before { content: "\f164"; font-family: 'FontAwesome'; }
.fa-thumbs-down:before { content: "\f165"; font-family: 'FontAwesome'; }


/* TWO-COLUMN PAGE LAYOUT: MINIMALIST SPLIT (OPTION 2)
-------------------------------------------------- */
.fstory-container {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 30px;
    align-items: start;
    margin-bottom: 30px;
    width: 100%;
}

.fstory-sidebar {
    position: sticky;
    top: 90px;
    width: 100%;
    box-sizing: border-box;
}

.fleft-img-in {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 15px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
    box-sizing: border-box;
    width: 100%;
}

.fposter {
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    position: relative;
    width: 100%;
}

.fposter img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-sm);
    transition: transform 0.5s ease;
}

.fleft-img-in:hover .fposter img {
    transform: scale(1.02);
}

.sidebar-ratings {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    width: 100%;
}

.sidebar-ratings .frate {
    flex: 1;
    width: 100% !important;
    margin: 0 !important;
    height: 36px;
    line-height: 36px;
    border-radius: var(--border-radius-sm);
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
}

.sidebar-ratings .frate:before {
    content: attr(data-text);
    text-transform: uppercase;
    font-weight: 700;
    margin-right: 4px;
}

.sidebar-ratings .frate-kp:before { color: #f60; }
.sidebar-ratings .frate-imdb:before { color: #fc0; }

.sidebar-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
    width: 100%;
}

.sidebar-actions .ffav,
.sidebar-actions .fcompl {
    margin: 0;
    height: 40px;
    line-height: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: var(--text-main);
    box-sizing: border-box;
    width: 100%;
}

.sidebar-actions .ffav > a,
.sidebar-actions .ffav > span,
.sidebar-actions .fcompl > a,
.sidebar-actions .fcompl > span {
    color: var(--text-main) !important;
    display: flex;
    align-items: center;
    gap: 6px;
    width: 100%;
    height: 100%;
    justify-content: center;
    text-decoration: none;
}

.sidebar-actions .ffav:hover,
.sidebar-actions .fcompl:hover {
    background: rgba(56, 189, 248, 0.08);
    border-color: var(--accent);
    color: var(--accent);
}

.sidebar-actions .ffav:hover > a,
.sidebar-actions .ffav:hover > span,
.sidebar-actions .fcompl:hover > a,
.sidebar-actions .fcompl:hover > span {
    color: var(--accent) !important;
}

.fstory-sidebar .fshare {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
    width: 100%;
}

.fstory-sidebar .fshare span {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.fstory-sidebar .fshare span:hover {
    color: var(--bg-primary);
    transform: translateY(-2px);
}

.fstory-sidebar .fshare span.fa-vk:hover { background: #4c75a3; border-color: #4c75a3; }
.fstory-sidebar .fshare span.fa-odnoklassniki:hover { background: #f2720c; border-color: #f2720c; }
.fstory-sidebar .fshare span.fa-paper-plane:hover { background: #2ca5e0; border-color: #2ca5e0; }

/* Right Column Content */
.fstory-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 30px;
    box-shadow: var(--shadow-md);
    box-sizing: border-box;
    width: 100%;
    min-width: 0;
}

.fstory-content h1 {
    font-size: 26px;
    margin-bottom: 5px;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fstory-content h1 small {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-muted);
    display: inline-block;
}

.fstory-alt-title {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 25px;
}

/* Бэйджи быстрых характеристик */
.fstory-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.fbadge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12.5px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-main);
    transition: all 0.2s ease;
}

.fbadge i {
    font-size: 12px;
    color: var(--accent);
}

.fbadge:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--accent);
    transform: translateY(-1px);
}

/* Специальные цвета для бэйджей */
.badge-quality {
    background: rgba(0, 194, 203, 0.08);
    border-color: rgba(0, 194, 203, 0.2);
    color: #00c2cb;
}
.badge-quality i {
    color: #00c2cb;
}

.badge-age {
    background: rgba(239, 83, 80, 0.08);
    border-color: rgba(239, 83, 80, 0.2);
    color: #ef5350;
    margin-left: auto;
}
.badge-age i {
    color: #ef5350;
}

.badge-time {
    background: rgba(144, 202, 249, 0.08);
    border-color: rgba(144, 202, 249, 0.2);
    color: #90caf9;
}
.badge-time i {
    color: #90caf9;
}

.badge-status {
    background: rgba(255, 167, 38, 0.08);
    border-color: rgba(255, 167, 38, 0.2);
    color: #ffa726;
}
.badge-status i {
    color: #ffa726;
}

/* Новая Grid сетка характеристик */
.flists-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 30px;
    background: rgba(21, 28, 39, 0.4);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.flist-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 6px 0;
    font-size: 13.5px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
    min-width: 0;
    gap: 20px;
}

.flist-item-wide {
    grid-column: span 2;
    border-bottom: none;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 12px;
    margin-top: 5px;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 8px;
}

.flist-item-wide .flist-value {
    text-align: left;
    width: 100%;
    line-height: 1.5;
}

.flist-label {
    color: var(--text-muted);
    font-weight: 500;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.flist-label i {
    font-size: 12.5px;
    color: var(--accent);
    width: 14px;
    text-align: center;
}

.flist-value {
    color: var(--text-main);
    text-align: right;
    word-break: break-word;
    overflow-wrap: anywhere;
    flex: 1;
}

.flist-value a {
    color: var(--text-main);
    border-bottom: 1px dotted var(--accent);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.flist-value a:hover {
    color: var(--accent);
    border-bottom-color: transparent;
}

.flist-episode-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-end;
}

.flist-date {
    font-size: 11px;
    color: var(--text-muted);
    white-space: nowrap;
}

.fstory-content .flist li a {
    border-bottom: 1px dotted var(--accent);
}

.fstory-content .flist li a:hover {
    color: var(--accent);
}

.fstory-desc-block {
    margin-bottom: 30px;
}

.fstory-section-title {
    font-size: 18px;
    margin-bottom: 12px;
    position: relative;
    padding-left: 12px;
}

.fstory-section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    bottom: 3px;
    width: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.fstory-content .fdesc {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(248, 250, 252, 0.85);
}

.fstory-content .fplayer {
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    width: 100%;
}

.fstory-content .fctrl {
    background-color: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    padding: 10px 20px;
    height: 50px;
    box-sizing: border-box;
}

.fstory-content .tabs-sel span {
    display: inline-block;
    padding: 0 16px;
    height: 30px;
    line-height: 30px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    cursor: pointer;
    margin-right: 8px;
    transition: all 0.3s ease;
}

.fstory-content .tabs-sel span.current {
    background-color: var(--accent);
    color: var(--bg-primary);
    border-color: var(--accent);
}

.fstory-content .tabs-sel span:hover:not(.current) {
    border-color: var(--accent);
    color: var(--text-main);
}

.fstory-content .flight {
    color: var(--text-muted);
    font-weight: 500;
    cursor: pointer;
    padding: 0 10px 0 50px;
    height: 30px;
    line-height: 30px;
    border-radius: 15px;
    transition: all 0.3s;
    font-size: 13px;
}

.fstory-content .flight:hover {
    color: var(--accent);
}

/* Responsive styles */
@media screen and (max-width: 950px) {
    .fstory-container {
        grid-template-columns: minmax(0, 1fr);
        gap: 20px;
    }
    
    .fstory-sidebar {
        position: static;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .fstory-content .flists {
        grid-template-columns: minmax(0, 1fr);
        gap: 10px;
    }
    
    .fstory-content .flist-wide {
        grid-column: span 1;
    }
}

/* JQUERY UI DIALOG / DLE MODALS */
.ui-dialog {
    position: fixed !important;
    z-index: 99999 !important;
    background: var(--bg-card) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: var(--border-radius-md) !important;
    box-shadow: var(--shadow-lg) !important;
    padding: 0 !important;
    color: var(--text-main) !important;
    font-family: var(--font-main) !important;
    box-sizing: border-box;
}

/* DLEPush / jGrowl Toast Notifications */
.DLEPush {
    position: fixed !important;
    top: 20px !important;
    right: 20px !important;
    left: auto !important;
    bottom: auto !important;
    z-index: 999999 !important;
    padding: 0 !important;
}

/* Hide the empty jGrowl placeholder div */
.DLEPush > .DLEPush-notification:not(.wrapper) {
    display: none !important;
}

/* The actual notification card */
.DLEPush-notification.wrapper {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    background: var(--bg-card) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: var(--border-radius-md) !important;
    box-shadow: var(--shadow-lg) !important;
    color: var(--text-main) !important;
    font-family: var(--font-main) !important;
    padding: 14px 38px 14px 16px !important;
    margin-bottom: 10px !important;
    min-width: 280px !important;
    max-width: 400px !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
}

.DLEPush-notification .DLEPush-close {
    position: absolute !important;
    top: 8px !important;
    right: 10px !important;
    background: none !important;
    border: none !important;
    color: var(--text-muted) !important;
    font-size: 18px !important;
    cursor: pointer !important;
    line-height: 1 !important;
    padding: 4px !important;
    transition: color 0.2s !important;
}

.DLEPush-notification .DLEPush-close:hover {
    color: var(--accent) !important;
}

.DLEPush-notification .DLEPush-icon {
    flex-shrink: 0 !important;
    font-size: 22px !important;
    color: var(--accent) !important;
}

.DLEPush-notification .DLEPush-message {
    margin: 0 !important;
    padding: 0 !important;
    flex: 1 !important;
}

.DLEPush-notification .DLEPush-header {
    display: none !important;
}

.ui-widget-overlay {
    position: fixed !important;
    z-index: 99998 !important;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(5, 7, 12, 0.75) !important;
    backdrop-filter: blur(4px);
}

.ui-dialog-titlebar {
    position: relative !important;
    background: rgba(255, 255, 255, 0.02) !important;
    border: none !important;
    border-bottom: 1px solid var(--border-color) !important;
    padding: 15px 20px !important;
    border-top-left-radius: var(--border-radius-md) !important;
    border-top-right-radius: var(--border-radius-md) !important;
}

.ui-dialog-title {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: var(--text-main) !important;
    font-family: var(--font-heading) !important;
    margin-right: 40px !important; /* Prevent text overlap with close button */
}

.ui-dialog-titlebar-close {
    position: absolute !important;
    right: 15px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
    color: var(--text-muted) !important;
    padding: 0 !important;
    width: 30px !important;
    height: 30px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    transition: all 0.3s !important;
    font-size: 0 !important;
    line-height: 0 !important;
    overflow: hidden !important;
}

.ui-dialog-titlebar-close:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    color: var(--text-main) !important;
}

.ui-dialog-titlebar-close:before {
    content: "\f00d" !important;
    font-family: FontAwesome !important;
    font-size: 16px !important;
    display: block !important;
}

.ui-dialog-titlebar-close .ui-button-icon,
.ui-dialog-titlebar-close .ui-icon,
.ui-dialog-titlebar-close .ui-button-icon-space {
    display: none !important;
}

.ui-dialog-content {
    padding: 20px !important;
    color: var(--text-muted) !important;
    font-size: 14px !important;
}

#dlecomplaint {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#dlecomplaint textarea,
#dlecomplaint input[type="text"] {
    width: 100% !important;
    background: var(--bg-primary) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: var(--border-radius-sm) !important;
    color: var(--text-main) !important;
    padding: 10px 15px !important;
    font-family: var(--font-main) !important;
    box-sizing: border-box !important;
    font-size: 13.5px !important;
}

#dlecomplaint textarea {
    height: 100px !important;
    resize: none !important;
}

#dlecomplaint textarea:focus,
#dlecomplaint input[type="text"]:focus {
    border-color: var(--accent) !important;
    box-shadow: 0 0 0 2px var(--accent-glow) !important;
}

.ui-dialog-buttonpane {
    padding: 15px 20px !important;
    border-top: 1px solid var(--border-color) !important;
    display: flex !important;
    justify-content: flex-end !important;
    gap: 10px !important;
    background: rgba(255, 255, 255, 0.01) !important;
    border-bottom-left-radius: var(--border-radius-md) !important;
    border-bottom-right-radius: var(--border-radius-md) !important;
}

.ui-dialog-buttonpane button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 0 16px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    border-radius: var(--border-radius-sm) !important;
    cursor: pointer !important;
    transition: all 0.3s !important;
    font-family: var(--font-main) !important;
    height: 36px !important;
    line-height: 36px !important;
    box-sizing: border-box !important;
}

.ui-dialog-buttonpane button * {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    height: 100% !important;
}

.ui-dialog-buttonpane button:first-child {
    background: rgba(255, 255, 255, 0.03) !important;
    color: var(--text-muted) !important;
    border: 1px solid var(--border-color) !important;
}

.ui-dialog-buttonpane button:first-child:hover {
    background: rgba(255, 255, 255, 0.06) !important;
    color: var(--text-main) !important;
}

.ui-dialog-buttonpane button:last-child,
.ui-dialog-buttonpane button:only-child {
    background: var(--accent) !important;
    color: var(--bg-primary) !important;
    border: 1px solid var(--accent) !important;
}

.ui-dialog-buttonpane button:last-child:hover,
.ui-dialog-buttonpane button:only-child:hover {
    background: var(--accent-hover) !important;
    border-color: var(--accent-hover) !important;
}

/* Responsive grid layout for details block */
@media screen and (max-width: 950px) {
    .flists-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 18px;
    }
    
    .flist-item-wide {
        grid-column: span 1;
        border-top: none;
        border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
        padding-top: 6px;
        margin-top: 0;
    }
}

@media screen and (max-width: 560px) {
    .flists-grid {
        padding: 15px;
        gap: 8px;
    }
    
    .flist-item, .flist-item-wide {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding: 8px 0;
        border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
    }
    
    .flist-item:last-child, .flist-item-wide:last-child {
        border-bottom: none;
    }
    
    .flist-value {
        text-align: left;
        width: 100%;
        padding-left: 0;
    }
}

/* Quick Search Styles */
#searchsuggestions {
    width: 480px !important;
    background: rgba(21, 28, 39, 0.95) !important;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 12px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5) !important;
    overflow: hidden;
    padding: 6px 0 0 0 !important;
}

#searchsuggestions a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    padding: 10px 15px !important;
    color: var(--text-main) !important;
    transition: background 0.2s ease, color 0.2s ease;
}

#searchsuggestions a:hover {
    background: rgba(56, 189, 248, 0.08) !important;
    color: var(--accent) !important;
}

#searchsuggestions span.notfound {
    color: var(--text-muted) !important;
    padding: 15px 20px !important;
    background: transparent !important;
    border: none !important;
}

#searchsuggestions span.seperator a {
    background: var(--bg-card) !important;
    color: var(--text-main) !important;
    font-weight: 600 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-bottom: none !important;
    padding: 12px !important;
}

#searchsuggestions span.seperator a:hover {
    background: var(--accent) !important;
    color: var(--bg-primary) !important;
}

.fs-item {
    display: flex !important;
    gap: 14px;
}

.fs-img {
    width: 46px;
    height: 68px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.fs-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fs-desc {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    min-width: 0;
}

.fs-header {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.fs-title {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--text-main);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    min-width: 0;
}

.fs-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.fs-year {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

.fs-item .fbadge {
    padding: 2px 8px !important;
    font-size: 11px !important;
    border-radius: 4px !important;
    height: 18px !important;
    line-height: 14px !important;
    margin-left: 10px !important;
    flex-shrink: 0 !important;
    gap: 4px !important;
}

.fs-rates {
    display: flex;
    gap: 8px;
}

.fs-rate {
    font-size: 11px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
}

.fs-rate-kp {
    background: rgba(255, 102, 0, 0.15);
    color: #ff6600;
    border: 1px solid rgba(255, 102, 0, 0.25);
}

.fs-rate-imdb {
    background: rgba(245, 197, 24, 0.15);
    color: #f5c518;
    border: 1px solid rgba(245, 197, 24, 0.25);
}

.category-seo-text {
    margin-top: 30px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--text-muted);
}

.category-seo-text a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.category-seo-text a:hover {
    color: #fff;
    text-decoration: underline;
}

.category-seo-text p {
    margin-bottom: 12px;
}

.category-seo-text p:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 560px) {
    #searchsuggestions {
        width: calc(100vw - 30px) !important;
        max-width: 480px !important;
    }
}

/* Блок стриминговых каналов на главной */
.sect-channels {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 15px 0 25px 0;
	padding: 0;
}
.channel-item {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 16px;
	font-size: 13px;
	font-weight: 600;
	border-radius: 8px;
	color: var(--text-main, #f8fafc) !important;
	background: var(--bg-card, #151c2e);
	border: 1px solid var(--border-color, rgba(255, 255, 255, 0.08));
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
	text-decoration: none;
}
.channel-item:hover {
	color: #ffffff !important;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
.channel-item.ch-netflix:hover { background-color: #E50914 !important; border-color: #E50914 !important; }
.channel-item.ch-appletv:hover { background-color: #000000 !important; border-color: #222222 !important; }
.channel-item.ch-hbo:hover { background-color: #4C00C4 !important; border-color: #4C00C4 !important; }
.channel-item.ch-amazon:hover { background-color: #00A8E8 !important; border-color: #00A8E8 !important; }
.channel-item.ch-disney:hover { background-color: #0063e5 !important; border-color: #0063e5 !important; }
.channel-item.ch-hulu:hover { background-color: #1CE783 !important; border-color: #1CE783 !important; color: #0b0c10 !important; }
.channel-item.ch-paramount:hover { background-color: #0057ff !important; border-color: #0057ff !important; }
.channel-item.ch-thecw:hover { background-color: #39a900 !important; border-color: #39a900 !important; }
.channel-item.ch-amc:hover { background-color: #b81c24 !important; border-color: #b81c24 !important; }
.channel-item.ch-showtime:hover { background-color: #e31825 !important; border-color: #e31825 !important; }
.channel-item.ch-fx:hover { background-color: #c99300 !important; border-color: #c99300 !important; }
.channel-item.ch-peacock:hover { background: linear-gradient(45deg, #0056b3, #4C00C4) !important; border-color: #0056b3 !important; }