@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');

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

:root {
    --clr-bg: #1A1B20;
    --clr-header: #1A1B20;
    --clr-card: #22242c;
    --clr-card2: #1e2029;
    --clr-btn-primary: #20AA2E;
    --clr-btn-secondary: #262832;
    --clr-text: #e8e9ef;
    --clr-text-muted: #9fa3b1;
    --clr-accent: #20AA2E;
    --clr-border: #2e3040;
    --clr-gold: #f5c842;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --shadow: 0 4px 24px rgba(0, 0, 0, .45);
    --transition: .22s cubic-bezier(.4, 0, .2, 1);
}

html {
    scroll-behavior: smooth;
    background: var(--clr-bg);
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.6;
    font-size: 15px;
    overflow-x: hidden;
}

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

a:hover {
    color: #28d038;
}

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: inherit;
}

.xw9k2-wrapper {
    width: 100%;
    min-height: 100vh;
    display: grid;
    grid-template-rows: auto 1fr auto;
}

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

.xw9k2-section {
    padding: 60px 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    border: none;
    border-radius: var(--radius-sm);
    padding: 11px 22px;
    cursor: pointer;
    transition: filter var(--transition), transform var(--transition), box-shadow var(--transition);
    text-decoration: none;
    white-space: nowrap;
    line-height: 1.2;
}

.btn:hover {
    filter: brightness(1.12);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(32, 170, 46, .28);
    text-decoration: none;
}

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

.btn-primary {
    background: var(--clr-btn-primary);
    color: #fff;
}

.btn-secondary {
    background: var(--clr-btn-secondary);
    color: var(--clr-text);
}

.btn-primary:hover {
    color: #fff;
}

.btn-secondary:hover {
    color: var(--clr-text);
    box-shadow: 0 4px 16px rgba(38, 40, 50, .5);
}

.btn-lg {
    font-size: 16px;
    padding: 14px 32px;
    border-radius: var(--radius-md);
}

.btn-sm {
    font-size: 12px;
    padding: 8px 16px;
}

/* ─── HEADER ─────────────────────────────────────── */
.xw9k2-header {
    position: sticky;
    top: 0;
    z-index: 900;
    background: var(--clr-header);
    border-bottom: 1px solid var(--clr-border);
    box-shadow: 0 2px 18px rgba(0, 0, 0, .5);
}

.xw9k2-header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    height: 68px;
}

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

.xw9k2-logo img {
    height: 42px;
    width: auto;
}

.xw9k2-logo-text {
    font-size: 22px;
    font-weight: 900;
    color: var(--clr-text);
    letter-spacing: .5px;
}

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

.xw9k2-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.xw9k2-nav a {
    color: var(--clr-text-muted);
    font-weight: 600;
    font-size: 13px;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
}

.xw9k2-nav a:hover {
    color: var(--clr-text);
    background: rgba(255, 255, 255, .06);
}

.xw9k2-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.xw9k2-online-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    color: var(--clr-text-muted);
    margin-right: 6px;
}

.xw9k2-online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--clr-accent);
    animation: pulse-dot 2s infinite;
    flex-shrink: 0;
}

@keyframes pulse-dot {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(32, 170, 46, .5);
    }
    50% {
        box-shadow: 0 0 0 5px rgba(32, 170, 46, 0);
    }
}

.xw9k2-burger {
    display: none;
    background: none;
    border: none;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.xw9k2-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--clr-text);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

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

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

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

.xw9k2-mobile-menu {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--clr-header);
    z-index: 800;
    padding: 24px 20px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .3s cubic-bezier(.4, 0, .2, 1);
}

.xw9k2-mobile-menu.open {
    transform: translateX(0);
}

.xw9k2-mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 24px;
}

.xw9k2-mobile-menu nav a {
    color: var(--clr-text);
    font-weight: 600;
    font-size: 16px;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    border-bottom: 1px solid var(--clr-border);
    transition: background var(--transition);
}

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

.xw9k2-mobile-menu-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.xw9k2-mobile-menu-btns .btn {
    width: 100%;
    justify-content: center;
}

/* ─── HERO SLIDER ─────────────────────────────────── */
.xw9k2-hero {
    position: relative;
    overflow: hidden;
    height: 520px;
}

.xw9k2-slider {
    position: relative;
    height: 100%;
}

.xw9k2-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .7s ease;
    display: flex;
    align-items: center;
}

.xw9k2-slide.active {
    opacity: 1;
    z-index: 2;
}

.xw9k2-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.xw9k2-slide-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(26, 27, 32, .92) 40%, rgba(26, 27, 32, .3) 100%);
}

.xw9k2-slide-content {
    position: relative;
    z-index: 2;
    max-width: 560px;
    padding: 0 40px;
}

.xw9k2-slide-tag {
    display: inline-block;
    background: var(--clr-accent);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.xw9k2-slide-content h2 {
    font-size: clamp(26px, 4vw, 44px);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 14px;
    color: #fff;
    text-wrap: balance;
}

.xw9k2-slide-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, .8);
    margin-bottom: 28px;
    line-height: 1.65;
}

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

.xw9k2-slider-dots {
    position: absolute;
    bottom: 22px;
    left: 40px;
    z-index: 10;
    display: flex;
    gap: 8px;
}

.xw9k2-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .35);
    border: none;
    cursor: pointer;
    transition: background var(--transition), width var(--transition);
}

.xw9k2-slider-dot.active {
    background: var(--clr-accent);
    width: 24px;
    border-radius: 4px;
}

.xw9k2-slider-arrows {
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.xw9k2-slider-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .18);
    color: #fff;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--transition);
}

.xw9k2-slider-arrow:hover {
    background: var(--clr-btn-primary);
}

/* ─── SECTION TITLES ─────────────────────────────── */
.xw9k2-section-head {
    text-align: center;
    margin-bottom: 40px;
}

.xw9k2-section-head h2 {
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    text-wrap: balance;
}

.xw9k2-section-head p {
    color: var(--clr-text-muted);
    font-size: 15px;
    max-width: 560px;
    margin: 0 auto;
}

.xw9k2-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--clr-accent);
    margin-bottom: 8px;
}

/* ─── PROS & CONS ─────────────────────────────────── */
.xw9k2-proscons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.xw9k2-proscons-box {
    background: var(--clr-card);
    border-radius: var(--radius-lg);
    padding: 28px 30px;
    border: 1px solid var(--clr-border);
}

.xw9k2-proscons-box h3 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.xw9k2-pros h3 {
    color: var(--clr-accent);
}

.xw9k2-cons h3 {
    color: #e74c3c;
}

.xw9k2-proscons-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--clr-border);
    font-size: 14px;
    color: var(--clr-text);
    line-height: 1.5;
}

.xw9k2-proscons-list li:last-child {
    border-bottom: none;
}

.xw9k2-proscons-list li::before {
    content: '';
    flex-shrink: 0;
    margin-top: 4px;
}

.xw9k2-pros .xw9k2-proscons-list li::before {
    content: '✓';
    color: var(--clr-accent);
    font-weight: 700;
}

.xw9k2-cons .xw9k2-proscons-list li::before {
    content: '✗';
    color: #e74c3c;
    font-weight: 700;
}

/* ─── JACKPOT ─────────────────────────────────────── */
.xw9k2-jackpot {
    background: linear-gradient(135deg, #1e2029 0%, #23283a 100%);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 48px 32px;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.xw9k2-jackpot::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(32, 170, 46, .12) 0%, transparent 70%);
    pointer-events: none;
}

.xw9k2-jackpot-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--clr-gold);
    margin-bottom: 10px;
}

.xw9k2-jackpot-amount {
    font-size: clamp(44px, 7vw, 80px);
    font-weight: 900;
    color: var(--clr-gold);
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 0 40px rgba(245, 200, 66, .4);
    animation: jackpot-glow 3s ease-in-out infinite;
}

@keyframes jackpot-glow {
    0%, 100% {
        text-shadow: 0 0 30px rgba(245, 200, 66, .35);
    }
    50% {
        text-shadow: 0 0 60px rgba(245, 200, 66, .65);
    }
}

.xw9k2-jackpot-sub {
    color: var(--clr-text-muted);
    font-size: 14px;
    margin-bottom: 28px;
}

.xw9k2-jackpot-meta {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.xw9k2-jackpot-stat {
    text-align: center;
}

.xw9k2-jackpot-stat strong {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: #fff;
}

.xw9k2-jackpot-stat span {
    font-size: 12px;
    color: var(--clr-text-muted);
}

/* ─── GAMES ───────────────────────────────────────── */
.xw9k2-games-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.xw9k2-game-card {
    background: var(--clr-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--clr-border);
    transition: transform var(--transition), box-shadow var(--transition);
}

.xw9k2-game-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .5);
}

.xw9k2-game-card-img {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.xw9k2-game-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.xw9k2-game-card:hover .xw9k2-game-card-img img {
    transform: scale(1.06);
}

.xw9k2-game-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 27, 32, .75);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}

.xw9k2-game-card:hover .xw9k2-game-overlay {
    opacity: 1;
}

.xw9k2-game-card-body {
    padding: 12px;
}

.xw9k2-game-card-body h4 {
    font-size: 12px;
    font-weight: 700;
    color: var(--clr-text);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.xw9k2-game-card-body span {
    font-size: 11px;
    color: var(--clr-text-muted);
}

.xw9k2-games-slider-wrap {
    position: relative;
}

.xw9k2-games-slider {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.xw9k2-games-slider::-webkit-scrollbar {
    display: none;
}

.xw9k2-games-slider .xw9k2-game-card {
    min-width: 160px;
    scroll-snap-align: start;
    flex-shrink: 0;
}

/* ─── SLOT MACHINE ────────────────────────────────── */
.xw9k2-slot-wrap {
    background: var(--clr-card2);
    border: 2px solid var(--clr-border);
    border-radius: var(--radius-lg);
    max-width: 520px;
    margin: 0 auto;
    padding: 36px 32px;
    text-align: center;
}

.xw9k2-slot-title {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
}

.xw9k2-slot-sub {
    font-size: 13px;
    color: var(--clr-text-muted);
    margin-bottom: 28px;
}

.xw9k2-reels {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.xw9k2-reel {
    width: 90px;
    height: 90px;
    background: #13141a;
    border: 2px solid var(--clr-border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    overflow: hidden;
    position: relative;
}

.xw9k2-reel-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform .5s cubic-bezier(.4, 0, .2, 1);
}

.xw9k2-spin-btn {
    background: var(--clr-btn-primary);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: var(--radius-md);
    padding: 16px 48px;
    width: 100%;
    cursor: pointer;
    transition: filter var(--transition), transform var(--transition);
    margin-bottom: 18px;
}

.xw9k2-spin-btn:hover:not(:disabled) {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

.xw9k2-spin-btn:disabled {
    opacity: .6;
    cursor: not-allowed;
    transform: none;
}

.xw9k2-slot-result {
    min-height: 76px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.xw9k2-slot-win {
    background: linear-gradient(135deg, rgba(32, 170, 46, .18), rgba(32, 170, 46, .08));
    border: 1px solid rgba(32, 170, 46, .4);
    border-radius: var(--radius-md);
    padding: 16px 24px;
    width: 100%;
    animation: slot-win-in .4s ease;
}

@keyframes slot-win-in {
    from {
        opacity: 0;
        transform: scale(.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.xw9k2-slot-win p {
    color: var(--clr-accent);
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 10px;
}

.xw9k2-slot-lose {
    color: var(--clr-text-muted);
    font-size: 14px;
}

/* ─── REVIEW CONTENT ─────────────────────────────── */
.xw9k2-review {
    background: var(--clr-card2);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--clr-border);
}

.xw9k2-review-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 24px;
    margin-bottom: 28px;
    border-bottom: 1px solid var(--clr-border);
}

.xw9k2-review-author img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--clr-border);
}

.xw9k2-review-author-info h4 {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3px;
}

.xw9k2-review-author-info p {
    font-size: 12px;
    color: var(--clr-text-muted);
    margin-bottom: 6px;
}

.xw9k2-review-author-links {
    display: flex;
    gap: 10px;
}

.xw9k2-review-author-links a {
    font-size: 11px;
    color: var(--clr-accent);
    font-weight: 600;
}

.xw9k2-review-body h1,
.xw9k2-review-body h2,
.xw9k2-review-body h3,
.xw9k2-review-body h4,
.xw9k2-review-body h5,
.xw9k2-review-body h6 {
    color: #fff;
    font-weight: 700;
    margin: 24px 0 12px;
    line-height: 1.3;
}

.xw9k2-review-body h2 {
    font-size: 22px;
}

.xw9k2-review-body h3 {
    font-size: 18px;
}

.xw9k2-review-body h4 {
    font-size: 16px;
}

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

.xw9k2-review-body ul,
.xw9k2-review-body ol {
    margin: 0 0 18px 22px;
}

.xw9k2-review-body ul {
    list-style: disc;
}

.xw9k2-review-body ol {
    list-style: decimal;
}

.xw9k2-review-body li {
    color: var(--clr-text);
    margin-bottom: 8px;
    line-height: 1.6;
    padding-left: 4px;
}

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

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

.xw9k2-review-body em {
    font-style: italic;
    color: rgba(232, 233, 239, .85);
}

.xw9k2-review-body blockquote {
    border-left: 3px solid var(--clr-accent);
    padding: 12px 20px;
    background: rgba(32, 170, 46, .07);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 20px 0;
    color: var(--clr-text);
    font-style: italic;
}

.xw9k2-review-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    text-align: left;
    overflow-x: auto;
    display: block;
}

.xw9k2-review-body th {
    background: var(--clr-card);
    color: #fff;
    font-weight: 700;
    padding: 12px 14px;
    border: 1px solid var(--clr-border);
    font-size: 13px;
}

.xw9k2-review-body td {
    padding: 10px 14px;
    border: 1px solid var(--clr-border);
    color: var(--clr-text);
    font-size: 14px;
    vertical-align: top;
}

.xw9k2-review-body tr:nth-child(even) td {
    background: rgba(255, 255, 255, .025);
}

.xw9k2-review-body img {
    max-width: 100%;
    border-radius: var(--radius-sm);
    margin: 16px 0;
}

.xw9k2-review-body hr {
    border: none;
    border-top: 1px solid var(--clr-border);
    margin: 28px 0;
}

.xw9k2-review-body code {
    background: rgba(255, 255, 255, .08);
    border-radius: 4px;
    padding: 2px 6px;
    font-family: monospace;
    font-size: 13px;
    color: var(--clr-accent);
}

/* ─── TESTIMONIALS ─────────────────────────────────── */
.xw9k2-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.xw9k2-testimonial-card {
    background: var(--clr-card);
    border-radius: var(--radius-md);
    padding: 24px;
    border: 1px solid var(--clr-border);
    transition: box-shadow var(--transition);
}

.xw9k2-testimonial-card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, .4);
}

.xw9k2-testimonial-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.xw9k2-testimonial-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--clr-border);
    flex-shrink: 0;
}

.xw9k2-testimonial-meta h5 {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3px;
}

.xw9k2-testimonial-meta span {
    font-size: 11px;
    color: var(--clr-text-muted);
}

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

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

.xw9k2-testimonial-text {
    font-size: 13px;
    color: var(--clr-text-muted);
    line-height: 1.65;
}

.xw9k2-review-form {
    background: var(--clr-card2);
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1px solid var(--clr-border);
    max-width: 580px;
    margin: 0 auto;
}

.xw9k2-review-form h3 {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 22px;
}

.xw9k2-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
}

.xw9k2-form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--clr-text-muted);
}

.xw9k2-form-group input,
.xw9k2-form-group textarea {
    background: #13141a;
    border: 1.5px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    color: var(--clr-text);
    font-family: inherit;
    font-size: 14px;
    transition: border-color var(--transition);
    outline: none;
}

.xw9k2-form-group input:focus,
.xw9k2-form-group textarea:focus {
    border-color: var(--clr-accent);
}

.xw9k2-form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.xw9k2-form-success {
    display: none;
    background: rgba(32, 170, 46, .12);
    border: 1px solid rgba(32, 170, 46, .35);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    color: var(--clr-accent);
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    margin-top: 14px;
}

.xw9k2-form-success.show {
    display: block;
    animation: slot-win-in .3s ease;
}

/* ─── FAQ ─────────────────────────────────────────── */
.xw9k2-faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.xw9k2-faq-item {
    background: var(--clr-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--clr-border);
    overflow: hidden;
}

.xw9k2-faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    cursor: pointer;
    font-weight: 700;
    font-size: 15px;
    color: #fff;
    gap: 12px;
}

.xw9k2-faq-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--clr-btn-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--clr-text-muted);
    transition: transform var(--transition), background var(--transition);
}

.xw9k2-faq-item.open .xw9k2-faq-icon {
    transform: rotate(45deg);
    background: var(--clr-btn-primary);
    color: #fff;
}

.xw9k2-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .25s ease;
}

.xw9k2-faq-item.open .xw9k2-faq-a {
    max-height: 400px;
}

.xw9k2-faq-a-inner {
    padding: 0 22px 18px;
    color: var(--clr-text-muted);
    font-size: 14px;
    line-height: 1.7;
}

/* ─── FOOTER ─────────────────────────────────────── */
.xw9k2-footer {
    background: var(--clr-header);
    border-top: 1px solid var(--clr-border);
    padding: 50px 0 28px;
}

.xw9k2-footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 36px;
    margin-bottom: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--clr-border);
}

.xw9k2-footer-brand p {
    font-size: 13px;
    color: var(--clr-text-muted);
    line-height: 1.65;
    margin-top: 14px;
}

.xw9k2-footer-nav h4 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--clr-accent);
    margin-bottom: 14px;
}

.xw9k2-footer-nav ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.xw9k2-footer-nav ul a {
    font-size: 13px;
    color: var(--clr-text-muted);
    transition: color var(--transition);
}

.xw9k2-footer-nav ul a:hover {
    color: var(--clr-text);
}

.xw9k2-footer-payments h4 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--clr-accent);
    margin-bottom: 14px;
}

.xw9k2-payment-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.xw9k2-payment-logos span {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 700;
    color: var(--clr-text-muted);
}

.xw9k2-providers-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.xw9k2-providers-logos span {
    background: rgba(255, 255, 255, .04);
    border-radius: 4px;
    padding: 4px 8px;
    font-size: 10px;
    color: var(--clr-text-muted);
    font-weight: 600;
}

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

.xw9k2-footer-legal {
    font-size: 11px;
    color: var(--clr-text-muted);
    line-height: 1.65;
    max-width: 800px;
    margin: 0 auto 14px;
}

.xw9k2-footer-copyright {
    font-size: 12px;
    color: rgba(159, 163, 177, .5);
}

.xw9k2-footer-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.xw9k2-footer-links a {
    font-size: 12px;
    color: var(--clr-text-muted);
    transition: color var(--transition);
}

.xw9k2-footer-links a:hover {
    color: var(--clr-text);
}

.xw9k2-age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--clr-text-muted);
    font-size: 11px;
    font-weight: 800;
    color: var(--clr-text-muted);
    margin-bottom: 14px;
}

/* ─── STICKY WIDGET ─────────────────────────────── */
.xw9k2-sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(90deg, #181920 0%, #1f2230 100%);
    border-top: 2px solid var(--clr-accent);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, .5);
}

.xw9k2-widget-text {
    flex: 1;
}

.xw9k2-widget-text strong {
    display: block;
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 2px;
}

.xw9k2-widget-text span {
    font-size: 12px;
    color: var(--clr-text-muted);
}

.xw9k2-widget-close {
    background: none;
    border: none;
    color: var(--clr-text-muted);
    font-size: 20px;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
    flex-shrink: 0;
}

.xw9k2-widget-close:hover {
    color: var(--clr-text);
}

/* ─── INFO PAGES ─────────────────────────────────── */
.xw9k2-info-content {
    max-width: 820px;
    margin: 0 auto;
    padding: 48px 0 60px;
}

.xw9k2-info-content h1 {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 900;
    color: #fff;
    margin-bottom: 28px;
}

.xw9k2-info-content h2 {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin: 28px 0 12px;
}

.xw9k2-info-content h3 {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin: 22px 0 10px;
}

.xw9k2-info-content p {
    color: var(--clr-text);
    margin-bottom: 16px;
    line-height: 1.75;
}

.xw9k2-info-content ul {
    list-style: disc;
    margin: 0 0 18px 22px;
}

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

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

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

.xw9k2-info-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    text-align: left;
}

.xw9k2-info-content th {
    background: var(--clr-card);
    color: #fff;
    font-weight: 700;
    padding: 12px 14px;
    border: 1px solid var(--clr-border);
    font-size: 13px;
}

.xw9k2-info-content td {
    padding: 10px 14px;
    border: 1px solid var(--clr-border);
    color: var(--clr-text);
    font-size: 14px;
}

.xw9k2-info-content tr:nth-child(even) td {
    background: rgba(255, 255, 255, .025);
}

.xw9k2-breadcrumb {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 13px;
    color: var(--clr-text-muted);
    margin-bottom: 22px;
    flex-wrap: wrap;
}

.xw9k2-breadcrumb a {
    color: var(--clr-accent);
}

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

/* ─── EXTRAS / WP-STYLE ─────────────────────────── */
.entry-content, .wp-content, .wp-block-group {
    display: contents;
}

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

.wp-caption-text {
    font-size: 12px;
    color: var(--clr-text-muted);
    margin-top: 4px;
}

.aligncenter {
    margin: 0 auto;
}

.alignleft {
    float: left;
    margin-right: 16px;
}

.alignright {
    float: right;
    margin-left: 16px;
}

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

.wp-block-separator {
    border-top: 1px solid var(--clr-border);
    margin: 28px 0;
}

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

/* ─── ANIMATIONS ─────────────────────────────────── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    animation: fadeInUp .55s ease both;
}

.fade-up-d1 {
    animation-delay: .1s;
}

.fade-up-d2 {
    animation-delay: .2s;
}

.fade-up-d3 {
    animation-delay: .3s;
}

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1100px) {
    .xw9k2-games-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .xw9k2-header-inner {
        grid-template-columns: auto 1fr auto;
    }

    .xw9k2-nav {
        display: none;
    }

    .xw9k2-burger {
        display: flex;
    }

    .xw9k2-mobile-menu {
        display: block;
    }

    .xw9k2-proscons-grid {
        grid-template-columns: 1fr;
    }

    .xw9k2-testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }

    .xw9k2-footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .xw9k2-games-grid {
        display: none;
    }

    .xw9k2-games-slider-wrap {
        display: block;
    }

    .xw9k2-hero {
        height: 380px;
    }
}

@media (max-width: 600px) {
    .xw9k2-testimonials-grid {
        grid-template-columns: 1fr;
    }

    .xw9k2-footer-top {
        grid-template-columns: 1fr;
    }

    .xw9k2-hero {
        height: 320px;
    }

    .xw9k2-slide-content {
        padding: 0 20px;
    }

    .xw9k2-slide-content h2 {
        font-size: 22px;
    }

    .xw9k2-sticky-widget {
        flex-wrap: wrap;
    }

    .xw9k2-review {
        padding: 22px;
    }

    .xw9k2-review-form {
        padding: 22px;
    }

    .xw9k2-jackpot {
        padding: 32px 18px;
    }

    .xw9k2-slot-wrap {
        padding: 24px 16px;
    }

    .xw9k2-reels {
        gap: 8px;
    }

    .xw9k2-reel {
        width: 72px;
        height: 72px;
        font-size: 34px;
    }
}

@media (min-width: 900px) {
    .xw9k2-games-slider-wrap {
        display: none;
    }
}

@media (max-width: 768px) {

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

    .xw9k2-container {
        padding: 0 16px;
    }

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

    .xw9k2-section-head h2 {
        font-size: 28px;
        line-height: 1.2;
    }

    .xw9k2-section-head p {
        font-size: 14px;
    }

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

    .xw9k2-hero {
        height: 440px;
    }

    .xw9k2-slide {
        align-items: flex-end;
    }

    .xw9k2-slide-bg::after {
        background: linear-gradient(to top, rgba(26, 27, 32, .96) 15%, rgba(26, 27, 32, .45) 70%);
    }

    .xw9k2-slide-content {
        max-width: 100%;
        width: 100%;
        padding: 22px;
        text-align: center;
    }

    .xw9k2-slide-content h2 {
        font-size: 30px;
    }

    .xw9k2-slide-content p {
        font-size: 14px;
    }

    .xw9k2-slide-btns {
        flex-direction: column;
    }

    .xw9k2-slide-btns .btn {
        width: 100%;
    }

    .xw9k2-slider-dots {
        left: 50%;
        transform: translateX(-50%);
    }

    .xw9k2-slider-arrows {
        right: 12px;
    }

    .xw9k2-proscons-box {
        padding: 22px;
    }

    .xw9k2-proscons-list li {
        font-size: 14px;
    }

    .xw9k2-jackpot {
        padding: 28px 18px;
    }

    .xw9k2-jackpot-amount {
        font-size: 48px;
    }

    .xw9k2-jackpot-meta {
        display: grid;
        grid-template-columns:repeat(2, 1fr);
        gap: 16px;
    }

    .xw9k2-games-slider {
        gap: 12px;
        padding-bottom: 12px;
    }

    .xw9k2-games-slider .xw9k2-game-card {
        width: 160px;
        min-width: 160px;
    }

    .xw9k2-slot-wrap {
        padding: 22px 16px;
    }

    .xw9k2-reels {
        gap: 8px;
    }

    .xw9k2-reel {
        width: 70px;
        height: 70px;
        font-size: 34px;
    }

    .xw9k2-review {
        padding: 22px;
    }

    .xw9k2-review-author {
        flex-direction: column;
        text-align: center;
    }

    .xw9k2-review-author-links {
        justify-content: center;
        flex-wrap: wrap;
    }

    .xw9k2-review-body table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .xw9k2-testimonials-grid {
        grid-template-columns:1fr;
        gap: 16px;
    }

    .xw9k2-review-form {
        padding: 22px;
    }

    .xw9k2-faq-q {
        padding: 16px;
        font-size: 14px;
    }

    .xw9k2-faq-a-inner {
        padding: 0 16px 16px;
    }

    .xw9k2-footer-top {
        grid-template-columns:1fr;
        gap: 24px;
    }

    .xw9k2-footer-links {
        flex-direction: column;
        gap: 8px;
    }

    .xw9k2-sticky-widget {
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
    }

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

    .xw9k2-widget-close {
        position: absolute;
        top: 8px;
        right: 8px;
    }

}

@media (max-width: 768px) {

    html,
    body {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        overflow-x: hidden !important;
    }

    body {
        font-size: 16px !important;
        line-height: 1.65 !important;
    }

    .xw9k2-wrapper,
    .xw9k2-container,
    main,
    section,
    .xw9k2-section,
    .xw9k2-review,
    .xw9k2-review-body,
    .xw9k2-info-content {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        overflow-x: hidden !important;
    }

    .xw9k2-container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .xw9k2-section {
        padding: 32px 0 !important;
    }

    .xw9k2-header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 99999 !important;
    }

    body {
        padding-top: 64px !important;
    }

    .xw9k2-header-inner {
        height: 64px !important;
        grid-template-columns:auto 1fr auto !important;
        gap: 8px !important;
        padding: 0 12px !important;
    }

    .xw9k2-logo img {
        height: 32px !important;
    }

    .xw9k2-nav,
    .xw9k2-online-badge {
        display: none !important;
    }

    .xw9k2-header-actions {
        margin-left: auto !important;
        gap: 6px !important;
    }

    .xw9k2-header-actions .btn {
        width: auto !important;
        min-width: auto !important;
        height: 34px !important;
        min-height: 34px !important;
        padding: 0 10px !important;
        font-size: 11px !important;
    }

    .xw9k2-burger {
        display: flex !important;
        width: 40px !important;
        height: 40px !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 10px !important;
        background: #22242c !important;
        border: 1px solid var(--clr-border) !important;
    }

    .xw9k2-mobile-menu {
        display: block !important;
        position: fixed !important;
        top: 64px !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        z-index: 99998 !important;
        padding: 16px !important;
        background: #1A1B20 !important;
        transform: translateX(100%) !important;
        overflow-y: auto !important;
    }

    .xw9k2-mobile-menu.open {
        transform: translateX(0) !important;
    }

    .xw9k2-mobile-menu nav {
        display: grid !important;
        grid-template-columns:1fr !important;
        gap: 10px !important;
    }

    .xw9k2-mobile-menu nav a {
        min-height: 52px !important;
        display: flex !important;
        align-items: center !important;
        padding: 0 16px !important;
        border-radius: 14px !important;
        background: #22242c !important;
        border: 1px solid var(--clr-border) !important;
        color: #fff !important;
        font-size: 15px !important;
        font-weight: 700 !important;
    }

    .xw9k2-hero {
        height: auto !important;
        min-height: 420px !important;
    }

    .xw9k2-slider {
        height: 420px !important;
    }

    .xw9k2-slide {
        height: 420px !important;
        align-items: center !important;
    }

    .xw9k2-slide-bg {
        background-position: center !important;
    }

    .xw9k2-slide-bg::after {
        background: rgba(26, 27, 32, .82) !important;
    }

    .xw9k2-slide-content {
        width: 100% !important;
        max-width: 100% !important;
        padding: 40px 22px 70px !important;
        text-align: center !important;
    }

    .xw9k2-slide-tag {
        font-size: 10px !important;
        margin-bottom: 12px !important;
    }

    .xw9k2-slide-content h2 {
        font-size: 26px !important;
        line-height: 1.18 !important;
        margin-bottom: 12px !important;
    }

    .xw9k2-slide-content p {
        font-size: 14px !important;
        line-height: 1.55 !important;
        margin-bottom: 18px !important;
    }

    .xw9k2-slide-btns {
        display: grid !important;
        grid-template-columns:1fr !important;
        gap: 10px !important;
    }

    .btn,
    .btn-lg,
    .btn-sm,
    .btn-primary,
    .btn-secondary {
        width: 100% !important;
        min-height: 44px !important;
        padding: 12px 14px !important;
        font-size: 14px !important;
        white-space: normal !important;
        text-align: center !important;
    }

    .xw9k2-slider-dots {
        left: 50% !important;
        bottom: 18px !important;
        transform: translateX(-50%) !important;
    }

    .xw9k2-slider-arrows {
        display: none !important;
    }

    .xw9k2-section-head {
        margin-bottom: 22px !important;
    }

    .xw9k2-label {
        font-size: 10px !important;
    }

    .xw9k2-section-head h2 {
        font-size: 24px !important;
        line-height: 1.25 !important;
    }

    .xw9k2-section-head p {
        font-size: 14px !important;
        line-height: 1.6 !important;
    }

    .xw9k2-proscons-grid,
    .xw9k2-testimonials-grid,
    .xw9k2-footer-top {
        display: grid !important;
        grid-template-columns:1fr !important;
        gap: 16px !important;
    }

    .xw9k2-proscons-box,
    .xw9k2-jackpot,
    .xw9k2-review,
    .xw9k2-review-form,
    .xw9k2-testimonial-card,
    .xw9k2-slot-wrap {
        padding: 20px 16px !important;
        border-radius: 16px !important;
    }

    .xw9k2-jackpot-amount {
        font-size: 38px !important;
        line-height: 1.1 !important;
        word-break: break-word !important;
    }

    .xw9k2-jackpot-meta {
        display: grid !important;
        grid-template-columns:1fr 1fr !important;
        gap: 12px !important;
    }

    .xw9k2-games-grid {
        display: flex !important;
        grid-template-columns:none !important;
        gap: 14px !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        margin-right: -16px !important;
        padding-right: 16px !important;
        padding-bottom: 12px !important;
    }

    .xw9k2-games-grid .xw9k2-game-card {
        flex: 0 0 72% !important;
        min-width: 72% !important;
        scroll-snap-align: start !important;
    }

    .xw9k2-games-slider-wrap {
        display: none !important;
    }

    .xw9k2-game-overlay {
        opacity: 1 !important;
        background: linear-gradient(to top, rgba(0, 0, 0, .65), transparent) !important;
        align-items: flex-end !important;
        padding: 12px !important;
    }

    .xw9k2-game-overlay .btn {
        width: 100% !important;
    }

    .xw9k2-reels {
        gap: 8px !important;
    }

    .xw9k2-reel {
        width: 68px !important;
        height: 68px !important;
        font-size: 32px !important;
    }

    .xw9k2-review-author {
        display: grid !important;
        grid-template-columns:1fr !important;
        justify-items: center !important;
        text-align: center !important;
        gap: 12px !important;
    }

    .xw9k2-review-author-links {
        justify-content: center !important;
        flex-wrap: wrap !important;
    }

    .xw9k2-review-body h1 {
        font-size: 24px !important;
        line-height: 1.25 !important;
    }

    .xw9k2-review-body h2 {
        font-size: 21px !important;
        line-height: 1.3 !important;
    }

    .xw9k2-review-body h3 {
        font-size: 18px !important;
    }

    .xw9k2-review-body p,
    .xw9k2-review-body li {
        font-size: 15px !important;
        line-height: 1.72 !important;
    }

    .xw9k2-review-body ul,
    .xw9k2-review-body ol {
        margin-left: 0 !important;
        padding-left: 20px !important;
    }

    .xw9k2-review-body table,
    .xw9k2-info-content table {
        display: block !important;
        width: 100% !important;
        overflow-x: auto !important;
        white-space: nowrap !important;
        -webkit-overflow-scrolling: touch !important;
    }

    .xw9k2-review-body th,
    .xw9k2-review-body td,
    .xw9k2-info-content th,
    .xw9k2-info-content td {
        padding: 10px 12px !important;
        font-size: 13px !important;
    }

    .xw9k2-faq-list {
        max-width: 100% !important;
    }

    .xw9k2-faq-q {
        padding: 16px !important;
        font-size: 14px !important;
        line-height: 1.35 !important;
    }

    .xw9k2-faq-a-inner {
        padding: 0 16px 16px !important;
        font-size: 14px !important;
    }

    .xw9k2-sticky-widget {
        display: grid !important;
        grid-template-columns:1fr !important;
        gap: 10px !important;
        padding: 12px 42px 12px 12px !important;
        text-align: center !important;
    }

    .xw9k2-widget-text strong {
        font-size: 14px !important;
    }

    .xw9k2-widget-text span {
        font-size: 11px !important;
    }

    .xw9k2-widget-close {
        position: absolute !important;
        right: 10px !important;
        top: 10px !important;
    }

    .xw9k2-footer {
        padding: 34px 0 24px !important;
    }

    .xw9k2-footer-brand,
    .xw9k2-footer-nav,
    .xw9k2-footer-payments,
    .xw9k2-footer-bottom {
        text-align: center !important;
    }

    .xw9k2-footer-nav ul,
    .xw9k2-payment-logos,
    .xw9k2-providers-logos,
    .xw9k2-footer-links {
        justify-content: center !important;
        align-items: center !important;
    }

}

@media (max-width: 430px) {

    .xw9k2-container {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    .xw9k2-header-actions .btn-secondary {
        display: none !important;
    }

    .xw9k2-hero,
    .xw9k2-slider,
    .xw9k2-slide {
        height: 390px !important;
        min-height: 390px !important;
    }

    .xw9k2-slide-content {
        padding: 34px 18px 64px !important;
    }

    .xw9k2-slide-content h2 {
        font-size: 22px !important;
    }

    .xw9k2-slide-content p {
        font-size: 13px !important;
    }

    .xw9k2-games-grid .xw9k2-game-card {
        flex-basis: 82% !important;
        min-width: 82% !important;
    }

    .xw9k2-jackpot-amount {
        font-size: 31px !important;
    }

    .xw9k2-jackpot-meta {
        grid-template-columns:1fr !important;
    }

    .xw9k2-reel {
        width: 58px !important;
        height: 58px !important;
        font-size: 28px !important;
    }

}