:root {
    --c-bg: #131521;
    --c-surface: #1C1D27;
    --c-surface-2: #21222f;
    --c-surface-3: #292A3A;
    --c-btn-primary: #FD2D5E;
    --c-btn-primary-h: #e0194a;
    --c-btn-secondary: #292A33;
    --c-btn-secondary-h: #33343f;
    --c-text: #f0f1f7;
    --c-text-muted: #8b8fa8;
    --c-text-dim: #5d6080;
    --c-border: #2a2c3e;
    --c-success: #00d68f;
    --c-warning: #ffc533;
    --c-error: #ff4757;
    --c-accent: #fd6b2d;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, .35);
    --shadow-md: 0 6px 24px rgba(0, 0, 0, .4);
    --shadow-lg: 0 12px 48px rgba(0, 0, 0, .5);
    --shadow-glow: 0 0 32px rgba(253, 45, 94, .25);
    --font-body: 'Rubik', 'Roboto', Arial, sans-serif;
    --sp: 8px;
}

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

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

body {
    background: var(--c-bg);
    color: var(--c-text);
    font-family: var(--font-body);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

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

a:hover {
    color: var(--c-btn-primary-h);
}

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

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 calc(var(--sp) * 2);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: .9rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-decoration: none !important;
    transition: transform .15s, box-shadow .15s, background .15s;
    white-space: nowrap;
}

.btn:active {
    transform: scale(.97);
}

.btn--primary {
    background: var(--c-btn-primary);
    color: #fff;
    box-shadow: 0 4px 18px rgba(253, 45, 94, .35);
}

.btn--primary:hover {
    background: var(--c-btn-primary-h);
    box-shadow: 0 6px 24px rgba(253, 45, 94, .5);
    color: #fff;
    transform: translateY(-1px);
}

.btn--secondary {
    background: var(--c-btn-secondary);
    color: var(--c-text);
    border: 1px solid var(--c-border);
}

.btn--secondary:hover {
    background: var(--c-btn-secondary-h);
    color: var(--c-text);
}

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

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

.section-head {
    text-align: center;
    margin-bottom: calc(var(--sp) * 5);
}

.section-head h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: var(--sp);
}

.section-head p {
    color: var(--c-text-muted);
    font-size: .95rem;
}

.section-sep {
    width: 48px;
    height: 3px;
    background: var(--c-btn-primary);
    margin: var(--sp) auto calc(var(--sp) * 2);
    border-radius: 2px;
}

.x7p3k {
    display: none;
}

.q2r9m {
    visibility: hidden;
    position: absolute;
}

.f8n1z {
    pointer-events: none;
    opacity: 0;
}

/* ===== HEADER ===== */
.site-header {
    background: var(--c-surface);
    border-bottom: 1px solid var(--c-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow .3s;
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: calc(var(--sp) * 2);
    padding: 12px 0;
}

.header-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

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

.header-nav {
    display: flex;
    align-items: center;
    gap: var(--sp);
    list-style: none;
    flex: 1;
}

.header-nav a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--c-text-muted);
    font-size: .875rem;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    transition: color .2s, background .2s;
}

.header-nav a:hover, .header-nav a.active {
    color: var(--c-text);
    background: var(--c-surface-3);
}

.header-nav svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--sp);
    margin-left: auto;
    flex-shrink: 0;
}

.online-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--c-surface-3);
    border: 1px solid var(--c-border);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: .78rem;
    color: var(--c-text-muted);
    white-space: nowrap;
}

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

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

#online-count {
    color: var(--c-success);
    font-weight: 600;
}

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

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

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

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

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

/* ===== HERO ===== */
.hero-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: calc(var(--sp) * 8) 0;
}

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

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

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(19, 21, 33, .92) 0%, rgba(19, 21, 33, .7) 55%, rgba(19, 21, 33, .3) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 620px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(253, 45, 94, .12);
    border: 1px solid rgba(253, 45, 94, .35);
    color: var(--c-btn-primary);
    font-size: .78rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: calc(var(--sp) * 2);
    text-transform: uppercase;
    letter-spacing: .05em;
}

.hero-badge svg {
    width: 12px;
    height: 12px;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: calc(var(--sp) * 2);
}

.hero-title span {
    background: linear-gradient(90deg, var(--c-btn-primary), var(--c-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--c-text-muted);
    margin-bottom: calc(var(--sp) * 4);
    line-height: 1.65;
}

.promo-box {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: calc(var(--sp) * 3);
    margin-bottom: calc(var(--sp) * 3);
    display: flex;
    align-items: center;
    gap: calc(var(--sp) * 2);
    flex-wrap: wrap;
}

.promo-label {
    font-size: .78rem;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 3px;
}

.promo-code {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: .12em;
    color: var(--c-warning);
}

.promo-copy-btn {
    margin-left: auto;
    background: var(--c-surface-3);
    border: 1px solid var(--c-border);
    color: var(--c-text-muted);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: .82rem;
    font-family: var(--font-body);
    transition: all .2s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.promo-copy-btn:hover {
    background: var(--c-surface-2);
    color: var(--c-text);
}

.promo-copy-btn.copied {
    background: rgba(0, 214, 143, .12);
    border-color: var(--c-success);
    color: var(--c-success);
}

.hero-cta {
    display: flex;
    gap: var(--sp);
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: calc(var(--sp) * 3);
    margin-top: calc(var(--sp) * 4);
    padding-top: calc(var(--sp) * 3);
    border-top: 1px solid var(--c-border);
}

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

.hero-stat-num {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--c-btn-primary);
}

.hero-stat-label {
    font-size: .78rem;
    color: var(--c-text-muted);
    margin-top: 2px;
}

/* ===== SECTIONS WRAPPER ===== */
.blocks-wrap {
    padding: calc(var(--sp) * 8) 0;
    flex: 1;
}

.block-section {
    margin-bottom: calc(var(--sp) * 9);
}

/* ===== PROS/CONS ===== */
.pros-cons-grid {
    display: flex;
    gap: calc(var(--sp) * 2);
}

.pros-col, .cons-col {
    flex: 1;
    border-radius: var(--radius-lg);
    padding: calc(var(--sp) * 3);
    border: 1px solid var(--c-border);
}

.pros-col {
    background: linear-gradient(135deg, rgba(0, 214, 143, .07) 0%, var(--c-surface) 100%);
    border-color: rgba(0, 214, 143, .2);
}

.cons-col {
    background: linear-gradient(135deg, rgba(253, 45, 94, .07) 0%, var(--c-surface) 100%);
    border-color: rgba(253, 45, 94, .2);
}

.pros-cons-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: calc(var(--sp) * 2);
    font-weight: 700;
    font-size: 1.05rem;
}

.pros-cons-head svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.pros-cons-head .icon-pros {
    color: var(--c-success);
}

.pros-cons-head .icon-cons {
    color: var(--c-btn-primary);
}

.pros-cons-list {
    list-style: none;
}

.pros-cons-list li {
    display: flex;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid var(--c-border);
    font-size: .9rem;
    line-height: 1.5;
    align-items: flex-start;
}

.pros-cons-list li:last-child {
    border-bottom: none;
}

.pros-cons-list li::before {
    content: '';
    width: 16px;
    height: 16px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 2px;
}

.pros-col .pros-cons-list li::before {
    background: var(--c-success);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23fff' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-size: contain;
}

.cons-col .pros-cons-list li::before {
    background: var(--c-btn-primary);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M3 3l6 6M9 3l-6 6' stroke='%23fff' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-size: contain;
}

/* ===== MIRRORS TABLE ===== */
.mirrors-block {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.mirrors-header {
    padding: calc(var(--sp) * 2) calc(var(--sp) * 3);
    border-bottom: 1px solid var(--c-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp);
    flex-wrap: wrap;
}

.mirrors-title {
    font-weight: 700;
    font-size: 1rem;
}

.mirrors-updated {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .8rem;
    color: var(--c-success);
}

.mirrors-updated svg {
    width: 12px;
    height: 12px;
}

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

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

table th {
    background: var(--c-surface-3);
    padding: 10px 16px;
    text-align: left;
    font-size: .8rem;
    font-weight: 600;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: .06em;
    border-bottom: 1px solid var(--c-border);
}

table td {
    padding: 12px 16px;
    font-size: .88rem;
    border-bottom: 1px solid var(--c-border);
    vertical-align: middle;
}

table tr:last-child td {
    border-bottom: none;
}

table tr:hover td {
    background: rgba(255, 255, 255, .02);
}

.mirror-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .78rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 12px;
}

.mirror-status.active {
    background: rgba(0, 214, 143, .12);
    color: var(--c-success);
    border: 1px solid rgba(0, 214, 143, .25);
}

.mirror-status.slow {
    background: rgba(255, 197, 51, .1);
    color: var(--c-warning);
    border: 1px solid rgba(255, 197, 51, .25);
}

.mirror-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

/* ===== WINNERS ===== */
.winners-grid {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.winners-grid-header {
    padding: calc(var(--sp) * 2) calc(var(--sp) * 3);
    border-bottom: 1px solid var(--c-border);
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.winners-grid-header svg {
    color: var(--c-warning);
}

.winners-list {
    list-style: none;
}

.winners-list li {
    display: flex;
    align-items: center;
    gap: calc(var(--sp) * 2);
    padding: 11px calc(var(--sp) * 3);
    border-bottom: 1px solid var(--c-border);
    transition: background .2s;
}

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

.winners-list li:hover {
    background: rgba(255, 255, 255, .02);
}

.winner-rank {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    font-weight: 800;
    flex-shrink: 0;
    background: var(--c-surface-3);
    color: var(--c-text-muted);
}

.winner-rank.r1 {
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    color: #000;
}

.winner-rank.r2 {
    background: linear-gradient(135deg, #c0c0c0, #a0a0a0);
    color: #000;
}

.winner-rank.r3 {
    background: linear-gradient(135deg, #cd7f32, #a05a20);
    color: #fff;
}

.winner-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c-btn-primary), var(--c-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.winner-name {
    flex: 1;
    font-size: .88rem;
    font-weight: 600;
}

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

.winner-amount {
    font-size: .95rem;
    font-weight: 800;
    color: var(--c-success);
    white-space: nowrap;
}

/* ===== TOURNAMENTS ===== */
.tournaments-track {
    display: flex;
    gap: calc(var(--sp) * 2);
}

.tournament-card {
    flex: 1 0 260px;
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: calc(var(--sp) * 3);
    position: relative;
    overflow: hidden;
    transition: transform .25s, box-shadow .25s;
}

.tournament-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(253, 45, 94, .3);
}

.tournament-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--c-btn-primary), var(--c-accent));
}

.tournament-badge {
    display: inline-block;
    background: rgba(253, 45, 94, .12);
    color: var(--c-btn-primary);
    font-size: .72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: calc(var(--sp) * 1.5);
}

.tournament-name {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.35;
}

.tournament-desc {
    font-size: .82rem;
    color: var(--c-text-muted);
    margin-bottom: calc(var(--sp) * 2);
    line-height: 1.5;
}

.tournament-prize {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--c-warning);
    margin-bottom: 4px;
}

.tournament-prize-label {
    font-size: .75rem;
    color: var(--c-text-muted);
    margin-bottom: calc(var(--sp) * 2);
}

.tournament-timer-wrap {
    background: var(--c-surface-3);
    border-radius: var(--radius-sm);
    padding: 10px;
    margin-bottom: calc(var(--sp) * 2);
}

.tournament-timer-label {
    font-size: .7rem;
    color: var(--c-text-muted);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: .07em;
}

.tournament-timer {
    display: flex;
    gap: 6px;
    align-items: center;
}

.timer-seg {
    text-align: center;
    min-width: 38px;
    background: var(--c-surface);
    border-radius: var(--radius-sm);
    padding: 4px 6px;
}

.timer-seg span:first-child {
    display: block;
    font-size: 1rem;
    font-weight: 800;
    color: var(--c-btn-primary);
    line-height: 1;
}

.timer-seg span:last-child {
    display: block;
    font-size: .6rem;
    color: var(--c-text-muted);
    text-transform: uppercase;
    margin-top: 1px;
}

.timer-colon {
    color: var(--c-text-muted);
    font-weight: 700;
    align-self: flex-start;
    margin-top: 2px;
}

@media (max-width: 900px) {
    .tournaments-track {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: calc(var(--sp));
        scroll-snap-type: x mandatory;
    }

    .tournament-card {
        scroll-snap-align: start;
        flex: 0 0 280px;
    }
}

/* ===== WHEEL OF FORTUNE ===== */
.wheel-section-inner {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-xl);
    padding: calc(var(--sp) * 5) calc(var(--sp) * 4);
    text-align: center;
    max-width: 540px;
    margin: 0 auto;
}

.wheel-title {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.wheel-subtitle {
    font-size: .88rem;
    color: var(--c-text-muted);
    margin-bottom: calc(var(--sp) * 3);
}

.wheel-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: calc(var(--sp) * 3);
}

#wheel-canvas {
    display: block;
    border-radius: 50%;
    box-shadow: 0 0 48px rgba(253, 45, 94, .3), var(--shadow-lg);
}

.wheel-pointer {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 22px solid var(--c-btn-primary);
    filter: drop-shadow(0 2px 4px rgba(253, 45, 94, .5));
    z-index: 2;
}

#wheel-spin-btn {
    font-size: 1rem;
    padding: 14px 40px;
}

.wheel-result {
    display: none;
    margin-top: calc(var(--sp) * 2);
    animation: fadeInUp .4s ease;
}

.wheel-result.win {
    display: block;
    background: rgba(0, 214, 143, .1);
    border: 1px solid rgba(0, 214, 143, .25);
    border-radius: var(--radius-lg);
    padding: calc(var(--sp) * 3);
}

.wheel-result.lose {
    display: block;
    background: rgba(253, 45, 94, .08);
    border: 1px solid rgba(253, 45, 94, .2);
    border-radius: var(--radius-lg);
    padding: calc(var(--sp) * 2) calc(var(--sp) * 3);
}

.wheel-result-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.wheel-result.win .wheel-result-title {
    color: var(--c-success);
}

.wheel-result.lose .wheel-result-title {
    color: var(--c-text-muted);
}

.wheel-result-desc {
    font-size: .88rem;
    color: var(--c-text-muted);
    margin-bottom: calc(var(--sp) * 2);
}

.wheel-result.lose .wheel-result-desc {
    margin-bottom: 0;
}

/* ===== REVIEW CONTENT ===== */
.review-block {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: calc(var(--sp) * 5);
}

.review-author {
    display: flex;
    align-items: center;
    gap: calc(var(--sp) * 2);
    padding-bottom: calc(var(--sp) * 3);
    margin-bottom: calc(var(--sp) * 3);
    border-bottom: 1px solid var(--c-border);
}

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

.author-meta {
    flex: 1;
}

.author-name {
    font-size: 1rem;
    font-weight: 700;
}

.author-title {
    font-size: .82rem;
    color: var(--c-text-muted);
    margin-bottom: 3px;
}

.author-bio {
    font-size: .8rem;
    color: var(--c-text-dim);
    line-height: 1.5;
}

.author-links {
    display: flex;
    gap: 8px;
    margin-top: 6px;
}

.author-links a {
    font-size: .78rem;
    color: var(--c-btn-primary);
}

.review-content {
    font-size: .95rem;
    line-height: 1.75;
}

.review-content h2,
.review-content h3,
.review-content h4 {
    font-weight: 700;
    margin: calc(var(--sp) * 3) 0 var(--sp);
    line-height: 1.3;
    color: var(--c-text);
}

.review-content h2 {
    font-size: 1.4rem;
}

.review-content h3 {
    font-size: 1.15rem;
}

.review-content h4 {
    font-size: 1rem;
}

.review-content p {
    margin-bottom: calc(var(--sp) * 2);
}

.review-content ul,
.review-content ol {
    margin: calc(var(--sp) * 2) 0;
    padding-left: calc(var(--sp) * 3);
}

.review-content ul li,
.review-content ol li {
    margin-bottom: 8px;
    line-height: 1.6;
}

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

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

.review-content table {
    min-width: 0;
    width: 100%;
    margin: calc(var(--sp) * 2) auto;
}

.review-content table th,
.review-content table td {
    text-align: left;
    border: 1px solid var(--c-border);
}

.review-content blockquote {
    border-left: 3px solid var(--c-btn-primary);
    padding: var(--sp) calc(var(--sp) * 2);
    background: rgba(253, 45, 94, .05);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: calc(var(--sp) * 2) 0;
    font-style: italic;
}

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

.review-content strong {
    color: var(--c-text);
    font-weight: 700;
}

.review-content img {
    border-radius: var(--radius-md);
    margin: calc(var(--sp) * 2) 0;
}

.review-content hr {
    border: none;
    border-top: 1px solid var(--c-border);
    margin: calc(var(--sp) * 4) 0;
}

/* ===== INFO PAGE ===== */
.info-page-wrap {
    padding: calc(var(--sp) * 8) 0;
}

.info-page-content {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: calc(var(--sp) * 5);
    max-width: 860px;
    margin: 0 auto;
}

.info-page-content h1 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: calc(var(--sp) * 3);
    padding-bottom: calc(var(--sp) * 2);
    border-bottom: 1px solid var(--c-border);
}

.info-page-content h2 {
    font-size: 1.35rem;
    font-weight: 700;
    margin: calc(var(--sp) * 3) 0 var(--sp);
}

.info-page-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: calc(var(--sp) * 2) 0 var(--sp);
}

.info-page-content p {
    margin-bottom: calc(var(--sp) * 2);
    line-height: 1.75;
    font-size: .95rem;
    color: var(--c-text);
}

.info-page-content ul, .info-page-content ol {
    padding-left: calc(var(--sp) * 3);
    margin: calc(var(--sp) * 2) 0;
}

.info-page-content li {
    margin-bottom: 8px;
    line-height: 1.6;
    font-size: .9rem;
}

.info-page-content ul {
    list-style: disc;
}

.info-page-content ol {
    list-style: decimal;
}

.info-page-content a {
    color: var(--c-btn-primary);
}

.info-page-content strong {
    font-weight: 700;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--c-surface);
    border-top: 1px solid var(--c-border);
    padding: calc(var(--sp) * 6) 0 calc(var(--sp) * 3);
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 240px 1fr 1fr 1fr;
    gap: calc(var(--sp) * 4);
    padding-bottom: calc(var(--sp) * 4);
    border-bottom: 1px solid var(--c-border);
    margin-bottom: calc(var(--sp) * 4);
}

.footer-brand-logo img {
    height: 36px;
    width: auto;
    margin-bottom: calc(var(--sp) * 2);
}

.footer-brand-desc {
    font-size: .82rem;
    color: var(--c-text-muted);
    line-height: 1.6;
    margin-bottom: calc(var(--sp) * 2);
}

.footer-socials {
    display: flex;
    gap: 8px;
    margin-bottom: calc(var(--sp) * 2);
}

.footer-social-link {
    width: 34px;
    height: 34px;
    background: var(--c-surface-3);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-text-muted);
    transition: background .2s, color .2s;
}

.footer-social-link:hover {
    background: var(--c-btn-primary);
    color: #fff;
    border-color: var(--c-btn-primary);
}

.footer-social-link svg {
    width: 15px;
    height: 15px;
}

.footer-email {
    font-size: .82rem;
    color: var(--c-text-muted);
}

.footer-email a {
    color: var(--c-text-muted);
}

.footer-email a:hover {
    color: var(--c-btn-primary);
}

.footer-col-title {
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--c-text-muted);
    margin-bottom: calc(var(--sp) * 2);
}

.footer-nav {
    list-style: none;
}

.footer-nav li {
    margin-bottom: 8px;
}

.footer-nav a {
    font-size: .85rem;
    color: var(--c-text-muted);
    transition: color .2s;
}

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

.footer-logos {
    padding-bottom: calc(var(--sp) * 3);
    margin-bottom: calc(var(--sp) * 3);
    border-bottom: 1px solid var(--c-border);
}

.footer-logos-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: calc(var(--sp) * 1.5);
    margin-bottom: calc(var(--sp) * 2);
}

.footer-logos-label {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--c-text-dim);
    width: 100%;
    margin-bottom: 6px;
}

.logo-badge {
    background: var(--c-surface-3);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: 5px 10px;
    font-size: .72rem;
    font-weight: 600;
    color: var(--c-text-muted);
    white-space: nowrap;
}

.logo-badge.crypto {
    color: var(--c-warning);
}

.flag-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .8rem;
    color: var(--c-text-muted);
}

.footer-legal {
    font-size: .75rem;
    color: var(--c-text-dim);
    line-height: 1.7;
}

.footer-legal p {
    margin-bottom: 6px;
}

.footer-copyright {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: calc(var(--sp) * 2);
    padding-top: calc(var(--sp) * 2);
    border-top: 1px solid var(--c-border);
    font-size: .78rem;
    color: var(--c-text-dim);
}

/* ===== STICKY WIDGET ===== */
.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 990;
    background: linear-gradient(90deg, var(--c-surface) 0%, #1e1f2f 100%);
    border-top: 1px solid rgba(253, 45, 94, .3);
    padding: 10px 0;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, .5);
    transform: translateY(100%);
    transition: transform .4s cubic-bezier(.23, 1, .32, 1);
}

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

.widget-inner {
    display: flex;
    align-items: center;
    gap: calc(var(--sp) * 2);
    flex-wrap: wrap;
}

.widget-text {
    flex: 1;
}

.widget-promo-label {
    font-size: .7rem;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: .07em;
}

.widget-promo-val {
    font-size: 1rem;
    font-weight: 800;
}

.widget-promo-val strong {
    color: var(--c-btn-primary);
}

.widget-code-inline {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--c-surface-3);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: 5px 12px;
    font-size: .85rem;
}

.widget-code-inline span {
    font-weight: 800;
    color: var(--c-warning);
    letter-spacing: .1em;
}

.widget-close {
    background: none;
    border: none;
    color: var(--c-text-muted);
    cursor: pointer;
    padding: 4px;
    border-radius: var(--radius-sm);
    transition: color .2s;
    flex-shrink: 0;
}

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

.widget-close svg {
    width: 16px;
    height: 16px;
}

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

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

@keyframes shimmer {
    0% {
        background-position: -400px 0;
    }
    100% {
        background-position: 400px 0;
    }
}

.animate-in {
    animation: fadeInUp .55s ease both;
}

[data-delay="1"] {
    animation-delay: .1s;
}

[data-delay="2"] {
    animation-delay: .2s;
}

[data-delay="3"] {
    animation-delay: .3s;
}

[data-delay="4"] {
    animation-delay: .4s;
}

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

@media (max-width: 768px) {
    .header-nav {
        display: none;
        position: fixed;
        top: 65px;
        left: 0;
        right: 0;
        background: var(--c-surface);
        border-bottom: 1px solid var(--c-border);
        flex-direction: column;
        padding: var(--sp) 0;
        z-index: 999;
        box-shadow: var(--shadow-md);
    }

    .header-nav.open {
        display: flex;
        animation: fadeIn .2s ease;
    }

    .header-nav a {
        padding: 12px calc(var(--sp) * 2);
        border-radius: 0;
    }

    .burger {
        display: flex;
    }

    .online-badge {
        display: none;
    }

    .hero-title {
        font-size: 1.75rem;
    }

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

    .hero-stats {
        gap: calc(var(--sp) * 2);
    }

    .pros-cons-grid {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: calc(var(--sp) * 3);
    }

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

    .widget-inner {
        gap: var(--sp);
    }

    .widget-text {
        flex: 1 0 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--sp);
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .section-head h2 {
        font-size: 1.35rem;
    }

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

    .hero-stats {
        gap: var(--sp);
    }

    .hero-stat-num {
        font-size: 1.1rem;
    }

    .tournament-prize {
        font-size: 1.2rem;
    }

    .review-block {
        padding: calc(var(--sp) * 3);
    }

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

    .info-page-content {
        padding: calc(var(--sp) * 3);
    }

    .promo-code {
        font-size: 1.2rem;
    }
}

.wp-block-group, .wp-block-paragraph, .has-background, .is-style-rounded {
    display: revert;
}

.elementor-widget-wrap {
    display: contents;
}

.entry-content > :not([class]) {
    inherit: initial;
}

.woo-theme-primary {
    color: var(--c-btn-primary);
}

.wp-site-blocks {
    display: contents;
}

.post-template-default {
    min-height: auto;
}

.page-id-casino-au {
    --padding-base: 8px;
}

.single-post .entry-header {
    display: contents;
}

html {
    background: #131521;
}

body {
    background: #131521;
    color: #f0f1f7;
    overflow-x: hidden;
}

.wrapper,
main,
.page,
.site,
.site-main,
.content,
.content-wrap,
.page-content {
    background: #131521;
}

section {
    background: transparent;
}

.container,
.xcontainer,
.wrap,
.wrapper,
.content,
.row {
    background: transparent;
}