/* Modern cinema template v1 for DLE. Clean dark responsive layout. */

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

ol,
ul {
    list-style: none;
}

article,
aside,
figure,
footer,
header,
main,
nav,
section {
    display: block;
}

img {
    max-width: 100%;
    display: block;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

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

.clearfix:after {
    content: "";
    display: table;
    clear: both;
}

.hidden,
#dofullsearch {
    display: none!important;
}

.nowrap {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.anim {
    transition: .2s ease;
}

/* Theme variables */

:root {
    --bg: #0b1020;
    --bg2: #111827;
    --card: #151d31;
    --card2: #1d2942;
    --line: rgba(255,255,255,.1);
    --text: #eef3ff;
    --muted: #98a6bf;
    --accent: #22c55e;
    --accent2: #38bdf8;
    --yellow: #facc15;
    --red: #fb7185;
    --shadow: 0 24px 60px rgba(0,0,0,.35);
    --radius: 20px;
}

html {
    min-height: 100%;
}

body {
    min-width: 320px;
    min-height: 100%;
    font: 15px/1.55 -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
    color: var(--text);
    background: radial-gradient(circle at 20% -10%,rgba(34,197,94,.18),transparent 34%),radial-gradient(circle at 80% 0,rgba(56,189,248,.16),transparent 32%),linear-gradient(180deg,#080c18 0%,#0b1020 45%,#080c18 100%);
    background-attachment: fixed;
}

body:before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg,rgba(255,255,255,.03) 1px,transparent 1px),linear-gradient(rgba(255,255,255,.02) 1px,transparent 1px);
    background-size: 44px 44px;
    opacity: .38;
}

b,
strong {
    font-weight: 700;
}

.fx-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.fx-col {
    display: flex;
    flex-direction: column;
}

.fx-center {
    justify-content: center;
}

.fx-middle {
    align-items: center;
}

.fx-start {
    justify-content: flex-start;
}

.fx-top {
    align-items: flex-start;
}

.fx-first {
    order: -1;
}

.fx-last {
    order: 10;
}

.fx-1 {
    flex: 1 1 0;
    min-width: 50px;
    max-width: 100%;
}

.img-box,
.img-wide,
.img-square,
.img-resp,
.img-resp-vert,
.img-resp-sq,
.img-fit {
    overflow: hidden;
    position: relative;
    background: #0f172a;
}

.img-resp {
    padding-top: 60%;
}

.img-resp-vert {
    padding-top: 148%;
}

.img-resp-sq {
    padding-top: 100%;
}

.img-resp img,
.img-resp-vert img,
.img-resp-sq img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-wide img {
    width: 100%;
    height: auto;
}

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

/* Layout */

.site-shell {
    position: relative;
    z-index: 2;
}

.wrap-center {
    max-width: 1180px;
    margin: 0 auto;
    position: relative;
}

.wrap-main {
    margin-top: 22px;
    margin-bottom: 34px;
    background: rgba(12,18,34,.78);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    border-radius: 28px;
    overflow: hidden;
    backdrop-filter: blur(16px);
}

.content {
    padding: 24px;
}

.main {
    min-height: 420px;
}

/* Header */

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(8,12,24,.86);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.header.sticky {
    position: fixed;
    left: 0;
    right: 0;
}

.header.sticky-hide {
    transform: translateY(-100%);
}

.header.sticky-vis {
    transform: translateY(0);
}

.header-in {
    min-height: 78px;
    padding: 0 18px;
    gap: 18px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    font-weight: 900;
    letter-spacing: .4px;
    white-space: nowrap;
}

.logo-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,var(--accent),var(--accent2));
    color: #05111f;
    box-shadow: 0 12px 30px rgba(34,197,94,.25);
    font-size: 18px;
}

.logo-text {
    font-size: 23px;
    color: #fff;
}

.hmenu {
    gap: 8px;
}

.hmenu>li {
    position: relative;
}

.hmenu>li>a {
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: 0 13px;
    border-radius: 14px;
    color: var(--muted);
    font-weight: 750;
}

.hmenu>li:hover>a,
.hmenu>li>a.is-active {
    background: rgba(255,255,255,.07);
    color: #fff;
}

.hidden-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 620px;
    padding: 14px;
    background: #111827;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: .18s;
}

.hmenu>li:hover .hidden-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.hm-col {
    width: 33.333%;
    float: left;
}

.hm-col a {
    display: block;
    padding: 9px 12px;
    border-radius: 12px;
    color: var(--muted);
}

.hm-col a:hover {
    background: rgba(34,197,94,.12);
    color: #fff;
}

.search-wrap {
    max-width: 390px;
}

.search-box {
    position: relative;
}

.search-box input {
    width: 100%;
    height: 44px;
    border-radius: 16px;
    background: rgba(255,255,255,.08);
    border: 1px solid var(--line);
    color: #fff;
    padding: 0 48px 0 16px;
}

.search-box input:focus {
    border-color: rgba(56,189,248,.55);
    box-shadow: 0 0 0 4px rgba(56,189,248,.12);
}

.search-box input::placeholder {
    color: rgba(238,243,255,.45);
}

.search-box button {
    position: absolute;
    right: 6px;
    top: 6px;
    width: 32px;
    height: 32px;
    border-radius: 11px;
    background: rgba(34,197,94,.18);
    color: #fff;
    font-size: 22px;
    line-height: 1;
}

.btn-login {
    height: 44px;
    padding: 0 18px;
    border-radius: 15px;
    background: linear-gradient(135deg,var(--accent),#16a34a);
    color: #04120a;
    font-weight: 850;
}

.btn-menu {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(255,255,255,.08);
    padding: 11px;
}

.btn-menu span {
    display: block;
    height: 2px;
    background: #fff;
    margin: 5px 0;
    border-radius: 4px;
}

/* Home page */

.home-hero {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    margin-bottom: 28px;
    padding: 46px;
    background: linear-gradient(135deg,rgba(34,197,94,.18),rgba(56,189,248,.12)),linear-gradient(135deg,#111827,#0f172a);
    border: 1px solid var(--line);
}

.home-hero:after {
    content: "";
    position: absolute;
    right: -80px;
    top: -100px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle,rgba(56,189,248,.35),transparent 64%);
}

.home-hero__content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.hero-label {
    display: inline-flex;
    margin-bottom: 13px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.1);
    color: #dbeafe;
    font-size: 13px;
}

.home-hero h1 {
    font-size: 42px;
    line-height: 1.08;
    margin-bottom: 14px;
    letter-spacing: -.8px;
}

.home-hero p {
    color: #c7d2e7;
    font-size: 17px;
    max-width: 720px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.hero-btn {
    height: 46px;
    padding: 0 18px;
    border-radius: 15px;
    background: rgba(255,255,255,.09);
    border: 1px solid var(--line);
    display: inline-flex;
    align-items: center;
    font-weight: 800;
}

.hero-btn:hover {
    background: rgba(255,255,255,.14);
    color: #fff;
}

.hero-btn--primary {
    background: linear-gradient(135deg,var(--accent),#16a34a);
    border: 0;
    color: #03140b;
}

.hero-btn--primary:hover {
    color: #03140b;
    filter: brightness(1.08);
}

/* Sections and cards */

.sect {
    margin-bottom: 30px;
}

.sect-header {
    margin-bottom: 14px;
    gap: 12px;
}

.sect-title,
.frels-title {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 15px;
    background: rgba(255,255,255,.08);
    border: 1px solid var(--line);
    font-size: 20px;
    font-weight: 850;
    color: #fff;
}

.sect-title:hover {
    background: rgba(34,197,94,.16);
    border-color: rgba(34,197,94,.32);
    color: #fff;
}

.sect-subtitle {
    color: var(--muted);
    font-size: 14px;
}

.sect-items {
    display: grid;
    grid-template-columns: repeat(6,minmax(0,1fr));
    gap: 16px;
}

.sect-items:after {
    display: none;
}

.sect-cont>.fa {
    font-size: 80px;
    color: rgba(255,255,255,.18);
    display: block;
    text-align: center;
    padding: 40px;
}

.th-item {
    width: auto;
    float: none;
    padding: 0;
    margin: 0;
}

.th-in {
    display: block;
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: var(--card);
    box-shadow: 0 12px 32px rgba(0,0,0,.22);
    border: 1px solid rgba(255,255,255,.08);
    min-height: 100%;
}

.th-in:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 42px rgba(0,0,0,.35);
    border-color: rgba(34,197,94,.3);
}

.th-img:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    height: 58%;
    background: linear-gradient(to bottom,transparent,rgba(3,7,18,.96));
}

.th-desc {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4;
    padding: 12px;
    color: #fff;
}

.th-title {
    font-size: 14px;
    line-height: 1.25;
    font-weight: 850;
    text-shadow: 0 2px 10px rgba(0,0,0,.7);
}

.th-meta {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 7px;
    color: #dbeafe;
    font-size: 12px;
}

.th-meta span {
    padding: 3px 7px;
    border-radius: 999px;
    background: rgba(255,255,255,.12);
}

.th-rates {
    margin-top: 7px;
    gap: 6px;
    justify-content: flex-start;
}

.th-rate {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 7px;
    border-radius: 9px;
    background: rgba(0,0,0,.38);
    font-size: 12px;
    font-weight: 800;
}

.th-rate:before {
    content: attr(data-text);
}

.th-rate-kp:before {
    color: #fb923c;
}

.th-rate-imdb:before {
    color: var(--yellow);
}

.th-series {
    position: absolute;
    z-index: 5;
    left: 10px;
    top: 10px;
    padding: 5px 8px;
    border-radius: 10px;
    background: linear-gradient(135deg,var(--accent),#16a34a);
    color: #06130b;
    font-weight: 900;
    font-size: 12px;
}

.th-mask {
    position: absolute;
    inset: 0;
    z-index: 6;
    background: rgba(0,0,0,.35);
    opacity: 0;
}

.with-mask:hover .th-mask {
    opacity: 1;
}

.th-mask span {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,var(--accent),var(--accent2));
    color: #04111f;
    font-weight: 900;
    font-size: 24px;
    box-shadow: 0 16px 34px rgba(0,0,0,.35);
}

/* Full story page */

.speedbar {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 18px;
}

.speedbar a {
    color: #cfe3ff;
}

.speedbar a:hover {
    color: #fff;
}

.movie-card,
.player-section,
.seo-after-player,
.fcomms,
.frels,
.desc-text {
    background: rgba(21,29,49,.78);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(0,0,0,.2);
}

.movie-card {
    padding: 22px;
    margin-bottom: 22px;
}

.movie-grid {
    display: grid;
    grid-template-columns: 250px minmax(0,1fr);
    gap: 24px;
}

.movie-poster-box {
    min-width: 0;
}

.movie-poster {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: #0f172a;
    box-shadow: 0 18px 40px rgba(0,0,0,.35);
    position: relative;
}

.movie-poster img {
    width: 100%;
    height: auto;
}

.fedit {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 8;
}

.fedit a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: rgba(0,0,0,.5);
    color: #fff;
}

.flikes {
    height: 52px;
    position: relative;
    margin-top: 12px;
    padding: 0 12px;
    background: rgba(255,255,255,.06);
    border-radius: 16px;
    align-items: center;
}

.rate-plus,
.rate-minus {
    cursor: pointer;
    font-size: 18px;
}

.slide-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -25px 0 0 -25px;
    background: rgba(255,255,255,.12);
}

.movie-kicker {
    color: var(--accent2);
    font-weight: 800;
    margin-bottom: 7px;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: .8px;
}

.movie-info h1 {
    font-size: 34px;
    line-height: 1.12;
    margin-bottom: 14px;
    letter-spacing: -.5px;
}

.movie-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 17px;
}

.movie-chips span {
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    border: 1px solid var(--line);
    color: #dbeafe;
    font-size: 13px;
}

.movie-desc {
    color: #cbd5e1;
    margin-bottom: 18px;
}

.movie-desc p+p {
    margin-top: 10px;
}

.slice {
    overflow: hidden;
    position: relative;
    transition: height .2s;
}

.slice-masked:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 80px;
    background: linear-gradient(to bottom,transparent,var(--card));
    pointer-events: none;
}

.slice-btn {
    margin: 0 0 18px;
}

.slice-btn span {
    display: inline-flex;
    padding: 9px 13px;
    border-radius: 12px;
    background: rgba(255,255,255,.08);
    cursor: pointer;
    color: #fff;
    font-weight: 800;
}

.movie-details {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 10px;
    margin: 16px 0;
}

.movie-details div {
    padding: 12px;
    border-radius: 15px;
    background: rgba(255,255,255,.055);
    border: 1px solid var(--line);
}

.movie-details b {
    display: block;
    color: #fff;
    margin-bottom: 3px;
    font-size: 13px;
}

.movie-details span {
    color: #cbd5e1;
}

.movie-details a {
    color: #93c5fd;
}

.detail-wide {
    grid-column: 1/-1;
}

.movie-ratings {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 16px 0;
}

.frate {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 13px;
    background: rgba(255,255,255,.07);
    border: 1px solid var(--line);
    font-weight: 900;
}

.frate:before {
    content: attr(data-text);
}

.frate-kp:before {
    color: #fb923c;
}

.frate-imdb:before {
    color: var(--yellow);
}

.watch-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 16px;
    background: linear-gradient(135deg,var(--accent),#16a34a);
    color: #03140b;
    font-weight: 950;
}

.watch-cta:hover {
    filter: brightness(1.08);
    color: #03140b;
}

/* Player */

.player-section {
    padding: 22px;
    margin-bottom: 22px;
}

.player-section h2 {
    font-size: 24px;
    margin-bottom: 16px;
}

.fplayer {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: #050812;
    border: 1px solid rgba(255,255,255,.12);
}

.fctrl {
    min-height: 58px;
    background: rgba(255,255,255,.06);
    border-bottom: 1px solid var(--line);
    padding: 8px 12px;
    gap: 10px;
}

.tabs-sel {
    display: flex;
    gap: 8px;
    overflow: auto;
}

.tabs-sel span {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    height: 38px;
    padding: 0 14px;
    border-radius: 13px;
    background: rgba(255,255,255,.08);
    color: #dbeafe;
    cursor: pointer;
    font-weight: 800;
}

.tabs-sel span.current,
.tabs-sel span:hover {
    background: linear-gradient(135deg,var(--accent),#16a34a);
    color: #03140b;
}

.flight,
.ffav,
.fcompl {
    white-space: nowrap;
    color: #cbd5e1;
    font-size: 14px;
    cursor: pointer;
}

.ffav a,
.fcompl a {
    color: #cbd5e1;
}

.video-box {
    display: none;
    background: #000;
    position: relative;
}

.video-box.visible,
.tabs-b.visible {
    display: block;
}

.video-box iframe,
.video-box video,
.video-box embed {
    display: block;
    width: 100%;
    min-height: 500px;
    background: #000;
}

.cvh-box>iframe {
    min-height: 500px;
}

.fshare {
    display: flex;
    gap: 8px;
    padding: 12px;
    background: rgba(255,255,255,.04);
}

.fshare span {
    padding: 7px 10px;
    border-radius: 10px;
    background: rgba(255,255,255,.08);
    cursor: pointer;
    font-weight: 800;
    color: #cbd5e1;
}

.fshare span:hover {
    background: rgba(34,197,94,.18);
    color: #fff;
}

.light-overlay {
    position: absolute;
    z-index: 50;
    left: 0;
    right: 0;
    top: 0;
    height: 100%;
    background: rgba(0,0,0,.82);
}

.light-off .fplayer {
    z-index: 60;
}

.light-off {
    overflow: hidden;
}

.seo-after-player,
.desc-text {
    padding: 22px;
    margin-bottom: 22px;
    color: #cbd5e1;
}

.seo-after-player h2,
.desc-text h1,
.desc-text h2,
.desc-text h3 {
    font-size: 22px;
    color: #fff;
    margin-bottom: 10px;
}

.seo-after-player p,
.desc-text p {
    line-height: 1.75;
}

.desc-text p+p {
    margin-top: 10px;
}

.desc-text a {
    color: #93c5fd;
    text-decoration: underline;
}

.desc-text ul li {
    list-style: disc;
    margin-left: 24px;
}

.fcomms,
.frels {
    padding: 20px;
    margin-bottom: 22px;
}

.full-comms {
    flex: 1 1 520px;
}

.add-comms {
    flex: 1 1 320px;
    margin-left: 20px;
}

.frels .sect-items {
    grid-template-columns: repeat(6,minmax(0,1fr));
}

/* Footer */

.footer {
    display: flex;
    justify-content: space-between;
    gap: 28px;
    padding: 28px;
    background: rgba(5,8,18,.88);
    border-top: 1px solid var(--line);
    color: var(--muted);
}

.footer-brand {
    max-width: 560px;
}

.footer-logo {
    margin-bottom: 12px;
}

.footer p {
    margin-bottom: 10px;
    color: #dbeafe;
    font-weight: 850;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 7px;
    min-width: 160px;
}

.footer a {
    color: var(--muted);
}

.footer a:hover {
    color: #fff;
}

/* Forms, navigation and service blocks */

input[type="text"],
input[type="password"],
select,
textarea {
    width: 100%;
    min-height: 42px;
    border-radius: 14px;
    background: rgba(255,255,255,.08);
    border: 1px solid var(--line);
    color: #fff;
    padding: 0 14px;
}

textarea {
    padding: 14px;
    min-height: 120px;
}

.button,
.btn,
.pagi-load a,
.qq-upload-button,
button:not(.btn-menu):not(.btn-login):not([class*=fr]),
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 14px;
    background: linear-gradient(135deg,var(--accent),#16a34a);
    color: #04120a;
    font-weight: 850;
}

.bottom-nav {
    text-align: center;
    padding: 10px 0 4px;
}

.navigation a,
.navigation span,
.pnext a,
.pprev a,
.pprev>span,
.pnext>span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    margin: 4px;
    border-radius: 12px;
    background: rgba(255,255,255,.08);
    border: 1px solid var(--line);
    color: #dbeafe;
}

.navigation span,
.navigation a:hover {
    background: linear-gradient(135deg,var(--accent),#16a34a);
    color: #04120a;
}

.login-box {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: min(420px,calc(100% - 30px));
    background: #111827;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 22px;
    box-shadow: var(--shadow);
}

.login-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.65);
    z-index: 9998;
}

.login-close {
    position: absolute;
    right: 12px;
    top: 10px;
    cursor: pointer;
    color: #fff;
    font-size: 22px;
}

.close-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.56);
    z-index: 9996;
}

.side-panel {
    position: fixed;
    z-index: 9997;
    left: 0;
    top: 0;
    bottom: 0;
    width: min(340px,86vw);
    background: #0f172a;
    border-right: 1px solid var(--line);
    padding: 24px;
    transform: translateX(-105%);
    transition: .22s;
    overflow: auto;
}

.side-panel.active {
    transform: translateX(0);
}

.btn-close {
    position: fixed;
    z-index: 9998;
    left: min(350px,88vw);
    top: 12px;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: #111827;
    border: 1px solid var(--line);
    display: none;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
}

.btn-close.active {
    display: flex;
}

.side-panel .hmenu {
    display: block;
}

.side-panel .hmenu>li {
    margin-bottom: 8px;
}

.side-panel .hmenu>li>a {
    min-height: 42px;
}

.side-panel .hidden-menu {
    position: static;
    width: 100%;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    margin-top: 8px;
    display: block;
}

.side-panel .hm-col {
    width: 100%;
    float: none;
}

.side-panel .search-wrap {
    max-width: none;
    margin: 18px 0;
}

.side-panel .btn-login {
    width: 100%;
}

#gotop {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: linear-gradient(135deg,var(--accent),var(--accent2));
    color: #04120a;
    z-index: 9995;
    display: none;
    text-align: center;
    line-height: 46px;
    font-weight: 900;
    box-shadow: 0 18px 40px rgba(0,0,0,.32);
}

/* Responsive */

@media (max-width: 1120px) {

    .wrap-center {
        max-width: calc(100% - 24px);
    }

    .sect-items,
    .frels .sect-items {
        grid-template-columns: repeat(5,minmax(0,1fr));
    }

    .header-in {
        gap: 12px;
    }

    .hmenu>li>a {
        padding: 0 10px;
    }

    .search-wrap {
        max-width: 320px;
    }

}

@media (max-width: 920px) {

    .to-mob {
        display: none!important;
    }

    .btn-menu {
        display: block;
    }

    .header-in {
        min-height: 68px;
    }

    .wrap-main {
        margin-top: 14px;
        border-radius: 22px;
    }

    .home-hero {
        padding: 32px;
    }

    .home-hero h1 {
        font-size: 32px;
    }

    .sect-items,
    .frels .sect-items {
        grid-template-columns: repeat(4,minmax(0,1fr));
    }

    .movie-grid {
        grid-template-columns: 210px minmax(0,1fr);
    }

    .movie-info h1 {
        font-size: 28px;
    }

    .video-box iframe,
    .cvh-box>iframe {
        min-height: 420px;
    }

    .footer {
        flex-wrap: wrap;
    }

}

@media (max-width: 720px) {

    .content {
        padding: 16px;
    }

    .home-hero {
        padding: 24px;
        border-radius: 20px;
    }

    .home-hero h1 {
        font-size: 27px;
    }

    .home-hero p {
        font-size: 15px;
    }

    .sect-items,
    .frels .sect-items {
        grid-template-columns: repeat(3,minmax(0,1fr));
        gap: 12px;
    }

    .movie-grid {
        grid-template-columns: 1fr;
    }

    .movie-poster-box {
        max-width: 260px;
    }

    .movie-info h1 {
        font-size: 26px;
    }

    .movie-details {
        grid-template-columns: 1fr;
    }

    .add-comms {
        margin-left: 0;
        margin-top: 16px;
    }

    .fctrl {
        align-items: flex-start;
    }

    .tabs-sel {
        flex-basis: 100%;
    }

    .video-box iframe,
    .cvh-box>iframe {
        min-height: 320px;
    }

    .footer {
        display: block;
    }

    .footer-col {
        margin-top: 18px;
    }

}

@media (max-width: 520px) {

    body {
        font-size: 14px;
    }

    .wrap-center {
        max-width: 100%;
    }

    .wrap-main {
        border-radius: 0;
        border-left: 0;
        border-right: 0;
        margin: 0;
    }

    .header .wrap-center {
        max-width: 100%;
    }

    .logo-text {
        font-size: 20px;
    }

    .logo-mark {
        width: 38px;
        height: 38px;
    }

    .sect-items,
    .frels .sect-items {
        grid-template-columns: repeat(2,minmax(0,1fr));
        gap: 10px;
    }

    .th-title {
        font-size: 13px;
    }

    .movie-card,
    .player-section,
    .seo-after-player,
    .fcomms,
    .frels,
    .desc-text {
        border-radius: 18px;
        padding: 16px;
    }

    .movie-poster-box {
        max-width: 220px;
    }

    .movie-info h1 {
        font-size: 24px;
    }

    .hero-actions {
        gap: 8px;
    }

    .hero-btn {
        min-height: 42px;
        padding: 0 13px;
    }

    .video-box iframe,
    .cvh-box>iframe {
        min-height: 250px;
    }

    .fctrl {
        font-size: 13px;
    }

    .flight,
    .ffav,
    .fcompl {
        font-size: 13px;
    }

    .footer {
        padding: 22px;
    }

}

/* SEO block after player */

.seo-after-player p {
	margin-bottom: 14px;
	line-height: 1.75;
}

.seo-after-player h2 {
	margin-bottom: 14px;
}

.seo-after-player h2:not(:first-child) {
	margin-top: 22px;
}


/* Blog full article */

.blog-full {
	max-width: 980px;
	margin: 0 auto;
	padding: 28px;
	border-radius: 26px;
	background: #111827;
	border: 1px solid rgba(255,255,255,.08);
	box-shadow: 0 18px 45px rgba(0,0,0,.2);
}

.blog-full__head {
	margin-bottom: 22px;
}

.blog-full__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 14px;
	color: #9ca3af;
	font-size: 14px;
}

.blog-full__meta a {
	color: #38bdf8;
	text-decoration: none;
}

.blog-full__meta a:hover {
	text-decoration: underline;
}

.blog-full h1 {
	margin-bottom: 0;
	font-size: 34px;
	line-height: 1.2;
	letter-spacing: -.4px;
	color: #f8fafc;
}

.blog-full__cover {
	margin: 24px 0;
	border-radius: 22px;
	overflow: hidden;
	background: #020617;
	border: 1px solid rgba(255,255,255,.08);
}

.blog-full__cover img {
	display: block;
	width: 100%;
	height: auto;
}

.blog-full__content {
	font-size: 17px;
	line-height: 1.75;
	color: #e5e7eb;
}

.blog-full__content h2 {
	margin: 32px 0 14px;
	font-size: 26px;
	line-height: 1.25;
	color: #f8fafc;
}

.blog-full__content h3 {
	margin: 24px 0 12px;
	font-size: 22px;
	line-height: 1.3;
	color: #f8fafc;
}

.blog-full__content p {
	margin-bottom: 16px;
}

.blog-full__content ul,
.blog-full__content ol {
	margin: 0 0 18px 22px;
}

.blog-full__content li {
	margin-bottom: 8px;
}

.blog-full__content a {
	color: #38bdf8;
	font-weight: 700;
	text-decoration: none;
}

.blog-full__content a:hover {
	text-decoration: underline;
}

.blog-full__content table {
	width: 100%;
	margin: 22px 0;
	border-collapse: separate;
	border-spacing: 0;
	border-radius: 18px;
	overflow: hidden;
	background: rgba(255,255,255,.035);
	border: 1px solid rgba(255,255,255,.08);
}

.blog-full__content th,
.blog-full__content td {
	padding: 13px 14px;
	border-right: 1px solid rgba(255,255,255,.08);
	border-bottom: 1px solid rgba(255,255,255,.08);
	text-align: left;
	vertical-align: top;
}

.blog-full__content th:last-child,
.blog-full__content td:last-child {
	border-right: 0;
}

.blog-full__content tr:last-child td {
	border-bottom: 0;
}

.blog-full__content th {
	background: rgba(255,255,255,.075);
	color: #fff;
	font-weight: 850;
}

.blog-full__content tbody tr:hover td {
	background: rgba(34,197,94,.06);
}


/* Blog list cards */

.sect-cont:has(.blog-card),
.sect-items:has(.blog-card) {
	display: grid;
	grid-template-columns: repeat(auto-fill,minmax(280px,1fr));
	gap: 18px;
	align-items: stretch;
}

.blog-card {
	width: 100%;
	min-width: 0;
	margin: 0;
	border-radius: 22px;
	background: #111827;
	border: 1px solid rgba(255,255,255,.08);
	overflow: hidden;
	box-shadow: 0 12px 32px rgba(0,0,0,.18);
}

.blog-card:hover {
	border-color: rgba(34,197,94,.35);
	transform: translateY(-2px);
}

.blog-card__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 18px;
	color: #fff;
	text-decoration: none;
}

.blog-card__image {
	width: 100%;
	height: 178px;
	margin-bottom: 16px;
	border-radius: 16px;
	overflow: hidden;
	background: #020617;
	border: 1px solid rgba(255,255,255,.06);
}

.blog-card__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.blog-card__image--empty {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #22c55e;
	font-size: 34px;
}

.blog-card__body {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
}

.blog-card__meta {
	margin-bottom: 10px;
	color: #9ca3af;
	font-size: 13px;
}

.blog-card h2 {
	margin: 0 0 14px;
	font-size: 22px;
	line-height: 1.25;
	color: #f8fafc;
}

.blog-card__more {
	display: inline-block;
	margin-top: auto;
	color: #22c55e;
	font-weight: 850;
}

.blog-card:hover .blog-card__more {
	text-decoration: underline;
}


/* Blog responsive */

@media (max-width: 760px) {
	.blog-full {
		padding: 20px;
		border-radius: 22px;
	}

	.blog-full h1 {
		font-size: 28px;
	}

	.blog-full__content {
		font-size: 16px;
	}

	.blog-full__content h2 {
		font-size: 23px;
	}

	.blog-full__content table {
		display: block;
		overflow-x: auto;
		white-space: nowrap;
	}

	.sect-cont:has(.blog-card),
	.sect-items:has(.blog-card) {
		grid-template-columns: 1fr;
	}

	.blog-card__image {
		height: 180px;
	}
}

@media (max-width: 520px) {
	.blog-full {
		padding: 16px;
		border-radius: 18px;
	}

	.blog-full h1 {
		font-size: 25px;
	}

	.blog-card__link {
		padding: 14px;
	}

	.blog-card__image {
		height: 165px;
	}
}
.serial-materials {
	padding: 22px;
	margin-bottom: 22px;
	border-radius: 24px;
	background: rgba(21,29,49,.78);
	border: 1px solid var(--line);
	box-shadow: 0 18px 45px rgba(0,0,0,.2);
}

.serial-materials h2 {
	margin-bottom: 16px;
	font-size: 22px;
	line-height: 1.25;
	color: #fff;
}

.serial-materials__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
	gap: 12px;
}

.serial-materials__grid a {
	display: block;
	min-height: 76px;
	padding: 14px 16px;
	border-radius: 15px;
	background: rgba(255,255,255,.07);
	border: 1px solid rgba(255,255,255,.08);
	color: #e5e7eb;
	text-decoration: none;
}

.serial-materials__grid a span {
	display: block;
	margin-bottom: 5px;
	color: var(--accent);
	font-size: 13px;
	font-weight: 900;
}

.serial-materials__grid a b {
	display: block;
	color: #fff;
	font-size: 15px;
	line-height: 1.35;
}

.serial-materials__grid a:hover {
	background: rgba(34,197,94,.14);
	border-color: rgba(34,197,94,.35);
}

@media (max-width: 520px) {
	.serial-materials {
		padding: 16px;
		border-radius: 18px;
	}

	.serial-materials__grid {
		grid-template-columns: 1fr;
	}
}
.serial-materials__grid a {
	position: relative;
	padding: 18px 18px 18px 20px;
}

.serial-materials__grid a:after {
	content: "→";
	position: absolute;
	right: 18px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--accent);
	font-size: 22px;
	font-weight: 900;
}

.serial-materials__grid a span {
	text-transform: uppercase;
	letter-spacing: .4px;
}

.serial-materials__grid a b {
	padding-right: 30px;
}