:root {
    --cl-bg: #0e0e0e;
    --cl-header: #1b1c1d;
    --cl-red: #e50539;
    --cl-green: #28a909;
    --cl-white: #f0f0f0;
    --cl-muted: #9a9a9a;
    --cl-border: #2a2a2a;
    --cl-card: #161718;
    --cl-card2: #1e1f21;
    --radius: 10px;
    --transition: 0.25s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background: var(--cl-bg);
    color: var(--cl-white);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    color: var(--cl-red);
    text-decoration: none;
    transition: opacity var(--transition);
}

a:hover {
    opacity: .8;
}

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

.b3x7k {
    display: none;
}

.x9q2m {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}

.y4r1t {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.z6w2p {
    background: var(--cl-card);
    border: 1px solid var(--cl-border);
    border-radius: var(--radius);
    padding: 24px;
}

.z6w2p--alt {
    background: var(--cl-card2);
}

.a8m3s {
    margin-bottom: 12px;
}

.k2n9f {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--cl-white);
    line-height: 1.3;
}

.k2n9f--sm {
    font-size: 1.2rem;
}

.k2n9f--xs {
    font-size: 1rem;
}

.p7c4v {
    color: var(--cl-muted);
    font-size: .92rem;
    line-height: 1.6;
}

.section-gap {
    padding: 56px 0;
}

.section-gap--sm {
    padding: 32px 0;
}

.mt1 {
    margin-top: 8px;
}

.mt2 {
    margin-top: 16px;
}

.mt3 {
    margin-top: 24px;
}

.mt4 {
    margin-top: 32px;
}

.mb1 {
    margin-bottom: 8px;
}

.mb2 {
    margin-bottom: 16px;
}

.mb3 {
    margin-bottom: 24px;
}

.mb4 {
    margin-bottom: 32px;
}

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

.text-muted {
    color: var(--cl-muted);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 600;
    font-size: .9rem;
    cursor: pointer;
    border: none;
    transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
    white-space: nowrap;
    text-decoration: none;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .4);
    opacity: 1;
}

.btn:active {
    transform: translateY(0);
}

.btn--red {
    background: var(--cl-red);
    color: #fff;
}

.btn--red:hover {
    box-shadow: 0 6px 20px rgba(229, 5, 57, .4);
}

.btn--green {
    background: var(--cl-green);
    color: #fff;
}

.btn--green:hover {
    box-shadow: 0 6px 20px rgba(40, 169, 9, .4);
}

.btn--outline {
    background: transparent;
    color: var(--cl-white);
    border: 1.5px solid var(--cl-border);
}

.btn--outline:hover {
    border-color: var(--cl-red);
    color: var(--cl-red);
}

.btn--lg {
    padding: 14px 32px;
    font-size: 1rem;
    border-radius: 10px;
}

.btn--sm {
    padding: 7px 14px;
    font-size: .82rem;
}

.btn--full {
    width: 100%;
    justify-content: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: .75rem;
    font-weight: 600;
}

.badge--green {
    background: rgba(40, 169, 9, .15);
    color: var(--cl-green);
    border: 1px solid rgba(40, 169, 9, .3);
}

.badge--red {
    background: rgba(229, 5, 57, .15);
    color: var(--cl-red);
    border: 1px solid rgba(229, 5, 57, .3);
}

.badge--gold {
    background: rgba(255, 195, 0, .1);
    color: #ffc300;
    border: 1px solid rgba(255, 195, 0, .25);
}

#site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--cl-header);
    border-bottom: 1px solid var(--cl-border);
    box-shadow: 0 2px 12px rgba(0, 0, 0, .5);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: 16px;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.header-logo img {
    height: 38px;
    width: auto;
}

.header-logo-text {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--cl-white);
    letter-spacing: .5px;
}

.header-logo-text span {
    color: var(--cl-red);
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
}

.header-nav a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 7px 12px;
    border-radius: 7px;
    color: var(--cl-white);
    font-size: .87rem;
    font-weight: 500;
    transition: background var(--transition), color var(--transition);
}

.header-nav a:hover, .header-nav a.active {
    background: rgba(229, 5, 57, .12);
    color: var(--cl-red);
}

.header-nav svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.online-counter {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .8rem;
    color: var(--cl-muted);
    padding: 5px 10px;
    background: rgba(40, 169, 9, .08);
    border: 1px solid rgba(40, 169, 9, .2);
    border-radius: 20px;
}

.online-counter .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--cl-green);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: .5;
        transform: scale(1.3);
    }
}

.online-counter strong {
    color: var(--cl-green);
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none;
}

.burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--cl-white);
    border-radius: 2px;
    transition: all var(--transition);
}

.burger.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger.is-active span:nth-child(2) {
    opacity: 0;
}

.burger.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: var(--cl-header);
    border-top: 1px solid var(--cl-border);
    padding: 12px 16px 16px;
}

.mobile-menu.is-open {
    display: flex;
}

.mobile-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 8px;
    color: var(--cl-white);
    font-size: .9rem;
    font-weight: 500;
    transition: background var(--transition);
}

.mobile-menu a:hover {
    background: rgba(255, 255, 255, .07);
}

.mobile-menu a svg {
    width: 16px;
    height: 16px;
}

.mobile-menu-btns {
    display: flex;
    gap: 8px;
    padding-top: 8px;
    border-top: 1px solid var(--cl-border);
    margin-top: 4px;
}

.mobile-menu-btns .btn {
    flex: 1;
    justify-content: center;
}

#hero {
    background: var(--cl-header);
    border-bottom: 1px solid var(--cl-border);
    overflow: hidden;
}

.hero-inner {
    display: flex;
    align-items: stretch;
    gap: 24px;
    min-height: 460px;
}

.hero-banner {
    flex: 1;
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 340px;
    background: linear-gradient(135deg, #1a0008 0%, #0e0e0e 100%);
}

.hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.hero-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(14, 14, 14, .85) 0%, rgba(14, 14, 14, .2) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(229, 5, 57, .15);
    border: 1px solid rgba(229, 5, 57, .3);
    color: var(--cl-red);
    font-size: .8rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
    width: fit-content;
}

.hero-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--cl-white);
    line-height: 1.2;
    margin-bottom: 12px;
    text-wrap: balance;
}

.hero-title span {
    color: var(--cl-red);
}

.hero-subtitle {
    color: #b0b0b0;
    font-size: 1rem;
    margin-bottom: 24px;
    max-width: 480px;
    line-height: 1.6;
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 24px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat strong {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--cl-white);
}

.hero-stat span {
    font-size: .75rem;
    color: var(--cl-muted);
}

.hero-promo {
    width: 320px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 28px 0;
}

.promo-card {
    background: var(--cl-card);
    border: 1px solid var(--cl-border);
    border-radius: var(--radius);
    padding: 20px;
    position: relative;
}

.promo-card--featured {
    border-color: rgba(229, 5, 57, .4);
    background: linear-gradient(135deg, #1c0509 0%, var(--cl-card) 60%);
}

.promo-label {
    font-size: .72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--cl-muted);
    margin-bottom: 10px;
}

.promo-code-box {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .04);
    border: 1.5px dashed rgba(229, 5, 57, .5);
    border-radius: 8px;
    padding: 12px 14px;
    margin-bottom: 12px;
}

.promo-code {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--cl-white);
    letter-spacing: .12em;
    flex: 1;
}

.copy-btn {
    background: none;
    border: none;
    color: var(--cl-muted);
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: color var(--transition), background var(--transition);
    display: flex;
    align-items: center;
}

.copy-btn:hover {
    color: var(--cl-green);
    background: rgba(40, 169, 9, .1);
}

.copy-btn svg {
    width: 18px;
    height: 18px;
}

.promo-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.promo-timer {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: .78rem;
    color: #ffc300;
}

.promo-btns {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.promo-desc {
    font-size: .82rem;
    color: var(--cl-muted);
    margin-bottom: 14px;
    line-height: 1.5;
}

.promo-bonus-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--cl-green);
    line-height: 1;
    margin-bottom: 4px;
}

.promo-bonus-sub {
    font-size: .8rem;
    color: var(--cl-muted);
    margin-bottom: 14px;
}

#pros-cons {
}

.pros-cons-grid {
    display: flex;
    gap: 20px;
}

.pros-col, .cons-col {
    flex: 1;
    background: var(--cl-card);
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid var(--cl-border);
}

.pros-col {
    border-top: 3px solid var(--cl-green);
}

.cons-col {
    border-top: 3px solid var(--cl-red);
}

.col-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.pros-col .col-title {
    color: var(--cl-green);
}

.cons-col .col-title {
    color: var(--cl-red);
}

.pros-list, .cons-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pros-list li, .cons-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: .9rem;
    line-height: 1.5;
    color: #d0d0d0;
}

.pros-list li::before {
    content: '';
    display: inline-flex;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(40, 169, 9, .15);
    border: 1.5px solid var(--cl-green);
    flex-shrink: 0;
    margin-top: 2px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%2328a909' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
}

.cons-list li::before {
    content: '';
    display: inline-flex;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(229, 5, 57, .1);
    border: 1.5px solid var(--cl-red);
    flex-shrink: 0;
    margin-top: 2px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M3 3l6 6M9 3l-6 6' stroke='%23e50539' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
}

#winners {
}

.section-head {
    margin-bottom: 28px;
}

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

.winners-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius);
}

.winners-table {
    width: 100%;
    min-width: 520px;
    border-collapse: collapse;
    background: var(--cl-card);
    border-radius: var(--radius);
    overflow: hidden;
}

.winners-table thead th {
    background: rgba(229, 5, 57, .1);
    color: var(--cl-muted);
    font-size: .8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--cl-border);
}

.winners-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, .04);
    transition: background var(--transition);
}

.winners-table tbody tr:hover {
    background: rgba(255, 255, 255, .03);
}

.winners-table tbody tr:last-child {
    border-bottom: none;
}

.winners-table td {
    padding: 11px 16px;
    font-size: .88rem;
    color: var(--cl-white);
}

.winner-rank {
    font-weight: 700;
    color: var(--cl-muted);
    width: 40px;
}

.winner-rank.gold {
    color: #ffc300;
}

.winner-rank.silver {
    color: #c0c0c0;
}

.winner-rank.bronze {
    color: #cd7f32;
}

.winner-nick {
    font-weight: 500;
}

.winner-mult {
    font-weight: 700;
    color: var(--cl-red);
}

.winner-amount {
    font-weight: 700;
    color: var(--cl-green);
}

.winner-time {
    color: var(--cl-muted);
    font-size: .8rem;
}

.refresh-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--cl-border);
    color: var(--cl-muted);
    padding: 7px 14px;
    border-radius: 7px;
    font-size: .82rem;
    cursor: pointer;
    transition: all var(--transition);
}

.refresh-btn:hover {
    border-color: var(--cl-red);
    color: var(--cl-red);
}

.refresh-btn svg {
    width: 14px;
    height: 14px;
}

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

.refresh-btn.spinning svg {
    animation: spin .6s linear infinite;
}

#app-info {
}

.app-grid {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.app-table-wrap {
    flex: 1;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.app-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid var(--cl-border);
    border-radius: var(--radius);
    overflow: hidden;
}

.app-table tr {
    border-bottom: 1px solid var(--cl-border);
}

.app-table tr:last-child {
    border-bottom: none;
}

.app-table td {
    padding: 12px 16px;
    font-size: .9rem;
}

.app-table td:first-child {
    color: var(--cl-muted);
    font-weight: 500;
    width: 180px;
    background: rgba(255, 255, 255, .02);
}

.app-table td:last-child {
    color: var(--cl-white);
    font-weight: 500;
}

.app-downloads {
    width: 260px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dl-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 18px;
    border-radius: 10px;
    background: var(--cl-card);
    border: 1px solid var(--cl-border);
    color: var(--cl-white);
    text-decoration: none;
    transition: all var(--transition);
    font-size: .9rem;
}

.dl-btn:hover {
    border-color: var(--cl-red);
    background: rgba(229, 5, 57, .06);
    transform: translateY(-2px);
    opacity: 1;
}

.dl-btn svg {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
}

.dl-btn-text {
    display: flex;
    flex-direction: column;
}

.dl-btn-text small {
    font-size: .72rem;
    color: var(--cl-muted);
}

.dl-btn-text strong {
    font-size: .95rem;
    font-weight: 700;
}

#demo-game {
}

.demo-wrap {
    background: var(--cl-card);
    border: 1px solid var(--cl-border);
    border-radius: var(--radius);
}

.demo-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: rgba(255, 255, 255, .03);
    border-bottom: 1px solid var(--cl-border);
    flex-wrap: wrap;
    gap: 10px;
}

.demo-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.demo-tag {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: .82rem;
    color: var(--cl-muted);
}

.demo-iframe-wrap {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #000;
}

.demo-iframe-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.demo-iframe-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 50% 60%, #1a0008 0%, #0e0e0e 70%);
    gap: 16px;
}

.plane-anim {
    font-size: 3rem;
    animation: fly 3s ease-in-out infinite;
}

@keyframes fly {
    0%, 100% {
        transform: translate(0, 0) rotate(-15deg);
    }
    50% {
        transform: translate(20px, -20px) rotate(-15deg);
    }
}

.demo-cta {
    padding: 16px 20px;
    border-top: 1px solid var(--cl-border);
}

.demo-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

#faq {
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: var(--cl-card);
    border: 1px solid var(--cl-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color var(--transition);
}

.faq-item.is-open {
    border-color: rgba(229, 5, 57, .35);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    cursor: pointer;
    gap: 12px;
    user-select: none;
}

.faq-question:hover {
    background: rgba(255, 255, 255, .02);
}

.faq-q-text {
    font-size: .95rem;
    font-weight: 600;
    color: var(--cl-white);
    line-height: 1.4;
}

.faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cl-muted);
    transition: transform var(--transition), color var(--transition);
}

.faq-item.is-open .faq-icon {
    transform: rotate(45deg);
    color: var(--cl-red);
}

.faq-answer {
    display: none;
    padding: 0 20px 18px;
    font-size: .9rem;
    color: #b8b8b8;
    line-height: 1.7;
}

.faq-item.is-open .faq-answer {
    display: block;
}

#content-block {
}

.content-block-inner {
    background: var(--cl-card);
    border: 1px solid var(--cl-border);
    border-radius: var(--radius);
    padding: 32px 40px;
}

.author-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid var(--cl-border);
    border-radius: 8px;
    margin-bottom: 28px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cl-red) 0%, #8b0022 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    color: #fff;
    flex-shrink: 0;
}

.author-meta strong {
    display: block;
    font-size: .9rem;
    color: var(--cl-white);
}

.author-meta span {
    font-size: .78rem;
    color: var(--cl-muted);
}

.author-meta a {
    color: var(--cl-red);
    font-size: .78rem;
}

.content-review h2, .content-review h3 {
    color: var(--cl-white);
    margin: 20px 0 10px;
    font-weight: 700;
}

.content-review h2 {
    font-size: 1.3rem;
    border-bottom: 1px solid var(--cl-border);
    padding-bottom: 8px;
}

.content-review h3 {
    font-size: 1.1rem;
}

.content-review p {
    color: #c0c0c0;
    margin-bottom: 14px;
    line-height: 1.7;
    font-size: .93rem;
}

.content-review ul, .content-review ol {
    margin: 12px 0 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.content-review li {
    color: #c0c0c0;
    font-size: .9rem;
    line-height: 1.6;
}

.content-review a {
    color: var(--cl-red);
}

.content-review strong {
    color: var(--cl-white);
}

.content-review table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    border: 1px solid var(--cl-border);
}

.content-review table th, .content-review table td {
    padding: 10px 14px;
    border: 1px solid var(--cl-border);
    text-align: left;
    font-size: .88rem;
}

.content-review table th {
    background: rgba(255, 255, 255, .05);
    color: var(--cl-white);
    font-weight: 600;
}

.content-review table td {
    color: #c0c0c0;
}

.content-review blockquote {
    border-left: 3px solid var(--cl-red);
    padding: 10px 16px;
    background: rgba(229, 5, 57, .05);
    margin: 16px 0;
    color: #b0b0b0;
    font-style: italic;
}

#site-footer {
    background: var(--cl-header);
    border-top: 1px solid var(--cl-border);
    padding: 40px 0 24px;
}

.footer-main {
    display: flex;
    gap: 40px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.footer-brand {
    flex: 1;
    min-width: 220px;
}

.footer-brand p {
    font-size: .84rem;
    color: var(--cl-muted);
    line-height: 1.6;
    margin-top: 12px;
    max-width: 300px;
}

.footer-nav-col {
    min-width: 140px;
}

.footer-nav-col h4 {
    font-size: .82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--cl-muted);
    margin-bottom: 12px;
}

.footer-nav-col a {
    display: block;
    color: #a0a0a0;
    font-size: .85rem;
    padding: 4px 0;
    transition: color var(--transition);
}

.footer-nav-col a:hover {
    color: var(--cl-white);
}

.footer-divider {
    border: none;
    border-top: 1px solid var(--cl-border);
    margin: 24px 0;
}

.footer-trust {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 24px;
}

.footer-payments {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.payment-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--cl-border);
    border-radius: 6px;
    font-size: .78rem;
    color: var(--cl-muted);
    font-weight: 500;
}

.payment-badge svg {
    width: 16px;
    height: 16px;
}

.footer-licenses {
    display: flex;
    align-items: center;
    gap: 10px;
}

.license-badge {
    padding: 5px 12px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--cl-border);
    border-radius: 6px;
    font-size: .75rem;
    color: var(--cl-muted);
    font-weight: 600;
    letter-spacing: .04em;
}

.footer-provider {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .82rem;
    color: var(--cl-muted);
}

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

.footer-copyright {
    font-size: .8rem;
    color: var(--cl-muted);
    margin-bottom: 8px;
}

.footer-legal {
    font-size: .75rem;
    color: #5a5a5a;
    line-height: 1.6;
    max-width: 860px;
    margin: 0 auto;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    margin-bottom: 10px;
}

.footer-logo img {
    height: 32px;
}

.footer-logo-text {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--cl-white);
}

.footer-logo-text span {
    color: var(--cl-red);
}

.section-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--cl-border), transparent);
    margin: 0;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .5s ease, transform .5s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: none;
}

.game-info-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.game-info-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--cl-border);
    border-radius: 20px;
    font-size: .78rem;
    color: var(--cl-muted);
}

.game-info-badge strong {
    color: var(--cl-white);
}

.wp-embed-placeholder {
    display: none;
}

.elementor-invisible {
    visibility: hidden;
}

@media (max-width: 1024px) {
    .hero-promo {
        width: 280px;
    }

    .app-downloads {
        width: 220px;
    }
}

@media (max-width: 900px) {
    .header-nav {
        display: none;
    }

    .burger {
        display: flex;
    }

    .hero-inner {
        flex-direction: column;
    }

    .hero-promo {
        width: 100%;
        padding: 0 0 24px;
    }

    .hero-banner {
        min-height: 280px;
    }

    .hero-banner-overlay {
        padding: 24px;
    }

    .pros-cons-grid {
        flex-direction: column;
    }

    .app-grid {
        flex-direction: column;
    }

    .app-downloads {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .footer-main {
        flex-direction: column;
        gap: 24px;
    }

    .footer-trust {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .header-inner {
        height: 56px;
    }

    .header-right .online-counter {
        display: none;
    }

    .hero-banner-overlay {
        padding: 20px;
    }

    .hero-btns {
        flex-direction: column;
    }

    .hero-btns .btn {
        justify-content: center;
    }

    .hero-stats {
        gap: 16px;
    }

    .section-gap {
        padding: 36px 0;
    }

    .content-block-inner {
        padding: 20px;
    }

    .promo-code {
        font-size: 1.1rem;
    }

    .widget-inner {
        justify-content: center;
        text-align: center;
    }

    .widget-text {
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }

    .demo-cta-inner {
        justify-content: center;
    }
}

@media (max-width: 400px) {
    .header-right .btn--sm {
        font-size: .75rem;
        padding: 6px 10px;
    }
}

.g4f9z {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.wp3j2 {
    font-size: 0;
    color: transparent;
}

.r8s1n {
    pointer-events: none;
    opacity: 0;
}

.yp7m4k {
    display: none !important;
}

.bsjs {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 32px 20px;
}

.bsjs > h1 {
    font-size: clamp(1.7rem, 3.6vw, 2.5rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin: 0 0 18px;
    color: var(--cl-white);
    text-wrap: balance;
}

.bsjs > h2 {
    font-size: clamp(1.25rem, 2.6vw, 1.65rem);
    font-weight: 850;
    line-height: 1.25;
    margin: 28px 0 12px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--cl-border);
    color: var(--cl-white);
    text-wrap: balance;
}

.bsjs > h3 {
    font-size: clamp(1.05rem, 2.2vw, 1.25rem);
    font-weight: 750;
    line-height: 1.3;
    margin: 18px 0 10px;
    color: var(--cl-white);
    text-wrap: balance;
}

.bsjs p {
    font-size: 0.95rem;
    color: rgba(240, 240, 240, .82);
    line-height: 1.8;
    margin: 0 0 14px;
    text-wrap: pretty;
}

.bsjs a {
    color: var(--cl-red);
    text-decoration: none;
    text-underline-offset: 3px;
    word-break: break-word;
    transition: opacity var(--transition), color var(--transition);
}

.bsjs a:hover {
    opacity: .85;
    color: var(--cl-red);
}

.bsjs ul,
.bsjs ol {
    margin: 12px 0 16px 20px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bsjs li {
    font-size: 0.93rem;
    color: rgba(240, 240, 240, .8);
    line-height: 1.7;
}

.bsjs ul li::marker {
    color: var(--cl-red);
}

.bsjs ol li::marker {
    color: var(--cl-red);
    font-weight: 800;
}

.bsjs blockquote {
    margin: 18px 0;
    padding: 12px 16px;
    border-left: 3px solid var(--cl-red);
    background: rgba(229, 5, 57, .06);
    border-radius: 0 var(--radius) var(--radius) 0;
    color: rgba(240, 240, 240, .85);
    line-height: 1.75;
}

.bsjs hr {
    border: 0;
    border-top: 1px solid var(--cl-border);
    margin: 24px 0;
}

.bsjs table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 16px 0;
    background: var(--cl-card);
    border: 1px solid var(--cl-border);
    border-radius: var(--radius);
    overflow: hidden;
    font-size: 0.9rem;
}

.bsjs th,
.bsjs td {
    text-align: left;
    padding: 12px 14px;
    border-bottom: 1px solid var(--cl-border);
    vertical-align: top;
}

.bsjs th {
    background: rgba(255, 255, 255, .02);
    color: rgba(240, 240, 240, .75);
    font-weight: 650;
    width: 46%;
}

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

.bsjs tr:hover td,
.bsjs tr:hover th {
    background: rgba(229, 5, 57, .04);
}

.bsjs strong {
    color: var(--cl-white);
    font-weight: 750;
}

.bsjs em {
    color: rgba(240, 240, 240, .72);
}

.bsjs > * {
    scroll-margin-top: 84px;
}

.bsjs .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius);
    border: 1px solid var(--cl-border);
}

.bsjs .table-responsive table {
    margin: 0;
    border: 0;
    border-radius: 0;
}

.bsjs section {
    background: var(--cl-card);
    border: 1px solid var(--cl-border);
    border-radius: var(--radius);
    padding: 18px 18px;
    margin: 18px 0;
}

.bsjs section > h3 {
    margin: 0 0 10px;
}

@media (max-width: 991px) {
    .bsjs {
        padding: 26px 16px;
    }

    .bsjs > * {
        scroll-margin-top: 74px;
    }
}

@media (max-width: 768px) {
    .bsjs {
        padding: 22px 14px;
    }

    .bsjs p {
        font-size: 0.94rem;
        line-height: 1.78;
    }

    .bsjs ul,
    .bsjs ol {
        margin-left: 18px;
        gap: 7px;
    }

    .bsjs th,
    .bsjs td {
        padding: 10px 12px;
    }

    .bsjs section {
        padding: 16px 14px;
    }
}

@media (max-width: 480px) {
    .bsjs {
        padding: 18px 12px;
    }

    .bsjs > h2 {
        margin-top: 22px;
    }

    .bsjs table {
        border-radius: 8px;
    }

    .bsjs th {
        width: auto;
    }

    .bsjs th,
    .bsjs td {
        font-size: 0.88rem;
        padding: 10px 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .bsjs * {
        transition: none !important;
        animation: none !important;
        scroll-behavior: auto !important;
    }
}

@media (max-width: 640px) {
    #demo-game .demo-iframe-wrap {
        padding-top: 100% !important
    }
}

@media (max-width: 400px) {
    #demo-game .demo-iframe-wrap {
        padding-top: 100% !important
    }
}