:root {
    --background: #131315;
    --inputs: #1F1F21;
    --hover: #262629;
    --choose: #343438;
    --subtext: #7D7D85;
    --text: #9aa3ae;
    --titles: #FFF;
    --accent: #3D6AFF;
    --accent-2: #2956EB;
    --accent-3: #1542D7;
    --radius: 16px;
    --radius-sm: 10px;
    --container: 944px;
}

@font-face {
    font-family: 'SF-Pro-Display';
    src: url('../fonts/SF-Pro-Display-Ultralight.otf');
    font-weight: 100;
    font-display: swap;
}

@font-face {
    font-family: 'SF-Pro-Display';
    src: url('../fonts/SF-Pro-Display-Light.otf');
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: 'SF-Pro-Display';
    src: url('../fonts/SF-Pro-Display-Regular.otf');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'SF-Pro-Display';
    src: url('../fonts/SF-Pro-Display-Medium.otf');
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'SF-Pro-Display';
    src: url('../fonts/SF-Pro-Display-Semibold.otf');
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: 'SF-Pro-Display';
    src: url('../fonts/SF-Pro-Display-Bold.otf');
    font-weight: 700;
    font-display: swap;
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

ul,
ol,
li {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
}

body {
    margin: 0;
    background: var(--background);
    color: var(--text);
    overflow-x: hidden;
    font-family: 'SF-Pro-Display', sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.overflow-hidden {
    overflow-y: hidden;
}

.container {
    width: min(100% - 32px, 1024px);
    margin-inline: auto;
    position: relative;
}

/* Buttons */
.btn {
    border: none;
    background: var(--inputs);
    color: var(--text);
    padding: 10px 14px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .4s background, .4s color;
}

.btn:hover {
    background: var(--hover);
}

.btn-secondary {
    color: var(--titles);
}

.btn-secondary {
    background: var(--inputs);
    max-width: 240px;
    width: 100%;
    border-radius: 12px;
    padding: 8px 16px;
    font-weight: 500;
    color: var(--titles);
    line-height: 24px;
}

.btn-text {
    display: flex;
    gap: 8px;
    align-items: center;
}

.spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: var(--titles);
    animation: pc-spin .8s linear infinite;
}

@keyframes pc-spin {
    to {
        transform: rotate(360deg);
    }
}

/* Form validation */
.pc-checkout input,
.pc-checkout select,
.pc-checkout textarea {
    width: 100%;
    background: var(--inputs);
    border: 1px solid transparent;
    color: var(--titles);
    padding: 10px 12px;
    border-radius: 10px;
}

.pc-checkout .field-error {
    color: #ff6b6b;
    font-size: 13px;
    margin-top: 6px;
}

.pc-checkout .is-invalid {
    border-color: #e53935 !important;
    box-shadow: 0 0 0 2px rgba(229, 57, 53, .2);
}

.text-center {
    text-align: center;
}

.footer-text {
    color: var(--subtext);
}

.tab-box {
    display: inline-flex;
    gap: 4px;
    background: var(--inputs);
    border: 4px solid var(--inputs);
    border-radius: 12px;
}

.tab-box_btn {
    white-space: nowrap;
}

.tab-box .btn {
    color: #7D7E85;
    transition: .4s background, .4s color;
}

.tab-box .btn.active {
    background: var(--choose);
    color: var(--titles);
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 5;
    padding: 16px 0;
    background: var(--background);
    backdrop-filter: blur(8px);
}

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

.site-title {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
}

/* Hero */
.hero {
    position: relative;
    padding: 24px 0 32px;
    overflow: hidden;
    padding-top: 100px;
}

.hero-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
}

.logo {
    transition: .4s opacity;
}

.logo:hover {
    opacity: .7;
}

.logo a {
    display: flex;
    align-items: center;
}

.top-links {
    display: inline-flex;
    justify-content: center;
    gap: 16px;
    margin-top: 8px;
}

.top-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    border-bottom: 1px solid transparent;
    padding-bottom: 8px;
    transition: .4s color, .4s border;
}

.top-links a:hover {
    color: var(--titles);
    border-color: var(--accent);
}

.top-controls {
    display: inline-flex;
    gap: 8px;
    justify-content: flex-end;
}

.hero-title {
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.2;
    margin: 8px 0 8px;
    text-align: center;
    color: var(--titles);
}

.hero-sub {
    color: var(--text);
    text-align: center;
    max-width: 784px;
    width: 100%;
    font-size: 20px;
    line-height: 28px;
    margin-top: 16px;
    margin: 0 auto;
}

.search {
    display: grid;
    grid-template-columns: 24px 1fr auto;
    gap: 10px;
    align-items: center;
    background: var(--inputs);
    border-radius: 16px;
    padding: 12px 8px;
    max-width: 624px;
    margin: 0 auto;
    margin-top: 40px;
}

.search-input {
    background: transparent;
    border: 0;
    outline: 0;
    color: var(--titles);
    font-size: 15px;
}

.search-wrapper {
    position: relative;
    max-width: 624px;
    margin: 40px auto 0;
}

.search-wrapper .search {
    margin-top: 0;
}

.search-results {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--inputs);
    border-radius: 16px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.25);
    overflow: hidden;
    z-index: 20;
    display: none;
}

.search-results.is-visible {
    display: block;
}

.search-results__list {
    list-style: none;
    margin: 0;
    padding: 16px;
}

.search-results__item:not(:last-child) {
    border-bottom: 1px solid var(--choose);
    padding-bottom: 12px;
    margin-bottom: 12px;
}

.search-results__item:hover .search-results__thumb {
    opacity: .7;
}

.search-results__item:hover .search-results__title {
    color: var(--accent);
}

.search-results__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    text-decoration: none;
    color: var(--titles);
}

.search-results__info {
    display: flex;
    gap: 8px;
    align-items: center;
}

.search-results__thumb {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    background: rgba(15, 23, 42, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .4s opacity;
}

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

.search-results__title {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    transition: .4s color;
}

.search-results__empty,
.search-results__error {
    padding: 18px;
    font-size: 14px;
    color: rgba(248, 250, 252, 0.85);
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    display: none;
}

.chips {
    display: flex;
    justify-content: center;
    padding: 16px 0 10px;
    margin: 0;
    list-style: none;
}

.chips li {
    position: relative;
}

.chips li:after {
    content: '•';
    font-size: 16px;
    margin: 0 8px;
    color: var(--accent);
}

.chips li:last-child:after {
    display: none;
}

.chips a {
    display: inline-block;
    color: var(--titles);
    font-weight: 500;
    text-decoration: none;
    transition: .4s color;
}

.chips a:hover {
    color: var(--accent);
}

.hero-benefits {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 18px 0 0;
    justify-content: center;
    max-width: 944px;
    margin: 0 auto;
    margin-top: 80px;
}

.hero-benefits li {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 10px 12px;
    border-radius: 10px;
    background: var(--inputs);
    color: var(--titles);
    line-height: 24px;
    max-width: 306px;
    width: 100%;
    font-weight: 500;
}

.hero-benefits p {
    margin: 0;
}

.hero-benefits li .icon {
    min-width: 48px;
    height: 48px;
    align-items: center;
    display: flex;
}

.glow {
    position: absolute;
    pointer-events: none;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    max-width: 50vw;
    height: 300px;
    z-index: -1;
}

.glow-1 {
    background-image: url(../img/bg/main-1.png);
    top: 0;
    right: 0;
}

.glow-2 {
    background-image: url(../img/bg/main-2.png);
    top: -110px;
    left: -380px;
    height: 457px;
    width: 692px;
}

.glow-3 {
    background-image: url(../img/bg/main-3.png);
    bottom: 160px;
    right: -320px;
    width: 610px;
    height: 480px;
}

.glow-4 {
    background-image: url(../img/bg/main-4.png);
    top: -140px;
    width: 460px;
    height: 460px;
    left: -350px;
}

.glow-5 {
    background-image: url(../img/bg/main-5.png);
    top: -100px;
    width: 700px;
    height: 470px;
    right: -340px;
}

.glow-6 {
    background-image: url(../img/bg/main-6.png);
    top: -100px;
    width: 760px;
    height: 660px;
    left: -380px;
}

.glow-7 {
    background-image: url(../img/bg/main-7.png);
    bottom: 340px;
    width: 513px;
    height: 513px;
    right: -430px;
}

.glow-8 {
    background-image: url(../img/bg/main-8.png);
    top: 0;
    width: 672px;
    height: 672px;
    left: -430px;
}

.glow-9 {
    background-image: url(../img/bg/main-9.png);
    bottom: 0;
    right: -110px;
}

/* Sections */
.section {
    padding-top: 100px;
    position: relative;
}

.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 40px;
}

.section-actions {
    position: relative;
}

.section h2 {
    margin: 0;
    font-size: 32px;
    font-weight: 600;
    line-height: 40px;
    color: var(--titles);
}

.section-foot {
    display: grid;
    place-items: center;
    margin-top: 40px;
}

/* Promo */

.promo-card {
    border-radius: 24px;
    overflow: hidden;
    text-align: center;
    background: var(--inputs);
    padding-bottom: 40px;
    display: block;
    transition: .4s opacity;
}

.promo-card:hover {
    opacity: .7;
}

.promo-media {
    min-height: 160px;
    position: relative;
}

.promo-media img {
    width: 100%;
}

.promo-body {}

.promo h3 {
    margin: 0;
    font-size: 32px;
    font-weight: 600;
    color: var(--titles);
}

.promo p {
    margin: 0;
    margin-top: 8px;
    font-size: 20px;
    color: var(--subtext);
}

/* Benefit cards (wide row) */
.benefit-cards__wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.benefit-card {
    background-color: var(--inputs);
    border-radius: 24px;
    padding: 18px;
    position: relative;
    background-position: top;
    background-size: contain;
    background-repeat: no-repeat;
    text-align: center;
}

.benefit-card:nth-child(1) {
    background-image: url(../img/bg/yellow.svg);
}

.benefit-card:nth-child(2) {
    background-image: url(../img/bg/green.svg);
}

.benefit-card:nth-child(3) {
    background-image: url(../img/bg/purple.svg);
}

.benefit-card_thumb {
    margin-bottom: -40px;
}

.benefit-card__title {
    font-weight: 600;
    font-size: 20px;
    margin: 0;
    margin-bottom: 4px;
    color: var(--titles);
}

.benefit-card__desc {
    margin: 0;
    font-weight: 400;
    font-size: 16px;
    color: var(--text);
}

/* Products */

.product-grid {
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

.product-card {
    position: relative;
    display: grid;
    place-items: center;
    gap: 12px;
    text-align: center;
    align-items: flex-start;
}

.product-card:hover .product-card_thumb {
    opacity: .7;
}

.product-card:hover .product-card_title {
    color: var(--accent);
}

.product-card_thumb {
    max-width: 144px;
    max-height: 144px;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    transition: .4s opacity;
}

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

.product-card_title {
    font-weight: 500;
    color: var(--titles);
    font-size: 16px;
    transition: .4s color;
}

.product-thumb {
    background: linear-gradient(180deg, #26313a, #192128);
}

.product-body {
    padding: 12px;
    display: grid;
    gap: 8px;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-price .price {
    font-weight: 700;
}

.product-price .badge {
    background: rgba(34, 197, 94, .15);
    color: #7ef5b2;
    border: 1px solid rgba(34, 197, 94, .35);
    border-radius: 6px;
    padding: 2px 6px;
    font-size: 12px;
}

.product-title {
    font-size: 14px;
    margin: 0;
}

.product-meta {
    color: var(--text);
    font-size: 12px;
}

/* Dropdown */
.dropdown {
    position: absolute;
    margin-top: 8px;
    right: 0;
    background: #0F0F11;
    border: 1px solid #2a2a2f;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-4px);
    transition: .16s ease;
    z-index: 20;
}

.dropdown.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.dropdown-menu {
    list-style: none;
    margin: 0;
    padding: 6px;
    min-width: 180px;
}

.dropdown-item {
    display: block;
    width: 100%;
    text-align: left;
    background: transparent;
    border: 0;
    color: var(--titles);
    padding: 10px 12px;
    border-radius: 10px;
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
}

.dropdown-item:hover {
    background: var(--inputs);
}

/* Loading state for AJAX grids */
[data-ajax-list] {
    position: relative;
}

[data-ajax-list].is-loading::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .25);
    border-radius: 16px;
    backdrop-filter: blur(2px);
}

/* Games */
.game-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.game-card {
    color: var(--titles);
}

.game-card_thumb {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    margin-bottom: 12px;
}

.game-card_thumb img {
    width: 100%;
}

.game-card_badge {
    position: absolute;
    bottom: 15px;
    left: 10px;
    background: var(--accent);
    border-radius: 17px;
    padding: 4px 8px;
    font-size: 14px;
    line-height: 16px;
}

.game-card_body {}

.game-card_price {}

.game-card_price .price {
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
}

.game-card_price .old-price {
    font-size: 16px;
    color: var(--subtext);
    text-decoration: line-through;
    margin-left: 8px;
}

.game-card_title {
    margin-top: 4px;
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 500;
}

/* USP */
.usp h2 {
    text-align: center;
    margin: 0;
    margin-bottom: 40px;
    font-size: 32px;
    line-height: 40px;
    color: var(--titles);
}

.usp-grid {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 0;
    margin: 0;
}

.usp-item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px;
    border-radius: 24px;
    background: var(--inputs);
    background-image: url(../img/feature-bg.svg);
    background-position: top left;
    background-size: contain;
    background-repeat: no-repeat;
}

.usp-icon {
    display: grid;
    place-items: center;
}

.usp-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    color: var(--titles);
}

.usp-desc {
    color: var(--text);
    font-size: 16px;
    line-height: 24px;
}

/* Footer base tweaks */
.site-footer {
    position: relative;
    background: transparent;
    margin-top: 100px;
}

.footer {
    border-top: 1px solid var(--choose);
    padding: 40px 0;
}

.site-footer .container {
    padding: 16px 0;
}

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

.footer-col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer-menu {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-menu_item {}

.footer-menu_item-label {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: var(--subtext);
}

.footer-menu_item a {
    text-decoration: none;
    color: var(--titles);
    font-weight: 500;
}

.site-footer p {
    margin: 0;
}

.footer-link {
    color: var(--subtext);
    text-decoration: none;
    transition: .4s opacity;
}

.footer-link:hover {
    opacity: .7;
}

.footer-temp-privacy .footer-link {
    color: var(--titles);
}

.footer-socials {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.footer-social {
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--inputs);
    width: 40px;
    height: 40px;
    transition: .4s background;
}

.footer-social:hover {
    background: var(--accent-3);
}

.section-topup {
    position: relative;
}

.footer-menus {
    display: flex;
    gap: 16px;
}

.footer-menu {
    min-width: 144px;
}

.footer-menu a {
    color: var(--titles);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    transition: .4s color;
}

.footer-menu a:hover {
    color: var(--accent);
}

.footer-menu li {
    margin-bottom: 16px;
}

.footer-menu li:last-child {
    margin-bottom: 0;
}


/* icons */
.icon {
    width: 24px;
    height: 24px;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.icon-search {
    background-image: url(../img/icons/icon-search.svg);
}

.icon-lang {
    background-image: url(../img/icons/icon-lang.svg);
}

.icon-currency {
    background-image: url(../img/icons/icon-currency.svg);
}

.icon-chevron-down {
    background-image: url(../img/icons/icon-chevron-down.svg);
}

.icon-chevron-right {
    background-image: url(../img/icons/icon-chevron-right.svg);
}

.icon-vk {
    background-image: url(../img/icons/icon-vk.svg);
}

.icon-youtube {
    background-image: url(../img/icons/icon-youtube.svg);
}

.icon-tg {
    background-image: url(../img/icons/icon-tg.svg);
}

.icon-whatsapp {
    background-image: url(../img/icons/icon-whatsapp.svg);
}

.icon-info {
    background-image: url(../img/icons/icon-info.svg);
    transition: .4s opacity;
}

.icon-info:hover {
    opacity: .7;
}

.icon-safe {
    width: 40px;
    height: 40px;
    background-image: url(../img/icons/icon-safe.svg);
}

.icon-arrows {
    background-image: url(../img/icons/icon-arrows.svg);
    min-width: 24px;
}

.icon-coins {
    background-image: url(../img/icons/icon-coins.svg);
}

.icon-steam-others {
    background-image: url(../img/icons/icon-steam-others.svg);
}

.icon-buy-games {
    background-image: url(../img/icons/icon-buy-games.svg);
}

.icon-close {
    background-image: url(../img/icons/icon-close.svg);
}

.icon-success {
    background-image: url(../img/icons/icon-success.svg);
    width: 40px;
    height: 40px;
}

.product-header {
    background: var(--inputs);
    border-radius: 24px;
    padding: 24px;
    margin-bottom: 40px;
}

.product-header_box {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.product-header_content {
    display: flex;
    gap: 24px;
    width: 100%;
    border-right: 1px solid var(--choose);
    padding-right: 24px;
}

.product-header_thumb {
    width: 100px;
    height: 100px;
    border-radius: 16px;
    overflow: hidden;
}

.product-header_thumb img {
    max-width: 100%;
}

.product-header_title {
    font-size: 24px;
    color: var(--titles);
    line-height: 32px;
    font-weight: 600;
    margin: 0;
}

.product-header_description {
    margin-top: 4px;
    font-size: 16px;
    line-height: 24px;
    color: var(--subtext);
}

.product-header_description p {
    margin: 0;
}

.product-header_sold {
    font-size: 16px;
    line-height: 24px;
    white-space: nowrap;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-header_sold-label {}

.product-header_sold-amount {
    font-weight: 600;
    color: var(--titles);
    margin-top: 4px;
}

.topup {
    display: flex;
    justify-content: space-between;
    gap: 80px;
}

.topup-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
}

.topup-step {
    width: 100%;
}

.topup-sidebar {
    max-width: 304px;
    width: 100%;
}

.topup-sidebar_part:not(:last-child) {
    border-bottom: 1px solid var(--choose);
    padding-bottom: 16px;
    margin-bottom: 16px;
}

.topup-sidebar_part .btn-primary {
    background: var(--accent);
    padding: 12px 16px;
    border-radius: 12px;
    width: 100%;
    color: var(--titles);
}

.topup-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.topup-row:last-child {
    margin-bottom: 0;
}

.topup-sidebar_total {
    color: var(--titles);
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    margin-bottom: 16px;
}

.topup-sidebar_price {}

.topup-sidebar_sale {}

.topup-row .highlight {
    color: var(--accent);
}

.topup-sidebar_safe {
    display: flex;
    gap: 12px;
}

.topup-sidebar_safe .icon {
    min-width: 40px;
}

.topup-sidebar_safe h4 {
    margin: 0;
    font-size: 16px;
    line-height: 24px;
    color: var(--titles);
    font-weight: 600;
}

.topup-sidebar_safe p {
    margin: 0;
    font-size: 16px;
    line-height: 24px;
}

.form-fields {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-fields_row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.form-field_label {
    font-weight: 600;
    color: var(--titles);
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 16px;
}

.form-field_radio {}

.form-field_radio input {
    display: none;
}

.form-field_radio .form-field_text {
    background: var(--inputs);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    gap: 8px;
    align-items: center;
    cursor: pointer;
    transition: .4s background, .4s color;
}

.form-field_radio input:checked+.form-field_text,
.form-field_radio .form-field_text:hover {
    background: var(--choose);
    color: var(--titles);
}

.form-field_text input {
    outline: none;
    border: none;
    background: var(--inputs);
    font-size: 16px;
    border-radius: 12px;
    padding: 12px;
    width: 100%;
    color: var(--titles);
}

.form-field_full {
    width: 100%;
    position: relative;
}

.form-field_full .spinner {
    position: absolute;
    left: 12px;
    top: 12px;
}

.form-field_full .load-data {
    text-indent: -9999px;
}

.auth-controls {
    display: inline-flex;
    gap: 8px;
    justify-content: flex-end;
}

.auth-controls .btn {
    white-space: nowrap;
}

.auth-popup .auth-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
}

.auth-popup .auth-submit {
    width: 100%;
}

.auth-popup .auth-links {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin: 4px 0 0;
}

.auth-popup .auth-links a {
    color: var(--titles);
    font-size: 14px;
}

.auth-popup .form-message {
    font-size: 14px;
    min-height: 18px;
    color: #ff6b6b;
}

.auth-popup .form-message.is-success {
    color: var(--accent);
}

.auth-popup .form-message:empty {
    display: none;
}

.auth-remember {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    font-size: 14px;
    color: var(--text);
    cursor: pointer;
    position: relative;
}

.auth-remember input {
    position: absolute;
    opacity: 0;
    inset: 0;
    cursor: pointer;
}

.auth-remember__box {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    border: 1px solid var(--accent);
    background: var(--inputs);
    display: inline-block;
    flex-shrink: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px 12px;
    transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.auth-remember__text {
    line-height: 1.2;
}

.auth-remember input:checked+.auth-remember__box {
    background-color: var(--accent);
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='11' viewBox='0 0 16 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.800781 4.80005L5.80078 9.80005L14.8008 0.800049' stroke='white' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12);
}

.auth-remember input:focus-visible+.auth-remember__box {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.auth-password-field {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 6px;
    top: 8px;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: opacity .2s ease;
}

.password-toggle:hover {
    opacity: .7;
}


.password-toggle.is-active .password-toggle__icon svg path {
    stroke: var(--accent);
}

.password-toggle.is-active .password-toggle__icon svg circle {
    fill: var(--accent);
}

.privacy-policy h1 {
    color: var(--titles);
}

.privacy-policy strong {
    color: var(--titles);
}

.privacy-policy .wp-block-heading {
    color: var(--titles);
}

.privacy-policy .entry-content ul {
    list-style-type: disc;
    margin-left: 30px;
}

.privacy-policy .wp-block-separator {
    margin: 24px 0;
    color: var(--choose);
}

.privacy-policy .entry-content a {
    color: var(--accent);
}

.privacy-policy .entry-content li {
    list-style-type: disc;
}

.popup-overlay {
    position: fixed;
    z-index: 1000;
    inset: 0;
    background: rgba(15, 23, 42, .55);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    animation: popupFade .2s ease;
}

.popup-overlay.active {
    display: flex;
}

.popup {
    background: var(--inputs);
    border-radius: 24px;
    max-width: 400px;
    width: 100%;
    position: relative;
    padding: 40px;
    text-align: center;
    overflow: scroll;
    max-height: 100vh;
}

.popup__close {
    position: absolute;
    top: 16px;
    right: 16px;
    border: none;
    background: var(--choose);
    width: 32px;
    height: 32px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: .4s opacity;
}

.popup__close:hover {
    opacity: .7;
}

.popup .btn {
    background: var(--choose);
    color: var(--titles);
}

.popup .btn:hover {
    background: var(--hover);
    color: var(--titles);
}

.popup__title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--titles);
    text-align: left;
    margin-top: 0;
}

.popup__body {
    text-align: left;
}

.popup__body p {
    margin: 0 0 16px;
    color: var(--subtext);
}

.popup__body p:last-child {
    margin-bottom: 0;
}

.popup__body a {
    color: var(--accent);
}

.popup__img img {
    margin: 24px auto;
    display: block;
    max-width: 100%;
}

@keyframes popupFade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.form-field_prices {
    display: flex;
    gap: 8px;
    align-items: center;
}

.faq .section-title {
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
}

.faq-item {
    padding-top: 24px;
    margin-top: 24px;
    border-top: 1px solid var(--choose);
}

.faq-item_question {
    font-weight: 600;
    font-size: 20px;
    color: var(--titles);
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: .4s opacity;
}

.faq-item_question:hover {
    opacity: .7;
}

.faq-item_question .icon {
    min-width: 24px;
    transition: .4s transform;
}

.faq-item.active .icon {
    transform: rotate(180deg);
}

.faq-item_answer {
    font-size: 16px;
    line-height: 24px;
    color: var(--subtext);
    margin-top: 8px;
}

.faq-item .faq-item_answer {
    display: none;
}

.faq-item.active .faq-item_answer {
    display: block;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

.linethrough {
    text-decoration: line-through;
}

.currency-label {
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    cursor: default;
    color: var(--titles);
}

/* Responsive */
@media (max-width: 1024px) {
    .icon-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .benefit-cards__wrap {
        grid-template-columns: 1fr 1fr;
    }

    .hero .hero-top {
        grid-template-columns: 1fr;
        justify-items: center;
    }
}

@media (max-width: 767px) {
    .container {
        width: 100%;
        padding: 0 16px;
    }

    .icon-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .hero-benefits {
        grid-template-columns: 1fr;
        padding-top: 0;
        margin-top: 60px;
    }

    .promo-card {
        grid-template-columns: 1fr;
    }

    .benefit-cards__wrap {
        grid-template-columns: 1fr;
    }

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

    .section-services .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .section-foot .btn {
        width: 100%;
        max-width: unset;
    }

    .product-card {
        gap: 4px;
    }

    .section {
        padding-top: 80px;
    }

    .hero {
        padding-top: 60px;
    }

    .hero-title {
        font-size: 32px;
    }

    .glow-1 {
        top: -110px;
        right: 0px;
        left: auto;
        background-position: top left;
        left: 0;
        background-size: cover;
        width: 100%;
        max-width: 100%;
    }

    .glow-2 {
        height: 730px;
    }

    .glow-4 {
        top: -80px;
        height: 830px;
    }

    .glow-5 {
        top: 40px;
        width: 700px;
        height: 840px;
        right: 0;
    }

    .glow-6 {
        bottom: -70%;
        height: 900px;
    }

    .glow-8 {
        height: 960px;
        bottom: -300px;
        top: auto;
    }

    .chips {
        flex-wrap: nowrap;
        justify-content: flex-start;
    }

    .chips li {
        display: flex;
    }

    .chips li a {
        white-space: nowrap;
    }

    .hero-benefits li {
        max-width: 100%;
    }

    .hero-benefits p {
        max-width: 75%;
    }

    .section-head {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .site-footer .glow,
    .section .glow {
        left: 0;
        width: 100%;
        max-width: 100%;
        background-size: cover;
    }

    .hero-top {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-top .top-links {
        display: none;
    }

    .promo-media img {
        width: 100%;
    }

    .promo h3 {
        font-size: 24px;
        line-height: 40px;
    }

    .benefit-card:nth-child(1) {
        background-position: left;
    }

    .benefit-card:nth-child(3) {
        background-position: right;
    }

    .section-actions {
        width: 100%;
    }

    .tab-box {
        width: 100%;
    }

    .tab-box .btn {
        width: 100%;
    }

    .game-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .usp .container {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .usp h2 {
        font-size: 24px;
        line-height: 32px;
        padding: 0 16px;
    }

    .site-footer .glow {
        display: none;
    }

    .section-actions .btn {
        width: 100%;
        justify-content: space-between;
    }

    .btn.tab-box_btn {
        justify-content: center;
    }

    .footer {
        padding: 40px 16px;
    }

    .footer-socials {
        padding-top: 24px;
        padding-bottom: 40px;
    }

    .footer-row {
        flex-direction: column;
    }

    .footer-menus {
        margin-top: 24px;
    }

    .footer-menu {
        width: 50%;
    }

    .footer-privacy {
        padding-top: 40px;
        border-top: 1px solid var(--choose);
    }

    .footer-privacy p {
        margin-top: 8px;
        color: var(--subtext);
    }

    .footer-socials {
        justify-content: flex-start;
    }

    .topup {
        flex-direction: column;
        gap: 40px;
    }

    .product-header_box {
        justify-content: flex-start;
    }

    .product-header_content {
        width: auto;
    }

    .product-header_title {
        margin-top: 24px;
    }

    .topup-sidebar {
        max-width: unset;
    }
}

/* ===== Order status page ===== */
.order {
    padding: 80px 0;
}

.order__header {
    margin-bottom: 32px;
    background: var(--inputs);
    border-radius: 24px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.order__header-status {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    border: 4px solid transparent;
}

.order__header-lead {
    margin: 0;
    max-width: 500px;
}

.order__header-box {
    display: flex;
    align-items: center;
    gap: 24px;
    width: 100%;
    border-right: 1px solid var(--choose);
    padding-right: 24px;
    margin-right: 24px;
}

.order__header-title {
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
    color: var(--titles);
    margin-bottom: 4px;
    margin-top: 0;
}

.order__header-number {
    white-space: nowrap;
}

.order__header-number--label {
    font-size: 16px;
    color: var(--subtext);
}

.order__header-number--id {
    font-weight: 600;
    font-size: 16px;
    color: var(--titles);
}

.order__header-content {}

.order__title {
    font-size: 32px;
    margin-bottom: 8px;
    margin-top: 0;
}

.order__card {
    margin-bottom: 32px;
    display: flex;
    gap: 80px;
    justify-content: space-between;
}

.order__card-info {
    width: 100%;
}

.order__card-info h2 {
    color: var(--titles);
    margin: 0;
    margin-bottom: 24px;
}

.order__lead {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.order__highlights {
    margin: 0 0 24px 0;
    padding-left: 20px;
}

.order__highlights li {
    list-style-type: disc;
}

.order__highlights li+li {
    margin-top: 8px;
}

.order__actions p {
    margin-bottom: 8px;
}

.order__meta {
    padding: 16px 0;
    border-top: 1px solid var(--choose);
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 16px;
}

.order__meta-label {
    color: var(--subtext);
    font-weight: 400;
    width: 50%;
}

.order__meta-value {
    color: var(--titles);
    font-weight: 500;
    width: 50%;
}

.order__footer {
    text-align: center;
}

.order__not-found p {
    margin-top: 0;
    margin-bottom: 40px;
}

.order__not-found .btn {
    max-width: max-content;
}

.order--paid .order__header-status {
    border-color: #17c964;
}

.order--pending .order__header-status {
    border-color: #f5a623;
}

.order--failed .order__header-status {
    border-color: #f53d5c;
}

.order--expired .order__header-status {
    border-color: #9fa6bf;
}

.error404 {
    height: 100vh;
    flex-direction: column;
    display: flex;
    justify-content: space-between;
}

.error404 .site-main {
    text-align: center;
    max-width: 320px;
    margin: 0 auto;
}

.error404 .top-links {
    display: none;
}

.error404 h1 {
    color: var(--titles);
    font-size: 24px;
}

.error404 .btn {
    background: var(--accent);
    color: var(--titles);
}

.service-commission {
    display: flex;
    gap: 8px;
}

@media (max-width: 768px) {
    .order {
        padding: 48px 0;
    }

    .order__title {
        font-size: 26px;
    }

    .order__card-info h2 {
        font-size: 20px;
    }

    .footer-col.text-center {
        text-align: left;
        order: 3;
    }

    /* footer temp */
    .footer-row {
        gap: 16px;
    }

    .order__header-box {
        flex-direction: column;
        align-items: flex-start;
        padding-right: 0;
        border: 0;
    }

    .order__header-status-box {
        display: flex;
        align-items: center;
    }

    .order__header-status {
        width: 64px;
        height: 64px;
    }

    .order__header-number {
        border-left: 1px solid var(--choose);
        padding-left: 24px;
        margin-left: 24px;
    }

    .order__card {
        flex-direction: column;
        gap: 40px;
    }

    .order__meta:last-child {
        border-bottom: 1px solid var(--choose);
    }
}

.account {
    padding: 60px 0 80px;
    color: var(--titles);
}

.account-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 24px;
    align-items: start;
}

.account-sidebar {
    background: var(--inputs);
    border: 1px solid var(--hover);
    border-radius: var(--radius);
    padding: 20px;
    position: sticky;
    top: 30px;
}

.account-user {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 20px;
}

.account-avatar {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    overflow: hidden;
    background: var(--background);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.account-user__name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 2px;
}

.account-user__email {
    color: var(--subtext);
    font-size: 14px;
    word-break: break-all;
}

.account-nav {
    display: grid;
    margin-bottom: 16px;
    border-top: 1px solid var(--choose);
}

.account-nav__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    color: var(--titles);
    text-decoration: none;
    transition: color .2s ease;
    border-bottom: 1px solid var(--choose);
}

.account-nav__item.is-active {
    color: var(--accent);
}

.account-logout {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    width: 100%;
    padding: 12px 16px;
    color: var(--titles);
    text-decoration: none;
    font-weight: 500;
    background: var(--background);
}

.account-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.account-header {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.account-title {
    font-size: 28px;
    margin: 0;
}

.account-lead {
    color: var(--subtext);
    margin: 0;
    max-width: 720px;
}

.account-card {
    background: var(--inputs);
    border: 1px solid var(--hover);
    border-radius: var(--radius);
    padding: 20px;
}

.account-card__title {
    margin: 0 0 12px;
    font-size: 18px;
}

.account-form .form-field {
    margin-bottom: 14px;
}

.account-form label {
    display: block;
    margin-bottom: 6px;
    color: var(--subtext);
    font-size: 14px;
}

.account-tabs {
    display: block;
    width: 100%;
}

.account-tabs__list {
    display: flex;
    gap: 8px;
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow: auto;
    max-width: 100%;
}

.account-tab {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 70px;
    padding: 11px 12px;
    border-radius: 12px;
    color: var(--subtext);
    text-decoration: none;
    background: var(--inputs);
    transition: background .2s ease, border-color .2s ease;
}

.account-tab.is-active {
    background: var(--choose);
    color: var(--titles);
}

.account-orders {
    display: grid;
    gap: 12px;
}

.account-order {
    padding: 16px;
    border: 1px solid var(--hover);
    background: var(--inputs);
    border-radius: var(--radius);
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: space-between;
    color: #FFF;
    transition: .4s opacity;
}

.account-order:hover {
    opacity: .7;
}

.account-order__content {
    display: flex;
    gap: 24px;
    align-items: center;
}

.account-order__product {
    font-weight: 600;
    font-size: 16px;
}

.account-order__status {
    padding: 6px 10px;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    border: 4px solid var(--hover);
}

.account-order__status.status--paid {
    border-color: var(--accent);
}

.account-order__status.status--pending {
    border-color: #ffb546;
}

.account-order__status.status--cancelled {
    border-color: #ff6b6b;
}

.account-order__status.status--muted {
    color: var(--subtext);
}

.account-order__meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.account-order__meta-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.account-order__meta-item--id,
.account-order__status-text {
    color: var(--subtext);
}

.account-order .meta-label {
    color: var(--subtext);
    font-size: 13px;
}

.account-order .meta-value {
    font-weight: 600;
}

.account-empty {
    padding: 18px;
    border-radius: var(--radius);
    border: 1px dashed var(--hover);
    color: var(--subtext);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.account-empty p {
    margin: 0;
}

.account-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.account-columns {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.account-logins {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.account-logins__item {
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    background: var(--hover);
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
    border: 1px solid transparent;
}

.account-logins__game {
    font-weight: 600;
}

.account-logins__login {
    color: var(--subtext);
    font-size: 14px;
    word-break: break-word;
}

.account-dropdown {
    display: none;
}

.account-dropdown__panel {
    background: var(--inputs);
    border: 1px solid var(--hover);
    border-radius: var(--radius);
}

.account-dropdown__close {
    background: transparent;
    border: none;
    padding: 0;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.account-sidebar--dropdown {
    border: none;
    background: transparent;
    padding: 0;
    position: static;
}

@media screen and (max-width: 980px) {
    .account-layout {
        grid-template-columns: 1fr;
    }

    .account-sidebar {
        position: static;
    }

    .account-title {
        font-size: 24px;
    }

    .account-tabs__list {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 4px;
    }

    .account-tab {
        flex: 0 0 auto;
    }

    .account-dropdown {
        position: fixed;
        inset: 0;
        z-index: 1100;
    }

    .account-dropdown__panel {
        position: absolute;
        inset: 12px 12px auto 12px;
        top: 110px;
        max-height: calc(100vh - 24px);
        overflow-y: auto;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        padding: 12px;
    }

    .account-dropdown__backdrop {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.35);
    }

    .account-dropdown.is-open {
        display: block;
    }

    body.account-dropdown-open {
        overflow: hidden;
    }

    .account-order {
        justify-content: flex-start;
        align-items: flex-start;
        flex-direction: column;
    }
}

.btn-primary {
    background: var(--accent);
    padding: 12px 16px;
    border-radius: 12px;
    width: 100%;
    color: var(--titles);
}

.btn-primary:hover {
    background: var(--accent-2);
}

.popup .btn-primary {
    background: var(--accent);
}

.popup .btn-secondary {
    background: var(--choose);
    width: 100%;
    display: block;
    max-width: 100%;
    text-align: center;
}

.popup .form-field_flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.account .form-field_text input,
.popup .form-field_text input {
    background: var(--choose);
}

.account .btn-primary {
    width: auto;
    margin: 0 auto;
}

.popup .privacy-text {
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;
    text-align: center;
    color: var(--subtext);
}

[data-password-change-email] {
    color: var(--accent);
}

.icon-profile {
    background: var(--choose);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: none;
}

.icon-profile svg {
    width: 24px;
    height: 24px;
}

.account-dropdown-open .icon-profile_close {
    display: flex;
}

.account-dropdown-open .icon-profile_user {
    display: none;
}

.icon-profile_close {
    display: none;
}

.account-create {
    padding-top: 0;
    margin-top: 100px;
    background-color: var(--inputs);
    border-radius: 24px;
    background-image: url(../img/bg-account.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
}

.account-create__body {
    padding: 40px;
}

.account-create__title {
    font-weight: 600;
    font-size: 32px;
    line-height: 40px;
    color: var(--titles);
    margin-bottom: 8px;
}

.account-create p {
    margin: 0;
    margin-bottom: 40px;
    color: var(--subtext);
    font-size: 20px;
    max-width: 380px;
}

.account-create .btn {
    max-width: max-content;
}

@media screen and (max-width: 767px) {
    .account-create {
        background-image: none;
    }

    .account-create__body {
        padding: 30px;
    }

    .account-create .btn {
        max-width: 100%;
    }

    .account-tabs {
        width: calc(100vw - 16px);
    }

    .account-content {
        max-width: calc(100vw - 36px);
    }

    .account-order .btn-secondary {
        background: var(--choose);
        width: 100%;
        max-width: unset;
    }

    .account .btn-primary {
        max-width: unset;
        width: 100%;
    }
}