@font-face {
    font-family: Gilroy;
    /* Gilroy-Light файлы жоқ — Regular қолданылады */
    src: url(../fonts/Gilroy-Regular.woff2) format("woff2"),url(../fonts/Gilroy-Regular.woff) format("woff");
    font-weight: 300;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Gilroy;
    src: url(../fonts/Gilroy-Regular.woff2) format("woff2"),url(../fonts/Gilroy-Regular.woff) format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Gilroy;
    src: url(../fonts/Gilroy-Medium.woff2) format("woff2"),url(../fonts/Gilroy-Medium.woff) format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Gilroy;
    src: url(../fonts/Gilroy-SemiBold.woff2) format("woff2"),url(../fonts/Gilroy-SemiBold.woff) format("woff");
    font-weight: 600;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Gilroy;
    src: url(../fonts/Gilroy-Bold.woff2) format("woff2"),url(../fonts/Gilroy-Bold.woff) format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap
}

/* HEADER
----------------------------------------------- */
.header {
    position: absolute;
    z-index: 500;
    top: 0;
    left: 0;
    right: 0;
    transition: all 0.3s;
    background: transparent;
    background-image: linear-gradient(0deg, rgba(10,10,12,0), rgba(10,10,12,.7));
}

.header.sticky-hide { top: -80px; }

.header.sticky-vis { top: 0; background: transparent; }

.header.sticky {
    left: 0;
    right: 0;
    margin: 0 auto;
    position: fixed;
    background: var(--color6);
}

.header_container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    z-index: 998;
}

.header_logo span {
    font-size: 26px;
    font-weight: 700;
    color: var(--color-red);
    letter-spacing: 2px;
}

.header_btn-menu {
    background: var(--color-red);
    color: #fff;
    width: 40px;
    height: 40px;
    padding: 13px 11px;
    border-radius: 8px;
    font-size: 14px;
    margin-left: 12px;
    z-index: 8;
}

@media (min-width: 768px) {
    .header_btn-menu { display: none; }
}

.header_btn-menu span {
    display: block;
    width: 18px;
    height: 1px;
    background: #fff;
    border-radius: 1.5px;
    margin: 0 0 5px 0;
    transition: .3s;
}

.header_btn-menu span:nth-child(2) { position: absolute; }

.header_btn-menu.active span { opacity: 0; transition: .3s; }

.header_btn-menu.active span:nth-child(2) {
    opacity: 1;
    transform: rotate(45deg);
}

.header_btn-menu.active span:nth-child(3) {
    opacity: 1;
    transform: rotate(-45deg);
}

.header-menu { align-items: center; }

@media (max-width: 768px) {
    .header-menu {
        visibility: hidden;
        opacity: 0;
        position: absolute;
        width: 80%;
        right: -20px;
        top: 0;
        min-height: 100vh;
        background: var(--color7);
        padding: 64px 20px 64px 20px;
        z-index: 5;
        align-items: flex-start;
        transform: translateX(100%);
        transition: all .3s;
    }
}

@media (max-width: 768px) {
    .header-menu.active {
        visibility: visible;
        opacity: 1;
        flex-direction: column;
        transform: translateX(0);
    }
}

.header-menu a:not(.header-menu_hidden a) {
    display: block;
    margin-right: 24px;
    padding: 14px 10px;
    font-size: 13px;
}

/* Тікелей эфир сілтемесі — қызыл жарқырайды */
.header-menu_live {
    color: var(--color-red) !important;
    font-weight: 600;
}

.header-menu_live i {
    animation: pulse-dot 1.5s infinite;
    font-size: 8px;
    vertical-align: middle;
    margin-right: 4px;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.header-menu_submenu { position: relative; }

.header-menu_submenu>a:after {
    content: "\f054";
    font-weight: 300;
    font-family: "font awesome 5 pro";
    margin-left: 7px;
    transition: all .2s;
    display: inline-block;
    font-size: .8em
}

.header-menu_submenu:hover>a:after { transform: rotate(90deg)!important }

.header-menu_hidden {
    visibility: hidden;
    opacity: 0;
    background-color: var(--color6);
    box-shadow: 0px 0 20px rgb(0 0 0 / 30%);
    z-index: 100;
    position: absolute;
    left: -60%;
    top: 100%;
    width: 360px;
    padding: 30px;
    border-radius: 20px;
    transform: translateY(30px);
    transition: opacity .3s;
}

@media (min-width: 768px) {
    .header-menu_submenu:hover .header-menu_hidden {
        visibility: visible;
        opacity: 1;
        transform: translateY(0px);
    }
}

@media (max-width: 768px) {
    .header-menu_hidden.active {
        visibility: visible;
        opacity: 1;
        position: relative;
        left: 0;
        width: 100%;
        padding: 10px;
        margin: 10px 0;
        transform: translateY(0px);
    }
}

.header-menu_hidden a {
    width: calc(100% / 2 - 10px);
    display: block;
    padding: 10px 20px;
    border-radius: 10px;
}

.header-menu_hidden a:hover { background: var(--color-red); }

.header-search { }

@media (max-width: 768px) {
    .header-search {
        margin-left: auto;
        margin-right: 15px;
    }
}

.header-search_mobile {
    display: none;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
}

@media (max-width: 768px) {
    .header-search_mobile { display: block; }
}

.header-search form {
    position: relative;
    background: var(--light);
    display: inline-block;
    border-radius: 5px;
    padding: 15px 20px 15px 45px;
    width: 260px;
    color: var(--text-color1);
    backdrop-filter: blur(5px);
    z-index: 998;
}

@media (max-width: 768px) {
    .header-search form {
        background: var(--color7);
        display: none;
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        border-radius: 0;
        padding: 20px 50px 20px 50px;
    }
}

.header-search form input {
    width: 100%;
    opacity: 0.8;
    color: var(--text-color1);
    font-family: inherit;
}

.header-search form input::placeholder { color: var(--text-color1); }

.header-search_icon {
    position: absolute;
    top: 14px;
    left: 16px;
    font-size: 16px;
    color: var(--text-color1);
    opacity: 0.4;
}

@media (max-width: 768px) {
    .header-search_icon { top: 19px; }
}

.header-search_close { display: none; }

@media (max-width: 768px) {
    .header-search_close {
        opacity: 0.6;
        display: block;
        position: absolute;
        right: 0;
        top: 0;
        padding: 12px 15px;
        font-size: 28px;
    }
}

.header-search_voice {
    opacity: 0.6;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    padding: 12px 15px;
    font-size: 18px;
}

.header-ellipsis {
    display: flex;
    align-items: center;
}

.header-ellipsis_login {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
}

.header-ellipsis_login:hover { opacity: 0.8; }

/* LIVE BAR — тікелей эфир жолағы
----------------------------------------------- */
.live-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color6);
    border-top: 2px solid var(--color-red);
    z-index: 490;
    padding: 8px 0;
}

.live-bar_inner {
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 15px;
}

.live-bar_badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--color-red);
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 4px;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.live-bar_badge i {
    font-size: 7px;
    animation: pulse-dot 1.5s infinite;
}

.live-bar_title {
    flex: 1;
    font-size: 13px;
    font-weight: 500;
    opacity: 0.9;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.live-bar_watch {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--light);
    padding: 5px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    transition: background 0.2s;
}

.live-bar_watch:hover { background: var(--color-red); }

@media (max-width: 425px) {
    .live-bar_title { display: none; }
}

/* Страница — отступ снизу для live-bar */
.wrapper { padding-bottom: 50px; }

/* FAST SEARCH
----------------------------------------------- */
.search__rezo { position: absolute; }

@media (max-width: 425px) {
    .search__rezo { left: 0; width: 100%; }
}

.search__rezo #searchsuggestions {
    background: var(--bg);
    box-shadow: 0 20px 20px rgb(0 0 0 / 60%);
    color: #999999;
    width: 260px;
    max-height: 290px;
    overflow: hidden;
    overflow-y: auto;
    padding: 15px;
    margin-top: 10px;
    border-radius: 12px;
}

@media (max-width: 425px) {
    .search__rezo #searchsuggestions { width: 100%; }
}

.fsearch {
    display: flex;
    margin-bottom: 20px;
    align-items: center;
    padding: 10px;
    border-radius: 10px;
    justify-content: space-between;
}

.fsearch:hover { background: var(--color7); }

.fsearch_poster {
    position: relative;
    width: 65px;
    height: 55px;
    margin-right: 10px;
}

.fsearch_poster img {
    width: auto;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.fsearch_info h4 { font-weight: 600; margin-bottom: 0; }
.fsearch_tags span { font-weight: 400; opacity: 0.8; }

.seperator {
    display: block;
    background: var(--light);
    padding: 8px 20px;
    text-align: center;
    border-radius: 10px;
}

.seperator:hover { background: var(--two-light); }

/* LOGIN
----------------------------------------------- */
.login-page {
    position: fixed;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    background: var(--color6);
    width: 500px;
    padding: 40px 80px;
    border-radius: 20px;
    text-align: center;
}

@media (max-width: 425px) {
    .login-page { width: 90%; padding: 60px 30px; }
}

.login-page_close {
    display: inline-block;
    position: absolute;
    background: var(--light);
    border-radius: 10px;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
}

.login-page_btn { margin-top: 30px; justify-content: center; }
.login-page_btn a + a { margin-left: 20px; }

.login_log {
    position: absolute;
    top: 64px;
    right: -20px;
    z-index: 5;
    display: none;
    background: var(--color7);
    border-radius: 10px;
    padding: 15px;
    min-width: 240px;
    box-shadow: 0 0.5rem 4rem -0.5rem rgb(0 0 0 / 10%), 0 0.25rem 1.5rem 0 rgb(0 0 0 / 10%);
}

.login_log.active { display: block; }

.login_log-info {
    display: flex;
    align-items: center;
    border-bottom: 2px solid var(--light);
    padding-bottom: 15px;
}

.login_log-avatar {
    display: block;
    width: 50px;
    height: 50px;
    overflow: hidden;
    border-radius: 50%;
}

.login_log-name {
    display: flex;
    flex-flow: column;
    font-size: 18px;
    font-weight: 600;
    margin-left: 20px;
}

.login_log-name span { font-size: 10px; }

.login_log-menu { display: block; margin-top: 12px; }
.login_log-menu li { font-size: 13px; margin-top: 12px; opacity: 0.8; }
.login_log-menu li:hover { opacity: 1; }
.login_log-menu li span { font-size: 12px; float: right; }

/* MAIN SLIDER
----------------------------------------------- */
.slider_movie-main {
    position: relative;
    height: 500px;
    overflow: hidden;
}

@media (max-width: 425px) {
    .slider_movie-main { height: 450px; }
}

.slider_movie + .content { margin-top: -20px; }

.slider_movie-poster {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.slider_movie-poster:before {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10,10,12,0) 0%, rgba(10,10,12,.5) 60%, rgba(10,10,12,.85) 85%, var(--bg) 100%);
}

.slider_movie-poster:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 55%;
    height: 100%;
    background-image: linear-gradient(90deg, var(--bg), rgba(10,10,12,0));
}

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

.slider_movie-content {
    position: absolute;
    bottom: 80px;
    width: 100%;
}

.slider_movie-content p {
    width: 600px;
    margin-top: 20px;
}

.slider_movie-livebadge {
    gap: 10px;
    margin-bottom: 15px;
}

.slider_live-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--color-red);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.slider_live-badge i {
    font-size: 7px;
    animation: pulse-dot 1.5s infinite;
}

.slider_movie-logo {
    display: block;
    max-width: 250px;
    max-height: 250px;
    width: auto;
    height: auto;
    margin-bottom: 20px;
}

.slider_movie-title {
    display: block;
    font-size: 42px;
    margin-bottom: 20px;
}

@media (max-width: 425px) {
    .slider_movie-title { font-size: 26px; }
}

.slider_movie-tags span {
    position: relative;
    font-size: 15px;
    font-weight: 400;
    opacity: 0.8;
    margin-right: 20px;
}

.slider_movie-tags_time {
    color: #fff;
    opacity: 1 !important;
    font-weight: 600 !important;
}

.slider_movie-tags_age {
    padding: 2px 7px;
    border: 2px solid hsla(0,0%,94.9%,.34);
    border-radius: 4px;
    font-weight: 600;
    opacity: 0.6;
}

.slider_movie-buttons {
    margin-top: 30px;
    align-items: center;
}

.slider_movie-btn {
    display: inline-block;
    background: var(--color-red);
    padding: 16px 30px;
    border-radius: 8px;
    text-align: center;
    width: 180px;
    font-weight: 600;
}

.slider_movie-btn:hover { background: #a93226; }

.slider_movie-btn--live {
    background: var(--color-red);
    animation: none;
}

.slider_movie-fav {
    display: inline-block;
    background: var(--light);
    margin-left: 20px;
    font-size: 16px;
    padding: 16px 20px;
    border-radius: 8px;
    text-align: center;
}

.favmod-add,.favmod-unset { display: block }
.favmod .favmod-unset,.favmod.active .favmod-add { display: none }
.favmod.active .favmod-unset { display: block }

.slider_movie-indicators {
    position: absolute;
    bottom: 80px;
    right: 56px;
    z-index: 1;
}

@media (max-width: 425px) {
    .slider_movie-indicators {
        display: flex;
        justify-content: center;
        bottom: 0;
        right: 0;
        left: 0;
    }
}

.slider_movie-indicator { position: relative; align-items: center; }

.slider_movie-left, .slider_movie-right {
    position: absolute;
    font-size: 28px;
    padding: 0px 15px;
    text-align: center;
    color: var(--two-light);
    opacity: 0;
    cursor: pointer;
    transition: 0.3s all;
}

@media (max-width: 768px) {
    .slider_movie-left, .slider_movie-right { display: none!important; }
}

.slider_movie:hover .slider_movie-left,
.slider_movie:hover .slider_movie-right { display: block; opacity: 1; }

.slider_movie-left:hover, .slider_movie-right:hover { color: #fff; }
.slider_movie-left { left: 0; }
.slider_movie-right { right: 0; }

.main-slider .swiper-pagination {
    position: relative;
    display: flex;
    margin: 0 40px;
}

.main-slider .swiper-pagination-bullet {
    position: relative;
    width: 5px;
    height: 5px;
    margin: 0 4px;
    border-radius: 8px;
    background-color: rgba(86,92,103,.4);
    transition: all .10s ease;
    overflow: hidden;
}

.main-slider .swiper-pagination-bullet::before {
    content: "";
    display: block;
    position: absolute;
    background-color: #fff;
    top: 0; right: 0; bottom: 0; left: 0;
}

.main-slider .swiper-pagination-bullet-active { width: 32px; }

.main-slider .swiper-pagination-bullet-active::before {
    background-color: #fff;
    animation: slide-progress 8s cubic-bezier(0.3, 0, 0.3, 1) forwards;
}

@keyframes slide-progress {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(0); }
}

/* TV LIVE BLOCK — тікелей эфир блогы
----------------------------------------------- */
.tv-live-block {
    background: var(--color6);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 60px;
    border-left: 4px solid var(--color-red);
}

.tv-live-block_inner {
    gap: 40px;
    align-items: center;
}

@media (max-width: 768px) {
    .tv-live-block_inner {
        flex-direction: column;
    }
}

.tv-live-block_player {
    flex: 0 0 auto;
    width: 480px;
}

@media (max-width: 768px) {
    .tv-live-block_player { width: 100%; }
}

.tv-live-block_frame {
    position: relative;
    padding-bottom: 56.25%;
    border-radius: 10px;
    overflow: hidden;
}

.tv-live-block_frame iframe {
    position: absolute;
    width: 100%;
    height: 100%;
}

.tv-live-block_info { flex: 1; }

.tv-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--color-red);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 4px;
    letter-spacing: 0.8px;
    margin-bottom: 15px;
}

.tv-live-badge i {
    font-size: 7px;
    animation: pulse-dot 1.5s infinite;
}

.tv-live-block_info h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.tv-live-block_info p {
    opacity: 0.7;
    margin-bottom: 20px;
}

/* SCHEDULE WIDGET — хабар кестесі виджеті
----------------------------------------------- */
.schedule-widget {
    background: var(--color6);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 60px;
}

.schedule-widget_heading {
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.schedule-widget_heading h2 {
    margin-bottom: 0;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.schedule-widget_list { }

.schedule-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--light);
    gap: 20px;
}

.schedule-item:last-child { border-bottom: none; }

.schedule-item_time {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-red);
    min-width: 60px;
}

.schedule-item_title {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
}

.schedule-item_type {
    font-size: 11px;
    opacity: 0.5;
    white-space: nowrap;
}

.schedule-item.active .schedule-item_time {
    color: var(--color-red);
}

.schedule-item.active .schedule-item_title {
    font-weight: 700;
}

/* FULL NEWS
----------------------------------------------- */
.full-subbota {
    padding-top: 150px;
    padding-bottom: 50px;
    overflow: hidden;
}

@media (max-width: 425px) {
    .full-subbota { margin-top: -90px; }
}

.full-subbota_bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 400px;
}

@media (max-width: 425px) {
    .full-subbota_bg { width: 90%; height: 250px; }
}

.full-subbota_bg:before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(65% 55% at 65% 44%, rgba(0,20,36,0) 32.81%, var(--bg) 100%);
    z-index: 1;
}

.full-subbota_bg img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-position: top;
    object-fit: cover;
    opacity: 1;
}

.full-subbota_flex {
    display: flex;
    position: relative;
    align-items: flex-end;
    z-index: 2;
}

@media (max-width: 425px) {
    .full-subbota_flex { padding-bottom: 80px; }
}

.full-subbota_poster {
    position: relative;
    margin-right: 80px;
    width: 250px;
    min-width: 200px;
}

@media (max-width: 425px) {
    .full-subbota_poster {
        margin-right: 20px;
        width: 130px;
        min-width: 120px;
    }
}

.full-subbota_poster img:nth-child(1) {
    position: absolute;
    border-radius: 10px;
    left: 0; bottom: 0;
    opacity: 0.5;
    transform: scale(0.7);
    transform-origin: 0% 100%;
    filter: blur(40px);
    z-index: 1;
}

.full-subbota_poster img:nth-child(2) {
    position: relative;
    border-radius: 10px;
    z-index: 2;
}

.full-subbota_heading { max-width: 800px; }
.full-subbota_heading h1 { margin-bottom: 10px; }

.full-movie_stars {
    margin-bottom: 20px;
    align-items: center;
}

.full-movie_stars span {
    display: inline-block;
    background: var(--light);
    padding: 5px;
    border-radius: 10px;
    margin-left: 10px;
}

.full-subbota_heading p {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.5;
    max-width: 600px;
}

.full-subbota_parametr {
    align-items: center;
    margin: 20px 0;
}

@media (max-width: 425px) {
    .full-subbota_parametr { display: none; }
}

.full-subbota_parametr span { font-size: 15px; opacity: 0.8; }
.full-subbota_parametr span + span { margin-left: 25px; }

.full-subbota_parametr-age {
    display: inline-block;
    border: 2px solid var(--light);
    padding: 5px 8px;
    border-radius: 10px;
}

.full-subbota_dopbtn { margin: 30px 0; }

@media (max-width: 425px) {
    .full-subbota_dopbtn {
        flex-wrap: nowrap;
        margin: 10px 0;
        justify-content: space-between;
    }
}

.full-subbota_dopbtn a {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.full-subbota_dopbtn a + a { margin-left: 20px; }

.full-subbota_dopbtn a i {
    background: var(--light);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 18px;
    margin-right: 15px;
}

.full-subbota_share.active .full-subbota_fshare {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

.full-subbota_fshare {
    position: absolute;
    left: 50%;
    top: 60px;
    z-index: 5;
    background-color: var(--color6);
    width: 222px;
    margin-left: -111px;
    transform: translateY(50px);
    visibility: hidden;
    opacity: 0;
    transition: all 0.2s;
    border-radius: 5px;
    padding: 15px;
    box-shadow: rgb(0 0 0 / 24%) 0px 10px 40px;
    justify-content: space-between;
}

.full-subbota_fshare:before {
    content: '';
    position: absolute;
    left: 50%;
    margin-left: -7px;
    top: -7px;
    width: 14px;
    height: 14px;
    background: var(--color6);
    transform: rotate(135deg);
}

.full-subbota_fshare span {
    display: inline-block;
    background: var(--light);
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    border-radius: 10px;
}

.full-subbota_fshare span:hover { background: var(--color-red); }

.full-subbota_buttons {
    align-items: center;
    margin-bottom: 3px;
}

@media (max-width: 425px) {
    .full-subbota_buttons {
        position: absolute;
        align-items: center;
        justify-content: center;
        width: 100%;
        flex-wrap: nowrap;
        bottom: 0;
        left: 0;
        margin: 0;
    }
}

.full-subbota_buttons a {
    display: inline-block;
    background: var(--color-red);
    padding: 16px 35px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
}

.full-subbota_buttons a + a { margin-left: 20px; }

.full-subbota_play:hover { background: #a93226; }

.full-subbota_buttons .full-subbota_trailer { background: var(--color7); }
.full-subbota_buttons .full-subbota_trailer:hover { background: var(--color8); }

.full-subbota_detalis {
    margin-top: 30px;
    justify-content: space-between;
}

.full-subbota_detalis-item {
    width: 200px;
    margin-top: 40px;
    margin-right: 40px;
    color: #bdbdbd;
}

.full-subbota_detalis-item span {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-top: 10px;
    color: #fff;
}

.trailer-modal {
    display: none;
    position: fixed;
    background: var(--bg);
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    z-index: 998;
}

.trailer-modal_heading {
    padding: 20px;
    align-items: center;
    justify-content: space-between;
}

.trailer-modal_heading h4 { margin-bottom: 0; }

.trailer-modal_close {
    display: inline-block;
    background: var(--light);
    border-radius: 10px;
    font-size: 20px;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
}

.trailer-modal_iframe { position: relative; padding-bottom: 85vh; }

.trailer-modal_iframe iframe {
    position: absolute;
    width: 100%;
    height: 100%;
}

/* SHORT SLIDER
----------------------------------------------- */
.short-movie_slider-heading {
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.short-movie_slider-heading h1 { margin-bottom: 0; }

.short-movie_slider.swiper-container {
    overflow: visible;
    margin-bottom: 60px;
}

.short-movie_slider-left, .short-movie_slider-right {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 45%;
    background: var(--color1);
    backdrop-filter: blur(13px);
    width: 42px;
    height: 60px;
    cursor: pointer;
    z-index: 3;
    border-radius: 10px;
}

.short-movie_slider-left { left: -30px; }
.short-movie_slider-right { right: -30px; }

@media (max-width: 1024px) {
    .short-movie_slider-left { left: 10px; }
    .short-movie_slider-right { right: 10px; }
}

@media (max-width: 768px) {
    .short-movie_slider-left, .short-movie_slider-right { display: none; }
}

.swiper-button-disabled { display: none; }

/* NAVIGATION
----------------------------------------------- */
.navigation-page {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    grid-column: 1/-1;
    margin-top: 40px;
}

.navigation { text-align: center }

.navigation a, .navigation span, .pnext a, .pprev a, .pprev>span, .pnext>span {
    display: inline-block;
    padding: 0 10px;
    margin: 0 3px 10px;
    line-height: 40px;
    min-width: 40px;
    background-color: var(--light);
    border-radius: 6px;
}

.navigation span:not(.nav_ext) { background-color: var(--color-red); }

/* SHORT CARDS
----------------------------------------------- */
.short-movie_item { }

.short-movie_item-poster {
    position: relative;
    padding-bottom: 60%;
    transform: scale(1) translateY(2%);
    transition-duration: .4s;
    cursor: pointer;
}

.short-movie_item-poster:hover {
    transform: scale(1.04) translateY(0)
}

.short-movie_item-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    border-radius: 8px;
    overflow: hidden;
    transition: 0.3s all;
}

.short-movie_item-poster .badge {
    position: absolute;
    right: 0;
    z-index: 2;
    border-radius: 0 8px 0;
}

.short-movie_item-heading { margin-top: 12px; }
.short-movie_item-heading h4 { margin-bottom: 0; font-size: 14px; }

.short-movie_item-tags {
    padding: 5px 0;
    opacity: 0.5;
    font-size: 12px;
}

.short-movie_item-tags span i { margin-right: 3px; }
.short-movie_item-tags span + span { margin-left: 10px; }

/* COMMENTS
----------------------------------------------- */
.comments { max-width: 800px; }

.comments_heading {
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.comments_heading h1 { margin-bottom: 0; }

.comments_heading a {
    display: inline-block;
    background: transparent;
    border: 2px solid var(--light);
    padding: 10px 20px;
    border-radius: 10px;
    transition: all 0.3s;
    cursor: pointer;
}

.comments_heading a:hover { border: 2px solid var(--color-red); }

.comments-no {
    background: var(--light);
    margin-top: 30px;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.comment-item {
    background: var(--light);
    color: var(--text-color1);
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 6px;
}

.comment-item_img {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    overflow: hidden;
}

.comment-item_letter {
    width: 100%;
    height: 100%;
    text-transform: uppercase;
    font-weight: 500;
    position: absolute;
    left: 0; top: 0;
    z-index: 5;
    color: #fff;
    font-size: 18px;
    align-items: center;
    justify-content: center;
}

.comment-item_author a { font-weight: 500; }
.comment-item_date { color: #999; margin-top: 6px; font-size: 1.2rem; }
.comment-item_main { margin: 12px 0; }

.comment-item_reply a {
    background: var(--light);
    padding: 5px 10px;
    border-radius: 10px;
    font-size: 12px;
}

/* BAGDES
----------------------------------------------- */
.badge {
    display: inline-block;
    padding: 5px 8px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    vertical-align: baseline;
    border-radius: 3px;
}

.badge-danger { color: #fff; background-color: var(--color-red); }
.badge-success { color: #fff; background-color: #3cd458; }
.badge-primary, .badge_blue { color: #fff; background-color: #50a1ff; }
.badge-dark { color: #fff; background-color: #343a40; }

/* FOOTER
----------------------------------------------- */
.footer {
    background: var(--color6);
    color: #fff;
    position: relative;
}

.footer .container {
    padding-top: 40px;
    padding-bottom: 35px;
}

.footer_flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer_flex:last-child { margin-top: 15px; }

.footer_logo span {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-red);
    letter-spacing: 2px;
}

.footer_menu {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row;
}

.footer_menu li a {
    margin-right: 15px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    display: block;
    transition: color 0.2s;
}

.footer_menu li a:hover { color: #fff; }

@media (max-width: 768px) {
    .footer_menu li a { margin-bottom: 10px; }
}

.footer_support {
    display: inline-block;
    border: 2px solid rgba(70,76,89,.6);
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    padding: 5px 10px;
    margin-left: auto;
}

@media (max-width: 768px) {
    .footer_support { display: none; }
}

.footer_copyright {
    opacity: 0.4;
    font-size: 12px;
}

.footer_soc { display: flex; align-items: center; }

.footer_soc a {
    width: 35px;
    height: 35px;
    border-radius: 10px;
    background: var(--light);
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
    transition: background 0.2s;
}

.footer_soc a:nth-child(1):hover { background: #23aaea; }
.footer_soc a:nth-child(2):hover { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.footer_soc a:nth-child(3):hover { background: #f00; }

/* SCROLLER
----------------------------------------------- */
#scrolltop { display: none!important; }

@media (min-width: 768px) {
    ::-webkit-scrollbar { width: 8px; height: 3px; }
    ::-webkit-scrollbar-thumb { background-color: var(--color-red); border-radius: 2px; }
    ::-webkit-scrollbar-track { background-color: var(--bg); }
}
