/* === RESET & BASE === */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Poppins', 'Montserrat', sans-serif;
    background-color: #1A1A2E;
    color: #e8e8f0;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    color: #FFD84D;
    text-decoration: none;
    transition: color .2s, opacity .2s;
}

a:hover {
    opacity: .85;
}

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* === COLOR VARS === */
:root {
    --clr-bg: #1A1A2E;
    --clr-bg2: #16213E;
    --clr-header: #0F3D2E;
    --clr-header-dark: #0a2d21;
    --clr-gold: #FFD84D;
    --clr-gold-dark: #e5c140;
    --clr-red: #FF3B3F;
    --clr-red-dark: #e03033;
    --clr-text: #e8e8f0;
    --clr-text-muted: #a0a8be;
    --clr-card: #1e2847;
    --clr-card2: #243058;
    --clr-border: #2d3a5e;
    --clr-success: #22c55e;
    --clr-warning: #f59e0b;
    --clr-error: #ef4444;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 24px rgba(0, 0, 0, .4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, .5);
    --transition: .25s ease;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5 {
    font-family: 'Oswald', 'Montserrat', sans-serif;
    line-height: 1.2;
    color: #fff;
}

h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 600;
}

h2 {
    font-size: clamp(1.4rem, 3vw, 2.1rem);
    font-weight: 600;
}

h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 500;
}

p {
    line-height: 1.7;
    color: var(--clr-text);
}

/* === LAYOUT === */
.site-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

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

.site-main {
    flex: 1;
}

.site-content {
    padding: 0;
}

/* === VISUALLY HIDDEN === */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===================== HEADER ===================== */
.site-header {
    background-color: var(--clr-header);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .4);
    transition: background-color var(--transition);
}

.site-header.scrolled {
    background-color: var(--clr-header-dark);
}

.hdr-nav {
    padding: 0;
}

.hdr-x9k2 {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 12px 0;
    min-height: 68px;
}

.hdr-logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
    transition: transform var(--transition);
}

.hdr-logo:hover img {
    transform: scale(1.03);
}

.hdr-nav-wrap {
    display: flex;
    justify-content: center;
}

.hdr-nav-list {
    display: flex;
    gap: 4px;
    align-items: center;
}

.hdr-nav-item {
    position: relative;
}

.hdr-nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    color: #d4e8d0;
    font-size: .85rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition);
    white-space: nowrap;
}

.hdr-nav-link:hover {
    background: rgba(255, 216, 77, .12);
    color: var(--clr-gold);
    opacity: 1;
}

.hdr-nav-link svg {
    flex-shrink: 0;
}

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

/* Online indicator */
.hdr-online-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .78rem;
    color: #a0c4a0;
    white-space: nowrap;
}

.hdr-online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    animation: pulse-dot 2s infinite;
    flex-shrink: 0;
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: .6;
        transform: scale(1.3);
    }
}

.hdr-online-count {
    color: var(--clr-gold);
    font-weight: 600;
}

/* Lang dropdown */
.hdr-lang-wrap {
    position: relative;
}

.hdr-lang-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 10px;
    background: rgba(255, 255, 255, .08);
    border-radius: var(--radius-sm);
    color: var(--clr-text);
    font-size: .82rem;
    transition: background var(--transition);
    border: 1px solid var(--clr-border);
    cursor: pointer;
}

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

.hdr-lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--clr-card2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 6px 0;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all var(--transition);
    box-shadow: var(--shadow);
    z-index: 100;
}

.hdr-lang-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hdr-lang-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    font-size: .85rem;
    color: var(--clr-text);
    transition: background var(--transition);
}

.hdr-lang-option:hover, .hdr-lang-active {
    background: rgba(255, 216, 77, .1);
    color: var(--clr-gold);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: .85rem;
    transition: all var(--transition);
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    border: none;
}

.btn-demo {
    background: var(--clr-gold);
    color: #1a1a2e;
}

.btn-demo:hover {
    background: var(--clr-gold-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255, 216, 77, .4);
    opacity: 1;
    color: #1a1a2e;
}

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

.btn-play:hover {
    background: var(--clr-red-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255, 59, 63, .4);
    opacity: 1;
    color: #fff;
}

.btn-primary {
    background: var(--clr-gold);
    color: #1a1a2e;
    padding: 13px 30px;
    font-size: 1rem;
    border-radius: var(--radius);
}

.btn-primary:hover {
    background: var(--clr-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 216, 77, .45);
    opacity: 1;
    color: #1a1a2e;
}

.btn-secondary {
    background: var(--clr-red);
    color: #fff;
    padding: 13px 30px;
    font-size: 1rem;
    border-radius: var(--radius);
}

.btn-secondary:hover {
    background: var(--clr-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 59, 63, .4);
    opacity: 1;
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: var(--clr-gold);
    border: 2px solid var(--clr-gold);
    padding: 11px 28px;
    font-size: .95rem;
    border-radius: var(--radius);
}

.btn-outline:hover {
    background: var(--clr-gold);
    color: #1a1a2e;
    opacity: 1;
}

/* Burger */
.hdr-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 38px;
    height: 38px;
    padding: 6px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, .08);
    border: 1px solid var(--clr-border);
}

.hdr-burger span {
    display: block;
    height: 2px;
    background: var(--clr-text);
    border-radius: 2px;
    transition: all .3s;
    transform-origin: center;
}

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

.hdr-burger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

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

/* Mobile menu */
.hdr-mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--clr-header-dark);
    border-top: 1px solid var(--clr-border);
    padding: 12px 0;
    z-index: 999;
    transform: translateY(-10px);
    opacity: 0;
    transition: all .3s;
    pointer-events: none;
}

.hdr-mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.hdr-mobile-nav {
    display: flex;
    flex-direction: column;
}

.hdr-mobile-link {
    display: block;
    padding: 12px 20px;
    color: var(--clr-text);
    font-size: .95rem;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    transition: background var(--transition), color var(--transition);
}

.hdr-mobile-link:hover {
    background: rgba(255, 216, 77, .08);
    color: var(--clr-gold);
}

/* ===================== GAMES PROMO STRIP ===================== */
.games-promo-strip {
    background: linear-gradient(90deg, #0a2d21 0%, #0F3D2E 50%, #0a2d21 100%);
    border-bottom: 1px solid rgba(255, 216, 77, .2);
    overflow: hidden;
    height: 38px;
}

.games-promo-inner {
    display: flex;
    align-items: center;
    height: 100%;
    animation: promo-scroll 28s linear infinite;
    width: max-content;
    gap: 60px;
    padding: 0 30px;
}

.games-promo-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .78rem;
    color: #c8dac4;
    white-space: nowrap;
}

.games-promo-fire {
    font-size: .85rem;
}

@keyframes promo-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ===================== HERO ===================== */
.hero-section {
    position: relative;
    min-height: 540px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a1628 0%, #0F3D2E 40%, #1a0a2e 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .25;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 22, 40, .92) 0%, rgba(15, 61, 46, .7) 50%, rgba(26, 10, 46, .85) 100%);
    z-index: 1;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

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

.hero-text {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 216, 77, .15);
    border: 1px solid rgba(255, 216, 77, .3);
    color: var(--clr-gold);
    font-size: .8rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
    font-family: 'Fredoka', sans-serif;
}

.hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 600;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.hero-title span {
    color: var(--clr-gold);
    display: block;
}

.hero-desc {
    font-size: 1.05rem;
    color: #c0cce0;
    margin-bottom: 28px;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    gap: 28px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

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

.hero-stat-val {
    display: block;
    font-family: 'Fredoka', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--clr-gold);
    line-height: 1;
}

.hero-stat-label {
    display: block;
    font-size: .72rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-top: 3px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.hero-wheel-wrap {
    position: relative;
    width: 220px;
    height: 220px;
}

.hero-wheel {
    width: 100%;
    height: 100%;
    animation: spin-slow 20s linear infinite;
}

@keyframes spin-slow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.hero-provider {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 8px 14px;
    font-size: .78rem;
    color: var(--clr-text-muted);
}

.hero-provider img {
    height: 24px;
    width: auto;
}

/* ===================== SECTION STYLES ===================== */
.section-block {
    margin: 0 16px 40px;
}

.section-inner {
    background: var(--clr-card);
    border-radius: var(--radius);
    padding: 36px;
    border: 1px solid var(--clr-border);
    position: relative;
    overflow: hidden;
}

.section-inner--alt {
    background: var(--clr-card2);
}

.section-inner--dark {
    background: linear-gradient(135deg, #0d1b35 0%, #111c38 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 32px;
}

.section-title {
    color: #fff;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--clr-gold);
    border-radius: 2px;
    margin: 10px auto 0;
}

.section-subtitle {
    color: var(--clr-text-muted);
    font-size: .95rem;
    margin-top: 10px;
}

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

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

.pros-card {
    background: linear-gradient(135deg, rgba(34, 197, 94, .08) 0%, rgba(34, 197, 94, .04) 100%);
    border: 1px solid rgba(34, 197, 94, .25);
}

.cons-card {
    background: linear-gradient(135deg, rgba(239, 68, 68, .08) 0%, rgba(239, 68, 68, .04) 100%);
    border: 1px solid rgba(239, 68, 68, .25);
}

.pros-cons-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.pros-title-text {
    color: #22c55e;
}

.cons-title-text {
    color: #ef4444;
}

.pros-cons-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pros-cons-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .9rem;
    color: var(--clr-text);
}

.pros-icon {
    color: #22c55e;
    flex-shrink: 0;
    margin-top: 2px;
}

.cons-icon {
    color: #ef4444;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ===================== WINNERS TABLE ===================== */
.winners-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-sm);
}

.winners-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 500px;
}

.winners-table th {
    background: var(--clr-header);
    color: var(--clr-gold);
    font-family: 'Oswald', sans-serif;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: 12px 16px;
    text-align: left;
    border-bottom: 2px solid var(--clr-border);
}

.winners-table td {
    padding: 11px 16px;
    border-bottom: 1px solid rgba(45, 58, 94, .6);
    font-size: .88rem;
    color: var(--clr-text);
    transition: background var(--transition);
}

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

.winners-table tr.top-1 td {
    background: rgba(255, 216, 77, .07);
}

.winners-table tr.top-2 td {
    background: rgba(192, 192, 192, .05);
}

.winners-table tr.top-3 td {
    background: rgba(205, 127, 50, .05);
}

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

.winners-rank.rank-1 {
    color: #FFD84D;
}

.winners-rank.rank-2 {
    color: #C0C0C0;
}

.winners-rank.rank-3 {
    color: #CD7F32;
}

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

.winners-amount {
    font-weight: 700;
    color: #22c55e;
    font-family: 'Fredoka', sans-serif;
    font-size: 1rem;
}

.winners-mult {
    color: var(--clr-gold);
    font-size: .82rem;
}

.winners-time {
    color: var(--clr-text-muted);
    font-size: .78rem;
}

.winners-badge {
    display: inline-block;
    background: rgba(255, 216, 77, .15);
    color: var(--clr-gold);
    font-size: .68rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 10px;
    text-transform: uppercase;
}

/* ===================== DEMO BLOCK ===================== */
.demo-section {
    text-align: center;
}

.demo-iframe-wrap {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 2px solid var(--clr-border);
    background: #000;
    margin: 0 auto 24px;
    max-width: 900px;
}

.demo-iframe-wrap::before {
    content: '';
    display: block;
    padding-top: 56.25%;
}

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

.demo-note {
    font-size: .85rem;
    color: var(--clr-text-muted);
    margin-bottom: 20px;
}

.demo-cta-row {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

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

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

.strategy-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, .5);
    border-color: rgba(255, 216, 77, .3);
}

.strategy-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    background: linear-gradient(135deg, #0F3D2E 0%, #1a1a2e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

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

.strategy-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.15rem;
    color: var(--clr-gold);
    margin-bottom: 8px;
}

.strategy-desc {
    font-size: .87rem;
    color: var(--clr-text-muted);
    flex: 1;
    margin-bottom: 16px;
    line-height: 1.6;
}

.strategy-btn {
    align-self: flex-start;
}

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

.review-card {
    background: var(--clr-card2);
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid var(--clr-border);
    transition: transform var(--transition), border-color var(--transition);
}

.review-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 216, 77, .3);
}

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

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr-header) 0%, #1a4a38 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    border: 2px solid var(--clr-border);
}

.review-meta {
    flex: 1;
}

.review-name {
    font-weight: 600;
    color: #fff;
    font-size: .95rem;
}

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

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

.review-star {
    color: #FFD84D;
}

.review-text {
    font-size: .88rem;
    color: var(--clr-text);
    line-height: 1.65;
}

/* Review Form */
.review-form-wrap {
    background: var(--clr-card);
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid var(--clr-border);
    max-width: 600px;
    margin: 0 auto;
}

.review-form-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

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

.form-label {
    font-size: .83rem;
    color: var(--clr-text-muted);
    font-weight: 500;
    letter-spacing: .03em;
}

.form-input, .form-textarea {
    width: 100%;
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 11px 14px;
    color: var(--clr-text);
    font-family: inherit;
    font-size: .9rem;
    transition: border-color var(--transition), background var(--transition);
    outline: none;
}

.form-input:focus, .form-textarea:focus {
    border-color: var(--clr-gold);
    background: rgba(255, 216, 77, .05);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.6;
}

.form-submit {
    width: 100%;
    padding: 13px;
    background: var(--clr-red);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition);
    letter-spacing: .03em;
}

.form-submit:hover {
    background: var(--clr-red-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 18px rgba(255, 59, 63, .35);
}

.form-success {
    display: none;
    text-align: center;
    padding: 20px;
    background: rgba(34, 197, 94, .1);
    border: 1px solid rgba(34, 197, 94, .3);
    border-radius: var(--radius);
    color: #22c55e;
    font-weight: 600;
}

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

.author-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr-header) 0%, #1a4a38 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
    border: 3px solid var(--clr-gold);
}

.author-info {
    flex: 1;
}

.author-label {
    font-size: .75rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 4px;
}

.author-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 4px;
}

.author-title {
    font-size: .83rem;
    color: var(--clr-gold);
    font-weight: 600;
    margin-bottom: 8px;
}

.author-bio {
    font-size: .87rem;
    color: var(--clr-text-muted);
    line-height: 1.65;
}

.author-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    font-size: .82rem;
    color: var(--clr-gold);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 216, 77, .3);
    padding-bottom: 1px;
}

.author-link:hover {
    border-color: var(--clr-gold);
    opacity: 1;
}

/* ===================== FAQ ===================== */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    font-size: .95rem;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    gap: 16px;
    background: none;
    border: none;
    font-family: inherit;
    text-align: left;
    transition: background var(--transition);
}

.faq-question:hover {
    background: rgba(255, 216, 77, .05);
}

.faq-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    background: rgba(255, 216, 77, .15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-gold);
    font-size: .8rem;
    transition: transform var(--transition);
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
    background: rgba(255, 216, 77, .25);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .3s ease;
    padding: 0 20px;
}

.faq-answer-inner {
    padding: 0 0 16px;
    font-size: .9rem;
    color: var(--clr-text-muted);
    line-height: 1.7;
}

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

/* ===================== GAME INFO TABLE ===================== */
.game-info-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--clr-border);
    margin: 0 auto;
}

.game-info-table th, .game-info-table td {
    padding: 12px 18px;
    text-align: left;
    border-bottom: 1px solid var(--clr-border);
}

.game-info-table th {
    background: var(--clr-header);
    color: var(--clr-gold);
    font-size: .83rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    width: 40%;
}

.game-info-table td {
    background: var(--clr-card);
    color: var(--clr-text);
    font-size: .9rem;
}

.game-info-table tr:last-child th, .game-info-table tr:last-child td {
    border-bottom: none;
}

/* ===================== CONTENT STYLES (голые теги) ===================== */
.content-body h2 {
    font-size: 1.5rem;
    color: #fff;
    margin: 28px 0 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--clr-border);
}

.content-body h3 {
    font-size: 1.2rem;
    color: var(--clr-gold);
    margin: 22px 0 10px;
}

.content-body h4 {
    font-size: 1rem;
    color: #d0e8ff;
    margin: 18px 0 8px;
}

.content-body p {
    color: var(--clr-text);
    margin-bottom: 14px;
    font-size: .95rem;
}

.content-body ul, .content-body ol {
    padding-left: 22px;
    margin-bottom: 16px;
}

.content-body ul {
    list-style: disc;
}

.content-body ol {
    list-style: decimal;
}

.content-body li {
    color: var(--clr-text);
    margin-bottom: 8px;
    font-size: .93rem;
    line-height: 1.65;
}

.content-body a {
    color: var(--clr-gold);
    border-bottom: 1px solid rgba(255, 216, 77, .3);
}

.content-body a:hover {
    border-color: var(--clr-gold);
}

.content-body table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 20px 0;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.content-body th {
    background: var(--clr-header);
    color: var(--clr-gold);
    padding: 10px 14px;
    text-align: left;
    font-size: .85rem;
}

.content-body td {
    background: var(--clr-card);
    color: var(--clr-text);
    padding: 10px 14px;
    border-bottom: 1px solid var(--clr-border);
    font-size: .88rem;
}

.content-body strong {
    color: #fff;
    font-weight: 600;
}

.content-body em {
    color: var(--clr-text-muted);
    font-style: italic;
}

.content-body blockquote {
    border-left: 3px solid var(--clr-gold);
    padding: 12px 18px;
    background: rgba(255, 216, 77, .06);
    margin: 20px 0;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--clr-text-muted);
    font-style: italic;
}

/* ===================== FOOTER ===================== */
.site-footer {
    background: var(--clr-header);
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.ftr-x7m3 {
    padding: 48px 0 24px;
}

.ftr-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.ftr-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 36px;
    margin-bottom: 36px;
}

.ftr-logo img {
    height: 44px;
    width: auto;
    margin-bottom: 14px;
}

.ftr-brand-desc {
    font-size: .83rem;
    color: #8aa89a;
    line-height: 1.6;
    margin-bottom: 14px;
}

.ftr-provider {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ftr-provider-label {
    font-size: .78rem;
    color: var(--clr-text-muted);
}

.ftr-provider img {
    height: 28px;
    width: auto;
}

.ftr-col-title {
    font-family: 'Oswald', sans-serif;
    font-size: .95rem;
    color: var(--clr-gold);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 14px;
}

.ftr-nav-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ftr-nav-link {
    font-size: .85rem;
    color: #8aa89a;
    transition: color var(--transition);
}

.ftr-nav-link:hover {
    color: var(--clr-gold);
    opacity: 1;
}

.ftr-payments {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
}

.ftr-payment-item {
    background: rgba(255, 255, 255, .08);
    border-radius: 4px;
    padding: 4px 6px;
    display: flex;
    align-items: center;
}

.ftr-licenses {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ftr-license-badge {
    display: flex;
    align-items: center;
}

.ftr-divider {
    height: 1px;
    background: rgba(255, 255, 255, .08);
    margin-bottom: 22px;
}

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

.ftr-copyright {
    font-size: .8rem;
    color: #6a7a6e;
    margin-bottom: 6px;
}

.ftr-legal {
    font-size: .78rem;
    color: #6a7a6e;
}

.ftr-legal-link {
    color: var(--clr-gold);
    border-bottom: 1px solid rgba(255, 216, 77, .3);
}

.ftr-host {
    font-size: .72rem;
    color: rgba(255, 255, 255, .15);
    margin-top: 8px;
}

/* ===================== BONUS WIDGET ===================== */
.bonus-widget {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9000;
    animation: widget-slide-in .5s ease .8s both;
}

@keyframes widget-slide-in {
    from {
        transform: translateX(-120%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.bonus-widget-link {
    display: block;
    text-decoration: none;
}

.bonus-widget-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--clr-red) 0%, #cc1f22 100%);
    color: #fff;
    padding: 12px 18px;
    border-radius: var(--radius);
    box-shadow: 0 6px 28px rgba(255, 59, 63, .5);
    border: 1px solid rgba(255, 255, 255, .15);
    transition: transform var(--transition), box-shadow var(--transition);
    min-width: 260px;
}

.bonus-widget-link:hover .bonus-widget-inner {
    transform: translateY(-2px);
    box-shadow: 0 10px 36px rgba(255, 59, 63, .6);
}

.bonus-widget-icon {
    font-size: 1.5rem;
}

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

.bonus-widget-title {
    display: block;
    font-weight: 700;
    font-size: .95rem;
    color: #fff;
    line-height: 1.2;
}

.bonus-widget-sub {
    display: block;
    font-size: .75rem;
    color: rgba(255, 255, 255, .8);
}

.bonus-widget-arrow {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, .8);
}

.bonus-widget-close {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 22px;
    height: 22px;
    background: #333;
    border-radius: 50%;
    font-size: .65rem;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .2);
    transition: background var(--transition);
}

.bonus-widget-close:hover {
    background: #555;
}

.bonus-widget.hidden {
    display: none;
}

/* ===================== TECHNICAL PAGES ===================== */
.site-main--technical {
    padding: 40px 0;
}

.technical-breadcrumb {
    font-size: .83rem;
    color: var(--clr-text-muted);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.technical-breadcrumb a {
    color: var(--clr-gold);
}

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

.site-content--technical {
    background: var(--clr-card);
    border-radius: var(--radius);
    border: 1px solid var(--clr-border);
    overflow: hidden;
}

.technical-content-wrap {
    padding: 36px;
}

.technical-h1 {
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--clr-border);
}

.technical-body h2 {
    font-size: 1.3rem;
    color: #fff;
    margin: 28px 0 10px;
}

.technical-body h3 {
    font-size: 1.05rem;
    color: var(--clr-gold);
    margin: 20px 0 8px;
}

.technical-body p {
    color: var(--clr-text);
    font-size: .92rem;
    margin-bottom: 14px;
    line-height: 1.7;
}

.technical-body ul, .technical-body ol {
    padding-left: 22px;
    margin-bottom: 16px;
}

.technical-body ul {
    list-style: disc;
}

.technical-body ol {
    list-style: decimal;
}

.technical-body li {
    color: var(--clr-text);
    margin-bottom: 8px;
    font-size: .9rem;
    line-height: 1.65;
}

.technical-body a {
    color: var(--clr-gold);
}

/* ===================== MISC UTILITY ===================== */
.mt-8 {
    margin-top: 8px;
}

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

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

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

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

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

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

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

.text-green {
    color: #22c55e;
}

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

/* Fade-in animation for sections */
.fade-in-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .55s ease, transform .55s ease;
}

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

/* Decorative separator */
.section-sep {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--clr-gold), transparent);
    margin: 0 16px 40px;
    border-radius: 2px;
    opacity: .3;
}

/* wp-content unused styles for fingerprinting */
.wp-block-group, .wp-block-column, .wp-block-columns {
    display: block;
}

.elementor-widget-container {
    display: block;
}

.entry-content, .post-content, .page-content {
    display: block;
}

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

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

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1100px) {
    .ftr-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 900px) {
    .hdr-x9k2 {
        grid-template-columns: auto auto;
    }

    .hdr-nav-wrap {
        display: none;
    }

    .hdr-burger {
        display: flex;
    }

    .hdr-actions {
        gap: 6px;
    }

    .hdr-online-wrap {
        display: none;
    }

    .hdr-lang-wrap {
        order: -1;
    }

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

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

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

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

    .hero-visual {
        display: none;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .section-inner {
        padding: 20px 16px;
    }

    .section-block {
        margin: 0 8px 28px;
    }

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

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

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

    .hero-stats {
        gap: 16px;
    }

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

    .author-block {
        flex-direction: column;
        align-items: flex-start;
    }

    .bonus-widget {
        bottom: 12px;
        left: 12px;
        right: 12px;
    }

    .bonus-widget-inner {
        min-width: unset;
    }

    .hdr-actions .btn {
        padding: 8px 12px;
        font-size: .78rem;
    }
}

@media (max-width: 400px) {
    .hdr-x9k2 {
        gap: 10px;
    }

    .btn-demo {
        display: none;
    }
}

.ldndg {
    max-width: 1040px;
    margin: 48px auto;
    padding: 42px 36px;
    background: linear-gradient(180deg, rgba(22, 33, 62, .96), rgba(15, 52, 96, .92));
    border: 1px solid var(--clr-border-light);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.ldndg h1 {
    font-family: var(--font-heading);
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.18;
    font-weight: 800;
    color: #fff;
    margin-bottom: 22px;
    overflow-wrap: anywhere;
}

.ldndg h2 {
    font-family: var(--font-heading);
    font-size: clamp(22px, 3vw, 30px);
    line-height: 1.3;
    font-weight: 700;
    color: var(--clr-btn-gold);
    margin: 36px 0 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 216, 77, .18);
    overflow-wrap: anywhere;
}

.ldndg p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--clr-text-dark);
    margin-bottom: 16px;
    overflow-wrap: anywhere;
}

.ldndg ul,
.ldndg ol {
    margin: 18px 0;
    padding-left: 22px;
}

.ldndg ul {
    list-style: disc;
}

.ldndg ol {
    list-style: decimal;
}

.ldndg li {
    font-size: 14px;
    line-height: 1.72;
    color: var(--clr-text);
    margin-bottom: 9px;
    overflow-wrap: anywhere;
}

.ldndg strong,
.ldndg b {
    color: #fff;
    font-weight: 700;
}

.ldndg a {
    display: inline-block;
    max-width: 100%;
    color: var(--clr-btn-gold);
    font-weight: 700;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.ldndg table {
    width: 100%;
    display: block;
    overflow-x: auto;
    border-collapse: collapse;
    margin: 20px 0;
}

.ldndg th,
.ldndg td {
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, .08);
    white-space: nowrap;
}

@media (max-width: 768px) {
    .ldndg {
        margin: 24px 10px;
        padding: 24px 16px;
        border-radius: 22px;
    }

    .ldndg h1 {
        font-size: 25px;
    }

    .ldndg h2 {
        font-size: 20px;
        margin-top: 28px;
    }

    .ldndg p,
    .ldndg li {
        font-size: 14px;
        line-height: 1.7;
    }

    .ldndg a {
        font-size: 13px;
        word-break: break-all;
    }
}

@media (max-width: 480px) {
    .ldndg {
        margin: 18px 8px;
        padding: 18px 14px;
    }

    .ldndg h1 {
        font-size: 21px;
    }

    .ldndg h2 {
        font-size: 18px;
    }

    .ldndg p,
    .ldndg li {
        font-size: 13.5px;
    }

    .ldndg a {
        font-size: 12px;
    }
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10000;
}

.hdr-mobile-menu {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    display: block;
    background: var(--clr-header-dark);
    border-top: 1px solid var(--clr-border);
    padding: 12px 0;
    z-index: 9999;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: .3s ease;
}

.hdr-mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

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

    .hdr-logo img {
        height: 38px;
        max-width: 120px;
    }

    .hdr-actions {
        justify-content: flex-end;
    }

    .hdr-burger {
        display: flex;
        position: relative;
        z-index: 10001;
    }
}

@media (max-width: 640px) {
    .hdr-mobile-menu {
        top: 62px;
    }
}