:root {
    --bg: #101321;
    --bg-strong: #0b0f1b;
    --surface: rgba(27, 33, 54, 0.92);
    --border: rgba(255, 255, 255, 0.1);
    --text: #f3f5ff;
    --muted: #bcc4de;
    --accent: #6b63ff;
    --accent-strong: #8a6dff;
    --accent-cyan: #4fc8ff;
    --gold: #f2c15c;
    --gold-strong: #ffaf54;
    --shadow: 0 24px 70px rgba(4, 7, 16, 0.5);
    --container: min(1120px, calc(100% - 32px));
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    padding-bottom: 132px;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.65;
    color: var(--text);
    background:
        radial-gradient(circle at top right, rgba(107, 99, 255, 0.28), transparent 26%),
        radial-gradient(circle at top left, rgba(79, 200, 255, 0.16), transparent 24%),
        linear-gradient(180deg, #191d2f 0%, #121625 30%, #0f1220 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 28%),
        radial-gradient(circle at 50% 0, rgba(242, 193, 92, 0.08), transparent 38%);
    z-index: 0;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: var(--accent-cyan);
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

a:hover {
    color: #ffffff;
}

p,
li,
td,
th {
    color: var(--muted);
}

#page.site {
    position: relative;
    z-index: 1;
    min-height: 100vh;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(18px);
    background: rgba(10, 13, 24, 0.82);
    border-bottom: 1px solid var(--border);
}

.header__nav {
    width: var(--container);
    margin: 0 auto;
    padding: 18px 0;
    display: flex;
    align-items: center;
    gap: 24px;
}

.header__nav-left {
    display: none;
}

.logo__image {
    width: 118px;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.32));
}

.header__social-box {
    margin-left: auto;
}

.header__social-icon {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header__social-icon__item {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.header__social-icon__twitter::before {
    content: "X";
}

.header__social-icon__google::before {
    content: "G";
}

.header__social-icon__facebook::before {
    content: "f";
}

.header__social-icon__tumbler::before {
    content: "t";
}

.header__nav-login {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn,
.btn-secondary,
.cookie-banner__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 20px;
    border: 0;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover,
.btn-secondary:hover,
.cookie-banner__button:hover {
    transform: translateY(-1px);
}

.btn {
    color: #ffffff;
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    box-shadow: 0 14px 30px rgba(107, 99, 255, 0.28);
}

.btn-secondary,
.cookie-banner__button {
    color: #171b29;
    background: linear-gradient(135deg, var(--gold), var(--gold-strong));
    box-shadow: 0 14px 30px rgba(255, 175, 84, 0.24);
}

.banner,
.hide-container,
.footer {
    position: relative;
    z-index: 1;
}

.banner {
    padding: 36px 0 0;
}

.banner__inner {
    width: var(--container);
    margin: 0 auto;
}

.swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.swiper-slide,
.swiper-link {
    height: 100%;
}

.swiper-link {
    display: block;
    padding: 10px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(46, 53, 84, 0.92), rgba(23, 28, 46, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
}

.swiper-link img {
    width: 100%;
    min-height: 175px;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.hide-container {
    padding: 42px 0 0;
}

.description-text,
.footer {
    width: var(--container);
    margin: 0 auto;
    background: linear-gradient(180deg, var(--surface) 0%, rgba(19, 24, 39, 0.96) 100%);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.description-text {
    padding: clamp(24px, 3vw, 40px);
    border-radius: 32px;
}

.entry-title {
    margin: 0 0 26px;
    color: #ffffff;
    font-family: "Roboto Slab", Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.08;
    letter-spacing: 0.02em;
}

.entry-title::after {
    content: "";
    display: block;
    width: 96px;
    height: 4px;
    margin-top: 18px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--gold), var(--accent));
}

.hide-text > p:first-of-type {
    margin-top: 0;
    color: #ffffff;
    font-size: 1.05rem;
}

.description-text h2,
.description-text h3,
.description-text .wp-block-heading {
    margin: 2.6rem 0 1rem;
    color: #ffffff;
    font-family: "Roboto Slab", Georgia, "Times New Roman", serif;
    font-size: clamp(1.45rem, 2.2vw, 2rem);
    line-height: 1.2;
}

.description-text h2::after,
.description-text h3::after,
.description-text .wp-block-heading::after {
    content: "";
    display: block;
    width: 72px;
    height: 3px;
    margin-top: 12px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent-cyan), transparent);
}

.description-text ul {
    margin: 0 0 1.5rem;
    padding-left: 1.2rem;
}

.description-text li {
    margin-bottom: 0.55rem;
}

.description-text table,
.main_figure_table {
    width: 100%;
    margin: 1.6rem 0 2rem;
    display: block;
    overflow-x: auto;
    border-collapse: collapse;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.02);
}

.description-text tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.02);
}

.description-text thead td,
.description-text thead th {
    color: #ffffff;
    background: rgba(107, 99, 255, 0.2);
    font-weight: 700;
}

.description-text td,
.description-text th {
    min-width: 180px;
    padding: 14px 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    vertical-align: top;
}

.description-text td:last-child,
.description-text th:last-child {
    border-right: 0;
}

.description-text tr:last-child td,
.description-text tr:last-child th {
    border-bottom: 0;
}

.description-text td:first-child,
.description-text th:first-child {
    color: #ffffff;
    font-weight: 600;
}

.aligncenter,
.wp-block-image {
    max-width: 820px;
    margin: 2rem auto 0;
}

.wp-block-image figure,
figure.aligncenter {
    margin: 0;
    padding: 10px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.wp-block-image img,
figure.aligncenter img {
    border-radius: 16px;
}

.footer {
    margin-top: 34px;
    padding: 28px;
    border-radius: 28px 28px 0 0;
}

.payment-box,
.certificate-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.payment-box__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.payment-box__link::before {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.05em;
    content: "PAY";
}

.visa-icon::before {
    content: "VS";
}

.maestro-icon::before {
    content: "MS";
}

.qiwi-icon::before {
    content: "QI";
}

.webmoney-icon::before {
    content: "WM";
}

.yandex-wallet-icon::before {
    content: "YM";
}

.skrill-icon::before {
    content: "SK";
}

.neteller-icon::before {
    content: "NT";
}

.payment-box__text,
.certificate-list__item span {
    color: #ffffff;
    font-size: 0.95rem;
}

.certificate-list {
    margin-top: 24px;
}

.certificate-list__item span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 132px;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.icon-pagi::before {
    content: "PAGI";
}

.icon-comodo::before {
    content: "COMODO SSL";
}

.important-know,
.provider-list,
.footer-information,
.game-filter,
#games,
.burger {
    display: none !important;
}

.cookie-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 50;
    display: flex;
    justify-content: center;
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-banner__inner {
    width: min(980px, 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 22px;
    border-radius: 22px;
    background: rgba(8, 11, 19, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
    backdrop-filter: blur(18px);
}

.cookie-banner__text {
    margin: 0;
    font-size: 0.96rem;
}

.cookie-banner__text strong {
    color: #ffffff;
}

@media (max-width: 960px) {
    .header__nav {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .header__social-box {
        margin-left: 0;
        order: 3;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .header__nav-login {
        order: 2;
        width: 100%;
        justify-content: center;
    }

    .swiper-wrapper {
        grid-template-columns: 1fr;
    }

    .footer {
        border-radius: 28px;
    }
}

@media (max-width: 720px) {
    body {
        padding-bottom: 168px;
    }

    .header__social-box {
        display: none;
    }

    .header__nav-login {
        flex-direction: column;
    }

    .btn,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
    }

    .description-text,
    .footer {
        width: min(100% - 24px, 1120px);
        padding: 22px;
    }

    .cookie-banner__inner {
        flex-direction: column;
        align-items: stretch;
        text-align: left;
    }

    .cookie-banner__button {
        width: 100%;
    }
}

@media (max-width: 520px) {
    body {
        padding-bottom: 196px;
    }

    .banner {
        padding-top: 22px;
    }

    .payment-box,
    .certificate-list {
        flex-direction: column;
    }

    .payment-box__link,
    .certificate-list__item span {
        width: 100%;
        justify-content: flex-start;
    }
}
