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

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

:root {
    --c-header: #0a0a35;
    --c-footer: #0a0a35;
    --c-bg: #000000;
    --c-primary: #fbec1f;
    --c-secondary: #016d19;
    --c-text: #e8e8f0;
    --c-text-muted: #9999bb;
    --c-border: #1e1e4a;
    --c-card: #0d0d3a;
    --c-card-alt: #070730;
    --c-accent: #1a1a5e;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --transition: 0.25s ease;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px rgba(251, 236, 31, 0.15);
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--c-bg);
    color: var(--c-text);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

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

a:hover {
    color: #fff;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.25;
    color: #fff;
}

h1 {
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
}

h2 {
    font-size: clamp(1.3rem, 2.5vw, 1.9rem);
}

h3 {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
}

p {
    line-height: 1.65;
    color: var(--c-text);
}

ul, ol {
    padding-left: 1.4em;
}

li {
    line-height: 1.7;
}

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

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

.box {
    width: 100%;
}

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

.section-gap {
    margin-bottom: 48px;
}

.section-gap-sm {
    margin-bottom: 28px;
}

.section-title {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
    text-balance: balance;
}

.section-sub {
    color: var(--c-text-muted);
    font-size: 0.93rem;
    margin-bottom: 24px;
}

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

.btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
    text-decoration: none;
}

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

.btn-primary {
    background: var(--c-primary);
    color: #0a0a35;
    box-shadow: 0 3px 14px rgba(251, 236, 31, 0.35);
}

.btn-primary:hover {
    color: #0a0a35;
    box-shadow: 0 5px 22px rgba(251, 236, 31, 0.55);
}

.btn-secondary {
    background: var(--c-secondary);
    color: #fff;
    box-shadow: 0 3px 14px rgba(1, 109, 25, 0.35);
}

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

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

.btn-outline:hover {
    background: rgba(251, 236, 31, 0.1);
    color: var(--c-primary);
}

.btn-sm {
    padding: 7px 16px;
    font-size: 0.82rem;
}

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

.btn-xl {
    padding: 17px 38px;
    font-size: 1.1rem;
    font-weight: 800;
}

.card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: transform var(--transition), box-shadow var(--transition);
}

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

.tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(251, 236, 31, 0.1);
    color: var(--c-primary);
    border: 1px solid rgba(251, 236, 31, 0.25);
    border-radius: 20px;
    padding: 3px 11px;
    font-size: 0.78rem;
    font-weight: 600;
}

.site-header {
    background: var(--c-header);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
}

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

.header-logo {
    flex-shrink: 0;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    flex-wrap: wrap;
}

.header-nav li a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #c8c8e8;
    font-size: 0.88rem;
    font-weight: 500;
    padding: 7px 12px;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
}

.header-nav li a:hover,
.header-nav li a.active {
    color: var(--c-primary);
    background: rgba(251, 236, 31, 0.07);
}

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

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

.status-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(1, 109, 25, 0.15);
    border: 1px solid rgba(1, 109, 25, 0.4);
    border-radius: 20px;
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #4ade80;
}

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ade80;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.35;
    }
}

.online-counter {
    font-size: 0.78rem;
    color: var(--c-text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

.online-counter strong {
    color: #fff;
}

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

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

.burger-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

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

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

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

.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
}

.mobile-nav-overlay.active {
    display: block;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100%;
    background: var(--c-header);
    z-index: 999;
    padding: 24px 0;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    box-shadow: 4px 0 30px rgba(0, 0, 0, 0.7);
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav-close {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px 20px;
    border-bottom: 1px solid var(--c-border);
    margin-bottom: 12px;
}

.mobile-nav-close img {
    height: 36px;
}

.mobile-nav-close button {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 1.4rem;
    line-height: 1;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
}

.mobile-nav ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #c8c8e8;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 12px 20px;
    border-left: 3px solid transparent;
    transition: all var(--transition);
}

.mobile-nav ul li a:hover {
    color: var(--c-primary);
    border-left-color: var(--c-primary);
    background: rgba(251, 236, 31, 0.05);
}

.mobile-nav ul li a svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.mobile-nav-btns {
    padding: 16px 20px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
    border-top: 1px solid var(--c-border);
}

.hero-section {
    position: relative;
    min-height: 500px;
    display: grid;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('/hero-nb.png') center/cover no-repeat;
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 10, 53, 0.92) 0%, rgba(0, 0, 0, 0.75) 60%, rgba(10, 10, 53, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 80px 0;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 40px;
}

.hero-text .tag {
    margin-bottom: 18px;
}

.hero-text h1 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
    margin-bottom: 16px;
    text-balance: balance;
}

.hero-text h1 .accent {
    color: var(--c-primary);
}

.hero-text p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 28px;
    max-width: 560px;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.hero-bonus-card {
    background: rgba(10, 10, 53, 0.85);
    border: 1px solid rgba(251, 236, 31, 0.35);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    min-width: 220px;
    backdrop-filter: blur(8px);
    box-shadow: var(--shadow-glow);
    animation: float-card 4s ease-in-out infinite;
}

@keyframes float-card {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.hero-bonus-card .bonus-label {
    font-size: 0.78rem;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.hero-bonus-card .bonus-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--c-primary);
    line-height: 1.1;
    margin-bottom: 4px;
}

.hero-bonus-card .bonus-extra {
    font-size: 0.85rem;
    color: #c8c8e8;
    margin-bottom: 16px;
}

.hero-bonus-card .btn {
    width: 100%;
    justify-content: center;
}

.hero-scroll {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.72rem;
    animation: bounce-down 2s infinite;
}

@keyframes bounce-down {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(6px);
    }
}

.main-content {
    padding: 60px 0;
}

.info-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-md);
    border: 1px solid var(--c-border);
    box-shadow: var(--shadow);
    margin-bottom: 8px;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 540px;
    background: var(--c-card-alt);
}

.info-table tbody tr {
    border-bottom: 1px solid var(--c-border);
    transition: background var(--transition);
}

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

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

.info-table td {
    padding: 14px 20px;
    text-align: left;
    font-size: 0.93rem;
    vertical-align: middle;
}

.info-table .param-cell {
    width: 52%;
    color: var(--c-text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-table .param-cell svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    fill: var(--c-primary);
    opacity: 0.9;
}

.info-table .val-cell {
    color: #fff;
    font-weight: 500;
}

.info-table .val-cell .tag {
    margin-right: 4px;
    margin-bottom: 3px;
}

.info-table .val-cell a {
    color: var(--c-primary);
}

.jackpot-section {
    background: linear-gradient(135deg, #0a0a35 0%, #05051f 100%);
    border: 1px solid rgba(251, 236, 31, 0.2);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    margin-bottom: 48px;
    position: relative;
    overflow: hidden;
}

.jackpot-section::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(251, 236, 31, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.jackpot-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.jackpot-header svg {
    width: 28px;
    height: 28px;
    fill: var(--c-primary);
}

.jackpot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.jackpot-item {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(251, 236, 31, 0.15);
    border-radius: var(--radius-md);
    padding: 20px 18px;
    text-align: center;
    transition: transform var(--transition), border-color var(--transition);
}

.jackpot-item:hover {
    transform: scale(1.03);
    border-color: rgba(251, 236, 31, 0.4);
}

.jackpot-name {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--c-text-muted);
    margin-bottom: 10px;
}

.jackpot-amount {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--c-primary);
    font-variant-numeric: tabular-nums;
    text-shadow: 0 0 20px rgba(251, 236, 31, 0.4);
    letter-spacing: -0.5px;
}

.jackpot-ticker {
    font-size: 0.72rem;
    color: #4ade80;
    margin-top: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.winners-section {
    margin-bottom: 48px;
}

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

.winner-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    transition: transform var(--transition), background var(--transition);
    animation: slide-in 0.5s ease forwards;
    opacity: 0;
}

@keyframes slide-in {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.winner-item:hover {
    transform: translateX(4px);
    background: rgba(26, 26, 94, 0.7);
}

.winner-rank {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.winner-rank.gold {
    background: #d4af37;
    color: #0a0a35;
}

.winner-rank.silver {
    background: #a8a9ad;
    color: #0a0a35;
}

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

.winner-rank.normal {
    background: var(--c-accent);
    color: #c8c8e8;
}

.winner-info {
    flex: 1;
    min-width: 0;
}

.winner-nick {
    font-size: 0.88rem;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

.winner-amount {
    font-size: 0.92rem;
    font-weight: 700;
    color: #4ade80;
    flex-shrink: 0;
}

.video-section {
    margin-bottom: 48px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: var(--radius-md);
    border: 1px solid var(--c-border);
    box-shadow: var(--shadow);
}

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

.slot-section {
    background: linear-gradient(180deg, #0a0a35 0%, #07073a 100%);
    border: 1px solid rgba(251, 236, 31, 0.18);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    margin-bottom: 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.slot-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(1, 109, 25, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.slot-machine {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.slot-display {
    display: flex;
    gap: 8px;
    background: #000;
    border: 2px solid rgba(251, 236, 31, 0.4);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    box-shadow: inset 0 2px 20px rgba(0, 0, 0, 0.8), 0 0 30px rgba(251, 236, 31, 0.15);
}

.slot-reel {
    width: 72px;
    height: 80px;
    background: #0a0a35;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    overflow: hidden;
    position: relative;
    transition: filter 0.15s;
}

.slot-reel.spinning {
    animation: reel-spin 0.08s linear infinite;
    filter: blur(2px);
}

@keyframes reel-spin {
    0% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-4px);
    }
    75% {
        transform: translateY(4px);
    }
    100% {
        transform: translateY(0);
    }
}

.slot-result {
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    padding: 12px 24px;
    transition: all 0.3s ease;
}

.slot-result.win {
    background: rgba(1, 109, 25, 0.2);
    border: 1px solid rgba(1, 109, 25, 0.5);
    color: #4ade80;
    animation: win-flash 0.6s ease;
}

.slot-result.lose {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--c-border);
    color: var(--c-text-muted);
}

@keyframes win-flash {
    0%, 100% {
        box-shadow: 0 0 0 rgba(74, 222, 128, 0);
    }
    50% {
        box-shadow: 0 0 30px rgba(74, 222, 128, 0.4);
    }
}

.slot-controls {
    display: flex;
    gap: 12px;
    align-items: center;
}

.slot-stats {
    display: flex;
    gap: 20px;
    font-size: 0.82rem;
    color: var(--c-text-muted);
}

.slot-stats span strong {
    color: #fff;
}

.review-section {
    margin-bottom: 48px;
}

.review-header {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    align-items: start;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 28px;
}

.author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--c-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--c-primary);
    flex-shrink: 0;
    border: 2px solid rgba(251, 236, 31, 0.3);
}

.author-info h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.author-info p {
    font-size: 0.85rem;
    color: var(--c-text-muted);
    margin-bottom: 8px;
    line-height: 1.5;
}

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

.author-links a {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: var(--c-primary);
    padding: 4px 10px;
    border: 1px solid rgba(251, 236, 31, 0.25);
    border-radius: 20px;
    transition: background var(--transition);
}

.author-links a:hover {
    background: rgba(251, 236, 31, 0.08);
}

.content-block {
    background: var(--c-card-alt);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: 32px 36px;
}

.content-block h2 {
    margin-bottom: 16px;
    margin-top: 28px;
}

.content-block h2:first-child {
    margin-top: 0;
}

.content-block h3 {
    margin-bottom: 12px;
    margin-top: 22px;
    color: var(--c-primary);
}

.content-block h4 {
    margin-bottom: 10px;
    margin-top: 18px;
    color: #c8c8e8;
}

.content-block p {
    margin-bottom: 14px;
    color: var(--c-text);
}

.content-block ul {
    margin-bottom: 14px;
}

.content-block ol {
    margin-bottom: 14px;
}

.content-block li {
    margin-bottom: 6px;
    color: var(--c-text);
}

.content-block strong {
    color: #fff;
}

.content-block em {
    color: var(--c-text-muted);
}

.content-block a {
    color: var(--c-primary);
}

.content-block a:hover {
    text-decoration: underline;
}

.content-block blockquote {
    border-left: 3px solid var(--c-primary);
    padding: 12px 18px;
    margin: 16px 0;
    background: rgba(251, 236, 31, 0.05);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.content-block blockquote p {
    color: #c8c8e8;
    margin: 0;
    font-style: italic;
}

.content-block table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 16px;
    font-size: 0.92rem;
}

.content-block table th {
    background: var(--c-accent);
    color: #fff;
    padding: 10px 14px;
    text-align: left;
    font-weight: 600;
    border: 1px solid var(--c-border);
}

.content-block table td {
    padding: 9px 14px;
    border: 1px solid var(--c-border);
    color: var(--c-text);
}

.content-block table tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.02);
}

.faq-section {
    margin-bottom: 48px;
}

.faq-list {
    display: grid;
    gap: 10px;
}

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

.faq-item.open {
    border-color: rgba(251, 236, 31, 0.3);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.97rem;
    color: #fff;
    list-style: none;
    user-select: none;
}

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

.faq-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(251, 236, 31, 0.1);
    border: 1px solid rgba(251, 236, 31, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform var(--transition), background var(--transition);
    color: var(--c-primary);
    font-size: 1rem;
    line-height: 1;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: rgba(251, 236, 31, 0.2);
}

.faq-answer {
    padding: 0 22px 18px;
    color: var(--c-text-muted);
    font-size: 0.93rem;
    line-height: 1.7;
    display: none;
}

.faq-item.open .faq-answer {
    display: block;
    animation: fade-in-down 0.25s ease;
}

@keyframes fade-in-down {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.site-footer {
    background: var(--c-footer);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 48px 0 24px;
}

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

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

.footer-brand p {
    font-size: 0.83rem;
    color: var(--c-text-muted);
    line-height: 1.6;
    margin-bottom: 14px;
}

.footer-socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.06);
    color: #c8c8e8;
    transition: all var(--transition);
    font-size: 0.8rem;
    font-weight: 700;
}

.footer-social-link:hover {
    background: var(--c-primary);
    color: #0a0a35;
}

.footer-social-link svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.footer-col h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--c-primary);
    margin-bottom: 16px;
}

.footer-nav-list {
    list-style: none;
    display: grid;
    gap: 9px;
}

.footer-nav-list li a {
    font-size: 0.87rem;
    color: #9999bb;
    transition: color var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-nav-list li a::before {
    content: '›';
    color: var(--c-primary);
    font-size: 1rem;
}

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

.footer-contact-item {
    font-size: 0.85rem;
    color: #9999bb;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.footer-contact-item a {
    color: #9999bb;
}

.footer-contact-item a:hover {
    color: var(--c-primary);
}

.footer-country {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--c-text-muted);
    margin-bottom: 10px;
}

.flag-nl {
    width: 22px;
    height: 16px;
    border-radius: 2px;
    overflow: hidden;
    flex-shrink: 0;
    display: grid;
    grid-template-rows: 1fr 1fr 1fr;
}

.flag-nl .f1 {
    background: #ae1c28;
}

.flag-nl .f2 {
    background: #fff;
}

.flag-nl .f3 {
    background: #21468b;
}

.footer-logos-section {
    margin-bottom: 28px;
}

.footer-logos-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 16px;
}

.footer-logos-row .logos-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--c-text-muted);
    width: 100%;
    margin-bottom: 4px;
}

.logo-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    padding: 7px 12px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #c8c8e8;
    height: 36px;
    transition: background var(--transition);
}

.logo-badge:hover {
    background: rgba(255, 255, 255, 0.1);
}

.logo-badge.license {
    color: var(--c-primary);
    border-color: rgba(251, 236, 31, 0.2);
}

.logo-badge.trust {
    color: #4ade80;
    border-color: rgba(74, 222, 128, 0.2);
}

.logo-badge.age {
    background: #ae1c28;
    color: #fff;
    border-color: #ae1c28;
    font-size: 0.92rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--c-border);
}

.footer-bottom p {
    font-size: 0.78rem;
    color: #666688;
    line-height: 1.7;
    margin-bottom: 6px;
}

.footer-bottom p a {
    color: #7777aa;
}

.footer-bottom p a:hover {
    color: var(--c-primary);
}

.footer-legal {
    font-size: 0.74rem;
    color: #555577;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
}

.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 990;
    background: linear-gradient(90deg, #0a0a35 0%, #05051f 50%, #0a0a35 100%);
    border-top: 2px solid rgba(251, 236, 31, 0.4);
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.7);
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.sticky-widget.hidden {
    transform: translateY(100%);
}

.widget-text .widget-headline {
    font-size: 0.97rem;
    font-weight: 700;
    color: #fff;
}

.widget-text .widget-sub {
    font-size: 0.8rem;
    color: var(--c-primary);
    font-weight: 600;
}

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

.widget-close {
    background: none;
    border: none;
    color: #666688;
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1;
    padding: 2px 6px;
    transition: color var(--transition);
}

.widget-close:hover {
    color: #fff;
}

.info-page-content {
    padding: 48px 0;
}

.info-page-content h1 {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--c-border);
}

.info-page-content .content-block {
    line-height: 1.75;
}

.breadcrumb-bar {
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--c-border);
    padding: 10px 0;
    font-size: 0.82rem;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    flex-wrap: wrap;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--c-text-muted);
}

.breadcrumb-list li::after {
    content: '/';
    color: var(--c-border);
}

.breadcrumb-list li:last-child::after {
    display: none;
}

.breadcrumb-list li a {
    color: var(--c-text-muted);
}

.breadcrumb-list li a:hover {
    color: var(--c-primary);
}

.breadcrumb-list li:last-child {
    color: #c8c8e8;
}

.rating-stars {
    display: flex;
    gap: 3px;
    color: var(--c-primary);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 36px;
}

.pros-block, .cons-block {
    background: var(--c-card);
    border-radius: var(--radius-md);
    padding: 20px;
}

.pros-block {
    border-left: 3px solid #4ade80;
}

.cons-block {
    border-left: 3px solid #f87171;
}

.pros-block h4 {
    color: #4ade80;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cons-block h4 {
    color: #f87171;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pros-block ul, .cons-block ul {
    list-style: none;
    padding: 0;
}

.pros-block ul li {
    font-size: 0.88rem;
    color: var(--c-text);
    padding: 5px 0;
    border-bottom: 1px solid var(--c-border);
    display: flex;
    align-items: flex-start;
    gap: 7px;
}

.cons-block ul li {
    font-size: 0.88rem;
    color: var(--c-text);
    padding: 5px 0;
    border-bottom: 1px solid var(--c-border);
    display: flex;
    align-items: flex-start;
    gap: 7px;
}

.pros-block ul li:last-child,
.cons-block ul li:last-child {
    border-bottom: none;
}

.pros-block ul li::before {
    content: '✓';
    color: #4ade80;
    font-weight: 700;
    flex-shrink: 0;
}

.cons-block ul li::before {
    content: '✗';
    color: #f87171;
    font-weight: 700;
    flex-shrink: 0;
}

.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--c-border), transparent);
    margin: 48px 0;
}

.wp-block-image {
    margin-bottom: 20px;
}

.wp-caption {
    font-size: 0.8rem;
    color: var(--c-text-muted);
}

.entry-content {
    line-height: 1.75;
}

.post-thumbnail {
    margin-bottom: 24px;
}

.elementor-widget {
    display: block;
}

.wpcf7 {
    display: block;
}

.wp-post-image {
    max-width: 100%;
}

@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

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

    .hero-bonus-card {
        display: none;
    }
}

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

    .header-nav {
        display: none;
    }

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

    .burger-btn {
        display: flex;
    }

    .mobile-nav {
        display: block;
    }

    .header-buttons {
        gap: 6px;
    }

    .header-buttons .btn {
        padding: 8px 14px;
        font-size: 0.82rem;
    }

    .hero-content {
        padding: 56px 0;
        grid-template-columns: 1fr;
    }

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

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

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

    .sticky-widget {
        flex-direction: column;
        gap: 10px;
        padding: 14px 18px;
        text-align: center;
    }

    .content-block {
        padding: 22px 18px;
    }

    .review-header {
        grid-template-columns: 1fr;
    }

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

    .slot-section {
        padding: 28px 18px;
    }
}

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

    .hero-actions .btn-xl {
        width: 100%;
        justify-content: center;
    }

    .btn-xl {
        padding: 14px 24px;
        font-size: 0.97rem;
    }

    .slot-display {
        padding: 14px 12px;
        gap: 5px;
    }

    .slot-reel {
        width: 60px;
        height: 66px;
        font-size: 2.1rem;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.fade-in-up-delay-1 {
    animation-delay: 0.1s;
    opacity: 0;
}

.fade-in-up-delay-2 {
    animation-delay: 0.2s;
    opacity: 0;
}

.fade-in-up-delay-3 {
    animation-delay: 0.3s;
    opacity: 0;
}

.d0x7k2 {
    display: block;
}

.f8n3p1 {
    visibility: hidden;
    height: 0;
    overflow: hidden;
}

.xq9m4r {
    color: transparent;
    font-size: 0;
    position: absolute;
}

.z2w8vt {
    pointer-events: none;
}

@media (max-width: 768px) {
    html,
    body {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        overflow-x: hidden;
    }

    body {
        font-size: 16px;
    }

    .wrapper,
    main,
    .content,
    .site-header,
    .hero-section,
    .main-content,
    .site-footer {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .container {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        margin-left: auto;
        margin-right: auto;
        padding-left: 14px;
        padding-right: 14px;
    }

    img,
    picture,
    video,
    iframe,
    canvas,
    svg {
        max-width: 100%;
    }

    .site-header {
        position: fixed !important;
        top: 0;
        left: 0;
        right: 0;
        z-index: 10000;
        width: 100%;
        background: var(--c-header);
    }

    body {
        padding-top: 58px;
    }

    .site-header .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        min-width: 0;
        height: 58px;
        padding: 0;
        gap: 7px;
    }

    .header-logo {
        display: flex;
        flex: 1 1 auto;
        min-width: 0;
    }

    .header-logo img {
        width: auto;
        height: 31px;
        max-width: 105px;
        object-fit: contain;
    }

    .header-inner > nav,
    .header-status {
        display: none !important;
    }

    .header-buttons {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        flex: 0 0 auto;
        gap: 5px;
    }


    .header-buttons .btn-primary {
        min-height: 34px;
        padding: 7px 9px;
        font-size: 0.65rem;
        line-height: 1;
        white-space: nowrap;
    }


    .burger-btn {
        position: relative;
        z-index: 10003;
        display: flex !important;
        flex: 0 0 38px;
        width: 38px;
        height: 38px;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
        padding: 7px;
        border: 1px solid rgba(251, 236, 31, 0.2);
        border-radius: 8px;
        background: rgba(251, 236, 31, 0.06);
    }

    .burger-btn span {
        width: 20px;
    }

    .mobile-nav-overlay {
        position: fixed;
        inset: 58px 0 0;
        z-index: 9998;
        display: block;
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        background: rgba(0, 0, 0, 0.72);
        transition: opacity 0.25s ease,
        visibility 0.25s ease;
    }

    .mobile-nav-overlay.active {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
    }

    .mobile-nav {
        position: fixed;
        top: 58px;
        right: auto;
        bottom: 0;
        left: 0;
        z-index: 9999;
        display: flex !important;
        width: min(88vw, 350px);
        max-width: 100%;
        min-width: 0;
        height: calc(100dvh - 58px);
        padding: 14px 10px 22px;
        overflow-x: hidden;
        overflow-y: auto;
        flex-direction: column;
        background: var(--c-header);
        border-right: 1px solid var(--c-border);
        box-shadow: 14px 0 40px rgba(0, 0, 0, 0.65);
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        transform: translateX(-100%);
        transition: transform 0.3s ease,
        opacity 0.25s ease,
        visibility 0.3s ease;
    }

    .mobile-nav.active {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
        transform: translateX(0);
    }

    .mobile-nav-close {
        width: 100%;
        padding: 4px 6px 13px;
        margin-bottom: 8px;
    }

    .mobile-nav-close img {
        max-width: 112px;
        height: 32px;
        object-fit: contain;
    }

    .mobile-nav-close button {
        display: flex;
        width: 36px;
        height: 36px;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        border: 1px solid var(--c-border);
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.05);
    }

    .mobile-nav ul {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 6px;
    }

    .mobile-nav ul li {
        width: 100%;
    }

    .mobile-nav ul li a {
        width: 100%;
        min-width: 0;
        min-height: 46px;
        gap: 10px;
        padding: 11px 12px;
        font-size: 0.86rem;
        line-height: 1.35;
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-left: 3px solid transparent;
        border-radius: 9px;
        background: rgba(255, 255, 255, 0.025);
    }

    .mobile-nav ul li a svg {
        width: 18px;
        height: 18px;
        flex: 0 0 18px;
    }

    .mobile-nav-btns {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        gap: 8px;
        margin-top: auto;
        padding: 16px 0 0;
    }

    .mobile-nav-btns .btn {
        width: 100%;
        min-width: 0;
        min-height: 44px;
        justify-content: center;
        white-space: normal;
    }

    body.menu-open {
        overflow: hidden;
    }

    .hero-section {
        min-height: auto;
        align-items: flex-end;
    }

    .hero-bg {
        background-position: 62% center;
    }

    .hero-bg::after {
        background: linear-gradient(
                180deg,
                rgba(10, 10, 53, 0.18) 0%,
                rgba(10, 10, 53, 0.68) 40%,
                rgba(0, 0, 0, 0.96) 100%
        );
    }

    .hero-content {
        display: grid;
        grid-template-columns: 1fr !important;
        width: 100%;
        min-width: 0;
        gap: 18px;
        padding: 44px 0 34px;
    }

    .hero-text {
        width: 100%;
        min-width: 0;
    }

    .hero-text .tag {
        max-width: 100%;
        margin-bottom: 13px;
        padding: 5px 10px;
        font-size: 0.65rem;
        line-height: 1.4;
        white-space: normal;
    }

    .hero-text h1 {
        max-width: 100%;
        margin-bottom: 13px;
        font-size: clamp(1.5rem, 7vw, 1.9rem);
        line-height: 1.15;
        overflow-wrap: anywhere;
    }

    .hero-text p {
        max-width: 100%;
        margin-bottom: 18px;
        font-size: 0.84rem;
        line-height: 1.58;
        overflow-wrap: anywhere;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        gap: 8px;
    }

    .hero-actions .btn {
        width: 100%;
        min-width: 0;
        min-height: 43px;
        justify-content: center;
        padding: 10px 12px;
        font-size: 0.77rem;
        white-space: normal;
        text-align: center;
    }

    .hero-text > div[style*="display:flex"] {
        display: flex !important;
        width: 100%;
        gap: 7px !important;
        margin-top: 14px !important;
        flex-wrap: wrap;
    }

    .hero-text > div[style*="display:flex"] .tag {
        flex: 1 1 calc(50% - 7px);
        margin: 0;
        justify-content: center;
        text-align: center;
    }

    .hero-bonus-card {
        display: none !important;
    }

    .hero-scroll {
        display: none;
    }

    .main-content {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding: 34px 0;
    }

    .section-gap {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        margin-bottom: 32px;
    }

    .section-gap-sm {
        margin-bottom: 20px;
    }

    .section-title {
        max-width: 100%;
        margin-bottom: 7px;
        font-size: 1.22rem;
        line-height: 1.3;
        overflow-wrap: anywhere;
    }

    .section-sub {
        max-width: 100%;
        margin-bottom: 19px;
        font-size: 0.81rem;
        line-height: 1.55;
        overflow-wrap: anywhere;
    }

    .section-divider {
        margin: 30px 0;
    }

    .info-table-wrap {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        border-radius: 11px;
    }

    .info-table {
        width: 100%;
        min-width: 0 !important;
        table-layout: fixed;
    }

    .info-table tbody,
    .info-table tr {
        display: block;
        width: 100%;
    }

    .info-table tr {
        padding: 11px 10px;
        border-bottom: 1px solid var(--c-border);
    }

    .info-table td {
        display: flex;
        width: 100% !important;
        min-width: 0;
        padding: 0;
        border: 0;
        font-size: 0.78rem;
        overflow-wrap: anywhere;
    }

    .info-table .param-cell {
        width: 100%;
        margin-bottom: 6px;
        gap: 8px;
        color: var(--c-text-muted);
        font-size: 0.7rem;
    }

    .info-table .param-cell svg {
        width: 17px;
        height: 17px;
        flex: 0 0 17px;
    }

    .info-table .val-cell {
        width: 100%;
        padding-left: 25px;
        font-size: 0.79rem;
        line-height: 1.5;
    }

    .info-table .val-cell .tag {
        max-width: 100%;
        margin-bottom: 4px;
        white-space: normal;
    }

    .jackpot-section {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding: 20px 13px;
        margin-bottom: 32px;
        border-radius: 13px;
    }

    .jackpot-header {
        align-items: flex-start;
        gap: 9px;
        margin-bottom: 18px;
    }

    .jackpot-header svg {
        width: 22px;
        height: 22px;
        flex: 0 0 22px;
    }

    .jackpot-grid {
        display: grid;
        grid-template-columns: 1fr !important;
        width: 100%;
        gap: 10px;
    }

    .jackpot-item {
        width: 100%;
        min-width: 0;
        padding: 16px 12px;
        border-radius: 10px;
    }

    .jackpot-item:hover {
        transform: none;
    }

    .jackpot-name {
        font-size: 0.67rem;
    }

    .jackpot-amount {
        max-width: 100%;
        font-size: 1.4rem;
        overflow-wrap: anywhere;
    }

    .jackpot-ticker {
        font-size: 0.65rem;
    }

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

    .winners-grid {
        display: grid;
        grid-template-columns: 1fr !important;
        width: 100%;
        gap: 7px;
    }

    .winner-item {
        display: grid;
        grid-template-columns: 30px minmax(0, 1fr) auto;
        width: 100%;
        min-width: 0;
        gap: 8px;
        padding: 9px 10px;
    }

    .winner-item:hover {
        transform: none;
    }

    .winner-rank {
        width: 28px;
        height: 28px;
    }

    .winner-info {
        min-width: 0;
    }

    .winner-nick {
        font-size: 0.77rem;
    }

    .winner-game {
        min-width: 0;
        font-size: 0.65rem;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .winner-amount {
        font-size: 0.74rem;
        white-space: nowrap;
    }

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

    .video-wrapper {
        width: 100%;
        max-width: 100%;
        min-height: 190px;
        padding-top: 56.25%;
        border-radius: 10px;
    }

    .slot-section {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding: 20px 11px;
        margin-bottom: 32px;
        border-radius: 13px;
    }

    .slot-machine {
        display: flex;
        width: 100%;
        max-width: 330px;
        margin: 0 auto;
        gap: 16px;
    }

    .slot-display {
        display: flex;
        width: 100%;
        justify-content: center;
        gap: 6px;
        padding: 13px 9px;
    }

    .slot-reel {
        flex: 1 1 0;
        width: auto;
        min-width: 0;
        max-width: 72px;
        height: 68px;
        font-size: 1.8rem;
    }

    .slot-result {
        width: 100%;
        min-height: 46px;
        padding: 10px;
        font-size: 0.85rem;
    }

    .slot-controls {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        gap: 8px;
    }

    .slot-controls .btn {
        width: 100%;
        min-width: 0;
        justify-content: center;
        white-space: normal;
    }

    .slot-stats {
        width: 100%;
        justify-content: center;
        gap: 14px;
        font-size: 0.72rem;
    }

    .review-section {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        margin-bottom: 32px;
    }

    .review-header {
        display: grid;
        grid-template-columns: 46px minmax(0, 1fr);
        width: 100%;
        gap: 11px;
        padding: 15px 12px;
        margin-bottom: 18px;
        border-radius: 11px;
    }

    .author-avatar {
        width: 46px;
        height: 46px;
        font-size: 1rem;
    }

    .author-info {
        min-width: 0;
    }

    .author-info h3 {
        font-size: 0.9rem;
    }

    .author-info p {
        font-size: 0.7rem;
        line-height: 1.5;
        overflow-wrap: anywhere;
    }

    .rating-stars {
        flex-wrap: wrap;
        font-size: 0.9rem;
    }

    .author-links {
        gap: 6px;
    }

    .author-links a,
    .author-links span {
        max-width: 100%;
        font-size: 0.66rem !important;
        overflow-wrap: anywhere;
    }

    .pros-cons-grid {
        display: grid;
        grid-template-columns: 1fr !important;
        width: 100%;
        gap: 12px;
        margin-bottom: 22px;
    }

    .pros-block,
    .cons-block {
        width: 100%;
        min-width: 0;
        padding: 15px 12px;
    }

    .pros-block h4,
    .cons-block h4 {
        font-size: 0.92rem;
    }

    .pros-block ul li,
    .cons-block ul li {
        font-size: 0.77rem;
        line-height: 1.5;
        overflow-wrap: anywhere;
    }

    .content-block {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding: 17px 12px !important;
        overflow: hidden;
        border-radius: 11px;
        font-size: 0.81rem;
        line-height: 1.65;
    }

    .content-block h1,
    .content-block h2,
    .content-block h3,
    .content-block h4,
    .content-block h5,
    .content-block h6,
    .content-block p,
    .content-block li,
    .content-block a {
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    .content-block h2 {
        margin-top: 21px;
        margin-bottom: 10px;
        font-size: 1.14rem;
    }

    .content-block h3 {
        margin-top: 18px;
        font-size: 0.98rem;
    }

    .content-block h4 {
        font-size: 0.88rem;
    }

    .content-block ul,
    .content-block ol {
        padding-left: 18px;
    }

    .content-block blockquote {
        padding: 10px 11px;
        margin: 14px 0;
    }

    .content-block table {
        display: block;
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .content-block table th,
    .content-block table td {
        min-width: 115px;
        padding: 8px 9px;
        font-size: 0.7rem;
    }

    .content-block iframe,
    .content-block video {
        width: 100% !important;
        height: auto;
        min-height: 200px;
    }

    .faq-section {
        width: 100%;
        max-width: 100%;
        margin-bottom: 32px;
    }

    .faq-list {
        width: 100%;
        max-width: 100%;
        gap: 8px;
    }

    .faq-item {
        width: 100%;
        min-width: 0;
        border-radius: 10px;
    }

    .faq-question {
        width: 100%;
        min-width: 0;
        align-items: flex-start;
        gap: 9px;
        padding: 13px 11px;
        font-size: 0.82rem;
        line-height: 1.45;
    }

    .faq-question > span:first-child {
        min-width: 0;
        flex: 1;
        overflow-wrap: anywhere;
    }

    .faq-icon {
        width: 28px;
        height: 28px;
        flex: 0 0 28px;
    }

    .faq-answer {
        padding: 0 11px 13px;
        font-size: 0.77rem;
        line-height: 1.65;
        overflow-wrap: anywhere;
    }

    .site-footer {
        width: 100%;
        padding: 32px 0 88px;
    }

    .footer-top {
        display: grid;
        grid-template-columns: 1fr !important;
        width: 100%;
        gap: 23px;
        margin-bottom: 26px;
        padding-bottom: 24px;
    }

    .footer-brand,
    .footer-col {
        width: 100%;
        min-width: 0;
        grid-column: auto !important;
    }

    .footer-brand img {
        max-width: 135px;
        height: auto;
    }

    .footer-brand p,
    .footer-contact-item,
    .footer-nav-list li a {
        font-size: 0.76rem;
        overflow-wrap: anywhere;
    }

    .footer-logos-row {
        gap: 6px;
    }

    .logo-badge {
        width: auto;
        max-width: 100%;
        height: auto;
        min-height: 32px;
        padding: 5px 7px;
        font-size: 0.64rem;
        white-space: normal;
        text-align: center;
    }

    .footer-bottom p,
    .footer-legal {
        max-width: 100%;
        font-size: 0.66rem;
        line-height: 1.55;
        overflow-wrap: anywhere;
    }

    .sticky-widget {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        width: 100%;
        gap: 7px;
        padding: 8px 38px 8px 10px;
        text-align: left;
    }

    .widget-text {
        min-width: 0;
    }

    .widget-text .widget-headline {
        font-size: 0.72rem;
        line-height: 1.35;
        overflow-wrap: anywhere;
    }

    .widget-text .widget-sub {
        font-size: 0.67rem;
        line-height: 1.35;
        overflow-wrap: anywhere;
    }

    .widget-actions {
        gap: 5px;
    }

    .widget-actions .btn {
        padding: 7px 9px;
        font-size: 0.65rem;
        white-space: nowrap;
    }

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

@media (max-width: 420px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .header-logo img {
        max-width: 88px;
        height: 27px;
    }

    .header-buttons .btn-primary {
        padding: 7px;
        font-size: 0.59rem;
    }

    .mobile-nav {
        width: 92vw;
    }

    .hero-content {
        padding-top: 34px;
        padding-bottom: 28px;
    }

    .hero-text h1 {
        font-size: 1.4rem;
    }

    .hero-text > div[style*="display:flex"] .tag {
        flex-basis: 100%;
    }

    .section-title {
        font-size: 1.1rem;
    }

    .jackpot-section,
    .slot-section,
    .content-block {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .slot-reel {
        max-width: 62px;
        height: 64px;
        font-size: 1.65rem;
    }

    .review-header {
        grid-template-columns: 40px minmax(0, 1fr);
        padding-left: 10px;
        padding-right: 10px;
    }

    .author-avatar {
        width: 40px;
        height: 40px;
    }

    .sticky-widget {
        grid-template-columns: 1fr;
    }

    .widget-actions {
        width: 100%;
    }

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