/* 1win Casino - style.css?ver=1.7 */
/* Unused legacy selectors for layout uniqueness */
.wp-block-group, .wp-block-columns, .elementor-widget-wrap, .elementor-section-wrap, .entry-content {
    display: block
}

.wp-site-blocks, .is-root-container {
    margin: 0
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute;
    width: 1px
}

:root {
    --clr-bg: #1C1C1C;
    --clr-header: #000000;
    --clr-footer: #000000;
    --clr-accent: #FFDD00;
    --clr-accent2: #ffc800;
    --clr-text: #e8e8e8;
    --clr-text-muted: #aaaaaa;
    --clr-card: #252525;
    --clr-card2: #2a2a2a;
    --clr-border: #333333;
    --clr-success: #27ae60;
    --clr-danger: #e74c3c;
    --clr-gold: #f0b429;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

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

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

body {
    font-family: 'Open Sans', 'Roboto', Arial, sans-serif;
    background-color: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--clr-accent);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--clr-accent2);
}

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

/* ===================== BUTTONS ===================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: var(--clr-accent);
    color: #000;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 10px 22px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary:hover {
    background: var(--clr-accent2);
    color: #000;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 221, 0, 0.35);
}

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

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--clr-accent);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 8px 18px;
    border-radius: 50px;
    border: 2px solid var(--clr-accent);
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    white-space: nowrap;
}

.btn-outline:hover {
    background: var(--clr-accent);
    color: #000;
}

.btn-sm {
    padding: 6px 14px;
    font-size: 0.8rem;
}

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

/* ===================== HEADER ===================== */
.site-header {
    background: var(--clr-header);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #1a1a1a;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    height: 64px;
    max-width: 1300px;
    margin: 0 auto;
    gap: 12px;
}

.site-header__logo img {
    height: 40px;
    width: auto;
}

.site-header__nav {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
    justify-content: center;
}

.site-header__nav a {
    color: var(--clr-text);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}

.site-header__nav a:hover {
    color: var(--clr-accent);
    background: rgba(255, 221, 0, 0.07);
}

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

.online-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.72rem;
    color: var(--clr-text-muted);
    background: #1a1a1a;
    border-radius: 20px;
    padding: 4px 10px;
    border: 1px solid #2a2a2a;
    white-space: nowrap;
}

.online-badge__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--clr-success);
    animation: pulse 1.5s infinite;
}

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

/* Burger */
.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.burger-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    margin: 4px 0;
    transition: all 0.3s;
    border-radius: 2px;
}

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

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

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

.mobile-menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.97);
    z-index: 999;
    overflow-y: auto;
    flex-direction: column;
    padding: 24px 20px;
    gap: 8px;
}

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

.mobile-menu a {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 600;
    padding: 12px 0;
    border-bottom: 1px solid #1e1e1e;
}

.mobile-menu__btns {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.mobile-menu__btns a {
    flex: 1;
    text-align: center;
}

.hero {
    min-height: 460px;
    background: var(--clr-header) url('/banner-casino-w.jpg') center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 40%, rgba(0, 0, 0, 0.3) 100%);
}

.hero__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1300px;
    margin: 0 auto;
    padding: 60px 24px;
    gap: 32px;
}

.hero__content {
    flex: 1;
    max-width: 540px;
}

.hero__badge {
    display: inline-block;
    background: var(--clr-accent);
    color: #000;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.hero__title {
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 14px;
    color: #fff;
}

.hero__title span {
    color: var(--clr-accent);
}

.hero__desc {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 24px;
    line-height: 1.7;
}

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

.promo-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    border: 1px solid #333;
    border-radius: var(--radius);
    padding: 24px;
    min-width: 280px;
    max-width: 320px;
    box-shadow: var(--shadow);
    flex-shrink: 0;
}

.promo-card__title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--clr-text-muted);
    margin-bottom: 8px;
}

.promo-card__code {
    background: #111;
    border: 2px dashed var(--clr-accent);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 3px;
    color: var(--clr-accent);
    text-align: center;
    margin-bottom: 14px;
    cursor: pointer;
    user-select: all;
    transition: background 0.2s;
}

.promo-card__code:hover {
    background: #1a1a00;
}

.promo-card__status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--clr-success);
    background: rgba(39, 174, 96, 0.1);
    border-radius: 20px;
    padding: 3px 10px;
    margin-bottom: 16px;
}

.promo-card__status::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--clr-success);
}

.promo-card__timer {
    font-size: 0.75rem;
    color: var(--clr-text-muted);
    margin-bottom: 14px;
}

.promo-card__timer span {
    color: var(--clr-accent);
    font-weight: 700;
}

.promo-card__btns {
    display: flex;
    gap: 8px;
}

.promo-card__btns .btn-primary, .promo-card__btns .btn-outline {
    flex: 1;
    font-size: 0.8rem;
    padding: 9px 10px;
}

.promo-card__bonus {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    margin-top: 12px;
    text-align: center;
}

.promo-card__bonus strong {
    color: var(--clr-accent);
}

/* ===================== BREADCRUMBS ===================== */
.breadcrumbs {
    background: #141414;
    border-bottom: 1px solid var(--clr-border);
}

.breadcrumbs__inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 10px 24px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    flex-wrap: wrap;
}

.breadcrumbs__inner a {
    color: var(--clr-text-muted);
}

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

.breadcrumbs__sep {
    color: #444;
}

.breadcrumbs__current {
    color: var(--clr-accent);
}

/* ===================== MAIN LAYOUT ===================== */
.site-main {
    max-width: 1300px;
    margin: 0 auto;
    padding: 32px 20px;
}

/* ===================== SECTION TITLES ===================== */
.section-title {
    font-size: clamp(1.2rem, 3vw, 1.7rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
    line-height: 1.2;
}

.section-title span {
    color: var(--clr-accent);
}

.section-subtitle {
    font-size: 0.88rem;
    color: var(--clr-text-muted);
    margin-bottom: 24px;
}

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

.section-head .section-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--clr-accent);
    border-radius: 2px;
    margin-top: 8px;
}

/* ===================== BLOCK CARDS ===================== */
.block-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 28px;
    margin-bottom: 28px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

/* ===================== TOC ===================== */
.toc-block {
    background: #1f1f1f;
    border-left: 4px solid var(--clr-accent);
    border-radius: var(--radius-sm);
    padding: 20px 24px;
    margin-bottom: 28px;
}

.toc-block__title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--clr-accent);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.toc-list {
    columns: 2;
    gap: 12px;
    list-style: none;
}

.toc-list li {
    break-inside: avoid;
    margin-bottom: 6px;
}

.toc-list li a {
    font-size: 0.83rem;
    color: var(--clr-text-muted);
    padding-left: 14px;
    position: relative;
}

.toc-list li a::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--clr-accent);
}

.toc-list li a:hover {
    color: var(--clr-accent);
}

/* ===================== INFO TABLE ===================== */
.info-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.info-table tr:nth-child(even) td {
    background: #222;
}

.info-table td {
    padding: 10px 14px;
    border: 1px solid var(--clr-border);
    text-align: left;
    vertical-align: top;
    line-height: 1.5;
}

.info-table td:first-child {
    color: var(--clr-text-muted);
    font-weight: 600;
    white-space: nowrap;
    width: 200px;
}

.info-table td:last-child {
    color: var(--clr-text);
}

.table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-sm);
}

/* ===================== ADVANTAGES ===================== */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}

.advantage-item {
    background: var(--clr-card2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 20px;
    text-align: center;
    transition: border-color 0.2s, transform 0.2s;
}

.advantage-item:hover {
    border-color: var(--clr-accent);
    transform: translateY(-3px);
}

.advantage-item__icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.advantage-item__title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.advantage-item__text {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    line-height: 1.5;
}

/* ===================== PROS/CONS ===================== */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.pros-cons__col {
    background: var(--clr-card2);
    border-radius: var(--radius-sm);
    padding: 20px;
}

.pros-cons__col--pros {
    border-top: 3px solid var(--clr-success);
}

.pros-cons__col--cons {
    border-top: 3px solid var(--clr-danger);
}

.pros-cons__head {
    font-size: 0.9rem;
    font-weight: 800;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pros-cons__col--pros .pros-cons__head {
    color: var(--clr-success);
}

.pros-cons__col--cons .pros-cons__head {
    color: var(--clr-danger);
}

.pros-cons__list {
    list-style: none;
}

.pros-cons__list li {
    font-size: 0.84rem;
    color: var(--clr-text);
    padding: 6px 0;
    border-bottom: 1px solid var(--clr-border);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.4;
}

.pros-cons__list li:last-child {
    border-bottom: none;
}

.pros-cons__list li::before {
    flex-shrink: 0;
    margin-top: 2px;
}

.pros-cons__col--pros .pros-cons__list li::before {
    content: '✓';
    color: var(--clr-success);
    font-weight: 700;
}

.pros-cons__col--cons .pros-cons__list li::before {
    content: '✗';
    color: var(--clr-danger);
    font-weight: 700;
}

/* ===================== JACKPOTS ===================== */
.jackpots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

.jackpot-card {
    background: linear-gradient(135deg, #1a1400 0%, #2a2200 100%);
    border: 1px solid #3d3200;
    border-radius: var(--radius-sm);
    padding: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.jackpot-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 221, 0, 0.15);
}

.jackpot-card::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(255, 221, 0, 0.12) 0%, transparent 70%);
}

.jackpot-card__label {
    font-size: 0.72rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.jackpot-card__game {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.jackpot-card__amount {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--clr-accent);
    letter-spacing: -1px;
    margin-bottom: 6px;
}

.jackpot-card__badge {
    display: inline-block;
    background: rgba(255, 221, 0, 0.1);
    color: var(--clr-accent);
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 10px;
    border: 1px solid rgba(255, 221, 0, 0.2);
}

/* ===================== MIRRORS TABLE ===================== */
.mirrors-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}

.mirrors-table th {
    background: #111;
    color: var(--clr-accent);
    font-weight: 700;
    padding: 10px 14px;
    border: 1px solid var(--clr-border);
    text-align: left;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mirrors-table td {
    padding: 10px 14px;
    border: 1px solid var(--clr-border);
    vertical-align: middle;
}

.mirrors-table tr:hover td {
    background: rgba(255, 221, 0, 0.03);
}

.mirror-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    color: var(--clr-success);
}

.mirror-status::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--clr-success);
}

.mirrors-ts {
    font-size: 0.78rem;
    color: var(--clr-text-muted);
    margin-bottom: 12px;
}

.mirrors-ts span {
    color: var(--clr-accent);
    font-weight: 700;
}

/* ===================== SCREENSHOTS ===================== */
.screenshots-slider {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
}

.screenshots-slider::-webkit-scrollbar {
    height: 4px;
}

.screenshots-slider::-webkit-scrollbar-thumb {
    background: var(--clr-accent);
    border-radius: 2px;
}

.screenshot-item {
    flex: 0 0 calc(33.333% - 11px);
    scroll-snap-align: start;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--clr-border);
    cursor: pointer;
    transition: transform 0.2s;
}

.screenshot-item:hover {
    transform: scale(1.02);
}

.screenshot-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* ===================== WINNERS ===================== */
.winners-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.84rem;
}

.winners-table th {
    background: #111;
    color: var(--clr-accent);
    font-weight: 700;
    padding: 10px 14px;
    border: 1px solid var(--clr-border);
    text-align: left;
    font-size: 0.78rem;
    text-transform: uppercase;
}

.winners-table td {
    padding: 9px 14px;
    border: 1px solid var(--clr-border);
    vertical-align: middle;
}

.winners-table tr:nth-child(-n+3) .rank-num {
    color: var(--clr-accent);
    font-weight: 800;
}

.winners-table tr:hover td {
    background: rgba(255, 221, 0, 0.03);
}

.rank-num {
    font-weight: 700;
}

.winner-nick {
    font-weight: 600;
    color: #fff;
}

.winner-amount {
    color: var(--clr-success);
    font-weight: 700;
}

.winner-game {
    color: var(--clr-text-muted);
    font-size: 0.78rem;
}

/* ===================== TOURNAMENTS ===================== */
.tournaments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.tournament-card {
    background: var(--clr-card2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 22px;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s, border-color 0.2s;
}

.tournament-card:hover {
    transform: translateY(-3px);
    border-color: var(--clr-accent);
}

.tournament-card__badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--clr-accent);
    color: #000;
    font-size: 0.68rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 10px;
    text-transform: uppercase;
}

.tournament-card__icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.tournament-card__name {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.tournament-card__desc {
    font-size: 0.82rem;
    color: var(--clr-text-muted);
    margin-bottom: 14px;
    line-height: 1.5;
}

.tournament-card__prize {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--clr-accent);
    margin-bottom: 10px;
}

.tournament-card__timer {
    font-size: 0.78rem;
    color: var(--clr-text-muted);
    margin-bottom: 16px;
}

.tournament-card__timer .timer-countdown {
    color: #fff;
    font-weight: 700;
    font-family: monospace;
    font-size: 0.9rem;
}

/* ===================== APP INFO ===================== */
.app-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}

.app-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}

.app-table td {
    padding: 9px 14px;
    border: 1px solid var(--clr-border);
}

.app-table td:first-child {
    color: var(--clr-text-muted);
    font-weight: 600;
    width: 140px;
}

.app-table tr:nth-child(even) td {
    background: #222;
}

.app-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #1a1a1a;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 14px 20px;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: border-color 0.2s, background 0.2s;
}

.app-btn:hover {
    border-color: var(--clr-accent);
    background: #222;
    color: #fff;
}

.app-btn__icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.app-btn__text small {
    display: block;
    font-size: 0.72rem;
    color: var(--clr-text-muted);
}

.app-btn__text strong {
    font-size: 0.95rem;
}

/* ===================== VIDEO ===================== */
.video-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid var(--clr-border);
}

.video-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ===================== BONUSES ===================== */
.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.bonus-card {
    background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 24px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s, border-color 0.2s;
}

.bonus-card:hover {
    transform: translateY(-4px);
    border-color: var(--clr-accent);
}

.bonus-card__tag {
    display: inline-block;
    background: var(--clr-accent);
    color: #000;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 3px 10px;
    border-radius: 10px;
    margin-bottom: 12px;
}

.bonus-card__icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.bonus-card__title {
    font-size: 0.95rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.bonus-card__amount {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--clr-accent);
    margin-bottom: 8px;
}

.bonus-card__desc {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    margin-bottom: 16px;
    line-height: 1.5;
}

/* ===================== GAMES GRID ===================== */
.games-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.game-card {
    background: var(--clr-card2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    text-align: center;
    transition: transform 0.2s, border-color 0.2s;
    cursor: pointer;
}

.game-card:hover {
    transform: translateY(-3px);
    border-color: var(--clr-accent);
}

.game-card__img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.game-card__name {
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
    padding: 8px 6px 4px;
}

.game-card__btn {
    padding: 0 8px 10px;
}

.game-card__btn .btn-primary {
    width: 100%;
    font-size: 0.72rem;
    padding: 6px 10px;
}

/* Demo Popup */
.demo-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.demo-overlay.open {
    display: flex;
}

.demo-modal {
    background: #111;
    border: 1px solid #333;
    border-radius: var(--radius);
    width: 100%;
    max-width: 900px;
    overflow: hidden;
    position: relative;
}

.demo-modal__close {
    position: absolute;
    top: 12px;
    right: 14px;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    line-height: 1;
}

.demo-modal__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 50px 14px 20px;
    background: #0a0a0a;
    border-bottom: 1px solid #222;
}

.demo-modal__title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
}

.demo-modal__frame {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.demo-modal__frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.demo-modal__footer {
    padding: 14px 20px;
    background: #0a0a0a;
    text-align: center;
    border-top: 1px solid #222;
}

/* ===================== DEMO BLOCK ===================== */
.demo-block-frame {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--clr-border);
    margin-top: 16px;
}

.demo-block-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ===================== SLOT MINI GAME ===================== */
.slot-machine {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
    border: 2px solid #333;
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.slot-machine__title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--clr-accent);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.slot-reels {
    display: flex;
    justify-content: center;
    gap: 8px;
    background: #000;
    border: 2px solid #333;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 20px;
}

.slot-reel {
    width: 70px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    background: #111;
    border: 1px solid #333;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s;
}

.slot-reel.spinning {
    animation: spin-reel 0.1s linear infinite;
}

@keyframes spin-reel {
    0% {
        transform: translateY(-5px)
    }
    50% {
        transform: translateY(5px)
    }
    100% {
        transform: translateY(-5px)
    }
}

.slot-result {
    min-height: 50px;
    margin-bottom: 16px;
}

.slot-win {
    color: var(--clr-success);
    font-size: 1.1rem;
    font-weight: 800;
    animation: fadeInUp 0.4s ease;
}

.slot-lose {
    color: var(--clr-text-muted);
    font-size: 0.9rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

/* ===================== WHEEL ===================== */
.wheel-game {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
    border: 2px solid #333;
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.wheel-game__title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--clr-accent);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.wheel-container {
    position: relative;
    width: 280px;
    height: 280px;
    margin: 0 auto 20px;
}

#fortune-wheel {
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(255, 221, 0, 0.2);
}

.wheel-pointer {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 24px solid var(--clr-accent);
    filter: drop-shadow(0 2px 4px rgba(255, 221, 0, 0.5));
}

.wheel-result {
    min-height: 50px;
    margin-bottom: 16px;
}

.wheel-win {
    color: var(--clr-success);
    font-size: 1.1rem;
    font-weight: 800;
    animation: fadeInUp 0.4s ease;
}

.wheel-lose {
    color: var(--clr-text-muted);
    font-size: 0.9rem;
}

/* ===================== CONTENT BLOCK (raw HTML) ===================== */
.content-review h1, .content-review h2, .content-review h3, .content-review h4 {
    color: #fff;
    font-weight: 700;
    margin: 20px 0 10px;
    line-height: 1.3;
}

.content-review h2 {
    font-size: 1.3rem;
    border-left: 3px solid var(--clr-accent);
    padding-left: 12px;
}

.content-review h3 {
    font-size: 1.1rem;
    color: var(--clr-accent);
}

.content-review p {
    margin-bottom: 12px;
    line-height: 1.7;
    color: var(--clr-text);
}

.content-review ul, .content-review ol {
    padding-left: 20px;
    margin-bottom: 12px;
}

.content-review li {
    margin-bottom: 6px;
    color: var(--clr-text);
    line-height: 1.6;
}

.content-review a {
    color: var(--clr-accent);
    text-decoration: underline;
}

.content-review table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 16px;
}

.content-review table th {
    background: #111;
    color: var(--clr-accent);
    padding: 8px 12px;
    border: 1px solid var(--clr-border);
    text-align: left;
    font-size: 0.82rem;
}

.content-review table td {
    padding: 8px 12px;
    border: 1px solid var(--clr-border);
    color: var(--clr-text);
    font-size: 0.84rem;
}

.content-review blockquote {
    border-left: 3px solid var(--clr-accent);
    padding: 10px 16px;
    background: #222;
    margin: 16px 0;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: var(--clr-text-muted);
}

.content-review strong {
    color: #fff;
    font-weight: 700;
}

.content-review em {
    color: var(--clr-text-muted);
}

/* ===================== FAQ ===================== */
.faq-list {
    list-style: none;
}

.faq-item {
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    cursor: pointer;
    background: var(--clr-card2);
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    transition: background 0.2s;
    list-style: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question:hover {
    background: #2e2e2e;
}

.faq-question::after {
    content: '+';
    color: var(--clr-accent);
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1;
    flex-shrink: 0;
    margin-left: 12px;
    transition: transform 0.2s;
}

details[open] .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 14px 20px 18px;
    font-size: 0.86rem;
    color: var(--clr-text-muted);
    line-height: 1.7;
    background: var(--clr-card);
    border-top: 1px solid var(--clr-border);
}

/* ===================== REVIEWS ===================== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
    margin-bottom: 28px;
}

.review-card {
    background: var(--clr-card2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 20px;
    transition: border-color 0.2s;
}

.review-card:hover {
    border-color: var(--clr-accent);
}

.review-card__top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.review-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--clr-border);
}

.review-card__name {
    font-weight: 700;
    color: #fff;
    font-size: 0.88rem;
}

.review-card__date {
    font-size: 0.72rem;
    color: var(--clr-text-muted);
}

.stars {
    display: flex;
    gap: 2px;
    margin-bottom: 4px;
}

.stars svg {
    fill: var(--clr-gold);
    width: 14px;
    height: 14px;
}

.review-card__text {
    font-size: 0.83rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
}

/* Review form */
.review-form {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 24px;
}

.review-form__title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
}

.form-group {
    margin-bottom: 14px;
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    color: var(--clr-text-muted);
    margin-bottom: 6px;
}

.form-control {
    width: 100%;
    background: #1a1a1a;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    color: var(--clr-text);
    padding: 10px 14px;
    font-size: 0.88rem;
    font-family: inherit;
    transition: border-color 0.2s;
    outline: none;
}

.form-control:focus {
    border-color: var(--clr-accent);
}

textarea.form-control {
    resize: vertical;
    min-height: 90px;
}

.form-success {
    display: none;
    background: rgba(39, 174, 96, 0.1);
    border: 1px solid var(--clr-success);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    color: var(--clr-success);
    font-size: 0.88rem;
    margin-top: 12px;
}

.form-success.show {
    display: block;
}

/* ===================== AUTHOR ===================== */
.author-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.author-card__photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 3px solid var(--clr-accent);
}

.author-card__name {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}

.author-card__role {
    font-size: 0.8rem;
    color: var(--clr-accent);
    margin-bottom: 10px;
}

.author-card__bio {
    font-size: 0.84rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
    margin-bottom: 12px;
}

.author-card__links {
    display: flex;
    gap: 10px;
}

.author-social {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--clr-text-muted);
    border: 1px solid var(--clr-border);
    border-radius: 20px;
    padding: 4px 12px;
    transition: border-color 0.2s, color 0.2s;
}

.author-social:hover {
    border-color: var(--clr-accent);
    color: var(--clr-accent);
}

/* ===================== FOOTER ===================== */
.site-footer {
    background: var(--clr-footer);
    border-top: 1px solid #1a1a1a;
    margin-top: 48px;
    padding: 40px 0 24px;
}

.site-footer__inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.footer-brand {
    flex: 0 0 220px;
}

.footer-brand img {
    height: 36px;
    margin-bottom: 14px;
}

.footer-brand p {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
}

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

.footer-col__title {
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--clr-accent);
    margin-bottom: 12px;
}

.footer-col__list {
    list-style: none;
}

.footer-col__list li {
    margin-bottom: 7px;
}

.footer-col__list a {
    font-size: 0.82rem;
    color: var(--clr-text-muted);
    transition: color 0.2s;
}

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

.footer-providers {
    margin-bottom: 24px;
}

.footer-providers__title {
    font-size: 0.78rem;
    color: var(--clr-text-muted);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-logo-tag {
    display: inline-block;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 6px;
    padding: 5px 10px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-bottom {
    border-top: 1px solid #1a1a1a;
    padding-top: 20px;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
    margin-bottom: 8px;
}

.footer-bottom__copy {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

/* ===================== WIDGET ===================== */
.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1500;
    background: linear-gradient(90deg, #0a0a0a 0%, #111 100%);
    border-top: 2px solid var(--clr-accent);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.sticky-widget__text {
    font-size: 0.88rem;
    color: var(--clr-text-muted);
}

.sticky-widget__text strong {
    color: var(--clr-accent);
}

.sticky-widget__bonus {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--clr-accent);
}

.sticky-widget__close {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--clr-text-muted);
    cursor: pointer;
    font-size: 1.1rem;
    line-height: 1;
    padding: 4px;
}

.sticky-widget__close:hover {
    color: #fff;
}

/* ===================== UTILS ===================== */
.mt-16 {
    margin-top: 16px;
}

.mt-24 {
    margin-top: 24px;
}

.mb-24 {
    margin-bottom: 24px;
}

.text-accent {
    color: var(--clr-accent);
}

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

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

.fw-700 {
    font-weight: 700;
}

.d-flex {
    display: flex;
}

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

.gap-8 {
    gap: 8px;
}

.gap-12 {
    gap: 12px;
}

/* Copy notification */
.copy-toast {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--clr-success);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 20px;
    z-index: 3000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.copy-toast.show {
    opacity: 1;
}

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

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

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

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

@media (max-width: 768px) {
    .site-header__nav {
        display: none;
    }

    .burger-btn {
        display: block;
    }

    .hero__inner {
        flex-direction: column;
        padding: 36px 20px;
    }

    .promo-card {
        max-width: 100%;
        min-width: unset;
    }

    .pros-cons {
        grid-template-columns: 1fr;
    }

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

    .tournaments-grid, .bonuses-grid {
        grid-template-columns: 1fr;
    }

    .screenshot-item {
        flex: 0 0 80%;
    }

    .toc-list {
        columns: 1;
    }

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

    .footer-brand {
        flex: none;
    }

    .author-card {
        flex-direction: column;
    }

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

    .online-badge {
        display: none;
    }
}

@media (max-width: 480px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .hero__title {
        font-size: 1.5rem;
    }

    .block-card {
        padding: 18px 14px;
    }
}

.wp-caption, .attachment-full, .wp-image-1, .size-full {
    max-width: 100%
}

.alignnone, .alignleft, .alignright, .aligncenter {
    display: block
}

.single-post .entry-header, .archive .loop-wrapper, .search-results .hentry {
    display: block
}

.vc_row, .vc_column, .wpb_wrapper {
    display: block
}

.elementor-element, .elementor-widget-container {
    display: block
}

.site-content .hentry {
    margin: 0
}

.widget, .widget-area, .sidebar {
    display: block
}

.post-thumbnail, .featured-image {
    display: block
}

html,
body {
    background: #1c1c1c;
    color: #e8e8e8;
    font-family: 'Open Sans', 'Roboto', Arial, sans-serif;
    overflow-x: hidden;
}

body {
    padding-bottom: 84px;
}

.x9k2-wrap {
    min-height: 100vh;
    background: #1c1c1c;
}

.x9k2-main {
    padding-bottom: 28px;
}

.x9k2-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 16px;
}

.x9k2-block {
    background: #252525;
    border: 1px solid #353535;
    border-radius: 20px;
    padding: 28px;
    margin-bottom: 24px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

.x9k2-block__title {
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

.x9k2-block__subtitle {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 46px;
    padding: 12px 22px;
    background: #ffdd00;
    color: #000000;
    border: 0;
    border-radius: 999px;
    font-weight: 800;
    font-size: 14px;
    line-height: 1;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary:hover {
    background: #ffe44d;
    color: #000000;
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(255, 221, 0, 0.25);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 18px;
    background: transparent;
    color: #ffdd00;
    border: 1px solid #ffdd00;
    border-radius: 999px;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.btn-outline:hover {
    background: #ffdd00;
    color: #000000;
}

.btn-sm {
    min-height: 40px;
    padding: 10px 16px;
    font-size: 13px;
}

.btn-xs {
    min-height: 36px;
    padding: 8px 14px;
    font-size: 12px;
}

.btn-hero {
    min-height: 52px;
    padding: 14px 26px;
    font-size: 15px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2dd36f;
    display: inline-block;
    flex-shrink: 0;
    box-shadow: 0 0 12px rgba(45, 211, 111, 0.45);
}

.badge-online,
.badge-warning {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.badge-online {
    background: rgba(45, 211, 111, 0.14);
    color: #2dd36f;
    border: 1px solid rgba(45, 211, 111, 0.3);
}

.badge-warning {
    background: rgba(255, 221, 0, 0.12);
    color: #ffdd00;
    border: 1px solid rgba(255, 221, 0, 0.28);
}

.win-amount {
    color: #2dd36f;
    font-weight: 800;
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.x9k2-table {
    width: 100%;
    border-collapse: collapse;
    background: #1d1d1d;
    border-radius: 16px;
    overflow: hidden;
}

.x9k2-table th,
.x9k2-table td {
    padding: 14px 16px;
    border: 1px solid #333333;
    text-align: left;
    vertical-align: top;
    font-size: 14px;
    line-height: 1.5;
}

.x9k2-table th {
    background: #101010;
    color: #ffdd00;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 12px;
}

.x9k2-table td {
    color: #ebebeb;
}

.x9k2-table tbody tr:nth-child(even) td {
    background: #242424;
}

.x9k2-hero {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    margin-bottom: 22px;
    background: #111111;
}

.x9k2-hero__bg {
    position: absolute;
    inset: 0;
}

.x9k2-hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.84) 0%, rgba(0, 0, 0, 0.55) 45%, rgba(0, 0, 0, 0.25) 100%);
}

.x9k2-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.x9k2-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 56px 20px;
}

.x9k2-hero__text {
    max-width: 640px;
}

.x9k2-hero__badge {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 221, 0, 0.14);
    border: 1px solid rgba(255, 221, 0, 0.28);
    color: #ffdd00;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
}

.x9k2-hero__title {
    margin: 0 0 16px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.08;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.03em;
}

.x9k2-hero__sub {
    margin: 0 0 24px;
    max-width: 560px;
    font-size: 18px;
    line-height: 1.65;
    color: #e9e9e9;
}

.x9k2-promo-card {
    background: linear-gradient(180deg, #1a1a1a 0%, #252525 100%);
    border: 1px solid #3a3a3a;
    border-radius: 20px;
    padding: 22px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    max-width: 420px;
    margin-left: auto;
}

.x9k2-promo-card__header {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #ffdd00;
    margin-bottom: 14px;
}

.x9k2-promo-card__code-wrap {
    display: flex;
    align-items: stretch;
    gap: 10px;
    margin-bottom: 14px;
}

.x9k2-promo-card__code {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 10px 14px;
    background: #101010;
    border: 1px dashed #ffdd00;
    border-radius: 14px;
    color: #ffdd00;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 0.14em;
    cursor: pointer;
    text-align: center;
}

.btn-copy {
    min-width: 120px;
    min-height: 54px;
    padding: 10px 14px;
    background: #ffdd00;
    color: #000000;
    border: 0;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
}

.x9k2-promo-card__status {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #cfcfcf;
    font-size: 14px;
    margin-bottom: 10px;
}

.x9k2-promo-card__note {
    margin-top: 12px;
    font-size: 13px;
    color: #a9a9a9;
    text-align: center;
}

.copy-toast {
    position: fixed;
    left: 50%;
    bottom: 92px;
    transform: translateX(-50%);
    background: #2dd36f;
    color: #ffffff;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 2000;
}

.copy-toast.show {
    opacity: 1;
}

.x9k2-breadcrumbs-wrap {
    margin-bottom: 20px;
}

.x9k2-breadcrumbs {
    background: #222222;
    border: 1px solid #333333;
    border-radius: 14px;
    padding: 12px 16px;
}

.x9k2-breadcrumbs ol {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

.x9k2-breadcrumbs a,
.x9k2-breadcrumbs span {
    font-size: 13px;
    color: #b8b8b8;
}

.x9k2-breadcrumbs a:hover {
    color: #ffdd00;
}

.x9k2-breadcrumbs .sep {
    color: #5a5a5a;
}

.x9k2-toc {
    background: linear-gradient(180deg, #252525 0%, #1f1f1f 100%);
}

.x9k2-toc__list {
    columns: 2;
    column-gap: 28px;
    margin: 0;
    padding-left: 18px;
}

.x9k2-toc__list li {
    break-inside: avoid;
    margin-bottom: 10px;
}

.x9k2-toc__list a {
    color: #d5d5d5;
    font-size: 14px;
    line-height: 1.55;
}

.x9k2-toc__list a:hover {
    color: #ffdd00;
}

.x9k2-adv-item {
    height: 100%;
    background: #202020;
    border: 1px solid #343434;
    border-radius: 18px;
    padding: 20px 16px;
    text-align: center;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.x9k2-adv-item:hover {
    transform: translateY(-3px);
    border-color: #ffdd00;
}

.x9k2-adv-item__icon {
    font-size: 34px;
    margin-bottom: 10px;
}

.x9k2-adv-item__text {
    font-size: 14px;
    line-height: 1.55;
    color: #d5d5d5;
}

.x9k2-adv-item__text strong {
    display: inline-block;
    margin-bottom: 4px;
    color: #ffffff;
}

.x9k2-proscons {
    height: 100%;
    background: #202020;
    border: 1px solid #343434;
    border-radius: 18px;
    padding: 22px;
}

.x9k2-proscons--pros {
    border-top: 3px solid #2dd36f;
}

.x9k2-proscons--cons {
    border-top: 3px solid #ff5a5a;
}

.x9k2-proscons__header {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 14px;
    color: #ffffff;
}

.x9k2-proscons ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.x9k2-proscons li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    color: #d7d7d7;
    line-height: 1.55;
}

.x9k2-proscons li:last-child {
    margin-bottom: 0;
}

.x9k2-proscons--pros li::before,
.x9k2-proscons--cons li::before {
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 800;
}

.x9k2-proscons--pros li::before {
    content: '✓';
    color: #2dd36f;
}

.x9k2-proscons--cons li::before {
    content: '✕';
    color: #ff5a5a;
}

.x9k2-jackpot-card {
    height: 100%;
    background: linear-gradient(180deg, #2a2305 0%, #1d1a0f 100%);
    border: 1px solid rgba(255, 221, 0, 0.2);
    border-radius: 18px;
    padding: 20px 16px;
    text-align: center;
    box-shadow: inset 0 0 0 1px rgba(255, 221, 0, 0.04);
}

.x9k2-jackpot-card--hot {
    border-color: rgba(255, 221, 0, 0.45);
}

.x9k2-jackpot-card__name {
    font-size: 15px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
}

.x9k2-jackpot-card__amount {
    font-size: 28px;
    line-height: 1.1;
    font-weight: 900;
    color: #ffdd00;
    margin-bottom: 14px;
    letter-spacing: -0.03em;
}

.x9k2-mirrors-ts {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 8px 12px;
    background: #1d1d1d;
    border: 1px solid #333333;
    border-radius: 999px;
    color: #b8b8b8;
    font-size: 13px;
    margin-bottom: 14px;
}

.x9k2-table--mirrors code {
    color: #ffdd00;
    background: #121212;
    border: 1px solid #333333;
    border-radius: 8px;
    padding: 4px 8px;
    font-size: 13px;
}

.x9k2-screenshots .screenshot-item img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 18px;
    border: 1px solid #343434;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.x9k2-screenshots .screenshot-item img:hover {
    transform: scale(1.02);
    border-color: #ffdd00;
}

.x9k2-table--winners td:first-child {
    font-weight: 800;
    color: #ffdd00;
}

.x9k2-table--winners tbody tr:nth-child(-n+3) td:first-child {
    color: #ffd84a;
}

.x9k2-tourn-card {
    height: 100%;
    background: #202020;
    border: 1px solid #343434;
    border-radius: 18px;
    padding: 22px;
    position: relative;
}

.x9k2-tourn-card--featured {
    background: linear-gradient(180deg, #242012 0%, #1f1d16 100%);
    border-color: rgba(255, 221, 0, 0.3);
}

.x9k2-tourn-card__badge {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(45, 211, 111, 0.14);
    color: #2dd36f;
    border: 1px solid rgba(45, 211, 111, 0.26);
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 14px;
}

.x9k2-tourn-card__badge--hot {
    background: rgba(255, 221, 0, 0.14);
    color: #ffdd00;
    border-color: rgba(255, 221, 0, 0.3);
}

.x9k2-tourn-card__name {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
}

.x9k2-tourn-card__desc {
    font-size: 14px;
    line-height: 1.6;
    color: #cfcfcf;
    margin-bottom: 14px;
}

.x9k2-tourn-card__prize,
.x9k2-tourn-card__timer {
    font-size: 14px;
    line-height: 1.55;
    color: #b9b9b9;
    margin-bottom: 10px;
}

.x9k2-tourn-card__prize strong,
.x9k2-tourn-card__timer strong {
    color: #ffffff;
}

.x9k2-app-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.x9k2-app-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 68px;
    padding: 14px 16px;
    background: #202020;
    border: 1px solid #343434;
    border-radius: 18px;
    color: #ffffff;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.x9k2-app-btn:hover {
    color: #ffffff;
    transform: translateY(-2px);
    border-color: #ffdd00;
}

.x9k2-app-btn__sub {
    font-size: 12px;
    color: #a8a8a8;
    line-height: 1.2;
}

.x9k2-app-btn__store {
    font-size: 16px;
    font-weight: 800;
    line-height: 1.2;
}

.x9k2-app-btn--apk {
    background: linear-gradient(180deg, #242012 0%, #1f1d16 100%);
}

.x9k2-video-wrap,
.x9k2-demo-static-wrap {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #343434;
    background: #111111;
}

.x9k2-video-wrap iframe,
.x9k2-demo-static-wrap iframe {
    display: block;
    width: 100%;
    border: 0;
}

.x9k2-bonus-card {
    height: 100%;
    background: #202020;
    border: 1px solid #343434;
    border-radius: 18px;
    padding: 22px 18px;
    text-align: center;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.x9k2-bonus-card:hover {
    transform: translateY(-3px);
    border-color: #ffdd00;
}

.x9k2-bonus-card--special {
    background: linear-gradient(180deg, #242012 0%, #1f1d16 100%);
}

.x9k2-bonus-card__icon {
    font-size: 38px;
    margin-bottom: 12px;
}

.x9k2-bonus-card__name {
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
}

.x9k2-bonus-card__value {
    font-size: 32px;
    line-height: 1.1;
    font-weight: 900;
    color: #ffdd00;
    margin-bottom: 10px;
}

.x9k2-bonus-card__desc {
    font-size: 14px;
    line-height: 1.6;
    color: #cfcfcf;
    margin-bottom: 16px;
}

.x9k2-game-card {
    height: 100%;
    background: #202020;
    border: 1px solid #343434;
    border-radius: 18px;
    padding: 12px;
    text-align: center;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.x9k2-game-card:hover {
    transform: translateY(-3px);
    border-color: #ffdd00;
}

.x9k2-game-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 10px;
}

.x9k2-game-card__name {
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
    color: #ffffff;
    min-height: 40px;
    margin-bottom: 10px;
}

.x9k2-game-card__actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.x9k2-game-card__actions .btn-primary {
    flex: 1;
}

.btn-demo {
    flex: 1;
    min-height: 36px;
    padding: 8px 12px;
    background: transparent;
    color: #ffdd00;
    border: 1px solid #ffdd00;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.x9k2-demo-overlay {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background: rgba(0, 0, 0, 0.92);
    z-index: 3000;
}

.x9k2-demo-overlay.open {
    display: flex;
}

.x9k2-demo-modal {
    width: 100%;
    max-width: 980px;
    background: #161616;
    border: 1px solid #333333;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
}

.x9k2-demo-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 18px;
    background: #0f0f0f;
    border-bottom: 1px solid #2b2b2b;
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
}

.x9k2-demo-modal__close {
    background: none;
    border: 0;
    color: #ffffff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.x9k2-demo-modal__body {
    position: relative;
    background: #000000;
}

.x9k2-demo-modal__body iframe {
    width: 100%;
    height: min(72vh, 680px);
    border: 0;
    display: block;
}

.x9k2-demo-modal__footer {
    padding: 16px 18px;
    background: #0f0f0f;
    border-top: 1px solid #2b2b2b;
}

.x9k2-slotmachine {
    max-width: 520px;
    margin: 0 auto;
    background: linear-gradient(180deg, #161616 0%, #202020 100%);
    border: 1px solid #363636;
    border-radius: 22px;
    padding: 28px 22px;
    text-align: center;
}

.x9k2-slotmachine__reels {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 18px;
}

.x9k2-reel {
    width: 90px;
    height: 90px;
    background: #111111;
    border: 1px solid #333333;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

.x9k2-spin-btn {
    min-width: 180px;
    margin-bottom: 16px;
}

.x9k2-slotmachine__result {
    min-height: 28px;
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
}

.x9k2-wheel-wrap {
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
}

.x9k2-wheel-pointer {
    font-size: 30px;
    color: #ffdd00;
    line-height: 1;
    margin-bottom: -4px;
}

#fortune-wheel {
    width: min(100%, 320px);
    height: auto;
    display: block;
    margin: 0 auto 18px;
    background: #111111;
    border-radius: 50%;
    border: 4px solid #ffdd00;
    box-shadow: 0 0 28px rgba(255, 221, 0, 0.18);
}

.x9k2-wheel-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.x9k2-wheel-result {
    min-height: 24px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
}

.x9k2-review-content .x9k2-content-body h2,
.x9k2-review-content .x9k2-content-body h3,
.x9k2-review-content .x9k2-content-body h4 {
    color: #ffffff;
    line-height: 1.3;
}

.x9k2-review-content .x9k2-content-body h2 {
    font-size: 28px;
    margin: 26px 0 14px;
    color: #ffdd00;
}

.x9k2-review-content .x9k2-content-body h3 {
    font-size: 22px;
    margin: 22px 0 12px;
}

.x9k2-review-content .x9k2-content-body h4 {
    font-size: 18px;
    margin: 18px 0 10px;
}

.x9k2-review-content .x9k2-content-body p {
    margin: 0 0 16px;
    color: #d7d7d7;
    line-height: 1.72;
    font-size: 15px;
}

.x9k2-review-content .x9k2-content-body ul,
.x9k2-review-content .x9k2-content-body ol {
    margin: 0 0 18px;
    padding-left: 22px;
}

.x9k2-review-content .x9k2-content-body li {
    margin-bottom: 8px;
    color: #d7d7d7;
}

.x9k2-review-content .x9k2-content-body blockquote {
    margin: 22px 0;
    padding: 16px 18px;
    border-left: 4px solid #ffdd00;
    border-radius: 0 14px 14px 0;
    background: rgba(255, 221, 0, 0.06);
}

.x9k2-review-content .x9k2-content-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: #1d1d1d;
    border-radius: 14px;
    overflow: hidden;
}

.x9k2-review-content .x9k2-content-body th,
.x9k2-review-content .x9k2-content-body td {
    border: 1px solid #333333;
    padding: 12px 14px;
    font-size: 14px;
    text-align: left;
}

.x9k2-review-content .x9k2-content-body th {
    background: #101010;
    color: #ffdd00;
    font-weight: 800;
}

.x9k2-accordion__item {
    border: 1px solid #343434;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 10px;
    background: #202020;
}

.x9k2-accordion__btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 18px 20px;
    background: #202020;
    border: 0;
    color: #ffffff;
    text-align: left;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}

.x9k2-accordion__btn::after {
    content: '+';
    flex-shrink: 0;
    color: #ffdd00;
    font-size: 24px;
    line-height: 1;
}

.x9k2-accordion__btn[aria-expanded="true"]::after {
    content: '−';
}

.x9k2-accordion__body {
    display: none;
    padding: 0 20px 18px;
    color: #cfcfcf;
    font-size: 14px;
    line-height: 1.7;
    background: #252525;
}

.x9k2-accordion__body.open {
    display: block;
}

.x9k2-review-card {
    height: 100%;
    background: #202020;
    border: 1px solid #343434;
    border-radius: 18px;
    padding: 20px;
}

.x9k2-review-card__head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.x9k2-review-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #343434;
    flex-shrink: 0;
}

.x9k2-review-card__name {
    font-size: 15px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4px;
}

.x9k2-review-card__stars {
    display: flex;
    align-items: center;
    gap: 2px;
}

.x9k2-review-card__text {
    font-size: 14px;
    line-height: 1.65;
    color: #d2d2d2;
    margin-bottom: 12px;
}

.x9k2-review-card__date {
    font-size: 12px;
    color: #9b9b9b;
}

.x9k2-review-form-wrap {
    background: #202020;
    border: 1px solid #343434;
    border-radius: 18px;
    padding: 22px;
}

.x9k2-review-form {
    display: grid;
    gap: 14px;
}

.x9k2-form-field label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #d0d0d0;
    margin-bottom: 6px;
}

.x9k2-form-field input,
.x9k2-form-field textarea {
    width: 100%;
    background: #141414;
    border: 1px solid #333333;
    border-radius: 14px;
    padding: 12px 14px;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.5;
    outline: none;
}

.x9k2-form-field input:focus,
.x9k2-form-field textarea:focus {
    border-color: #ffdd00;
}

.x9k2-review-success {
    display: none;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(45, 211, 111, 0.12);
    border: 1px solid rgba(45, 211, 111, 0.28);
    color: #2dd36f;
    font-size: 14px;
    font-weight: 700;
}

.x9k2-review-success.show {
    display: block;
}

.x9k2-author__inner {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.x9k2-author__photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ffdd00;
    flex-shrink: 0;
}

.x9k2-author__name {
    font-size: 24px;
    line-height: 1.2;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4px;
}

.x9k2-author__title {
    font-size: 14px;
    font-weight: 700;
    color: #ffdd00;
    margin-bottom: 12px;
}

.x9k2-author__bio {
    font-size: 14px;
    line-height: 1.7;
    color: #d1d1d1;
    margin-bottom: 14px;
}

.x9k2-author__links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.x9k2-author__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 10px 14px;
    background: #202020;
    border: 1px solid #343434;
    border-radius: 999px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
}

.x9k2-author__link:hover {
    color: #ffdd00;
    border-color: #ffdd00;
}

.x9k2-sticky-widget {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 2500;
    max-width: 560px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 18px;
    background: linear-gradient(90deg, #121212 0%, #1a1a1a 100%);
    border: 1px solid rgba(255, 221, 0, 0.28);
    border-radius: 20px;
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.38);
}

.x9k2-sticky-widget__text {
    color: #cfcfcf;
    font-size: 15px;
    line-height: 1.35;
}

.x9k2-sticky-widget__text strong {
    color: #ffdd00;
}

.x9k2-sticky-widget__btn {
    flex-shrink: 0;
}

.x9k2-sticky-widget__close {
    position: absolute;
    top: 8px;
    right: 10px;
    width: 28px;
    height: 28px;
    border: 0;
    background: transparent;
    color: #8d8d8d;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

@media (max-width: 1199px) {
    .x9k2-hero__inner {
        padding: 48px 18px;
    }

    .x9k2-block {
        padding: 24px;
    }

    .x9k2-promo-card {
        max-width: 100%;
    }
}

@media (max-width: 991px) {
    body {
        padding-bottom: 94px;
    }

    .x9k2-block {
        padding: 22px 18px;
        border-radius: 18px;
    }

    .x9k2-toc__list {
        columns: 1;
    }

    .x9k2-hero {
        min-height: auto;
    }

    .x9k2-hero__inner {
        padding: 38px 16px 42px;
    }

    .x9k2-hero__text {
        max-width: 100%;
    }

    .x9k2-hero__sub {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .x9k2-promo-card {
        margin: 0;
    }

    .x9k2-tourn-card__name {
        font-size: 20px;
    }

    .x9k2-author__inner {
        gap: 16px;
    }

    .x9k2-author__photo {
        width: 96px;
        height: 96px;
    }
}

@media (max-width: 767px) {
    body {
        padding-bottom: 108px;
    }

    .x9k2-container {
        padding: 0 12px;
    }

    .x9k2-block {
        padding: 18px 14px;
        margin-bottom: 18px;
        border-radius: 16px;
    }

    .x9k2-block__title {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .x9k2-block__subtitle {
        font-size: 18px;
    }

    .x9k2-hero__inner {
        padding: 28px 12px 34px;
    }

    .x9k2-hero__title {
        font-size: 30px;
        margin-bottom: 12px;
    }

    .x9k2-hero__sub {
        font-size: 15px;
        line-height: 1.6;
    }

    .x9k2-promo-card {
        padding: 18px 14px;
        border-radius: 16px;
    }

    .x9k2-promo-card__code-wrap {
        flex-direction: column;
    }

    .x9k2-promo-card__code {
        min-height: 50px;
        font-size: 20px;
    }

    .btn-copy {
        width: 100%;
        min-width: 0;
        min-height: 46px;
        border-radius: 12px;
    }

    .x9k2-breadcrumbs {
        padding: 10px 12px;
        border-radius: 12px;
    }

    .x9k2-table th,
    .x9k2-table td {
        padding: 12px 12px;
        font-size: 13px;
    }

    .x9k2-adv-item {
        padding: 18px 12px;
        border-radius: 16px;
    }

    .x9k2-adv-item__icon {
        font-size: 30px;
    }

    .x9k2-adv-item__text {
        font-size: 13px;
    }

    .x9k2-proscons {
        padding: 18px 14px;
        border-radius: 16px;
    }

    .x9k2-proscons__header {
        font-size: 18px;
    }

    .x9k2-jackpot-card {
        padding: 18px 12px;
        border-radius: 16px;
    }

    .x9k2-jackpot-card__amount {
        font-size: 24px;
    }

    .x9k2-screenshots .screenshot-item img {
        height: 200px;
        border-radius: 16px;
    }

    .x9k2-tourn-card {
        padding: 18px 14px;
        border-radius: 16px;
    }

    .x9k2-tourn-card__name {
        font-size: 18px;
    }

    .x9k2-app-btn {
        min-height: 60px;
        padding: 12px 14px;
        border-radius: 14px;
    }

    .x9k2-app-btn__store {
        font-size: 15px;
    }

    .x9k2-bonus-card {
        padding: 20px 14px;
        border-radius: 16px;
    }

    .x9k2-bonus-card__name {
        font-size: 17px;
    }

    .x9k2-bonus-card__value {
        font-size: 28px;
    }

    .x9k2-game-card {
        padding: 10px;
        border-radius: 14px;
    }

    .x9k2-game-card__name {
        font-size: 13px;
        min-height: 36px;
    }

    .x9k2-demo-modal__body iframe {
        height: 62vh;
    }

    .x9k2-slotmachine {
        padding: 20px 14px;
        border-radius: 18px;
    }

    .x9k2-slotmachine__reels {
        gap: 8px;
    }

    .x9k2-reel {
        width: 72px;
        height: 72px;
        font-size: 30px;
        border-radius: 14px;
    }

    .x9k2-review-content .x9k2-content-body h2 {
        font-size: 24px;
    }

    .x9k2-review-content .x9k2-content-body h3 {
        font-size: 20px;
    }

    .x9k2-review-content .x9k2-content-body p,
    .x9k2-review-content .x9k2-content-body li {
        font-size: 14px;
    }

    .x9k2-accordion__btn {
        padding: 16px 14px;
        font-size: 14px;
    }

    .x9k2-accordion__body {
        padding: 0 14px 16px;
        font-size: 13px;
    }

    .x9k2-review-card {
        padding: 18px 14px;
        border-radius: 16px;
    }

    .x9k2-review-form-wrap {
        padding: 18px 14px;
        border-radius: 16px;
    }

    .x9k2-author__inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .x9k2-author__photo {
        width: 88px;
        height: 88px;
    }

    .x9k2-author__name {
        font-size: 20px;
    }

    .x9k2-author__links {
        justify-content: center;
    }

    .x9k2-sticky-widget {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 14px 14px 12px;
        border-radius: 18px;
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .x9k2-sticky-widget__btn {
        width: 100%;
    }
}

@media (max-width: 560px) {
    .x9k2-hero__title {
        font-size: 26px;
    }

    .x9k2-hero__sub {
        font-size: 14px;
    }

    .x9k2-block__title {
        font-size: 22px;
    }

    .x9k2-table--mirrors,
    .x9k2-table--winners,
    .x9k2-table--info {
        min-width: 560px;
    }

    .x9k2-toc__list a {
        font-size: 13px;
    }

    .x9k2-screenshots .screenshot-item img {
        height: 180px;
    }

    .x9k2-bonus-card__icon {
        font-size: 34px;
    }

    .x9k2-demo-modal {
        border-radius: 14px;
    }

    .x9k2-demo-modal__header,
    .x9k2-demo-modal__footer {
        padding-left: 12px;
        padding-right: 12px;
    }

    #fortune-wheel {
        width: min(100%, 280px);
    }
}

@media (max-width: 420px) {
    body {
        padding-bottom: 116px;
    }

    .x9k2-container {
        padding: 0 10px;
    }

    .x9k2-block {
        padding: 16px 12px;
        border-radius: 14px;
    }

    .x9k2-hero__inner {
        padding: 24px 10px 30px;
    }

    .x9k2-hero__badge {
        font-size: 11px;
        min-height: 28px;
    }

    .x9k2-hero__title {
        font-size: 24px;
    }

    .x9k2-promo-card__code {
        font-size: 18px;
        letter-spacing: 0.1em;
    }

    .x9k2-jackpot-card__amount {
        font-size: 21px;
    }

    .x9k2-reel {
        width: 64px;
        height: 64px;
        font-size: 26px;
    }

    .x9k2-sticky-widget__text {
        font-size: 14px;
    }
}

.win {
    max-width: 1120px;
    margin: 0 auto;
    padding: 40px 20px 72px;
    background: #252525;
    border: 1px solid #353535;
    border-radius: 22px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
    color: #ececec;
    font-family: 'Open Sans', 'Roboto', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.72;
}

.win > *:first-child {
    margin-top: 0;
}

.win h1,
.win h2,
.win h3,
.win h4 {
    line-height: 1.24;
    letter-spacing: -0.02em;
}

.win h1 {
    margin: 0 0 24px;
    font-size: clamp(34px, 4.8vw, 52px);
    font-weight: 800;
    color: #ffffff;
}

.win h2 {
    margin: 46px 0 16px;
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 800;
    color: #ffdd00;
}

.win h3 {
    margin: 28px 0 14px;
    font-size: clamp(20px, 2.4vw, 26px);
    font-weight: 700;
    color: #ffffff;
}

.win h4 {
    margin: 22px 0 12px;
    font-size: 18px;
    font-weight: 700;
    color: #e4e4e4;
}

.win p {
    margin: 0 0 18px;
    color: #d9d9d9;
}

.win > h1 + p {
    font-size: 18px;
    color: #f0f0f0;
}

.win a {
    color: #ffdd00;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
    transition: color 0.25s ease, opacity 0.25s ease;
    word-break: break-word;
}

.win a:hover {
    color: #ffe766;
    opacity: 1;
}

.win strong,
.win b {
    color: #ffffff;
    font-weight: 700;
}

.win ul,
.win ol {
    margin: 0 0 22px;
    padding-left: 24px;
}

.win li {
    margin-bottom: 10px;
    color: #d9d9d9;
}

.win li::marker {
    color: #ffdd00;
}

.win table {
    width: 100%;
    border-collapse: collapse;
    margin: 28px 0 34px;
    background: #1d1d1d;
    border: 1px solid #363636;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.win thead tr {
    background: #101010;
}

.win th,
.win td {
    text-align: left;
    vertical-align: top;
    padding: 14px 16px;
    border-bottom: 1px solid #363636;
}

.win th {
    font-size: 13px;
    font-weight: 700;
    color: #ffdd00;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.win td {
    font-size: 15px;
    color: #ececec;
}

.win tbody tr:nth-child(even) {
    background: #242424;
}

.win tbody tr:last-child td {
    border-bottom: 0;
}

.win blockquote {
    margin: 26px 0;
    padding: 18px 20px;
    background: linear-gradient(180deg, rgba(255, 221, 0, 0.08), rgba(255, 221, 0, 0.03));
    border-left: 4px solid #ffdd00;
    border-radius: 0 16px 16px 0;
}

.win blockquote p {
    margin-bottom: 0;
    color: #f3f3f3;
}

.win hr {
    border: 0;
    height: 1px;
    margin: 32px 0;
    background: linear-gradient(90deg, transparent, #3d3d3d, transparent);
}

.win img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 14px;
}

@media (max-width: 991px) {
    .win {
        padding: 34px 18px 56px;
        border-radius: 18px;
        font-size: 15px;
    }

    .win h1 {
        margin-bottom: 20px;
    }

    .win h2 {
        margin-top: 40px;
    }

    .win table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
    }
}

@media (max-width: 767px) {
    .win {
        padding: 26px 14px 46px;
        border-radius: 16px;
        line-height: 1.66;
    }

    .win h1 {
        font-size: 30px;
    }

    .win h2 {
        font-size: 24px;
        margin-top: 34px;
        margin-bottom: 14px;
    }

    .win h3 {
        font-size: 20px;
        margin-top: 24px;
        margin-bottom: 12px;
    }

    .win p,
    .win li,
    .win td {
        font-size: 15px;
    }

    .win ul,
    .win ol {
        padding-left: 20px;
        margin-bottom: 18px;
    }

    .win blockquote {
        padding: 16px 16px 16px 18px;
        margin: 22px 0;
        border-radius: 0 12px 12px 0;
    }

    .win th,
    .win td {
        padding: 12px 14px;
    }
}

@media (max-width: 560px) {
    .win {
        padding: 22px 12px 40px;
        font-size: 14px;
        border-radius: 14px;
    }

    .win h1 {
        font-size: 26px;
    }

    .win > h1 + p {
        font-size: 16px;
    }

    .win h2 {
        font-size: 22px;
        margin-top: 30px;
    }

    .win h3 {
        font-size: 18px;
    }

    .win table,
    .win thead,
    .win tbody,
    .win tr,
    .win th,
    .win td {
        display: block;
        width: 100%;
    }

    .win table {
        white-space: normal;
        overflow: hidden;
        border-radius: 14px;
    }

    .win thead {
        display: none;
    }

    .win tbody tr {
        padding: 12px;
        border-bottom: 1px solid #363636;
    }

    .win tbody tr:last-child {
        border-bottom: 0;
    }

    .win td {
        padding: 0;
        border: 0;
        white-space: normal;
    }

    .win td:first-child {
        margin-bottom: 4px;
        font-size: 12px;
        font-weight: 700;
        color: #ffdd00;
        text-transform: uppercase;
        letter-spacing: 0.04em;
    }

    .win td:last-child {
        font-size: 14px;
        color: #ededed;
    }

    .win blockquote {
        padding: 14px 14px 14px 16px;
    }
}

@media (max-width: 380px) {
    .win h1 {
        font-size: 24px;
    }

    .win h2 {
        font-size: 20px;
    }

    .win h3 {
        font-size: 17px;
    }

    .win p,
    .win li,
    .win td:last-child {
        font-size: 13px;
    }

    .win tbody tr {
        padding: 10px;
    }
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 3000;
    background: #000;
    border-bottom: 1px solid #1a1a1a;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.site-header__inner {
    max-width: 1300px;
    margin: 0 auto;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 16px;
}

.mobile-menu {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2999;
    background: rgba(0, 0, 0, 0.97);
    overflow-y: auto;
}

body {
    padding-top: 64px;
}