:root {
    --background: #1B183A;
    --inputs: #34314E;
    --hover: #262629;
    --choose: #343438;
    --subtext: #7D7D85;
    --text: #9aa3ae;
    --titles: #FFF;
    --accent: #F32063;
    --accent-2: #D50245;
    --accent-3: #B70027;
    --radius: 16px;
    --radius-sm: 10px;
    --container: 944px;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Regular.ttf');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Medium.ttf');
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-SemiBold.ttf');
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Bold.ttf');
    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: 'Roboto', 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(--titles);
    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 0;
    overflow: hidden;
    padding-top: 100px;
}

.hero-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
}

.logo {
    transition: .4s opacity;
}

.logo:hover {
    opacity: .7;
}

.top-links {
    display: inline-flex;
    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;
    color: var(--titles);
}

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

.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-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-icon path {
    stroke: #F32063;
}

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

.search-wrapper {
    position: relative;
    max-width: 624px;
    margin: 40px 0 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;
    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;
    background-image: url(../img/benefit.svg);
}

.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: -9vw;
    background-position: right top;
}


.glow-2 {
    background-image: url(../img/bg/main-2.png);
    bottom: -90px;
    left: 0;
    width: 430px;
    height: 390px;
}

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

.faq {
    padding-top: 100px;
}

.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-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.png);
    background-position: right bottom;
    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;
    max-width: 300px;
}

/* 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-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: #131414;
    font-weight: 600;
}

.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-field {}

.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);
    font-weight: 600;
    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;
}

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

    .home .section {
        padding-top: 0;
    }

    .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 {
    text-align: center;
    padding: 60px 32px;
    background: var(--titles);
    border-radius: 16px;
    box-shadow: 0 16px 32px rgba(24, 26, 36, 0.08);
}

.order__not-found h1 {
    margin-bottom: 12px;
}

.order__not-found p {
    margin-bottom: 24px;
    color: #343848;
}

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

.title-404 {
    font-weight: 600;
    font-size: 120px;
    line-height: 160px;
    text-align: center;
    color: #FFFFFF;
}

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

.home section .container {
    padding-bottom: 100px;
    margin-bottom: 80px;
    border-bottom: 1px solid var(--choose);
}

.home section:last-child .container {
    margin-bottom: 0;
    padding-bottom: 0;
    border: 0;
}

@media (max-width: 768px) {
    .home section .container {
        padding-bottom: 60px;
        margin-bottom: 60px;
        border-bottom: 1px solid var(--choose);
    }

    .glow {
        display: none;
    }

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