/* STYLES 0.1
Developer: t.me/moretheme
Developer site: https://lapse.site/
Screen resolution: 460, 860, 1440, 1920 */
:root {
    --bg: #1c1c24;
    --bg2: #262631;
    --bg3: #424252;
    --text: #fff;
    --text1: #000;
    --text2: #acacac;
    --color1: #7770fe;
    --color2: #908bf5;
    --color3: #fe8170;
    --light: rgb(255 255 255 / 10%);
    --light2: rgb(255 255 255 / 20%);
    --dark: rgb(0 0 0 / 15%);
    --radius: 12px;
}

body {
    background: var(--bg);
    color: var(--text);
    line-height: normal;
    font-family: "Geologica", sans-serif;
    font-size: 14px;
    font-weight: 400;
}

/* HEADER */
header {
    position: relative;
    background: var(--bg2);
    color: var(--text2);
    width: 100%;
    top: 0;
    padding: 15px 0;
    transition: 0.3s;
    z-index: 7;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-gap: 20px;
}

.header-logo, .header-logo img {
    position: relative;
    color: #fff;
    font-size: 28px;
    font-weight: bold;
}

/* HEADER FAST */
.header-fast {
    display: flex;
    align-items: center;
    grid-gap: 40px;
    margin-right: 20px;
}

header + .header-fast {
    display: none;
}

@media (max-width: 860px) {
    header .header-fast {
        display: none;
    }

    header + .header-fast {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg3);
        color: var(--text2);
        padding: 10px 20px;
        margin-right: 0;
        z-index: 8;
    }
}

.header-fast > a {
    display: flex;
    flex-direction: column;
    align-items: center;
    grid-gap: 5px;
    font-size: 13px;
    font-weight: 200;
}

.header-fast > a:hover i {
    color: #fff;
    font-weight: bold;
}

.header-fast > a i {
    font-size: 20px;
}

/* CATALOG */
.catalog-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 20px;
    background: var(--color1);
    color: #fff;
    width: 155px;
    line-height: 40px;
    height: 40px;
    border-radius: var(--radius);
    font-weight: bold;
    text-align: center;
    cursor: pointer;
}

.catalog-btn:hover {
    background: var(--color2);
    color: #fff;
}

.catalog-btn.active i:before {
    content: "\f00d";
}

.catalog {
    position: absolute;
    background: var(--bg3);
    color: var(--text);
    padding: 20px;
    box-shadow: 0 6px 25px -1px rgb(0 0 0 / 30%);
    border-radius: var(--radius);
    max-width: 290px;
    top: 100%;
    left: 0;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    z-index: 8;
}

.catalog:before {
    content: "";
    position: absolute;
    top: -5px;
    left: 40%;
    width: 10px;
    height: 10px;
    background: var(--bg3);
    transform: rotate(45deg);
}

@media (max-width: 860px) {
    .catalog:before {
        left: 60%;
    }
}

.catalog.active {
    visibility: visible;
    opacity: 1;
    transform: translateY(10px);
}

.catalog > a {
    display: inline-block;
    min-width: 120px;
    padding: 5px;
}

.catalog > a:hover {
    color: var(--color1);
}

/* HEADER SEARCH */
.header-search {
    margin-right: auto;
}

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

.header-search form {
    display: flex;
    align-items: center;
    background: var(--bg3);
    border-radius: var(--radius);
}

@media (max-width: 860px) {
    .header-search form {
        visibility: hidden;
        opacity: 0;
        position: fixed;
        width: 100%;
        top: -40px;
        left: 0;
        background: var(--bg3);
        border-radius: 0;
        padding: 10px;
        transition: 0.3s;
        z-index: 5;
    }
}

.header-search.active form {
    visibility: visible;
    opacity: 1;
    top: 0;
}

.header-search .fa-magnifying-glass, .header-search .fa-xmark {
    background: var(--light);
    border-radius: var(--radius);
    min-width: 40px;
    height: 40px;
    line-height: 40px;
    color: #adb7be;
    font-size: 14px;
    text-align: center;
}

.header-search form .fa-magnifying-glass {
    margin: 5px;
    min-width: 30px;
    height: 30px;
    line-height: 30px;
}

.header-search form input {
    background: none;
    padding: 0;
    box-shadow: none;
    border: none;
    width: 350px;
    height: inherit;
    border-radius: 0;
    margin-left: 15px;
}

.header-search form input::placeholder {
    color: #8b9297;
}

.header-search form .fa-microphone {
    display: inline-block;
    background: transparent;
    min-width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
    text-align: center;
}

.header-search .fa-xmark:not(.header-search.active .fa-xmark) {
    display: none;
}

.header-search_top {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    width: 445px;
    top: 110%;
    left: auto;
    background: var(--bg3);
    box-shadow: 0 10px 20px -2px rgb(0 0 0 / 40%);
    padding: 30px;
    border-radius: var(--radius);
    transition: 0.3s;
}

@media (max-width: 860px) {
    .header-search_top {
        width: 100%;
        top: 140%;
        left: 0;
    }
}

.header-search_top.active {
    visibility: visible;
    opacity: 1;
}

/* HEADER USER 2.0 */
.header-user > img {
    display: inline-block;
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
}

.header-user > a .fa-user {
    display: inline-block;
    background: var(--color1);
    color: #fff;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 15px;
    cursor: pointer;
}

.header-user > div {
    position: absolute;
    width: 220px;
    top: 100%;
    right: 0;
    background: var(--bg3);
    color: #fff;
    padding: 15px;
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
    border-radius: var(--radius);
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    z-index: 5;
}

.header-user > div:before {
    content: "";
    position: absolute;
    top: -5px;
    right: 15px;
    width: 10px;
    height: 10px;
    background: var(--bg3);
    transform: rotate(45deg);
}

.header-user.active > div {
    visibility: visible;
    opacity: 1;
    transform: translateY(10px);
}

.header-user_top {
    display: flex;
    align-items: center;
    grid-gap: 15px;
    padding: 10px;
    border-radius: var(--radius);
}

.header-user_top > img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.header-user_top > div span {
    display: block;
    color: #a5a5a5;
    font-size: 10px;
    margin-top: 2px;
}

.header-user_balance {
    font-size: 18px;
    font-weight: bold;
    border-top: 1px dotted var(--dark);
    border-bottom: 1px dotted var(--dark);
    padding: 10px;
    margin-bottom: 10px;
}

.header-user_balance > span:last-child {
    display: block;
    color: #454252;
    font-weight: 300;
    font-size: 10px;
    margin-top: 3px;
}

.header-user > div a:not(.header-user_top) {
    display: block;
    color: var(--text2);
    border-radius: var(--radius);
    padding: 10px;
    font-size: 14px;
}

.header-user > div a:hover {
    background: var(--light);
}

.header-user > div a i {
    margin-right: 8px;
}

.header-user > div a:last-child {
    color: #F44336;
    font-weight: 500;
}

/* MODAL LOGIN 0.2 */
a[href="#modal-login"] {
    display: inline-block;
    background: var(--color1);
    color: #fff;
    padding: 10px 20px;
    border-radius: var(--radius);
    cursor: pointer;
}

a[href="#modal-login"]:hover {
    opacity: 0.8;
}

.modal-login > a i {
    margin-right: 10px;
    margin-top: 1px;
    float: left;
}

.modal-login form {
    position: fixed;
    min-width: 600px;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    display: grid;
    grid-auto-rows: max-content;
    grid-template-columns: 300px 450px;
    background: var(--bg);
    color: var(--text);
    border-radius: var(--radius);
    text-align: center;
    z-index: 9;
}

@media (max-width: 860px) {
    .modal-login form {
        grid-template-columns: 1fr;
        min-width: 100%;
        border-radius: 0;
    }
}

.modal-login form > i {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--bg2);
    border-radius: var(--radius);
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    cursor: pointer;
}

.modal-login form > i:hover {
    background: var(--color1);
    color: var(--text1);
}

.modal-login_bg {
    background: linear-gradient(225deg, #e14c03, #190900);
    border-radius: var(--radius) 0 0 var(--radius);
    overflow: hidden;
}

.modal-login_content {
    padding: 35px 60px;
}

@media (max-width: 860px) {
    .modal-login_content {
        padding: 40px;
    }
}

.modal-login .e-float > a {
    position: absolute;
    top: 15px;
    right: 15px;
    border-bottom: 1px dotted #20a8d8;
}

.modal-login_lost {
    display: flex;
    align-items: center;
    justify-content: right;
    font-size: 14px;
    margin-top: -10px;
    margin-bottom: 20px;
    text-align: right;
    text-decoration: underline dotted #20a8d8;
}

.modal-login_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 10px;
}

.modal-login_btn > a {
    background: var(--bg3);
}

.modal-login_btn > a:hover {
    opacity: 0.8;
}

.modal-login_soc span {
    display: block;
    color: #767389;
    margin: 20px 0;
}

.modal-login_soc > div {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-login_soc > div a {
    position: relative;
    display: inline-block;
    width: 45px;
    height: 45px;
    overflow: hidden;
}

.modal-login_soc > div a iframe {
    position: absolute;
    top: 12px;
    left: 0;
    opacity: 0;
}

.modal-login_soc > div a + a {
    margin-left: 15px;
}

.modal-login_soc > div a img {
    border: 2px solid var(--bg2);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    line-height: 45px;
    padding: 8px;
}

/* TOOLTIP */
[data-tooltip] {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -220%;
    right: 0;
    opacity: 0;
    visibility: hidden;
    width: max-content;
    background: black;
    padding: 8px;
    border-radius: 4px;
    color: #fff;
    font-size: 10px;
    text-align: center;
    line-height: normal;
    transition: all 0.3s;
    z-index: 1;
}

[data-tooltip]:hover::before {
    content: " ";
    position: absolute;
    right: 6px;
    bottom: -6px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent black transparent;
}

[data-tooltip]:hover::after {
    visibility: visible;
    opacity: 1;
}

/* KEEP HOME */
.keep-home {
    position: relative;
    margin-top: 40px;
}

.keep-home .swiper-pagination {
    bottom: -25px;
    z-index: 2;
}

.keep-home .swiper-pagination-bullet {
    background: var(--light);
    opacity: 1;
}

.keep-home .swiper-pagination-bullet-active {
    background: var(--bg3);
}

.keep-home_item {
    height: 350px;
}

.keep-home_item .swiper-material-wrapper {
    border-radius: var(--radius);
}

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

.keep-home_content {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background: linear-gradient(0deg, black, transparent);
    padding: 20px 60px;
    color: #fff;
}

@media (max-width: 860px) {
    .keep-home_content {
        padding: 20px 40px;
    }
}

.keep-home_content > a {
    display: block;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

.keep-home_content > a img {
    max-width: 180px;
}

.keep-home_meta {
    display: flex;
    align-items: center;
    grid-gap: 15px;
    color: #a4a4a4;
    font-size: 16px;
    margin-bottom: 20px;
}

@media (max-width: 860px) {
    .keep-home_meta {
        font-size: 12px;
    }
}

.keep-home_meta > span.rating-color {
    display: inline-block;
    color: #fff;
    border-radius: 10px;
    padding: 3px 10px;
    font-size: 10px;
    font-weight: bold;
}

/* KEEP FAST */
.keep-items {
    background: var(--bg2);
    padding: 30px 0;
}

.keep-items_slider {
    position: relative;
    overflow: hidden;
}

@media (max-width: 860px) {
    .keep-items_slider {
        overflow: visible;
    }
}

.keep-items_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.keep-items_head h2 {
    margin-bottom: 0;
}

.keep-items_nav {
}

.keep-items_nav > i {
    display: inline-block;
    background: var(--bg3);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    cursor: pointer;
}

.keep-items_nav > i:hover {
    background: var(--color2);
    color: #fff;
}

.keep-item {
    position: relative;
    width: 100%;
    padding-top: 15px;
    overflow: hidden;
}

.keep-item > img {
    position: absolute;
    width: 100%;
    height: auto;
    aspect-ratio: 9 / 13;
    inset: 0px 0;
    z-index: -1;
    filter: blur(20px);
    opacity: 0.5;
    transform: scale(0.8);
    transform-origin: 50% 100%;
}

.keep-item_bg {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 9/13;
    border-radius: var(--radius);
    transition: 0.3s;
    margin-bottom: 15px;
    overflow: hidden;
}

.keep-item:hover .keep-item_bg {
    transform: translateY(-10px);
}

.keep-item_title {
    display: block;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.keep-item_title:before {
    content: "";
    position: absolute;
    inset: 0;
}

.keep-item_meta {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    background: rgb(83 83 83 / 70%);
    border: 1px solid var(--light);
    backdrop-filter: blur(100px);
    border-radius: var(--radius);
    padding: 5px 20px;
    color: var(--text2);
    font-size: 12px;
}

.keep-item_meta span + span {
    margin-left: 5px;
}

.keep-item_meta > span.rating-color {
    display: inline-block;
    color: #fff;
    border-radius: 10px;
    padding: 2px 8px;
    font-size: 10px;
    font-weight: bold;
}

/* KEEP BEST */
.keep-best {
    display: grid;
    grid-gap: 40px;
    grid-auto-rows: max-content;
    grid-template-columns: 1fr 350px;
}

@media (max-width: 860px) {
    .keep-best {
        grid-template-columns: 1fr;
    }
}

.keep-best_items {
}

.keep-best_item {
    display: grid;
    grid-gap: 0;
    grid-auto-rows: max-content;
    grid-template-columns: 180px 1fr;
    align-items: end;
}

@media (max-width: 860px) {
    .keep-best_item {
        grid-template-columns: 160px 1fr;
    }
}

.keep-best_poster {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 9 / 13;
    border-radius: var(--radius);
    box-shadow: 4px -4px 20px 0 rgb(0 0 0 / 45%);
    transition: 0.3s;
    z-index: 2;
    overflow: hidden;
}

.keep-best_item:hover .keep-best_poster {
    transform: scale(1.03);
}

.keep-best_content {
    position: relative;
    background: rgb(47 47 60 / 87%);
    color: #fff;
    border-radius: var(--radius);
    padding: 15px 15px 15px 40px;
    margin-top: 20px;
    margin-left: -20px;
    min-height: 230px;
    overflow: hidden;
}

.keep-best_content .posterbg {
    position: absolute;
    filter: blur(30px);
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.keep-best_title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

@media (max-width: 860px) {
    .keep-best_title {
        font-size: 16px;
    }
}

.keep-best_meta {
    color: #a4a4a4;
    font-size: 11px;
    margin-bottom: 15px;
}

.keep-best_meta .rating-color {
    display: inline-block;
    color: #fff;
    border-radius: 10px;
    padding: 2px 8px;
    font-size: 10px;
    font-weight: bold;
}

.keep-best_meta span + span {
    margin-left: 5px;
}

.keep-best_text, .keep-best_text * {
    color: #e4e4e4;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 300;
}

@media (max-width: 860px) {
    .keep-best_text, .keep-best_text * {
        font-size: 10px;
        -webkit-line-clamp: 4;
    }
}

.keep-best_content > a {
    display: inline-block;
    background: linear-gradient(135deg, var(--color1) 30%, #76ca16);
    color: #fff;
    padding: 10px 25px;
    border-radius: var(--radius);
    font-size: 14px;
    margin-top: 15px;
}

.keep-best_content > a:hover {
    background: linear-gradient(135deg, var(--color2) 30%, #76ca16);
}

.keep-best_content > a:before {
    content: "";
    position: absolute;
    inset: 0;
}

/* KEEP UPD */
.keep-upd {
}

.keep-upd_items {
    display: inline-block;
    height: max-content;
    background: var(--bg2);
    border: 1px solid var(--bg2);
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
    padding: 0 30px;
    border-radius: var(--radius);
    overflow: hidden;
}

.keep-upd_date {
    display: block;
    background: var(--bg3);
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    margin: 0 -2vw 20px;
    padding: 8px 30px;
}

.keep-upd_item {
    position: relative;
    display: grid;
    grid-gap: 15px;
    grid-auto-rows: max-content;
    grid-template-columns: 40px 1fr 100px;
    align-items: center;
    margin-bottom: 20px;
}

.keep-upd_item > img {
    width: 100%;
    height: auto;
    aspect-ratio: 9 / 13;
    border-radius: 5px;
}

.keep-upd_item > div a {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.keep-upd_item > div a:hover {
    text-decoration: underline dotted;
}

.keep-upd_meta {
    color: var(--text2);
    font-size: 12px;
}

.keep-upd_meta .rating-color {
    display: inline-block;
    color: #fff;
    border-radius: 10px;
    padding: 2px 6px;
    font-size: 9px;
    font-weight: bold;
}

.keep-upd_meta span + span {
    margin-left: 5px;
}

.keep-upd_item > span {
    color: var(--text2);
    font-size: 12px;
    font-weight: 500;
    text-align: center;
}

/* KEEP CAT */
.keep-cat_item {
    display: inline-block;
    color: #fff;
    border-radius: var(--radius);
    width: 100%;
    height: 180px;
    line-height: 180px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    overflow: hidden;
    transition: 0.3s;
    cursor: pointer;
}

@media (max-width: 860px) {
    .keep-cat_item {
        height: 140px;
        line-height: 140px;
    }
}

.keep-cat_item:hover {
    transform: translateY(-10px);
}

.keep-cat_item:hover.keep-cat_item:before {
    width: 70%;
    height: 70%;
}

.keep-cat_item:before {
    content: "";
    position: absolute;
    background: var(--light);
    border-radius: 30px 0 0 30px;
    right: 0;
    bottom: 0;
    width: 60%;
    height: 60%;
    transition: 0.3s;
}

.keep-cat_item:nth-child(1n) {
    background: #7770fe;
}

.keep-cat_item:nth-child(2n) {
    background: #234eff;
}

.keep-cat_item:nth-child(3n) {
    background: #fe9c03;
}

.keep-cat_item:nth-child(4n) {
    background: #fe6835;
}

/* KEEP FULL */
.keep-full {
    position: relative;
    background: radial-gradient(42% 55% at 70% 35%, rgb(0 0 0 / 0%) 0%, #101015 100%);
    color: #fff;
    padding-top: 150px;
    padding-bottom: 40px;
    overflow: hidden;
}

@media (max-width: 860px) {
    .keep-full {
        background: radial-gradient(65% 35% at 50% 20%, rgb(0 0 0 / 0%) 0%, #101015 100%);
        padding-bottom: 80px;
    }
}

.keep-full_bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 75%;
    height: 100%;
    z-index: -1;
}

@media (max-width: 860px) {
    .keep-full_bg {
        width: 100%;
        height: 300px;
    }
}

.keep-full .container {
    display: grid;
    grid-gap: 60px;
    grid-auto-rows: max-content;
    grid-template-columns: 300px 1fr;
    align-items: end;
    margin-bottom: 40px;
}

@media (max-width: 860px) {
    .keep-full .container {
        grid-template-columns: 120px 1fr;
        grid-gap: 30px;
    }
}

.keep-full_left {
}

.keep-full_poster {
    position: relative;
}

.keep-full_poster > img {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 9/13;
    border-radius: var(--radius);
    z-index: 2;
}

.keep-full_poster > img:nth-child(2) {
    position: absolute;
    width: 100%;
    height: auto;
    aspect-ratio: 9 / 13;
    inset: 0px 0;
    filter: blur(20px);
    transform: scale(0.9);
    transform-origin: 50% 100%;
    z-index: 1;
}

.keep-full_center {
    overflow: hidden;
}

.keep-full_title {
    display: block;
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 15px;
}

@media (max-width: 860px) {
    .keep-full_title {
        font-size: 20px;
    }
}

.keep-full_meta {
    display: flex;
    align-items: center;
    grid-gap: 15px;
    color: #a4a4a4;
    font-size: 16px;
    margin-bottom: 20px;
}

@media (max-width: 860px) {
    .keep-full_meta {
        font-size: 12px;
    }
}

.keep-full_meta > span.rating-color {
    display: inline-block;
    color: #fff;
    border-radius: 10px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: bold;
}

.keep-full_subtitle, .keep-full_subtitle * {
    max-width: 90%;
    color: #bebebe;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
}

@media (max-width: 860px) {
    .keep-full_subtitle, .keep-full_subtitle * {
        font-size: 12px;
        max-width: 100%;
    }
}

.keep-full_link {
    display: flex;
    align-items: center;
    grid-gap: 20px;
    margin-top: 40px;
}

@media (max-width: 860px) {
    .keep-full_link:not(.keep-full1_content .keep-full_link) {
        position: absolute;
        justify-content: left;
        width: 100%;
        left: 0;
        bottom: -70px;
    }
}

.keep-full_link > a:first-child {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    background: linear-gradient(135deg, var(--color1) 30%, #76ca16);
    padding: 0 60px;
    width: max-content;
}

.keep-full_link > a:first-child:hover {
    background: linear-gradient(135deg, var(--color2) 30%, #76ca16);
}

.keep-full_link > a {
    display: inline-block;
    background: var(--light);
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: var(--radius);
    text-align: center;
}

.keep-full_link > a:hover {
    background: var(--light2);
}

.keep-detal {
}

.keep-detal .container {
    display: grid;
    grid-gap: 60px;
    grid-auto-rows: max-content;
    grid-template-columns: 1fr 500px;
}

@media (max-width: 860px) {
    .keep-detal .container {
        grid-template-columns: 1fr;
        grid-gap: 0;
    }
}

.keep-detal_text, .keep-detal_text * {
    color: #e1e1e1;
    line-height: 1.7;
    font-weight: 300;
}

.keep-detal ul {
    border-left: 2px solid var(--bg2);
    padding-left: 30px;
}

@media (max-width: 860px) {
    .keep-detal ul {
        border: none;
        padding-left: 0;
    }
}

.keep-detal ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.keep-detal ul li span:first-child {
    display: inline-block;
    color: var(--text2);
    min-width: 120px;
    margin-right: 20px;
}

.keep-related {
    background: var(--bg2);
    padding: 30px 0;
    overflow: hidden;
}

.keep-full1 {
    position: relative;
    background: radial-gradient(50% 70% at 50% 5%, rgb(0 0 0 / 0%) 0%, #101015 100%);
    height: 95vh;
    overflow: hidden;
}

@media (max-width: 860px) {
    .keep-full1 {
        height: 600px;
    }
}

.keep-full1_bg {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.keep-full1_content {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    left: 0;
    right: 0;
    bottom: 60px;
    color: #fff;
    text-align: center;
}

.keep-full1_content .posterlogo {
    display: block;
    max-width: 250px;
    min-width: 250px;
    margin-bottom: 30px;
}

.keep-full1_meta {
    display: flex;
    align-items: center;
    grid-gap: 15px;
    color: #a4a4a4;
    font-size: 16px;
    margin-bottom: 20px;
}

.keep-full1_meta > span.rating-color {
    display: inline-block;
    color: #fff;
    border-radius: 10px;
    padding: 5px 10px;
    font-size: 10px;
    font-weight: bold;
}

.keep-full1_subtitle {
    max-width: 40%;
    color: #bebebe;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
}

.keep-full1_subtitle p {
    color: #bebebe;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
}

.keep-player {
    
}

.keep-player_link {
    display: flex;
    align-items: center;
    grid-gap: 20px;
    margin-bottom: 20px;
}

.keep-player_link span {
    display: inline-block;
    background: var(--bg2);
    padding: 10px 20px;
    border-radius: var(--radius);
}

.keep-player_link span.active {
    background: var(--color1);
}

.keep-player_content:not(.keep-player_content.active) {
    display: none;
}

/* RATING COLOR */
.rating-color {
    background: #3bb33b;
}

.rating-color.low {
    background: #e13535;
}

.rating-color.middle {
    background: #ff6702;
}

/* FOOTER */
footer {
    position: relative;
    background: var(--bg2);
    color: #fff;
    padding: 30px 0;
}

footer .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 860px) {
    footer .container {
        justify-content: center;
    }
}

.footer-logo {
    font-size: 30px;
    font-weight: bolder;
    text-transform: uppercase;
}

@media (max-width: 860px) {
    .footer-logo, .footer-help, .footer-dev {
        display: none;
    }
}

.footer-menu_sub {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-menu_sub:nth-child(2) {
    color: var(--text2);
    font-size: 12px;
    margin: 20px 0;
}

.footer-menu_sub a + a {
    margin-left: 20px;
}

.footer-soc {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.footer-soc > a {
    display: inline-block;
    background: var(--light);
    color: #a3a7bc;
    border-radius: var(--radius);
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 20px;
    text-align: center;
}

.footer-soc > a + a {
    margin-left: 10px;
}

.footer-soc > a:hover {
    background: var(--color1);
    color: var(--text);
}

.footer-help {
    color: var(--text2);
    font-size: 12px;
    text-align: right;
}

.footer-help a {
    display: block;
    font-size: 18px;
    color: #fff;
    margin-top: 10px;
}

.footer-copyright {
    display: block;
    width: 100%;
    flex: 100%;
    color: var(--text2);
    opacity: 0.4;
    font-weight: 400;
    margin-top: 15px;
}

.footer-dev {
    position: absolute;
    color: #797882;
    font-size: 12px;
    right: 0;
    bottom: 0;
}

.footer-dev > a {
    color: var(--color3);
    margin-left: 5px;
}

.footer-theme {
    position: relative;
    background: var(--light);
    padding: 10px 20px;
    border-radius: var(--radius);
    cursor: pointer;
}

.footer-theme > div {
    position: absolute;
    display: flex;
    flex-direction: column;
    grid-gap: 5px;
    background: var(--bg3);
    color: var(--text);
    padding: 20px;
    box-shadow: 0 6px 25px -1px rgb(0 0 0 / 30%);
    border-radius: var(--radius);
    width: 150px;
    bottom: 100%;
    left: 0;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    font-size: 14px;
    font-weight: 300;
    z-index: 8;
}

.footer-theme > div:before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 10%;
    width: 10px;
    height: 10px;
    background: var(--bg3);
    transform: rotate(45deg);
}

.footer-theme.active > div {
    visibility: visible;
    opacity: 1;
    transform: translateY(-10px);
}

.footer-theme > div button {
    color: inherit;
    font-weight: inherit;
    cursor: pointer;
}

.footer-theme > div button:hover {
    color: var(--color1);
}
