/* STYLES 23.05.2026
Developer: t.me/moretheme
Screen resolution: 460, 860, 1440, 1920 */
@font-face {
    font-family: Gilroy;
    src: url(../fonts/Gilroy-Light.woff2) format("woff2"),url(../fonts/Gilroy-Light.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-ExtraBold.woff2) format("woff2"),url(../fonts/Gilroy-ExtraBold.woff) format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap
}

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

/* BASIC */
:root {
    --bg: #f0f4f8;
    --bg2: #fff;
    --engine: #f0f4f8;
    --engine2: #fff;
    --text: #0d2847;
    --text1: #fff;
    --text2: #5a80a0;
    --text3: #c3ccda;
    --color1: #54b2f5;
    --color2: #6bbef9;
    --color3: #fcee85;
    --light: rgb(255 255 255 / 10%);
    --light2: rgb(255 255 255 / 20%);
    --dark: rgb(0 0 0 / 10%);
    --radius: 20px;
}

body {
    background: var(--bg);
    color: #0d2847;
    line-height: normal;
    font-family: "Gilroy", sans-serif;
    font-size: 16px;
    font-weight: 500;
}

.speedbar {
    color: #94a3b8;
    font-size: 14px;
    margin-bottom: 30px;
}

.speedbar a:hover {
    color: #0d2847;
}

header + h1 + p, .dle-form h1 + p {
    color: #a5a1b2;
    max-width: 600px;
}

@media (min-width: 1920px) {
    .container {
        max-width: 1500px;
    }
}

.more-check {
    display: inline-block;
    color: #ff7b05;
    font-size: 12px;
    margin-left: 5px;
}

.more-check.fa-badge-check {
    color: #03A9F4;
}

/* TOOLTIP */
.tooltip {
    position: absolute;
    background: #060709;
    color: #d8dde7;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    white-space: nowrap;
    z-index: 999;
}

.tooltip:before {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 10%;
    width: 8px;
    height: 8px;
    background: #0a0d10;
    transform: rotate(45deg);
}

.tooltip.top {
    transform: translateY(-100%);
}

.tooltip.bottom {
    transform: translateY(0);
}

.tooltip.bottom:before {
    top: unset;
    bottom: -4px;
}

.tooltip.left {
    transform: translateX(-100%);
}

.tooltip.left:before {
    top: 6px;
    left: -4px;
}

.tooltip.right {
    transform: translateX(0);
}

.tooltip.right:before {
    top: 6px;
    right: -4px;
}

/* HEADER */
header {
    position: relative;
    width: 100%;
    background: #fff;
    padding: 15px 0;
    z-index: 5;
}

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

.header-logo {
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

.header-logo > img {
    display: inline-block;
    width: 80px;
    height: auto;
    object-position: center;
}

.header-menu {
    margin: 0 auto;
}

@media (max-width: 860px) {
    .header-menu {
        position: absolute;
        top: 55px;
        left: -20px;
        display: flex;
        padding: 5px 20px;
        background: var(--bg2);
        border-top: 2px solid var(--bg);
        font-size: 16px;
        width: 100vh;
        height: max-content;
        z-index: 4;
        margin: 0;
    }
}

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

.header-menu > a {
    display: inline-block;
    padding: 8px 14px;
    font-weight: 600;
    border-radius: 20px;
}

.header-menu > a:hover {
    background: #eaf4ff;
    color: #0d2847;
}

.header-store {
    position: relative;
    display: flex;
    align-items: center;
    grid-gap: 10px;
    background: var(--bg);
    border-radius: 50px;
    min-width: 40px;
    height: 40px;
    padding: 0 15px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
}

.header-store > span:first-child {
    position: absolute;
    top: -5px;
    right: 0;
    display: inline-block;
    background: #F44336;
    border-radius: 50%;
    color: #fff;
    width: 15px;
    height: 15px;
    line-height: 15px;
    font-size: 10px;
    text-align: center;
}

@media (max-width: 860px) {
    .header-store > span:last-child {
        display: none;
    }
}

.header-dev {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    color: var(--text2);
    margin-right: auto;
}

@media (max-width: 860px) {
    .header-dev {
        flex: 100%;
        order: 5;
        margin-right: 0;
        margin-top: 20px;
    }
}

.header-dev > div {
    font-size: 12px;
    padding-bottom: 3px;
    border-bottom: 1px dotted;
}

.header-dev > span {
    display: block;
    background: #CDDC39;
    color: #000;
    padding: 5px 15px;
    border-radius: var(--radius);
    font-size: 12px;
    font-weight: bold;
    text-align: center;
}

/* HEADER SEARCH */
.header-search {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    background: var(--bg);
    border-radius: 20px;
    padding: 3px;
    margin-left: auto;
    z-index: 2;
}

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

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

.header-search_btn, .header-search .fa-microphone, .header-search .fa-xmark {
    background: #0d2847;
    color: #fff;
    border-radius: 20px;
    min-width: 34px;
    height: 34px;
    line-height: 34px;
    font-size: 14px;
    text-align: center;
}

.header-search .fa-magnifying-glass {
    background: transparent;
    color: #b0b8c5;
    margin-left: 15px;
}

.header-search_btn {
    display: none;
}

@media (max-width: 860px) {
    .header-search_btn {
        display: inline-block;
        min-width: 40px;
        height: 40px;
        line-height: 40px;
        margin-left: auto;
    }
}

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

.header-search input::placeholder {
    color: #b0b8c5;
}

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

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

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

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

.header-search_top > span {
    display: block;
    color: var(--text2);
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
}

/* 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: linear-gradient( 0deg, #54b2f5, #a1d8ff);
    color: #fff;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50px;
    cursor: pointer;
}

.header-user > div {
    position: absolute;
    width: 220px;
    top: 100%;
    right: 0;
    background: #fff;
    color: #000;
    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.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);
    margin-bottom: 20px;
}

.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 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
    font-weight: bold;
    border-top: 1px dotted var(--dark);
    border-bottom: 1px dotted var(--dark);
    margin-bottom: 10px;
}

.header-user_balance > li {
    padding: 10px 10px;
}

.header-user_balance > li + li {
    border-left: 1px solid var(--dark);
    padding-left: 10px;
}

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

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

.header-user > div a:hover {
    background: #e6e6e6;
}

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

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

/* MODAL AUTH */
[href="#modal"] {
    display: inline-block;
    background: linear-gradient( 0deg, #54b2f5, #a1d8ff);
    color: #fff;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: var(--radius);
    margin: 0 5px;
    cursor: pointer;
}

[href="#modal"]:hover {
    background: var(--color2);
}

@media (max-width: 860px) {
    [href="#modal"] span {
        display: none;
    }
}

[href="#modal"] i {
    margin-right: 10px;
}

@media (max-width: 860px) {
    [href="#modal"] i {
        margin-right: 0;
    }
}

.modal-auth {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(165deg, #eaf4ff 0%, #cfe6ff 45%, #7cc0f5 100%);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9;
}

.modal-auth:before, .modal-auth:after {
    content: "";
    position: absolute;
    top: -80px;
    right: -60px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
    pointer-events: none;
}

.modal-auth:after {
    bottom: -60px;
    top: unset;
    left: -40px;
    width: 220px;
    height: 220px;
    background: rgba(124, 192, 245, .3);
}

.modal-auth > i {
    position: absolute;
    top: 20px;
    right: 20px;
    display: inline-block;
    background: var(--bg2);
    border-radius: var(--radius);
    width: 40px;
    height: 40px;
    line-height: 40px;
    cursor: pointer;
    z-index: 2;
}

.modal-auth > i:hover {
    background: var(--color1);
    color: #fff;
}

.modal-auth > div {
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(16px);
    border-radius: 24px;
    padding: 40px;
    width: 100%;
    max-width: 420px;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, .9);
    box-shadow: 0 24px 64px rgba(13, 40, 71, .12);
}

@media (max-width: 860px) {
    .modal-auth > div {
        width: 100%;
        height: max-content;
        padding: 30px;
        margin: 15px;
    }
}

.modal-auth_lost {
    display: block;
    text-align: right;
    font-size: 12.5px;
    font-weight: 700;
    color: #1976d2;
    cursor: pointer;
    margin-top: -10px;
    margin-bottom: 20px;
}

.modal-auth > div > button {
    width: 100%;
    border-radius: 13px;
    background: #1976d2;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    transition: .2s;
    box-shadow: 0 8px 24px rgba(25, 118, 210, .28);
}

.modal-auth > div > button:hover {
    background: #1565c0;
    transform: translateY(-2px);
}

.modal-auth_policy {
    display: grid;
    grid-gap: 10px;
    grid-auto-rows: max-content;
    grid-template-columns: 60px 1fr;
    align-items: center;
    font-size: 10px;
    margin: 20px 0;
    color: var(--text2);
}

.modal-auth_type > span {
    display: flex;
    align-items: center;
    grid-gap: 12px;
    margin: 20px 0;
    color: #94a3b8;
    font-size: 13px;
    font-weight: 600
}

.modal-auth_type > span:before,.modal-auth_type > span:after {
    content: "";
    flex: 1;
    height: 1px;
    background: #e8f0f8
}

.modal-auth_type > div {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 10px;
    margin-top: 30px;
}

.modal-auth_type > div > a, .modal-auth_type > div .telegram {
    position: relative;
    background: var(--bg2);
    border: 1.5px solid #e2ecf8;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    cursor: pointer;
}

.modal-auth_type > div .telegram iframe {
    position: absolute;
    inset: 0;
    width: 100%!important;
    height: 100%!important;
    opacity: 0;
}

.modal-auth_type > div img {
    padding: 10px;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.modal-auth_reg {
    text-align: center;
    font-size: 14px;
    color: #94a3b8;
    margin-top: 18px;
    font-weight: 600
}

.modal-auth_reg a {
    color: #1976d2;
    cursor: pointer;
    font-weight: 700
}

/* MORE START */
.mor-start {
    display: none;
    position: fixed;
    max-width: 550px;
    width: 550px;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 290px 40px 40px;
    border-radius: 40px;
    text-align: center;
    z-index: 9;
    overflow: hidden;
}

@media (max-width: 860px) {
    .mor-start {
        max-width: 95%;
        padding: 200px 40px 40px;
    }
}

.mor-start > .fa-xmark {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: var(--light);
    color: #fff;
    border-radius: 50%;
    font-size: 20px;
    text-align: center;
    z-index: 3;
    cursor: pointer;
}

.mor-start > .fa-xmark:hover {
    background: var(--light2);
}

.mor-start > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    grid-gap: 20px;
}

.mor-start > div > .label {
    position: absolute;
    top: 0;
    border-radius: 0 0 18px 18px;
    padding: 8px 15px;
    font-size: 12px;
}

.mor-start > div img {
    width: 200px;
}

.mor-start > div > span:not(.label) {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 20px;
    opacity: 0.8;
}

.mor-start > div a {
    display: inline-block;
    background: #fff;
    color: #000;
    padding: 15px 50px;
    border-radius: 50px;
    font-weight: bold;
    text-align: center;
}

.mor-start > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
    z-index: -1;
}

/* MORE TELEGRAM */
.mor-telegram {
    position: relative;
    background: linear-gradient(130deg, #1976d2 0%, #1565c0 50%, #0d47a1 100%);
    color: #fff;
    border-radius: var(--radius);
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    grid-gap: 15px;
    font-size: 18px;
    max-height: max-content;
}

.mor-telegram:before {
    content: "";
    position: absolute;
    top: -80px;
    right: 160px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,.07)
}

.mor-telegram:after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: 50%;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(255,255,255,.05)
}

.mor-telegram_title {
    position: relative;
    max-width: max-content;
    font-size: 24px;
    font-weight: bold;
}

.mor-telegram_title > b {
    position: absolute;
    top: -50px;
    left: 20px;
    background: #8BC34A;
    color: #f7ffef;
    box-shadow: 0 0 20px 0px rgb(139 195 74 / 40%);
    display: flex;
    align-items: center;
    grid-gap: 8px;
    padding: 10px 30px;
    border-radius: 0 0 30px 30px;
    font-size: 12px;
    font-weight: bold;
}

.mor-telegram > span:nth-child(2) {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
}

.mor-telegram > span:nth-child(3) {
    display: flex;
    align-items: center;
    grid-gap: 15px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 20px;
}

.mor-telegram > a {
    display: block;
    background: #fff;
    color: #389bef;
    padding: 15px 20px;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}

/* MORE HERO */
.mor-hero {
    position: relative;
    background: linear-gradient(165deg, #eaf4ffd1 0%, #cfe6ff 45%, #7cc0f58f 100%);
    height: 95vh;
    margin: -70px 0 60px;
}

.mor-hero:before {
    content: "";
    position: absolute;
    background: url(https://fons.grizly.club/uploads/posts/2025-06/04/17490401205492.jpg) center/cover no-repeat;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.mor-hero > .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.mor-hero_h1 {
    max-width: 40%;
    font-size: 70px;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: 0.6px;
    color: #0d2847;
    text-transform: uppercase;
}

.mor-hero_h1 b {
    background: linear-gradient(135deg, #1976d2, #42a5f5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mor-hero_h1 + span {
    display: block;
    color: #2c5282;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    max-width: 60%;
    margin-top: 20px;
}

@media (max-width: 860px) {
    .mor-hero {
        height: 85vh;
    }

    .mor-hero_h1 {
        max-width: 100%;
        font-size: 50px;
    }

    .mor-hero_h1 + span {
        max-width: 100%;
    }
}

.mor-hero_wave {
    position: absolute;
    bottom: -20px;
    left: 0;
    z-index: 2;
}

@media (max-width: 860px) {
    .mor-hero_wave {
        bottom: -5px;
    }
}

.mor-hero_search {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: var(--radius);
    width: 500px;
    margin-top: 30px;
    padding: 3px 3px 3px 30px;
}

@media (max-width: 860px) {
    .mor-hero_search {
        width: 100%;
    }
}

.mor-hero_search input {
    background: transparent;
    width: inherit;
    padding: 0;
    border-radius: 0;
}

.mor-hero_search i:not(.fa-magnifying-glass), .mor-hero_search > button {
    min-width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: var(--radius);
    color: #5a80a0;
    text-align: center;
    padding: 0;
}

.mor-hero_search > button {
    background: #0d2847;
    color: #fff;
}

/* MORE TEMPLATES SHORT */
.mor-sect_title {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.mor-sect_title > span {
    flex: 100%;
    display: flex;
    align-items: center;
    grid-gap: 12px;
    font-size: 12px;
    font-weight: 700;
    color: #1976d2;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    margin-bottom: 10px;
}

.mor-sect_title > span:before {
    content: "";
    width: 24px;
    height: 2px;
    background: #1976d2;
    border-radius: 2px;
    display: block;
}

.mor-sect_title h1, .mor-sect_title .e-h1 {
    margin-bottom: 0;
}

.mor-sect_title h1 b, .mor-sect_title .e-h1 b {
    color: #1976d2;
}

.mor-sect_title > a {
    display: flex;
    align-items: center;
    grid-gap: 15px;
    background: var(--bg2);
    color: var(--color1);
    padding: 10px 18px;
    border-radius: var(--radius);
    border: 1.5px solid #54b2f575;
    font-size: 14px;
    font-weight: 600;
}

@media (max-width: 860px) {
    .mor-sect_title > a {
        margin-top: 20px;
    }
}

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

.mor-sect_info, .container h1 + p, .container h2 + p {
    position: relative;
    max-width: 700px;
    color: var(--text2);
    line-height: 1.5;
    margin-top: -10px;
    margin-bottom: 30px;
}

.mor-sect_info[style] {
    margin-bottom: 10px;
}

[data-rows] {
    position: relative;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}

[data-rows] + a {
    display: inline-block;
    background: var(--bg2);
    color: var(--text2);
    padding: 8px 20px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 40px;
    cursor: pointer;
}

[data-rows] + a:hover {
    opacity: 0.8;
}

.mor-sect_items {
    position: relative;
    padding: 0 15px;
    overflow: hidden;
}

@media (max-width: 860px) {
    .mor-sect_items {
        padding: 0;
        overflow: visible;
    }
}

.mor-sect_items > .fa-regular {
    position: absolute;
    backdrop-filter: blur(15px);
    background: var(--light);
    border: 1px solid var(--light);
    box-shadow: 0 2px 15px rgb(61 61 61 / 8%);
    border-radius: 10px;
    top: 40%;
    right: 0;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 4;
}

@media (max-width: 860px) {
    .mor-sect_items > .fa-regular {
        display: none;
    }
}

.mor-sect_items > .fa-regular:hover {
    background: var(--color2);
}

.mor-sect_items > .fa-chevron-left {
    left: 0;
}

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

/* MORE HUPD */
.mor-hupd {
    background: var(--bg2);
    padding: 60px 0;
}

.mor-hupd_row {
    display: grid;
    grid-gap: 60px;
    grid-auto-rows: max-content;
    grid-template-columns: repeat(2, 1fr);
}

.mor-hupd_item {
    display: grid;
    grid-template-columns: 100px 1fr;
    grid-gap: 40px;
    padding-bottom: 18px;
    position: relative;
}

@media (max-width: 860px) {
    .mor-hupd_row {
        grid-template-columns: 1fr;
        grid-gap: 40px;
    }

    .mor-hupd_item {
        grid-template-columns: 60px 1fr;
        grid-gap: 20px;
    }
}

.mor-hupd_item:last-child {
    padding-bottom: 0;
}

.mor-hupd_item:before {
    content: "";
    position: absolute;
    left: 110px;
    top: 6px;
    bottom: -4px;
    width: 1px;
    background: #e2ecf8;
}

.mor-hupd_item:last-child:before {
    display: none;
}

.mor-hupd_item:after {
    content: "";
    position: absolute;
    left: 104px;
    top: 5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #cbd5e1;
    z-index: 1;
}

@media (max-width: 860px) {
    .mor-hupd_item:before {
        left: 68px;
    }

    .mor-hupd_item:after {
        left: 62px;
    }
}

.mor-hupd_item:nth-child(2):after {
    background: #1976d2;
    border-color: #1976d2;
    box-shadow: 0 0 0 3px rgba(25,118,210,.14);
}

.mor-hupd_date {
    font-size: 11px;
    font-weight: 600;
    color: #94a3b8;
    padding-top: 1px;
    line-height: 1.45;
}

.mor-hupd_date + div {
    background: #fff;
    border-radius: 14px;
    padding: 16px 18px;
    border: 1px solid #e2ecf8;
}

.mor-hupd_title {
    font-size: 14px;
    font-weight: 700;
    color: #0d2847;
    line-height: 1.35;
}

.mor-hupd_chips {
    display: flex;
    grid-gap: 10px;
    margin: 10px 0 15px;
}

.mor-hupd_chips > span {
    font-size: 12px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 5px;
    background: #f1f5f9;
    color: #475569;
}

.mor-hupd_chips > span:first-child {
    background: #e8f2ff;
    color: #1251aa;
}

.mor-hupd_list > li {
    font-size: 12.5px;
    color: #5a80a0;
    padding: 2px 0 2px 13px;
    position: relative;
    line-height: 1.55;
}

.mor-hupd_list > li::before {
    content: '+';
    position: absolute;
    left: 0;
    color: #1976d2;
    font-weight: 700;
}

/* MORE SHORT */
.mor-short_item {
    position: relative;
    padding: 3px;
    background: var(--bg2);
    border: 1px solid #e2ecf8;
    border-radius: var(--radius);
    transition: 0.3s;
    overflow: hidden;
}

.mor-short_item:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 56px rgba(13, 40, 71, .13);
    border-color: #bfdbfe;
}

.mor-short_bg {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    border-radius: var(--radius);
    overflow: hidden;
}

.mor-short_bg > .label {
    position: absolute;
    top: 10px;
    left: 10px;
}

.mor-short_bg > a[onclick] {
    position: absolute;
    top: 15px;
    right: 10px;
    z-index: 2;
    background: var(--dark);
    backdrop-filter: blur(10px);
    border: 1px solid var(--light2);
    color: #fff;
    border-radius: 10px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 13px;
    text-align: center;
}

.mor-short_content {
    display: flex;
    flex-direction: column;
    padding: 18px 20px 18px;
    height: 290px;
}

.mor-short_cat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-gap: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #1976d2;
    text-transform: uppercase;
    letter-spacing: .7px;
}

.mor-short_cat + a {
    font-size: 20px;
    font-weight: bold;
    margin: 12px 0 15px;
}

.mor-short_text {
    font-size: 15px;
    color: #5a80a0;
    line-height: 1.4;
    margin-bottom: 10px;
}

.mor-short_meta {
    display: flex;
    align-items: center;
    grid-gap: 10px;
}

.mor-short_meta > span {
    display: flex;
    align-items: center;
    grid-gap: 4px;
    border-radius: 7px;
    padding: 4px 9px;
    font-size: 12px;
    font-weight: 500;
    background: #f1f5f9;
    color: #475569;
}

.mor-short_meta > span:first-child {
    background: #e8f2ff;
    color: #1251aa;
}

.mor-short_price {
    display: flex;
    align-items: center;
    grid-gap: 20px;
    justify-content: space-between;
    font-size: 25px;
    font-weight: bold;
    color: #0d2847;
    letter-spacing: -.5px;
    margin-top: auto;
    border-top: 1.5px solid #f0f5fb;
    padding-top: 20px;
}

.mor-short_price > a {
    display: inline-block;
    width: 38px;
    height: 38px;
    line-height: 38px;
    border-radius: 10px;
    background: #eaf4ff;
    color: #1976d2;
    font-size: 18px;
    text-align: center;
    transition: .2s;
}

.mor-short_b {
    display: inline-block;
    max-width: max-content;
    margin-top: 10px;
    background: #e6f9f0;
    border-radius: 7px;
    padding: 5px 15px;
    font-size: 12px;
    font-weight: 700;
    color: #0e7a47;
}

/* MORE LIST */
.mor-list_items {
    display: grid;
    grid-gap: 20px;
    grid-auto-rows: max-content;
    grid-template-columns: repeat(4, 1fr);
}

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

.mor-list_item {
    position: relative;
    background: #fff;
    border-radius: 18px;
    border: 1px solid #e2ecf8;
    padding: 20px;
    overflow: hidden;
    transition: 0.3s;
}

.mor-list_item:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 56px rgba(13, 40, 71, .13);
    border-color: #bfdbfe;
}

.mor-list_item .label {
    position: absolute;
    top: 20px;
    right: 20px;
}

.mor-list_bg {
    width: 80px;
    height: auto;
    aspect-ratio: 1/1;
    border-radius: var(--radius);
    margin-bottom: 15px;
    overflow: hidden;
}

.mor-list_cat {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #1976d2;
    text-transform: uppercase;
    letter-spacing: .7px;
}

.mor-list_title {
    font-size: 18px;
    font-weight: bold;
    margin: 12px 0 12px;
}

.mor-list_text {
    font-size: 13px;
    color: #5a80a0;
    line-height: 1.4;
    margin-bottom: 10px;
}

.mor-list_meta {
    display: flex;
    align-items: center;
    grid-gap: 10px;
}

.mor-list_meta > span {
    display: flex;
    align-items: center;
    grid-gap: 4px;
    border-radius: 7px;
    padding: 4px 9px;
    font-size: 12px;
    font-weight: 500;
    background: #f1f5f9;
    color: #475569;
}

.mor-list_meta > span:first-child {
    background: #e8f2ff;
    color: #1251aa;
}

.mor-list_price {
    font-size: 25px;
    font-weight: bold;
    color: #0d2847;
    letter-spacing: -.5px;
    margin-top: 20px;
    border-top: 1.5px solid #f0f5fb;
    padding-top: 20px;
}

.mor-list_links {
    display: flex;
    align-items: center;
    grid-gap: 15px;
    justify-content: space-between;
    margin-top: 20px;
}

.mor-list_links > a {
    flex: 1 1 0;
    background: #1976d2;
    color: #fff;
    padding: 0 20px;
    height: 40px;
    line-height: 40px;
    border-radius: var(--radius);
    text-align: center;
}

.mor-list_links > a:first-child:before {
    content: "";
    position: absolute;
    inset: 0;
}

.mor-list_links > a[onclick] {
    background: #f0f7ff;
    color: #1976d2;
    width: 40px;
    flex: none;
    padding: 0;
}

/* MORE BLOG */
.more-blog {
    background: var(--bg2);
    padding: 40px 0;
}

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

.more-blog_item {
    position: relative;
    background: var(--bg2);
    border-radius: var(--radius);
    width: 100%;
    overflow: hidden;
}

.more-blog_head {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    grid-gap: 10px;
    background: linear-gradient(180deg, rgb(0 0 0 / 32%), transparent);
    padding: 10px 20px;
    font-size: 12px;
    z-index: 2;
}

.more-blog_bg {
    aspect-ratio: 16 / 9;
    border-radius: var(--radius) var(--radius) 0 0;
    overflow: hidden;
}

.more-blog_content {
    display: flex;
    flex-direction: column;
    padding: 15px 20px;
    height: 220px;
}

.more-blog_title {
    display: block;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.2;
    margin: 10px 0 12px;
}

.more-blog_text, .more-blog_text p {
    color: var(--text2);
    font-size: 12px;
    font-weight: 300;
    line-height: 1.5;
}

.more-blog_meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    grid-gap: 15px;
    color: var(--text2);
    font-size: 12px;
    text-align: center;
}

.more-blog_meta span {
    display: flex;
    align-items: center;
    grid-gap: 10px;
}

.more-blog_content > a {
    font-size: 14px;
    font-weight: bold;
    color: #1976d2;
    display: flex;
    align-items: center;
    grid-gap: 8px;
    margin-top: auto;
}

.more-blog_content > a:before {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* MORE BLOG FULL */
.mor-fullblog {
    max-width: 800px;
}

.mor-fullblog_bg {
    position: relative;
    border-radius: var(--radius);
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.mor-fullblog_meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    font-size: 14px;
    margin: 20px 0;
}

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

.mor-fullblog_meta > span {
    display: flex;
    align-items: center;
    margin-left: 10px;
    color: #808191;
}

.mor-fullblog_meta > span:before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    background: #808191;
    border-radius: 50%;
    margin-right: 10px;
}

.mor-fullblog_meta > span i {
    margin-right: 8px;
}

.mor-user {
    display: flex;
    align-items: center;
    font-weight: bold;
}

.mor-user > img {
    border: 1px solid var(--bg2);
    padding: 2px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
}

.mor-fullblog_file > div {
    background: var(--bg2);
}

/* MORE LIST SHORT */
.more-list_item {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--bg2);
    border-radius: var(--radius);
    border: 1px solid #e2ecf8;
    transition: 0.3s;
    overflow: hidden;
}

.more-list_item:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 56px rgba(13, 40, 71, .13);
    border-color: #bfdbfe;
}

.swiper-wrapper .more-list_item {
    min-height: 200px;
}

.more-list_item > .label {
    margin: 10px 10px 0;
    text-transform: none;
}

.more-temp_item[data-upd] .more-temp_bg {
    border: none;
}

[data-upd]:before {
    content: attr(data-upd);
    position: relative;
    display: block;
    width: max-content;
    margin: -2px auto 0;
    padding: 8px 20px;
    height: max-content;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1px;
    background: linear-gradient(#ff815a 0%, #f44336 70%);
    color: #fff;
    background-size: 50px 50px;
}

.more-temp_item[data-upd]:before {
    width: 100%;
    padding: 8px;
    height: 75px;
    margin: 0 0 -60px;
}

.more-list_item[data-upd]:before {
    padding: 7px 20px;
    width: 100%;
    background-size: 40px 40px;
}

.mor-full_buy[data-upd] {
    margin-top: 35px;
}

.mor-full_buy[data-upd]:before {
    position: absolute;
    top: -35px;
    left: 0;
    width: 100%;
    z-index: -1;
    border-radius: 20px 20px 0 0;
    margin: 0;
    padding: 10px 0;
    height: 100px;
}

.more-list_item[data-upd], .more-temp_item[data-upd], .mor-full_buy[data-upd] {
    border: 1px solid #fd7955;
    border-top: none;
}

.more-list_item > div:hover {
    color: var(--color2);
}

.more-list_title {
    display: grid;
    grid-gap: 20px;
    grid-auto-rows: max-content;
    grid-template-columns: 120px 1fr;
    align-items: center;
    background: var(--bg2);
    border-radius: var(--radius);
    padding: 10px 10px 0;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.more-list_title img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    border-radius: 15px;
}

.more-list_title > a:before {
    content: "";
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.more-list_short {
    padding: 10px 20px 10px;
    color: var(--text2);
    font-size: 14px;
    line-height: 1.5;
}

.more-list_item > ul {
    display: flex;
    align-items: center;
    grid-gap: 20px;
    padding: 10px 20px 10px;
    border-top: 1px dashed var(--dark);
    margin-top: auto;
}

.more-list_item > ul li {
    display: flex;
    align-items: center;
    grid-gap: 8px;
    border-radius: 7px;
    padding: 4px 9px;
    font-size: 12px;
    font-weight: 500;
    background: #f1f5f9;
    color: #475569;
}

.more-list_item > ul li:first-child {
    background: #e8f2ff;
    color: #1251aa;
}

/* MORE FULL */
.mor-full {
    display: grid;
    grid-gap: 60px;
    grid-auto-rows: max-content;
    grid-template-columns: 1fr 350px;
}

@media (max-width: 860px) {
    .mor-full {
        grid-template-columns: 100%;
    }
}

.mor-full_center, .mor-full_buy {
    width: 100%;
    overflow: hidden;
}

.mor-full_screens {
    position: relative;
    overflow: hidden;
}

.mor-full_screens > img {
    position: relative;
    display: block;
    border: 1px solid var(--light);
    border-radius: var(--radius);
    width: 100%;
    aspect-ratio: 16/9;
    height: auto;
    object-fit: cover;
    overflow: hidden;
}

.mor-full_screens > img + a {
    position: relative;
    display: block;
    max-width: 250px;
    margin: 0 auto;
    margin-top: -30px;
    background: var(--color3);
    color: var(--text1);
    box-shadow: 0px 0px 20px 0px rgb(254 204 112 / 20%);
    padding: 14px 30px;
    border-radius: var(--radius);
    font-weight: bold;
    text-align: center;
    transition: 0.3s;
    cursor: pointer;
}

.mor-full_screens > img + a:hover {
    transform: scale(1.05);
}

.mor-full_screens > ul {
    display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    margin: 20px 0;
    padding-bottom: 20px;
}

@media (max-width: 860px) {
    .mor-full_screens > ul {
        display:flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: left;
    }

    .mor-full_screens > ul li {
        min-width: max-content;
    }
}

.mor-full_screens > ul img {
    background: var(--bg);
    width: 80px;
    height: 80px;
    object-fit: cover;
    padding: 5px;
    border: 3px solid var(--bg2);
    border-radius: 15px;
}

@media (max-width: 860px) {
    .mor-full_screens > ul img {
        width: 60px;
        height: 60px;
    }
}

.mor-full_screens li + li {
    margin-left: 10px;
}

.mor-full_screens > ul::-webkit-scrollbar {
    position: relative;
    width: 7px;
    height: 7px;
    border-radius: 20px;
}

.mor-full_screens > ul::-webkit-scrollbar-thumb {
    background-color: var(--color1);
    border-radius: 20px;
}

.mor-full_screens > ul::-webkit-scrollbar-track {
    background-color: var(--bg2);
    border-radius: 20px;
}

.mor-full_tabs {
    display: flex;
    align-items: center;
    border-radius: var(--radius);
    margin-bottom: 20px;
    border-bottom: 2px solid #e8f0f8;
}

.mor-full_tabs > span, .mor-full_tabs > a {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    padding: 10px 20px;
    font-size: 17px;
    font-weight: 600;
    border-bottom: 2px solid #e8f0f8;
    cursor: pointer;
}

.mor-full_tabs > span > span {
    background: #ef4444;
    color: #fff;
    border-radius: 6px;
    padding: 1px 7px;
    font-size: 10px;
    font-weight: bold;
}

.mor-full_tabs > span.active {
    color: #1976d2;
    border-color: #1976d2;
}

.tab-content.mor-full_text {
    background: #fff;
    border-radius: 13px;
    padding: 14px 16px;
    border: 1px solid #e2ecf8;
}

.tab-content:not(.tab-content.active) {
    display: none;
}

.mor-full_buy {
    position: relative;
    background: #fff;
    padding: 24px;
    border: 1px solid #e2ecf8;
    box-shadow: 0 4px 20px rgba(13, 40, 71, .07);
    border-radius: var(--radius);
    max-height: max-content;
}

@media (max-width: 860px) {
    .mor-full_buy {
    }
}

.mor-full_head {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    margin-bottom: 20px;
}

.mor-full_head > span {
    display: flex;
    align-items: center;
    grid-gap: 4px;
    border-radius: 7px;
    padding: 4px 9px;
    font-size: 12px;
    font-weight: 500;
    background: #f1f5f9;
    color: #475569;
}

.mor-full_head > span.dle {
    background: #e8f2ff;
    color: #1251aa;
}

.mor-full_title {
    font-size: 18px;
    font-weight: bold;
    color: #0d2847;
    margin-bottom: 10px;
}

.mor-full_subtitle {
    font-size: 12px;
    color: #5a80a0;
    margin-bottom: 18px;
}

.mor-full_lic {
    border: 1px solid #e8f0f8;
    border-radius: 11px;
    padding: 14px;
    margin-bottom: 16px;
}

.mor-full_lic > ul {
}

.mor-full_lic > ul li {
    position: relative;
    display: flex;
    align-items: center;
    grid-gap: 10px;
    color: var(--text2);
    font-size: 14px;
    margin-top: 15px;
}

.mor-full_lic > ul li:before {
    content: "✦";
    font-weight: 600;
    background: #ddffe3;
    border-radius: 8px;
    color: #227d4b;
    width: 20px;
    height: 20px;
    line-height: 20px;
    font-size: 10px;
    text-align: center;
}

.mor-full_buy [data-store], .mor-full_docs {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 10px;
    background: #1976d2;
    color: #fff;
    padding: 14px 26px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: bold;
    box-shadow: 0 8px 24px rgba(25, 118, 210, .28);
    margin: 30px 0 15px;
}

.mor-full_docs {
    background: #21251c;
    color: #8bc34a;
    box-shadow: none;
}

.mor-full_links {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    justify-content: space-between;
}

.mor-full_links > a {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 8px;
    background: transparent;
    color: #1976d2;
    width: 47px;
    height: 47px;
    border-radius: 10px;
    font-size: 16px;
    text-align: center;
    font-weight: bold;
    border: 1.5px solid #bfdbfe;
    cursor: pointer;
}

.mor-full_links > a[onclick] {
    flex: 1;
    padding: 0 18px;
}

.mor-full_bon {
    background: #e6f9f0;
    color: #0e7a47;
    border-radius: 10px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    margin: 20px 0 30px;
}

.mor-full_bon > i {
    width: 32px;
    height: 32px;
    line-height: 32px;
    border-radius: 9px;
    background: #0e7a47;
    color: #fff;
    font-size: 14px;
    text-align: center;
}

.mor-full_bon > div > b {
    display: block;
    font-size: 14px;
}

.mor-full_detal li {
    position: relative;
    display: flex;
    align-items: center;
    grid-gap: 10px;
    color: var(--text2);
    font-size: 14px;
    margin-top: 15px;
}

.mor-full_detal li:before {
    content: "\f00c";
    font-family: "Font Awesome 6 Pro";
    font-weight: 600;
    background: #eaf4ff;
    border-radius: 8px;
    color: #1976d2;
    width: 20px;
    height: 20px;
    line-height: 20px;
    font-size: 10px;
    text-align: center;
}

.mor-full_detal li > span {
    font-weight: 600;
}

.mor-full_link {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    grid-gap: 10px;
    margin: 20px 0;
}

.mor-full_link > a:not(.mor-full_share) {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 10px;
    flex: 1;
    background: #c2dd70;
    color: #0b1500;
    padding: 15px 25px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
}

.mor-full_link > a:first-child {
    background: var(--color1);
    color: #fff;
    flex: 100%;
}

.mor-full_upd {
    flex: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 15px;
    background: var(--color3);
    color: #000;
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
}

.mor-bind_items .more-list_item + .more-list_item {
    margin-top: 10px;
}

.mor-bind_items .more-list_title {
    grid-gap: 20px;
    grid-template-columns: 90px 1fr;
    font-size: 14px;
}

.mor-bind_items .more-list_short {
    display: none;
}

.mor-comm {
    display: grid;
    grid-gap: 60px;
    grid-auto-rows: max-content;
    grid-template-columns: 250px 1fr;
}

@media (max-width: 860px) {
    .mor-comm {
        grid-template-columns: 1fr;
        grid-gap: 20px;
    }
}

.mor-comm_rat {
    background: #fff;
    border-radius: 18px;
    border: 1px solid #e2ecf8;
    color: #94a3b8;
    padding: 24px;
    max-height: max-content;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
}

.mor-comm_rat > b {
    font-size: 40px;
    font-weight: 900;
    color: #0d2847;
}

.mor-comm_rat > b + div {
    margin: 5px auto 10px;
    width: 100px;
    overflow: hidden;
}

.mor-comm .gradrating_item:nth-child(4) {
    margin-top: 25px;
}

.mor-comm .gradrating_item {
    grid-template-columns: 10px 70px auto 30px;
    grid-gap: 10px;
    margin: 5px 0;
}

.mor-comm .gradrating_vote {
    font-size: 10px;
    color: var(--text2);
}

/* RATING COLOR */
.rating-color {
    color: #22c55e;
}

.rating-color.low {
    color: #F44336;
}

.rating-color.middle {
    color: #f59e0b;
}

/* MORE FAG */
.mor-fag {
    position: relative;
    background: var(--bg2);
    padding: 60px 0;
    margin-bottom: -20px;
}

.mor-fag_row {
    display: grid;
    grid-gap: 60px;
    grid-auto-rows: max-content;
    grid-template-columns: 1fr 450px;
}

@media (max-width: 860px) {
    .mor-fag_row {
        grid-template-columns: 1fr;
        grid-gap: 40px;
    }
}

.mor-fag_item {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e2ecf8;
    padding: 20px 24px;
    margin-bottom: 20px;
}

.accord {
    color: #0d2847;
    font-weight: bold;
}

.accord:first-child {
    border-top: none;
}

.accord, .accord-text {
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-gap: 20px;
    cursor: pointer;
    transition: border-radius 0.3s;
}

.accord:after {
    content: "\002B";
    font-size: 25px;
    font-weight: 400;
    min-width: 32px;
    height: 32px;
    line-height: 32px;
    border-radius: 9px;
    background: #f0f7ff;
    color: #1976d2;
    text-align: center;
    transition: 0.3s;
}

.accord.active:after {
    content: "\2212";
    background: #1976d2;
    color: #fff;
    transform: rotate(45deg);
}

.accord-text {
    line-height: 1.5;
    color: var(--text2);
    font-size: 14px;
    margin-top: 20px;
}

.mor-helps {
    position: relative;
    background: linear-gradient(165deg, #eaf4ff, #cfe6ff);
    border-radius: 20px;
    padding: 36px;
    max-height: max-content;
    overflow: hidden;
}

.mor-helps:before {
    content: '';
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(124, 192, 245, .35);
}

.mor-helps span {
    display: block;
    font-size: 14px;
    color: #2c5282;
    line-height: 1.7;
    margin-top: -15px;
    margin-bottom: 22px;
    position: relative;
}

.mor-helps_link {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    grid-gap: 20px;
}

.mor-helps_link > a {
    display: flex;
    align-items: center;
    grid-gap: 8px;
    font-size: 14px;
    background: #fff;
    padding: 10px 20px;
    border-radius: var(--radius);
    z-index: 2;
    font-weight: 600;
    text-align: center;
}

.mor-helps_link > a:last-child {
    background: var(--color1);
    color: #fff;
}

/* LABEL */
.label {
    display: inline-block;
    padding: 5px 10px;
    background: #8BC34A;
    box-shadow: 0px 2px 18px -3px rgb(139 195 74 / 58%);
    border-radius: 50px;
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
}

.label.blue {
    background: #2e95a3;
    box-shadow: 0px 2px 18px -3px rgb(38 166 197 / 58%);
}

.label.red {
    background: #F44336;
    box-shadow: 0px 2px 18px -3px rgb(244 67 54 / 58%);
}

.label.yellow {
    background: #fcee85;
    color: #000;
    box-shadow: 0px 2px 18px -3px rgb(252 238 133 / 58%);
}

/* FOOTER */
footer {
    position: relative;
    background: #0d2847;
    color: var(--text2);
    padding: 80px 0 30px;
    margin-top: 30px;
}

footer > svg {
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
}

@media (max-width: 860px) {
    footer > svg {
        top: -2px;
    }
}

footer > svg path {
    fill: var(--bg);
}

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

footer .container > span:not(.footer-dev) {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text2);
}

.footer-soc {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    color: var(--color1);
    font-size: 16px;
    font-weight: 600;
    border-left: 1px solid var(--light);
    padding-left: 20px;
    margin-left: 20px;
    margin-right: auto;
}

.footer-soc:hover, .footer-menu a:hover {
    color: var(--color2);
}

.footer-menu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    grid-gap: 10px 20px;
}

@media (max-width: 860px) {
    .footer-menu {
        margin-top: 30px;
    }
}

.footer-menu > a {
    color: var(--text2);
    border-bottom: 1px dashed;
    font-size: 14px;
}

/* COOKIE */
.cookie {
    display: none;
    position: fixed;
    max-width: 600px;
    bottom: 20px;
    right: 20px;
    background: #4f5560;
    color: #ececec;
    border-radius: 20px;
    padding: 15px 20px;
    font-size: 14px;
    text-align: center;
    line-height: 1.4;
    z-index: 999;
}

.cookie > a {
    color: #99dfff;
    text-decoration: underline;
}

.cookie > button {
    display: block;
    background: var(--color1);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 5px 30px;
    border-radius: 50px;
    cursor: pointer;
    margin: 10px auto 0;
}

/* README, UPDATE */
.readme {
}

.readme-subtitle {
    display: block;
    font-size: 18px;
    color: var(--text2);
    margin-bottom: 10px;
}

.readme-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    grid-gap: 15px;
    margin: 30px 0;
}

.readme-head > li {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    background: #91d5ff;
    color: #001e43;
    padding: 8px 15px;
    border-radius: 15px;
    font-size: 14px;
}

.readme-head > li:nth-child(1) {
    background: #ffe58f;
    color: #352b00;
}

.readme-head > li:nth-child(2) {
    background: #b7eb8f;
    color: #205a07;
}

.readme-head > li span {
    font-weight: 600;
}

.readme-text {
    background: var(--bg2);
    padding: 30px;
    border-radius: var(--radius);
}

.readme-pay {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--light);
    padding: 50px 30px;
    border-radius: var(--radius);
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.readme-pay.update {
    margin: 0;
    max-width: 100%;
}

.readme-pay > i {
    background: var(--light);
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    font-size: 30px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.readme-pay > span:not(.label) {
    display: block;
    color: #cfd9eb;
    font-size: 18px;
    font-weight: 400;
    margin-top: -10px;
}

.readme-pay > div:not(.readme-what) {
    border: 4px dotted #aadd70;
    color: #fff;
    border-radius: var(--radius);
    padding: 20px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    margin: 50px 0;
}

.readme-pay > h2 .label {
    font-size: 14px;
}

.readme-what {
    display: block;
    max-width: 100%;
    width: 600px;
    background: var(--light);
    margin: 30px auto;
    border-radius: var(--radius);
    text-align: left;
}

.readme-what > span {
    display: block;
    font-size: 18px;
    font-weight: 500;
    padding: 15px 30px;
    border-bottom: 1px solid var(--light2);
}

.readme-what > div {
    padding: 15px 30px;
}

.readme-pay > div + a {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    background: #fff;
    color: #000;
    padding: 20px 60px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius);
}

/* MOR LAPSE */
.mor-lapse {
    background: radial-gradient(560px 320px at 8% -5%, rgba(69,67,254,.36), transparent 60%), radial-gradient(520px 340px at 95% 110%, rgba(157,107,255,.3), transparent 60%), radial-gradient(420px 280px at 60% 40%, rgba(255,143,94,.16), transparent 60%), #0a0b12;
    color: #fff;
    padding: 50px 0;
}

.mor-lapse > div > span {
    font-family: 'Space Mono', monospace;
    font-size: 13px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #9aa0b3;
    margin-bottom: 12px;
}

.mor-lapse_title {
    display: block;
    font-size: 40px;
    font-weight: bold;
    line-height: 1;
    margin: 20px 0 30px;
    max-width: 600px;
}

.mor-lapse_title > b {
    background: linear-gradient(95deg, #4543fe, #ff8f5e 40%, #ffc348 60%, #9d6bff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.mor-lapse > div > a {
    display: inline-block;
    background: #4e67f2;
    color: #fff;
    box-shadow: 0 8px 30px -8px rgb(78 103 242 / 50%);
    padding: 16px 34px;
    border-radius: var(--radius);
    font-weight: bold;
    text-align: center;
}

.mor-lapse ul {
    display: grid;
    grid-gap: 30px;
    grid-auto-rows: max-content;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
    margin-top: 60px;
}

@media (max-width: 860px) {
    .mor-lapse ul {
        display: flex;
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-left: 54px;
        padding-right: 54px;
        margin: 60px -54px 0;
    }
}

.mor-lapse ul li {
    position: relative;
    display: flex;
    flex-direction: column;
    background: rgb(255 255 255 / 2%);
    backdrop-filter: blur(50px);
    border: 1px solid rgb(246 245 248 / 9%);
    border-radius: 24px;
    padding: 38px 32px;
    font-size: 20px;
    font-weight: bold;
    overflow: hidden;
}

@media (max-width: 860px) {
    .mor-lapse ul li {
        min-width: 330px;
    }
}

.mor-lapse ul li:before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 24px;
    background: linear-gradient(95deg, #4543fe 0%, #ff8f5e 30%, #ffc348 50%, #ff9d3c 68%, #9d6bff 100%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: .45s;
}

.mor-lapse ul li:after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: .5s;
    background: radial-gradient(400px 240px at 72% 0%, rgba(255, 143, 94, .14), transparent 65%);
}

.mor-lapse ul li:hover:before, .mor-lapse ul li:hover:after {
    opacity: 1;
}

.mor-lapse ul li p {
    color: #b9b6c8;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
    margin: 20px 0;
}

.mor-lapse ul > li > div {
    display: flex;
    flex-wrap: wrap;
    grid-gap: 8px;
    margin-top: auto;
}

.mor-lapse ul > li > div span {
    font-family: 'Space Mono',monospace;
    font-weight: 400;
    font-size: 12px;
    padding: 6px 12px;
    border: 1px solid rgb(246 245 248 / 9%);
    border-radius: 30px;
    color: #b9b6c8;
}
