:root {
    --c-purple: #73499e;
    --c-purple-d: #5c3a80;
    --c-purple-l: #8a5db8;
    --c-green: #52cf27;
    --c-green-d: #3faa1a;
    --c-orange: #f3902f;
    --c-orange-d: #d97520;
    --c-bg: #eef0f5;
    --c-bg2: #e4e7ef;
    --c-white: #ffffff;
    --c-text: #1a1a2e;
    --c-text-light: #5a5a7a;
    --c-border: #d0d4e3;
    --c-card: #ffffff;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 24px rgba(115, 73, 158, 0.10);
    --shadow-md: 0 8px 32px rgba(115, 73, 158, 0.16);
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: 'Roboto Condensed', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--c-text);
    background: var(--c-bg);
    overflow-x: hidden;
}

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

a {
    color: var(--c-orange);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--c-orange-d);
}

ul {
    list-style: none;
}

.x7k2-wrap {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

.x7k2-box {
    width: 100%;
}

/* ===== HEADER ===== */
.x7k2-header {
    background: var(--c-purple);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.18);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.x7k2-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 16px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.x7k2-logo img {
    height: 46px;
    width: auto;
    border-radius: 6px;
}

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

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

.x7k2-nav a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    font-weight: 600;
    padding: 7px 10px;
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition);
    white-space: nowrap;
}

.x7k2-nav a:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.x7k2-nav a svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

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

.x7k2-online {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.10);
    border-radius: 20px;
    padding: 4px 10px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    white-space: nowrap;
}

.x7k2-online-dot {
    width: 8px;
    height: 8px;
    background: var(--c-green);
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(82, 207, 39, 0.3);
    animation: pulse-dot 1.8s infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        box-shadow: 0 0 0 2px rgba(82, 207, 39, 0.3);
    }
    50% {
        box-shadow: 0 0 0 5px rgba(82, 207, 39, 0.1);
    }
}

.x7k2-lang-selector {
    position: relative;
}

.x7k2-lang-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    color: #fff;
    cursor: pointer;
    padding: 5px 9px;
    font-size: 13px;
    font-family: 'Roboto Condensed', Arial, sans-serif;
    transition: background var(--transition);
}

.x7k2-lang-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

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

.x7k2-lang-drop {
    position: absolute;
    right: 0;
    top: calc(100% + 6px);
    background: var(--c-white);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    min-width: 140px;
    overflow: hidden;
    display: none;
    z-index: 200;
}

.x7k2-lang-drop.open {
    display: block;
    animation: fadeInDown 0.18s ease;
}

.x7k2-lang-drop a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    font-size: 13px;
    color: var(--c-text);
    border-bottom: 1px solid var(--c-bg);
}

.x7k2-lang-drop a:last-child {
    border-bottom: none;
}

.x7k2-lang-drop a:hover {
    background: var(--c-bg);
    color: var(--c-purple);
}

.btn-login {
    background: var(--c-orange);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Roboto Condensed', Arial, sans-serif;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.btn-login:hover {
    background: var(--c-orange-d);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(243, 144, 47, 0.35);
    color: #fff;
}

.btn-signup {
    background: var(--c-green);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Roboto Condensed', Arial, sans-serif;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.btn-signup:hover {
    background: var(--c-green-d);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(82, 207, 39, 0.35);
    color: #fff;
}

.x7k2-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 6px;
    transition: background var(--transition);
}

.x7k2-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

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

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

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

.x7k2-mobile-nav {
    display: none;
    background: var(--c-purple-d);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.x7k2-mobile-nav.open {
    display: block;
    animation: fadeInDown 0.2s ease;
}

.x7k2-mobile-nav a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 13px 20px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    transition: background var(--transition);
}

.x7k2-mobile-nav a:hover {
    background: rgba(255, 255, 255, 0.08);
}

.x7k2-mobile-nav a svg {
    width: 18px;
    height: 18px;
}

/* ===== HERO ===== */
.x7k2-hero {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    align-items: center;
}

.x7k2-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #2a1240 0%, #3d1f6b 40%, #1a2b5a 100%);
    z-index: 0;
}

.x7k2-hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.22;
    z-index: 1;
}

.x7k2-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(30, 10, 60, 0.82) 0%, rgba(30, 10, 60, 0.35) 60%, transparent 100%);
    z-index: 2;
}

.x7k2-hero-inner {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 16px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: center;
    width: 100%;
}

.x7k2-hero-text {
    max-width: 560px;
}

.x7k2-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(82, 207, 39, 0.18);
    border: 1px solid rgba(82, 207, 39, 0.4);
    border-radius: 20px;
    padding: 4px 14px;
    font-size: 12px;
    font-weight: 700;
    color: #a8f07a;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
}

.x7k2-hero-text h1 {
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 14px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.x7k2-hero-text p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 28px;
    line-height: 1.55;
}

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

.btn-hero-main {
    background: linear-gradient(135deg, var(--c-green), #3faa1a);
    color: #fff;
    border-radius: 10px;
    padding: 14px 30px;
    font-size: 17px;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 24px rgba(82, 207, 39, 0.4);
    transition: transform var(--transition), box-shadow var(--transition);
    animation: pulse-btn 2.5s infinite;
}

.btn-hero-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(82, 207, 39, 0.5);
    color: #fff;
}

@keyframes pulse-btn {
    0%, 100% {
        box-shadow: 0 6px 24px rgba(82, 207, 39, 0.4);
    }
    50% {
        box-shadow: 0 6px 36px rgba(82, 207, 39, 0.65);
    }
}

.btn-hero-sec {
    background: rgba(255, 255, 255, 0.1);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    border-radius: 10px;
    padding: 14px 26px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background var(--transition), transform var(--transition);
    backdrop-filter: blur(6px);
}

.btn-hero-sec:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
    color: #fff;
}

.x7k2-hero-bonus {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.06) 100%);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    backdrop-filter: blur(10px);
    padding: 28px 26px;
    text-align: center;
    min-width: 200px;
    box-shadow: var(--shadow-md);
}

.x7k2-hero-bonus-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}

.x7k2-hero-bonus-amount {
    font-size: 38px;
    font-weight: 900;
    color: var(--c-green);
    line-height: 1;
    margin-bottom: 2px;
}

.x7k2-hero-bonus-plus {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.x7k2-hero-bonus-spins {
    font-size: 24px;
    font-weight: 800;
    color: var(--c-orange);
    margin-bottom: 4px;
}

.x7k2-hero-bonus-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 18px;
    line-height: 1.4;
}

.btn-bonus-tile {
    background: linear-gradient(135deg, var(--c-green), #3faa1a);
    color: #fff;
    border-radius: 8px;
    padding: 11px 20px;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    display: block;
    width: 100%;
    text-align: center;
    box-shadow: 0 4px 16px rgba(82, 207, 39, 0.35);
    transition: background var(--transition), transform var(--transition);
}

.btn-bonus-tile:hover {
    background: linear-gradient(135deg, #3faa1a, #2f8a10);
    transform: translateY(-1px);
    color: #fff;
}

/* ===== MAIN CONTENT AREA ===== */
.x7k2-main {
    flex: 1;
    padding: 32px 0 0;
}

.x7k2-section {
    margin-bottom: 32px;
}

.x7k2-block {
    background: var(--c-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 28px;
    margin: 0 0 24px;
    transition: box-shadow var(--transition);
}

.x7k2-block:hover {
    box-shadow: var(--shadow-md);
}

.x7k2-block-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--c-purple);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.x7k2-block-title svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* ===== TABLE OF CONTENTS ===== */
.x7k2-toc {
}

.x7k2-toc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}

.x7k2-toc-item a {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 11px 14px;
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    color: var(--c-text);
    font-size: 14px;
    font-weight: 600;
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.x7k2-toc-item a:hover {
    background: var(--c-purple);
    color: #fff;
    border-color: var(--c-purple);
    transform: translateX(3px);
}

.x7k2-toc-item a svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--c-purple);
    transition: color var(--transition);
}

.x7k2-toc-item a:hover svg {
    color: #fff;
}

/* ===== INFO TABLE ===== */
.x7k2-info-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.x7k2-info-table table {
    width: 100%;
    min-width: 500px;
    border-collapse: collapse;
    font-size: 14px;
}

.x7k2-info-table td {
    padding: 11px 14px;
    border: 1px solid var(--c-border);
    vertical-align: middle;
}

.x7k2-info-table tr:nth-child(even) td {
    background: var(--c-bg);
}

.x7k2-info-table tr:hover td {
    background: rgba(115, 73, 158, 0.06);
}

.x7k2-info-table td:first-child {
    font-weight: 700;
    color: var(--c-purple);
    width: 42%;
    white-space: nowrap;
}

.x7k2-info-table .x7k2-td-icon {
    display: flex;
    align-items: center;
    gap: 8px;
}

.x7k2-info-table .x7k2-td-icon svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* ===== JACKPOTS ===== */
.x7k2-jackpot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 14px;
}

.x7k2-jackpot-card {
    background: linear-gradient(145deg, #2a1240, #3d1f6b);
    border-radius: var(--radius);
    padding: 22px 18px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(115, 73, 158, 0.25);
    transition: transform var(--transition), box-shadow var(--transition);
}

.x7k2-jackpot-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(115, 73, 158, 0.4);
}

.x7k2-jackpot-card::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
}

.x7k2-jackpot-icon {
    font-size: 28px;
    margin-bottom: 8px;
}

.x7k2-jackpot-name {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 6px;
}

.x7k2-jackpot-amount {
    font-size: 26px;
    font-weight: 900;
    color: var(--c-green);
    line-height: 1;
    margin-bottom: 4px;
}

.x7k2-jackpot-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

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

.x7k2-app-table-wrap {
    overflow-x: auto;
}

.x7k2-app-table-wrap table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.x7k2-app-table-wrap td {
    padding: 10px 14px;
    border: 1px solid var(--c-border);
    vertical-align: middle;
}

.x7k2-app-table-wrap tr:nth-child(even) td {
    background: var(--c-bg);
}

.x7k2-app-table-wrap td:first-child {
    font-weight: 700;
    color: var(--c-purple);
    width: 50%;
    white-space: nowrap;
}

.x7k2-app-dl {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-dl {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 18px;
    border-radius: 10px;
    border: 1.5px solid var(--c-border);
    background: var(--c-bg);
    color: var(--c-text);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.btn-dl:hover {
    border-color: var(--c-purple);
    background: rgba(115, 73, 158, 0.07);
    transform: translateX(4px);
    color: var(--c-text);
}

.btn-dl svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    color: var(--c-purple);
}

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

.btn-dl-sub {
    font-size: 11px;
    color: var(--c-text-light);
    font-weight: 400;
}

.btn-dl-main {
    font-size: 16px;
    font-weight: 800;
}

/* ===== VIDEO ===== */
.x7k2-video-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: var(--radius);
    overflow: hidden;
    background: #000;
}

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

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

.x7k2-bonus-card {
    background: linear-gradient(145deg, #2a1240 0%, #3d1f6b 100%);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(115, 73, 158, 0.2);
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
}

.x7k2-bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 36px rgba(115, 73, 158, 0.35);
}

.x7k2-bonus-card-header {
    background: linear-gradient(135deg, rgba(115, 73, 158, 0.6), rgba(63, 20, 107, 0.8));
    padding: 20px 18px 14px;
    text-align: center;
}

.x7k2-bonus-icon {
    font-size: 36px;
    margin-bottom: 8px;
}

.x7k2-bonus-amount {
    font-size: 30px;
    font-weight: 900;
    color: var(--c-green);
    line-height: 1;
}

.x7k2-bonus-spins {
    font-size: 14px;
    color: var(--c-orange);
    font-weight: 700;
    margin-top: 4px;
}

.x7k2-bonus-card-body {
    padding: 16px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.x7k2-bonus-name {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.x7k2-bonus-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    flex: 1;
    margin-bottom: 14px;
}

.btn-bonus-card {
    display: block;
    width: 100%;
    text-align: center;
    background: linear-gradient(135deg, var(--c-green), #3faa1a);
    color: #fff;
    border-radius: 8px;
    padding: 10px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: background var(--transition), transform var(--transition);
}

.btn-bonus-card:hover {
    background: linear-gradient(135deg, #3faa1a, #2f8a10);
    transform: scale(1.02);
    color: #fff;
}

/* Mobile bonus slider */
.x7k2-bonus-slider-wrap {
    position: relative;
    overflow: hidden;
}

.x7k2-bonus-slider {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.x7k2-bonus-slider .x7k2-bonus-card {
    min-width: 100%;
    flex-shrink: 0;
}

.x7k2-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
}

.x7k2-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--c-border);
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
    border: none;
    padding: 0;
}

.x7k2-slider-dot.active {
    background: var(--c-purple);
    transform: scale(1.3);
}

.x7k2-slider-prev, .x7k2-slider-next {
    display: none;
}

/* ===== WHEEL GAME ===== */
.x7k2-wheel-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.x7k2-wheel-canvas-wrap {
    position: relative;
    width: 300px;
    height: 300px;
}

.x7k2-wheel-canvas-wrap canvas {
    display: block;
    filter: drop-shadow(0 8px 24px rgba(115, 73, 158, 0.4));
}

.x7k2-wheel-pointer {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 22px solid var(--c-orange);
    z-index: 2;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.btn-spin {
    background: linear-gradient(135deg, var(--c-purple), var(--c-purple-d));
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 14px 40px;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    font-family: 'Roboto Condensed', Arial, sans-serif;
    box-shadow: 0 4px 20px rgba(115, 73, 158, 0.4);
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn-spin:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(115, 73, 158, 0.55);
}

.btn-spin:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.x7k2-wheel-result {
    display: none;
    background: linear-gradient(135deg, rgba(82, 207, 39, 0.12), rgba(82, 207, 39, 0.06));
    border: 1.5px solid rgba(82, 207, 39, 0.4);
    border-radius: var(--radius);
    padding: 20px 28px;
    text-align: center;
    max-width: 320px;
    animation: fadeInUp 0.4s ease;
}

.x7k2-wheel-result.lost {
    background: rgba(243, 144, 47, 0.08);
    border-color: rgba(243, 144, 47, 0.3);
}

.x7k2-wheel-result h4 {
    font-size: 20px;
    font-weight: 800;
    color: var(--c-green);
    margin-bottom: 6px;
}

.x7k2-wheel-result.lost h4 {
    color: var(--c-orange);
}

.x7k2-wheel-result p {
    font-size: 14px;
    color: var(--c-text-light);
    margin-bottom: 14px;
}

.x7k2-wheel-result.lost p {
    margin-bottom: 0;
}

.btn-wheel-claim {
    background: linear-gradient(135deg, var(--c-green), #3faa1a);
    color: #fff;
    border-radius: 8px;
    padding: 11px 28px;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 16px rgba(82, 207, 39, 0.3);
    transition: background var(--transition), transform var(--transition);
}

.btn-wheel-claim:hover {
    background: linear-gradient(135deg, #3faa1a, #2f8a10);
    transform: scale(1.04);
    color: #fff;
}

/* ===== CONTENT BLOCK ===== */
.x7k2-review-block {
}

.x7k2-author-box {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, rgba(115, 73, 158, 0.08), rgba(115, 73, 158, 0.03));
    border: 1px solid rgba(115, 73, 158, 0.15);
    border-radius: var(--radius);
    padding: 18px;
    margin-bottom: 24px;
}

.x7k2-author-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--c-purple);
    flex-shrink: 0;
}

.x7k2-author-name {
    font-size: 16px;
    font-weight: 800;
    color: var(--c-purple);
}

.x7k2-author-title {
    font-size: 13px;
    color: var(--c-text-light);
    margin-bottom: 4px;
}

.x7k2-author-links {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.x7k2-author-links a {
    font-size: 12px;
    color: var(--c-orange);
    text-decoration: underline;
}

.x7k2-content-inner {
}

.x7k2-content-inner h2 {
    font-size: 22px;
    font-weight: 800;
    color: var(--c-purple);
    margin: 24px 0 12px;
}

.x7k2-content-inner h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--c-purple-d);
    margin: 20px 0 10px;
}

.x7k2-content-inner h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--c-text);
    margin: 16px 0 8px;
}

.x7k2-content-inner p {
    margin-bottom: 14px;
    line-height: 1.65;
}

.x7k2-content-inner ul {
    margin: 0 0 14px 20px;
    list-style: disc;
}

.x7k2-content-inner ol {
    margin: 0 0 14px 20px;
    list-style: decimal;
}

.x7k2-content-inner li {
    margin-bottom: 6px;
    line-height: 1.55;
}

.x7k2-content-inner a {
    color: var(--c-orange);
    text-decoration: underline;
}

.x7k2-content-inner strong {
    font-weight: 700;
}

.x7k2-content-inner em {
    font-style: italic;
}

.x7k2-content-inner blockquote {
    border-left: 4px solid var(--c-purple);
    padding: 12px 18px;
    background: rgba(115, 73, 158, 0.06);
    margin: 14px 0;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.x7k2-content-inner table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 16px;
    font-size: 14px;
}

.x7k2-content-inner table td, .x7k2-content-inner table th {
    padding: 10px 14px;
    border: 1px solid var(--c-border);
    text-align: left;
}

.x7k2-content-inner table th {
    background: var(--c-purple);
    color: #fff;
    font-weight: 700;
}

.x7k2-content-inner table tr:nth-child(even) td {
    background: var(--c-bg);
}

.x7k2-content-inner img {
    max-width: 100%;
    border-radius: var(--radius-sm);
    margin: 14px 0;
}

/* ===== REVIEWS ===== */
.x7k2-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 28px;
}

.x7k2-review-card {
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 20px;
    transition: box-shadow var(--transition), transform var(--transition);
}

.x7k2-review-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

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

.x7k2-review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--c-purple);
    flex-shrink: 0;
}

.x7k2-review-meta {
}

.x7k2-review-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--c-text);
}

.x7k2-review-date {
    font-size: 12px;
    color: var(--c-text-light);
}

.x7k2-review-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 8px;
}

.x7k2-review-stars svg {
    width: 16px;
    height: 16px;
}

.x7k2-review-text {
    font-size: 14px;
    color: var(--c-text-light);
    line-height: 1.55;
}

.x7k2-review-form-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--c-purple);
    margin-bottom: 16px;
}

.x7k2-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 500px;
}

.x7k2-form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.x7k2-form-group label {
    font-size: 13px;
    font-weight: 700;
    color: var(--c-text);
}

.x7k2-form-group input,
.x7k2-form-group textarea {
    background: var(--c-bg);
    border: 1.5px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: 11px 14px;
    font-size: 14px;
    font-family: 'Roboto Condensed', Arial, sans-serif;
    color: var(--c-text);
    transition: border-color var(--transition), box-shadow var(--transition);
    resize: vertical;
}

.x7k2-form-group input:focus,
.x7k2-form-group textarea:focus {
    outline: none;
    border-color: var(--c-purple);
    box-shadow: 0 0 0 3px rgba(115, 73, 158, 0.12);
}

.x7k2-form-group textarea {
    min-height: 110px;
}

.btn-form-submit {
    background: linear-gradient(135deg, var(--c-purple), var(--c-purple-d));
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    font-family: 'Roboto Condensed', Arial, sans-serif;
    transition: background var(--transition), transform var(--transition);
    align-self: flex-start;
}

.btn-form-submit:hover {
    background: linear-gradient(135deg, var(--c-purple-d), #451a5e);
    transform: translateY(-1px);
}

.x7k2-form-success {
    display: none;
    background: rgba(82, 207, 39, 0.1);
    border: 1.5px solid rgba(82, 207, 39, 0.4);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    color: #2a7a10;
    font-size: 15px;
    font-weight: 600;
    animation: fadeInUp 0.3s ease;
}

/* ===== FOOTER ===== */
.x7k2-footer {
    background: var(--c-purple);
    color: rgba(255, 255, 255, 0.85);
    margin-top: 48px;
}

.x7k2-footer-top {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 32px;
    padding: 36px 16px 28px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.x7k2-footer-logo img {
    height: 46px;
    border-radius: 6px;
    margin-bottom: 12px;
}

.x7k2-footer-flag {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    margin-bottom: 12px;
}

.x7k2-footer-flag img {
    width: 26px;
    height: 18px;
    border-radius: 3px;
}

.x7k2-footer-social {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}

.x7k2-footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.8);
    transition: background var(--transition), transform var(--transition);
}

.x7k2-footer-social a:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    color: #fff;
}

.x7k2-footer-social a svg {
    width: 16px;
    height: 16px;
}

.x7k2-footer-email {
    font-size: 13px;
}

.x7k2-footer-email a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
}

.x7k2-footer-email a:hover {
    color: #fff;
}

.x7k2-footer-nav {
}

.x7k2-footer-nav-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 12px;
}

.x7k2-footer-nav ul {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.x7k2-footer-nav ul li a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    transition: color var(--transition);
}

.x7k2-footer-nav ul li a:hover {
    color: #fff;
}

.x7k2-footer-trust {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.x7k2-footer-trust-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.5);
}

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

.x7k2-footer-trust-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.18);
    white-space: nowrap;
    transition: background var(--transition);
    text-decoration: none;
}

.x7k2-footer-trust-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.x7k2-footer-trust-badge.age {
    font-size: 14px;
    font-weight: 900;
}

.x7k2-footer-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin: 0;
}

.x7k2-footer-payments {
    padding: 20px 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.x7k2-footer-payments-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 10px;
}

.x7k2-payment-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.x7k2-payment-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 6px;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    white-space: nowrap;
}

.x7k2-footer-providers {
    padding: 0 16px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.x7k2-footer-providers-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 10px;
}

.x7k2-provider-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.x7k2-provider-badge {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
}

.x7k2-footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 18px 16px;
}

.x7k2-footer-bottom-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.x7k2-footer-copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 8px;
}

.x7k2-footer-legal {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
}

/* ===== STICKY WIDGET ===== */
.x7k2-sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: linear-gradient(90deg, var(--c-purple-d) 0%, var(--c-purple) 100%);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.25);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.x7k2-sticky-widget.visible {
    transform: translateY(0);
}

.x7k2-sticky-text {
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    white-space: nowrap;
}

.x7k2-sticky-bonus {
    font-size: 16px;
    font-weight: 900;
    color: var(--c-green);
}

.btn-sticky {
    background: linear-gradient(135deg, var(--c-green), #3faa1a);
    color: #fff;
    border-radius: 8px;
    padding: 10px 22px;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(82, 207, 39, 0.4);
    transition: background var(--transition), transform var(--transition);
    white-space: nowrap;
}

.btn-sticky:hover {
    background: linear-gradient(135deg, #3faa1a, #2f8a10);
    transform: scale(1.04);
    color: #fff;
}

.x7k2-sticky-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    padding: 4px;
    font-size: 20px;
    line-height: 1;
    transition: color var(--transition);
    margin-left: 6px;
}

.x7k2-sticky-close:hover {
    color: #fff;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.x7k2-animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.x7k2-animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== INFO PAGES ===== */
.x7k2-info-page {
    padding: 40px 0;
}

.x7k2-info-page .x7k2-content-inner h1 {
    font-size: 30px;
    font-weight: 900;
    color: var(--c-purple);
    margin-bottom: 18px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .x7k2-nav {
        display: none;
    }

    .x7k2-burger {
        display: flex;
    }

    .x7k2-hero-inner {
        grid-template-columns: 1fr;
    }

    .x7k2-hero-bonus {
        max-width: 340px;
        margin: 0 auto;
    }

    .x7k2-bonus-grid {
        display: none;
    }

    .x7k2-bonus-slider-wrap {
        display: block;
    }

    .x7k2-reviews-grid {
        grid-template-columns: 1fr;
    }

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

    .x7k2-footer-top {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .x7k2-block {
        padding: 18px 14px;
    }

    .x7k2-hero-inner {
        padding: 40px 16px;
    }

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

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

    .x7k2-wheel-canvas-wrap {
        width: 260px;
        height: 260px;
    }

    .x7k2-sticky-widget {
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
    }

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

@media (max-width: 480px) {
    .x7k2-toc-grid {
        grid-template-columns: 1fr;
    }

    .x7k2-jackpot-grid {
        grid-template-columns: 1fr 1fr;
    }

    .x7k2-hero-text h1 {
        font-size: 24px;
    }

    .x7k2-footer-trust-logos {
        gap: 6px;
    }
}

.wp-block-group {
    display: block;
}

.wp-block-columns {
    display: flex;
    flex-wrap: wrap;
}

.wp-block-column {
    flex: 1;
}

.entry-content {
    display: block;
}

.post-thumbnail {
    display: block;
}

.alignnone {
    float: none;
}

.size-full {
    max-width: 100%;
    height: auto;
}

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

@media (max-width: 991px) {
    #spellen {
        padding: 22px 18px;
    }

    #spellen .x7k2-block-title {
        font-size: 22px;
        line-height: 1.25;
        margin-bottom: 18px;
    }

    #spellen .x7k2-block-title svg {
        width: 22px;
        height: 22px;
    }

    #spellen .x7k2-bonus-grid {
        display: none;
    }

    #spellen .x7k2-bonus-slider-wrap {
        display: block !important;
        width: 100%;
        overflow: hidden;
    }

    #spellen .x7k2-bonus-slider-wrap > div:first-child {
        width: 100%;
        overflow: hidden !important;
        border-radius: 14px;
    }

    #spellen .x7k2-bonus-slider {
        display: flex;
        width: 100%;
        gap: 0;
        transition: transform .4s cubic-bezier(.4, 0, .2, 1);
        will-change: transform;
        touch-action: pan-y;
    }

    #spellen .x7k2-bonus-slider .x7k2-bonus-card {
        flex: 0 0 100%;
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        margin: 0;
        border-radius: 14px;
        overflow: hidden;
    }

    #spellen .x7k2-bonus-card:hover {
        transform: none;
    }

    #spellen .x7k2-bonus-card-header {
        padding: 22px 18px 16px;
    }

    #spellen .x7k2-bonus-icon {
        display: flex;
        justify-content: center;
        margin-bottom: 10px;
    }

    #spellen .x7k2-bonus-icon svg {
        width: 34px;
        height: 34px;
    }

    #spellen .x7k2-bonus-amount {
        font-size: 28px;
        line-height: 1.1;
        overflow-wrap: anywhere;
    }

    #spellen .x7k2-bonus-spins {
        margin-top: 5px;
        font-size: 14px;
    }

    #spellen .x7k2-bonus-card-body {
        padding: 18px;
    }

    #spellen .x7k2-bonus-name {
        font-size: 18px;
        line-height: 1.25;
        margin-bottom: 9px;
        overflow-wrap: anywhere;
    }

    #spellen .x7k2-bonus-desc {
        margin-bottom: 16px;
        font-size: 14px;
        line-height: 1.6;
        overflow-wrap: anywhere;
    }

    #spellen .btn-bonus-card {
        width: 100%;
        min-height: 46px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 11px 14px;
        font-size: 15px;
    }

    #spellen .x7k2-slider-dots {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 9px;
        margin-top: 16px;
    }

    #spellen .x7k2-slider-dot {
        width: 9px;
        height: 9px;
        border-radius: 50%;
        background: #cfd2dd;
        border: 0;
        padding: 0;
    }

    #spellen .x7k2-slider-dot.active {
        width: 26px;
        border-radius: 999px;
        background: var(--c-purple);
        transform: none;
    }
}

@media (max-width: 767px) {
    #spellen {
        padding: 18px 14px;
        border-radius: 12px;
    }

    #spellen .x7k2-block-title {
        align-items: flex-start;
        gap: 8px;
        font-size: 20px;
        margin-bottom: 16px;
    }

    #spellen .x7k2-block-title svg {
        width: 20px;
        height: 20px;
        margin-top: 2px;
    }

    #spellen .x7k2-bonus-card-header {
        padding: 20px 16px 14px;
    }

    #spellen .x7k2-bonus-amount {
        font-size: 26px;
    }

    #spellen .x7k2-bonus-spins {
        font-size: 13px;
    }

    #spellen .x7k2-bonus-card-body {
        padding: 16px;
    }

    #spellen .x7k2-bonus-name {
        font-size: 17px;
    }

    #spellen .x7k2-bonus-desc {
        font-size: 13px;
        line-height: 1.55;
    }

    #spellen .btn-bonus-card {
        min-height: 44px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    #spellen {
        padding: 16px 10px;
        margin-left: 0;
        margin-right: 0;
    }

    #spellen .x7k2-block-title {
        font-size: 19px;
        line-height: 1.2;
    }

    #spellen .x7k2-bonus-slider-wrap > div:first-child {
        border-radius: 12px;
    }

    #spellen .x7k2-bonus-slider .x7k2-bonus-card {
        border-radius: 12px;
    }

    #spellen .x7k2-bonus-card-header {
        padding: 18px 14px 13px;
    }

    #spellen .x7k2-bonus-icon svg {
        width: 30px;
        height: 30px;
    }

    #spellen .x7k2-bonus-amount {
        font-size: 24px;
    }

    #spellen .x7k2-bonus-spins {
        font-size: 12px;
    }

    #spellen .x7k2-bonus-card-body {
        padding: 15px 14px;
    }

    #spellen .x7k2-bonus-name {
        font-size: 16px;
    }

    #spellen .x7k2-bonus-desc {
        font-size: 13px;
    }

    #spellen .x7k2-slider-dots {
        margin-top: 14px;
    }
}