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

:root {
    --c-bg: #0b0f19;
    --c-header: #141821;
    --c-red: #ff2e63;
    --c-green: #22c55e;
    --c-text: #e2e8f0;
    --c-muted: #94a3b8;
    --c-border: #1e2736;
    --c-card: #161c2b;
    --c-card2: #1a2235;
    --radius: 12px;
    --radius-lg: 18px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

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

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--c-bg);
    color: var(--c-text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

a:hover {
    color: #ff5580;
}

h1, h2, h3, h4 {
    line-height: 1.2;
    font-weight: 700;
}

h1 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
}

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

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

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

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    transition: transform 0.18s, box-shadow 0.18s, filter 0.18s;
    white-space: nowrap;
    text-decoration: none !important;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
    filter: brightness(1.08);
}

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

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

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

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

.btn--outline:hover {
    background: var(--c-red);
    color: #fff;
}

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

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

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

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

.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none !important;
}

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

.header-logo span {
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
}

.header-logo span em {
    color: var(--c-red);
    font-style: normal;
}

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

.header-nav a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    border-radius: 7px;
    color: var(--c-muted);
    font-size: 0.87rem;
    font-weight: 500;
    transition: background 0.15s, color 0.15s;
    text-decoration: none !important;
}

.header-nav a:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--c-text);
}

.header-nav a svg {
    flex-shrink: 0;
}

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

.online-count {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--c-muted);
    padding: 5px 10px;
    border-radius: 20px;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.4;
    }
}

.lang-dropdown {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 10px;
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--c-border);
    color: var(--c-text);
    font-size: 0.83rem;
    cursor: pointer;
    transition: background 0.15s;
}

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

.lang-menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: var(--c-header);
    border: 1px solid var(--c-border);
    border-radius: 10px;
    min-width: 140px;
    padding: 6px;
    display: none;
    z-index: 200;
    box-shadow: var(--shadow);
}

.lang-menu.active {
    display: block;
}

.lang-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    border-radius: 6px;
    color: var(--c-text);
    font-size: 0.84rem;
    transition: background 0.12s;
}

.lang-menu a:hover {
    background: rgba(255, 255, 255, 0.07);
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    cursor: pointer;
    padding: 4px;
}

.burger span {
    display: block;
    height: 2px;
    background: var(--c-text);
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.25s;
}

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

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

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

.mobile-menu {
    display: none;
    background: var(--c-header);
    border-top: 1px solid var(--c-border);
    padding: 12px 16px 16px;
}

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

.mobile-menu .header-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    margin-bottom: 12px;
}

.mobile-menu .header-nav a {
    width: 100%;
}

.mobile-menu .mobile-cta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

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

.hero-slider {
    position: relative;
    width: 100%;
    min-height: 540px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 0.7s ease;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
    position: relative;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(11, 15, 25, 0.92) 40%, rgba(11, 15, 25, 0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 580px;
    padding: 60px 0;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 46, 99, 0.15);
    border: 1px solid rgba(255, 46, 99, 0.3);
    color: var(--c-red);
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.hero-content h1 {
    color: #fff;
    margin-bottom: 14px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    color: rgba(226, 232, 240, 0.82);
    font-size: 1.05rem;
    margin-bottom: 26px;
    line-height: 1.65;
}

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

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

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

.section {
    padding: 64px 0;
}

.section-sm {
    padding: 40px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 36px;
}

.section-title h2 {
    color: #fff;
    margin-bottom: 8px;
}

.section-title p {
    color: var(--c-muted);
    font-size: 0.95rem;
}

.section-title .accent {
    color: var(--c-red);
}

.jackpots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.jackpot-card {
    border-radius: var(--radius-lg);
    padding: 28px 22px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid;
    transition: transform 0.25s, box-shadow 0.25s;
}

.jackpot-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.jackpot-card.bronze {
    background: linear-gradient(145deg, #1e1608 0%, #2a1f0a 100%);
    border-color: rgba(205, 127, 50, 0.35);
}

.jackpot-card.silver {
    background: linear-gradient(145deg, #131a24 0%, #1c2534 100%);
    border-color: rgba(192, 192, 192, 0.35);
}

.jackpot-card.gold {
    background: linear-gradient(145deg, #1f1800 0%, #2e2200 100%);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.08);
}

.jackpot-icon {
    font-size: 2.4rem;
    margin-bottom: 10px;
}

.jackpot-label {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}

.jackpot-card.bronze .jackpot-label {
    color: #cd7f32;
}

.jackpot-card.silver .jackpot-label {
    color: #b0b8c4;
}

.jackpot-card.gold .jackpot-label {
    color: #ffd700;
}

.jackpot-amount {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    font-variant-numeric: tabular-nums;
}

.jackpot-card.gold .jackpot-amount {
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.jackpot-winners {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding-top: 14px;
}

.jackpot-winner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    font-size: 0.82rem;
}

.jackpot-winner-nick {
    color: var(--c-muted);
}

.jackpot-winner-sum {
    color: var(--c-green);
    font-weight: 600;
}

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

.winners-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 480px;
}

.winners-table th {
    background: var(--c-card);
    color: var(--c-muted);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 12px 16px;
    text-align: left;
    border-bottom: 2px solid var(--c-border);
}

.winners-table td {
    padding: 11px 16px;
    border-bottom: 1px solid var(--c-border);
    font-size: 0.88rem;
    color: var(--c-text);
}

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

.winners-table .rank {
    font-weight: 700;
    color: var(--c-muted);
}

.winners-table .rank-1 {
    color: #ffd700;
}

.winners-table .rank-2 {
    color: #b0b8c4;
}

.winners-table .rank-3 {
    color: #cd7f32;
}

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

.winners-table .win-amount {
    color: var(--c-green);
    font-weight: 700;
}

.winners-table .multiplier {
    color: var(--c-red);
    font-weight: 600;
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.bonus-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.22s, box-shadow 0.22s;
    display: flex;
    flex-direction: column;
}

.bonus-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
}

.bonus-card-header {
    padding: 20px 20px 16px;
    background: linear-gradient(135deg, #161c2b 0%, #1a2235 100%);
    border-bottom: 1px solid var(--c-border);
    display: flex;
    align-items: center;
    gap: 12px;
}

.bonus-casino-logo {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.bonus-casino-name {
    font-weight: 700;
    color: #fff;
    font-size: 0.95rem;
}

.bonus-casino-sub {
    color: var(--c-muted);
    font-size: 0.78rem;
}

.bonus-card-body {
    padding: 18px 20px;
    flex: 1;
}

.bonus-amount {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--c-green);
    margin-bottom: 4px;
}

.bonus-desc {
    color: var(--c-muted);
    font-size: 0.83rem;
    margin-bottom: 14px;
    line-height: 1.5;
}

.bonus-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
}

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

.badge-red {
    background: rgba(255, 46, 99, 0.12);
    color: var(--c-red);
    border: 1px solid rgba(255, 46, 99, 0.25);
}

.badge-green {
    background: rgba(34, 197, 94, 0.1);
    color: var(--c-green);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.badge-blue {
    background: rgba(59, 130, 246, 0.1);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.bonus-card-footer {
    padding: 0 20px 20px;
}

.demo-section-inner {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 28px;
    align-items: start;
}

.demo-frame-wrap {
    border-radius: var(--radius-lg);
    border: 2px solid var(--c-border);
    background: #000;
    aspect-ratio: 16/9;
    position: relative;
}

.demo-frame-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.demo-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.demo-info-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 18px;
}

.demo-info-card h3 {
    color: #fff;
    margin-bottom: 12px;
    font-size: 1rem;
}

.demo-stats {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.demo-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.84rem;
}

.demo-stat-label {
    color: var(--c-muted);
}

.demo-stat-value {
    color: var(--c-text);
    font-weight: 600;
}

.demo-stat-value.green {
    color: var(--c-green);
}

.demo-stat-value.red {
    color: var(--c-red);
}

.demo-cta {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.12) 0%, rgba(34, 197, 94, 0.04) 100%);
    border: 1px solid rgba(34, 197, 94, 0.25);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
}

.demo-cta h3 {
    color: #fff;
    margin-bottom: 6px;
    font-size: 1rem;
}

.demo-cta p {
    color: var(--c-muted);
    font-size: 0.82rem;
    margin-bottom: 14px;
}

.strategies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.strategy-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.22s, box-shadow 0.22s;
    display: flex;
    flex-direction: column;
}

.strategy-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
}

.strategy-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    background: linear-gradient(135deg, #161c2b 0%, #1a2235 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    min-height: 140px;
}

.strategy-body {
    padding: 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.strategy-tag {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--c-red);
    margin-bottom: 7px;
}

.strategy-body h3 {
    color: #fff;
    margin-bottom: 8px;
    font-size: 1rem;
}

.strategy-body p {
    color: var(--c-muted);
    font-size: 0.83rem;
    line-height: 1.55;
    flex: 1;
    margin-bottom: 14px;
}

.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    cursor: pointer;
    font-weight: 600;
    color: #fff;
    font-size: 0.95rem;
    transition: background 0.15s;
    user-select: none;
    gap: 12px;
}

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

.faq-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255, 46, 99, 0.15);
    border: 1px solid rgba(255, 46, 99, 0.3);
    color: var(--c-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    transition: transform 0.25s;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.2s;
}

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

.faq-answer-inner {
    padding: 0 20px 18px;
    color: var(--c-muted);
    font-size: 0.9rem;
    line-height: 1.65;
}

.author-card {
    max-width: 820px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    align-items: start;
}

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

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

.author-title {
    color: var(--c-red);
    font-size: 0.83rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.author-bio {
    color: var(--c-muted);
    font-size: 0.87rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.author-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--c-text);
    font-size: 0.83rem;
    font-weight: 500;
    border: 1px solid var(--c-border);
    border-radius: 7px;
    padding: 5px 12px;
    transition: border-color 0.15s, color 0.15s;
}

.author-link:hover {
    border-color: var(--c-red);
    color: var(--c-red);
}

.site-footer {
    background: var(--c-header);
    border-top: 1px solid var(--c-border);
    margin-top: auto;
}

.footer-top {
    padding: 48px 0 32px;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 32px;
}

.footer-brand {
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 14px;
    text-decoration: none !important;
}

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

.footer-logo span {
    font-weight: 800;
    color: #fff;
    font-size: 1.05rem;
}

.footer-logo span em {
    color: var(--c-red);
    font-style: normal;
}

.footer-desc {
    color: var(--c-muted);
    font-size: 0.83rem;
    line-height: 1.6;
    margin-bottom: 18px;
}

.footer-col h4 {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col ul li a {
    color: var(--c-muted);
    font-size: 0.84rem;
    transition: color 0.15s;
    text-decoration: none !important;
}

.footer-col ul li a:hover {
    color: var(--c-text);
}

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

.payment-badge {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--c-border);
    border-radius: 6px;
    padding: 5px 10px;
    font-size: 0.75rem;
    color: var(--c-muted);
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid var(--c-border);
    padding: 20px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.footer-bottom-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-copyright {
    color: var(--c-muted);
    font-size: 0.78rem;
}

.footer-legal {
    color: var(--c-muted);
    font-size: 0.75rem;
    max-width: 520px;
    line-height: 1.55;
}

.trust-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.trust-badge {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--c-border);
    border-radius: 7px;
    padding: 5px 10px;
    font-size: 0.72rem;
    color: var(--c-muted);
    font-weight: 600;
    white-space: nowrap;
}

.provider-badge {
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--c-border);
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 0.78rem;
    color: var(--c-muted);
    text-decoration: none !important;
}

.provider-badge:hover {
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--c-text);
}

.provider-badge img {
    height: 18px;
}

.content-block {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 0;
}

.content-block h2 {
    color: #fff;
    margin-bottom: 14px;
}

.content-block h3 {
    color: #fff;
    margin-bottom: 10px;
    margin-top: 22px;
}

.content-block p {
    color: var(--c-muted);
    margin-bottom: 14px;
    line-height: 1.7;
}

.content-block ul, .content-block ol {
    color: var(--c-muted);
    padding-left: 22px;
    margin-bottom: 14px;
    line-height: 1.7;
}

.content-block li {
    margin-bottom: 6px;
}

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

.content-block table th {
    background: var(--c-card2);
    padding: 10px 14px;
    text-align: left;
    border: 1px solid var(--c-border);
    color: var(--c-text);
    font-size: 0.85rem;
}

.content-block table td {
    padding: 9px 14px;
    border: 1px solid var(--c-border);
    color: var(--c-muted);
    font-size: 0.85rem;
}

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

.content-block a:hover {
    color: #ff5580;
}

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

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 14px 0;
    font-size: 0.82rem;
    color: var(--c-muted);
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--c-muted);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--c-text);
}

.breadcrumb span {
    color: var(--c-border);
}

.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

.pros-card {
    border: 1px solid rgba(34, 197, 94, 0.25);
}

.cons-card {
    border: 1px solid rgba(255, 46, 99, 0.25);
}

.pros-card h4 {
    color: var(--c-green);
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.cons-card h4 {
    color: var(--c-red);
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.pros-card ul, .cons-card ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pros-card li, .cons-card li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--c-muted);
    line-height: 1.5;
}

.pros-card li::before {
    content: '✓';
    color: var(--c-green);
    font-weight: 700;
    flex-shrink: 0;
}

.cons-card li::before {
    content: '✗';
    color: var(--c-red);
    font-weight: 700;
    flex-shrink: 0;
}

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

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.main {
    flex: 1;
}

.technical-content {
    max-width: 820px;
    margin: 0 auto;
    padding: 40px 0 60px;
}

.technical-content h1 {
    color: #fff;
    margin-bottom: 24px;
}

.technical-content h2 {
    color: #fff;
    margin-bottom: 12px;
    margin-top: 28px;
    font-size: 1.3rem;
}

.technical-content h3 {
    color: var(--c-text);
    margin-bottom: 8px;
    margin-top: 20px;
    font-size: 1.1rem;
}

.technical-content p {
    color: var(--c-muted);
    margin-bottom: 14px;
    line-height: 1.7;
}

.technical-content ul, .technical-content ol {
    color: var(--c-muted);
    padding-left: 22px;
    margin-bottom: 14px;
}

.technical-content li {
    margin-bottom: 7px;
    line-height: 1.6;
}

.technical-content a {
    color: var(--c-red);
}

.technical-content strong {
    color: var(--c-text);
}

.bonuses-slider-wrap {
    position: relative;
}

.bonuses-slider-nav {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.slider-nav-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    border: none;
    transition: background 0.2s;
}

.slider-nav-dot.active {
    background: var(--c-red);
}

.wp-widget-area {
    display: none;
}

.elementor-widget-container {
}

.post-thumbnail {
}

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

    .demo-section-inner {
        grid-template-columns: 1fr;
    }

    .demo-frame-wrap {
        aspect-ratio: 16/9;
    }
}

@media (max-width: 900px) {
    .jackpots-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

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

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

    .bonuses-slider-nav {
        display: flex;
    }
}

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

    .burger {
        display: flex;
    }

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

    .desktop-nav-cta {
        display: none;
    }

    .hero-section {
        min-height: 460px;
    }

    .hero-slider {
        min-height: 460px;
    }

    .hero-content {
        padding: 40px 0;
    }

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

    .author-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .author-avatar {
        margin: 0 auto;
    }

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

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

    .section {
        padding: 44px 0;
    }

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

@media (max-width: 480px) {
    .hero-btns {
        flex-direction: column;
    }

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

    .jackpot-amount {
        font-size: 1.6rem;
    }

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

.nx-header {
    position: sticky;
    top: 0;
    z-index: 999;
    width: 100%;
    backdrop-filter: blur(18px);
    background: rgba(20, 24, 33, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.nx-header__inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 14px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.nx-header__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.nx-header__logo img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.nx-header__logo span {
    font-size: 1.3rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.04em;
}

.nx-header__logo span span {
    color: #ff2e63;
}

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

.nx-header__nav a {
    position: relative;
    padding: 10px 16px;
    border-radius: 14px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    transition: 0.25s ease;
    white-space: nowrap;
}

.nx-header__nav a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
}

.nx-header__nav a::after {
    content: '';
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 6px;
    height: 2px;
    border-radius: 20px;
    background: #ff2e63;
    transform: scaleX(0);
    transition: 0.25s ease;
}

.nx-header__nav a:hover::after {
    transform: scaleX(1);
}

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

.nx-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 20px;
    border-radius: 14px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: 0.25s ease;
    white-space: nowrap;
}

.nx-btn--ghost {
    color: #ff2e63;
    border: 1px solid rgba(255, 46, 99, 0.35);
    background: rgba(255, 46, 99, 0.08);
}

.nx-btn--ghost:hover {
    background: #ff2e63;
    color: #ffffff;
    transform: translateY(-2px);
}

.nx-btn--green {
    color: #ffffff;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.28);
}

.nx-btn--green:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
}

.nx-burger {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 0 12px;
    cursor: pointer;
    flex-shrink: 0;
}

.nx-burger span {
    width: 100%;
    height: 2px;
    border-radius: 20px;
    background: #ffffff;
    transition: 0.25s ease;
}

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

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

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

@media (max-width: 980px) {

    .nx-burger {
        display: flex;
    }

    .nx-header__nav {
        position: fixed;
        top: 76px;
        left: 12px;
        right: 12px;
        background: #141821;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 24px;
        padding: 14px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-14px);
        transition: 0.25s ease;
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
    }

    .nx-header__nav.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nx-header__nav a {
        width: 100%;
        padding: 14px 16px;
        border-radius: 14px;
    }

    .nx-header__nav a::after {
        display: none;
    }
}

@media (max-width: 640px) {

    .nx-header__inner {
        padding: 12px 14px;
        gap: 12px;
    }

    .nx-btn--ghost {
        display: none;
    }

    .nx-btn {
        min-height: 42px;
        padding: 0 16px;
        font-size: 0.84rem;
    }

    .nx-header__logo span {
        font-size: 1.1rem;
    }

    .nx-header__logo img {
        width: 38px;
        height: 38px;
    }
}