/* STYLES 15.01.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
}

/* BASIC */
:root {
    --bg: #13171d;
    --bg2: #1c222c;
    --engine: #2b2f3c;
    --engine2: #414450;
    --text: #fff;
    --text1: #000;
    --text2: #a1aab9;
    --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: var(--text);
    line-height: normal;
    font-family: "Gilroy", sans-serif;
    font-size: 16px;
    font-weight: 400;
}

/* MAIN, ASIDE, SPEEDBAR, CAT NAME*/
aside {
    position: fixed;
    top: 0;
    width: 250px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 25px;
    background: rgb(19 23 29 / 80%);
    border-right: 1px dotted var(--bg2);
    transition: 0.3s opacity;
}

@media (max-width: 860px) {
    aside {
        width: 100%;
        height: 100vh;
        flex-direction: column;
        align-items: flex-start;
        background: rgb(19 23 29 / 80%);
        z-index: 7;
        visibility: hidden;
        opacity: 0;
    }
}

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

.header-menu_btn {
    background: linear-gradient( 0deg, #54b2f5, #a1d8ff);
    border-radius: 15px;
    color: #fff;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
}

.header-menu .header-menu_btn {
    position: absolute;
    top: 30px;
    right: 30px;
}

.header-menu_btn.active:before {
    content: "\f00d";
}

.aside-logo {
    font-size: 25px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
}

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

.aside-menu {
    margin: auto 0;
}

.aside-menu > span {
    display: block;
    color: #88919e;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.aside-menu > a + span {
    margin-top: 30px;
}

.aside-menu a {
    display: block;
    color: #bbc1cb;
    font-weight: 500;
    margin-bottom: 10px;
}

.aside-menu a:hover {
    color: var(--text);
}

.aside-menu a:hover i {
    background: #ff7551;
}

.aside-menu a:nth-child(2n + 1):hover i {
    background: #32a7e2;
}

.aside-menu a:nth-child(3n + 1):hover i {
    background: #6c5ecf;
}

.aside-menu a i {
    background: var(--light);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    margin-right: 10px;
}

.aside-lapse {
    position: relative;
    background: linear-gradient( 315deg, #ffe194, #ff863d, #d3689c, #494ab9 85%);
    background-blend-mode: screen;
    padding: 15px 20px;
    border-radius: var(--radius);
}

.aside-lapse > span {
    display: block;
    color: #fff;
    font-size: 11px;
    margin: 10px 30px 15px 0;
}

.aside-lapse > a {
    display: inline-block;
    background: #fff;
    color: #000;
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius);
}

.aside-lapse > a:before {
    content: "";
    position: absolute;
    inset: 0;
}

.aside-lapse > img {
    position: absolute;
    bottom: 10px;
    right: -100px;
    width: 100%;
    height: 100px;
    object-fit: contain;
}

main {
    margin-left: 250px;
}

@media (max-width: 860px) {
    main {
        margin-left: 0;
    }
}

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

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

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: transparent;
    padding: 15px 0;
    z-index: 5;
}

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

.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-store {
    position: relative;
    display: flex;
    align-items: center;
    grid-gap: 10px;
    background: #3e4553;
    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: #28303f;
    backdrop-filter: blur(30px);
    border-radius: 50px;
    padding: 3px;
    margin-right: auto;
    z-index: 2;
}

@media (max-width: 860px) {
    .header-search {
        visibility: hidden;
        opacity: 0;
        position: fixed;
        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: #3e4553;
    border-radius: 50px;
    min-width: 40px;
    height: 40px;
    line-height: 40px;
    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;
        margin-left: auto;
    }
}

.header-search input {
    background: none;
    padding: 0;
    box-shadow: none;
    border: none;
    width: 380px;
    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: 490px;
    top: 110%;
    left: auto;
    background: #28303f;
    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 - CORRIGIDO */

/* 1. ADICIONADO: Define o ponto de referência para o menu */
.header-user {
    position: relative;
    display: inline-block;
}

.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%; /* Posiciona logo abaixo do ícone */
    right: 0;    /* Alinha à direita */
    
    /* Mudei para uma cor escura para combinar com seu tema, 
       se preferir branco use: background: #fff; color: #000; */
    background: #28303f; 
    color: #fff;
    
    padding: 15px;
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 20%);
    border-radius: var(--radius);
    
    /* Esconde o menu */
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px); /* Começa um pouco mais baixo */
    transition: 0.3s;
    
    /* AUMENTADO: Garante que fique acima de tudo */
    z-index: 100; 
}

/* Seta (triângulo) em cima do menu */
.header-user > div:before {
    content: "";
    position: absolute;
    top: -5px;
    right: 15px;
    width: 10px;
    height: 10px;
    background: inherit; /* Pega a mesma cor do fundo do menu */
    transform: rotate(45deg);
}

/* 2. O MÁGICO: Quando tiver a classe 'active', mostra o menu */
.header-user.active > div {
    visibility: visible;
    opacity: 1;
    transform: translateY(0); /* Sobe para a posição original */
}

/* Estilos internos do menu */
.header-user_top {
    display: flex;
    align-items: center;
    grid-gap: 15px;
    padding: 10px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    background: rgba(255,255,255, 0.05); /* Leve destaque no topo */
}

.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(--light2);
    border-bottom: 1px dotted var(--light2);
    margin-bottom: 10px;
}

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

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

.header-user_balance > li span {
    display: block;
    color: #a1aab9;
    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;
    color: var(--text); /* Garante cor legível */
}

.header-user > div a:hover {
    background: rgba(255,255,255, 0.1);
}

.header-user > div a i {
    margin-right: 8px;
    width: 20px;
    text-align: center;
}

.header-user > div a:last-child {
    color: #F44336;
    font-weight: 500;
    margin-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* MODAL AUTH */
[href="#modal"] {
    display: inline-block;
    background: linear-gradient( 0deg, #54b2f5, #a1d8ff);
    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%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg);
    text-align: center;
    z-index: 9;
}

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

.modal-auth > i:hover {
    background: var(--color3);
}

.modal-auth_bg {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.modal-auth_bg > img:nth-child(2) {
    position: absolute;
    top: 40px;
    left: 40px;
    width: 100px;
    height: auto;
}

.modal-auth_content {
    width: 800px;
    padding: 30px 60px;
}

@media (max-width: 860px) {
    .modal-auth_content {
        width: 100%;
        height: max-content;
        padding: 30px;
    }
}

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

.modal-auth_type {
}

.modal-auth_type > span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 20px;
    background: var(--bg);
    color: var(--text2);
    margin-bottom: 20px;
    font-weight: 600;
    z-index: 2;
}

.modal-auth_type > span:before, .modal-auth_type > span:after {
    content: "";
    display: inline-block;
    width: 100%;
    height: 2px;
    background: var(--light2);
}

.modal-auth_reg {
    display: inline-block;
    border: 1px solid var(--color1);
    color: var(--color1);
    padding: 15px 50px;
    border-radius: var(--radius);
    font-weight: 500;
    text-align: center;
}

.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-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%;
}

.modal-auth_link {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    grid-gap: 90px;
    color: var(--text2);
    margin-bottom: 30px;
}

.modal-auth_link > div a {
    color: var(--color3);
    font-weight: bold;
}

.modal-auth_link > a {
    text-decoration: underline dotted;
}

.modal-auth_link a:hover {
    text-decoration: underline dotted;
    opacity: 0.8;
}

.modal-auth_link button {
    flex: 1 1 0;
    font-weight: bold;
}

/* 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: url(https://cdn.pixabay.com/photo/2015/05/06/03/56/blue-754864_1280.png) center / cover no-repeat #4b98e5;
    box-shadow: inset 0 0 999px rgb(39 118 196 / 50%);
    border-radius: 0 0 0 60px;
    padding: 30px 50px;
    margin-top: -110px;
    padding-top: 150px;
}

.mor-telegram_title {
    position: relative;
    max-width: max-content;
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 15px;
}

.mor-telegram_title > b {
    position: absolute;
    top: -70%;
    right: -15%;
    background: #8BC34A;
    color: #f7ffef;
    box-shadow: 0 0 20px 0px rgb(139 195 74 / 75%);
    display: flex;
    align-items: center;
    grid-gap: 8px;
    padding: 5px 15px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: bold;
    transform: rotate(5deg);
}

@media (max-width: 860px) {
    .mor-telegram_title > b {
        top: -40%;
    }
}

.mor-telegram > a {
    display: block;
    max-width: max-content;
    background: #fff;
    color: #389bef;
    padding: 12px 20px;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: bold;
    margin-top: 20px;
}

.mor-telegram > span:last-child {
    display: block;
    font-size: 10px;
    margin-top: 10px;
    opacity: 0.8;
}

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

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

.mor-sect_title > a {
    color: var(--text2);
    font-weight: bold;
}

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

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

.mor-sect_title > a i {
    background: var(--light);
    border-radius: 50%;
    width: 25px;
    height: 25px;
    line-height: 25px;
    font-size: 12px;
    text-align: center;
    margin-right: 10px;
}

.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;
}

.mor-sect_idei {
}

.mor-sect_idei .e-grid3 > div {
    background: var(--bg2);
    padding: 20px;
    border-radius: var(--radius);
}

.more-temp_item {
    display: inline-block;
    position: relative;
    background: var(--bg2);
    border-radius: var(--radius);
    overflow: hidden;
}

.more-temp_item .more-temp_label {
    position: absolute;
    top: 15px;
    left: 10px;
    z-index: 2;
}

.more-temp_upd {
    background: linear-gradient(45deg, #F44336, #ff815a);
    border-radius: var(--radius);
    padding: 8px;
    height: 75px;
    margin: 0 0 -45px;
    background-size: 200% 200%;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 2px;
    animation: gradient-animation 5s ease infinite;
}

.more-list_item .more-temp_upd {
    position: absolute;
    bottom: 0;
    right: 0;
    width: max-content;
    font-size: 8px;
    height: max-content;
    margin: 0;
    border-radius: var(--radius) 0 0 0;
    padding: 5px 20px;
}

.more-list_item .more-temp_upd:before {
    content: "";
    position: absolute;
    left: -100vw;
    bottom: 0;
    width: 100vw;
    height: 3px;
    background: inherit;
    animation: gradient-animation 5s ease infinite;
}

@keyframes gradient-animation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.more-temp_upd + .more-temp_bg {
    aspect-ratio: 16/7.6;
    box-shadow: 0px -7px 20px 0px rgb(0 0 0 / 58%);
}

.more-temp_bg {
    position: relative;
    border: 2px solid rgb(28 34 44 / 50%);
    aspect-ratio: 16/9;
    border-radius: var(--radius);
    overflow: hidden;
}

.more-temp_bg a[onclick] {
    position: absolute;
    top: 15px;
    right: 10px;
    z-index: 2;
    background: var(--light);
    color: var(--text);
    border-radius: 10px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 13px;
    text-align: center;
}

.more-temp_bg > .label {
    position: absolute;
    top: 5px;
    left: 5px;
    text-transform: none;
    z-index: 2;
}

.more-temp_content {
    display: flex;
    flex-direction: column;
    grid-gap: 15px;
    padding: 15px 25px;
}

.more-temp_meta {
    display: flex;
    align-items: center;
    grid-gap: 20px;
    z-index: 2;
}

.more-temp_meta span {
    position: relative;
    display: block;
    color: #8d899f;
    font-size: 12px;
    margin-bottom: 10px;
}

.more-temp_meta span i {
    margin-right: 10px;
}

.more-temp_content h2 {
    margin-bottom: 0;
}

.more-temp_content .posterlogo {
    display: block;
    max-width: 150px;
    max-height: 70px;
    object-fit: contain;
    object-position: left;
}

.more-temp_content > div.e-clamp2, .more-temp_content > div.e-clamp2 p {
    color: var(--text2);
    line-height: 1.5;
    font-size: 14px;
}

.more-temp_link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-gap: 20px;
    margin-top: auto;
}

.more-temp_link a {
    display: inline-block;
    background: var(--color1);
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: bold;
    text-align: center;
}

.more-temp_link a:before {
    content: "";
    position: absolute;
    inset: 0;
}

.more-temp_link a:hover {
    background: var(--color2);
}

.more-temp_price {
    display: block;
    color: #fff;
    font-size: 25px;
    font-weight: bold;
    text-transform: uppercase;
}

/* 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 {
    border: 4px solid var(--bg2);
    aspect-ratio: 16 / 9;
    border-radius: var(--radius);
    overflow: hidden;
}

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

.more-blog_title {
    display: block;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 15px;
}

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

.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;
    align-items: center;
    grid-gap: 15px;
    border-top: 1px solid var(--light);
    color: var(--text2);
    font-size: 12px;
    padding: 10px 20px 0;
    margin: auto -20px 0 -20px;
    text-align: center;
}

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

/* 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);
    transition: 0.3s;
    overflow: hidden;
}

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

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

.more-temp_upd + .more-list_title {
    box-shadow: 0px -18px 20px -10px rgb(0 0 0 / 58%);
}

.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: 12px;
    line-height: 1.5;
}

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

.more-list_item > ul li {
    display: flex;
    align-items: center;
    grid-gap: 8px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text2);
}

.more-list_item > ul li span {
    color: #e2e7f0;
}

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

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

.mor-full_one > img:first-child {
    display: block;
    max-width: 200px;
    max-height: 50px;
    margin-bottom: 30px;
}

.mor-full_short {
    position: relative;
    display: block;
    padding: 0 18px;
    color: #bbc1cb;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 30px;
}

.mor-full_short * {
    font-size: inherit;
}

.mor-full_short:before, .mor-full_short:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 15px;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='40' viewBox='0 0 16 40'%3E%3Cpath d='M10.446 5.11607C11.6858 4.67233 12.8151 3.98846 13.7626 3.1078C14.7101 2.22713 15.4551 1.16886 15.9503 0C13.247 0.0651136 10.4509 2.69757 10.446 5.11607ZM4.09117 33.0219C5.97318 32.194 8.49067 33.5382 10.3385 35.7288C8.78886 37.0171 5.64566 35.9567 4.09605 33.0219H4.09117ZM1.92074 27.6733C3.93474 27.2082 6.10516 28.9802 7.42013 31.3941C5.63099 32.3801 2.80064 30.7988 1.92563 27.6826L1.92074 27.6733ZM0.903966 22.0921C2.97174 22.0131 4.7462 24.1386 5.51856 26.7431C3.56322 27.3291 1.15327 25.292 0.908854 22.0875L0.903966 22.0921ZM1.04573 16.4272C3.08906 16.7342 4.40402 19.1527 4.62888 21.827C2.59044 22.0456 0.644883 19.6132 1.05062 16.4226L1.04573 16.4272ZM2.34603 10.8693C4.26715 11.553 5.07861 14.1855 4.75598 16.8551C2.71265 16.6923 1.29014 13.9529 2.34603 10.8693ZM4.7902 5.60908C6.55489 6.64624 6.74554 9.40892 5.88519 11.9856C3.92496 11.446 3.08906 8.46943 4.79998 5.60908H4.7902ZM8.41246 0.823223C9.91318 2.18131 9.45857 4.97654 8.04584 7.37179C6.22248 6.47416 6.0465 3.36731 8.41246 0.823223ZM15.0753 6.41834C13.4768 8.1113 11.1157 8.95778 9.2777 8.04154C10.71 5.65559 13.5941 5.06491 15.0753 6.41834ZM12.5236 9.80425C11.3601 11.7158 9.22882 12.9623 7.23926 12.4088C8.12894 9.84146 10.7784 8.76709 12.5236 9.80425ZM10.7882 13.525C10.0647 15.5808 8.2267 17.19 6.16382 17.0179C6.50601 14.3576 8.86219 12.8367 10.7882 13.525ZM9.86919 17.4551C9.58078 19.5899 8.1045 21.5108 6.0465 21.7247C5.84119 19.069 7.84053 17.1388 9.86919 17.4551ZM9.77142 21.4596C9.91807 23.6083 8.86219 25.7757 6.8873 26.371C6.13938 23.7711 7.71832 21.5294 9.77142 21.4596ZM10.4851 25.4176C11.0717 27.5059 10.4851 29.8593 8.6911 30.8127C7.39569 28.3709 8.49067 25.8687 10.4851 25.4176ZM12.0249 29.2035C13.0662 31.1615 13.0222 33.6126 11.453 34.8823C9.61499 32.701 10.1332 30.0174 12.0249 29.2035ZM15.7352 39.3147C15.9698 39.4868 16.0676 39.7426 15.9503 39.8961C15.833 40.0495 15.5299 40.0309 15.2904 39.8542C9.98852 35.9687 6.45689 30.2949 5.42445 24.0038C4.39201 17.7127 5.93756 11.2846 9.74209 6.04627C2.34603 16.5947 4.47246 31.3429 15.7254 39.3054L15.7352 39.3147Z' fill='%23808191'/%3E%3C/svg%3E") center/contain no-repeat;
}

.mor-full_short:after {
    left: unset;
    right: 0;
    transform: scale(-1, 1);
}

.more-temp_upd + .mor-full_screens {
    box-shadow: 0px -4px 20px 0px rgb(0 0 0 / 58%);
    border-radius: var(--radius);
}

.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;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

@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_tabs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background: var(--bg2);
    border-radius: var(--radius);
    padding: 5px;
    margin-bottom: 20px;
}

.mor-full_tabs > span, .mor-full_tabs > a {
    display: inline-block;
    color: #d7dbe1;
    border-radius: var(--radius);
    padding: 10px 20px;
    font-size: 18px;
    font-weight: bold;
}

.mor-full_tabs > span.active {
    background: var(--color3);
    color: #000;
}

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

.mor-full_text *:not(.mor-full_text h1, .mor-full_text h2, .mor-full_text h3) {
    color: var(--text2);
}

.mor-full_text.tab-content > h1:first-child {
    margin-bottom: 30px;
}

.mor-full_text *::-webkit-scrollbar {
    position: relative;
    width: 7px;
    height: 7px;
    border-radius: 10px;
}

.mor-full_text *::-webkit-scrollbar-thumb {
    background-color: var(--color1);
}

.mor-full_text *::-webkit-scrollbar-track {
    background-color: var(--light);
}

.mor-full_two {
}

.mor-full_buy {
    position: relative;
    background: var(--bg2);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 30px;
    overflow: hidden;
}

.mor-full_buy > img {
    display: block;
    max-width: 150px;
    max-height: 100px;
    margin-bottom: 20px;
}

.mor-full_buy > span:first-child:not(.more-temp_label) {
    display: block;
    color: #a1aab9;
    font-size: 14px;
    margin-bottom: 20px;
}

.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: 10px;
    color: #ffc5c1;
    font-size: 12px;
}

.mor-full_head > span > span {
    display: flex;
    align-items: center;
    grid-gap: 8px;
    background: #F44336;
    color: #ffe0de;
    box-shadow: 0px 0px 20px #f4433661;
    border-radius: 50px;
    font-weight: bold;
    padding: 5px 10px;
    font-size: 12px;
    text-align: center;
}

.mor-full_head > [onclick] {
    background: var(--light);
    color: var(--text);
    border-radius: 50px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 13px;
    text-align: center;
    margin-left: auto;
}

.mor-full_price span {
    display: inline-block;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
}

.mor-full_price span:nth-child(2) {
    position: relative;
    margin-left: 20px;
    font-size: 20px;
    color: #dad1ff;
}

.mor-full_price span:nth-child(2):before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 45%;
    width: 100%;
    height: 3px;
    background-color: #f1222e;
    -webkit-transform: rotate(-9deg);
    -ms-transform: rotate(-9deg);
    transform: rotate(-9deg);
}

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

.mor-full_buy > ul li:before {
    content: "\f336";
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;
    color: #91d375;
    margin-right: 15px;
}

.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_share {
    display: inline-block;
    background: var(--light);
    border-radius: 10px;
    width: 46px;
    height: 46px;
    line-height: 46px;
    text-align: center;
}

.mor-full_alert {
    display: flex;
    align-items: center;
    grid-gap: 20px;
    background: rgb(35 43 55);
    color: var(--text2);
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 300;
    line-height: 1.4;
    margin: 0 -20px -20px -20px;
}

.mor-full_alert > i {
    font-size: 20px;
}

.mor-full_upd {
    display: block;
    background: var(--bg);
    color: #75df7a;
    padding: 15px 20px;
    border-radius: var(--radius);
    font-weight: 600;
    text-align: center;
    margin: 20px 0;
}

.mor-full_upd i {
    margin-right: 15px;
}

.e-none + span {
    display: block;
    background: var(--bg);
    border-radius: 10px;
    color: #808191;
    padding: 3px;
    font-size: 12px;
    text-align: center;
    margin-bottom: 2px;
}

.mor-full_info {
}

.mor-full_info > li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text3);
    margin: 5px 0;
}

.mor-full_info > li > span {
    color: #fff;
    border-bottom: 2px solid var(--light2);
    font-size: 14px;
}

.mor-full_fag {
    display: flex;
    flex-direction: column;
    grid-gap: 15px;
    background: url(../images/help.png) no-repeat 240px / 150px #632F1F;
    padding: 20px 30px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    margin: 30px 0;
}

.mor-full_fag a {
    max-width: max-content;
    background-color: var(--light);
    backdrop-filter: blur(20px);
    padding: 10px 30px;
    font-size: 14px;
}

.mor-full_rating {
    display: flex;
    flex-wrap: wrap;
    grid-gap: 20px;
    color: var(--text2);
    margin-top: -10px;
    margin-bottom: 30px;
}

.mor-full_rating > div {
    font-size: 30px;
    font-weight: bold;
}

.mor-full_rating > div > span {
    display: block;
    font-size: 12px;
}

.mor-bind {
}

.mor-bind > span {
    display: block;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text3);
    margin-bottom: 20px;
}

.mor-bind_items {
}

.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;
}

/* 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: 20px;
    border-radius: var(--radius);
}

.accord {
    border-top: 1px solid var(--light);
    color: var(--color2);
    padding: 15px 0;
    font-weight: bold;
}

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

.accord, .accord-text {
    display: block;
    cursor: pointer;
    transition: border-radius 0.3s;
}

.accord:after {
    content: "\002B";
    color: #777;
    font-size: 25px;
    font-weight: 400;
    float: right;
    margin-top: -5px;
}

.accord.active:after {
    content: "\2212";
}

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

/* 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;
    border-top: 1px solid var(--bg2);
    color: var(--text2);
    padding: 30px 0;
    margin-top: 30px;
}

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 */
.readme {
}

.readme-subtitle {
    display: block;
    font-size: 18px;
    color: var(--text3);
    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 {
    border: 2px dotted var(--light2);
    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 > 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 {
    display: block;
    color: #cfd9eb;
    font-size: 18px;
    font-weight: 400;
    margin-top: -10px;
}

.readme-pay > div {
    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 > div + a {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    background: #fff;
    color: #000;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius);
}
