:root {
    --clr-bg: #0e0e0e;
    --clr-nav: #1b1c1d;
    --clr-nav-border: #2a2b2c;
    --clr-red: #e50539;
    --clr-red-hover: #c8042f;
    --clr-green: #28a909;
    --clr-green-hover: #1e8507;
    --clr-card: #161718;
    --clr-card-border: #252627;
    --clr-text: #e8e8e8;
    --clr-text-muted: #9a9a9a;
    --clr-text-dim: #6a6a6a;
    --clr-accent: #ffd700;
    --clr-white: #ffffff;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
    --shadow-btn: 0 4px 14px rgba(229, 5, 57, 0.35);
    --transition: all 0.22s ease;
}

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

html {
    scroll-behavior: smooth;
}

body.body-x4f8 {
    background-color: var(--clr-bg);
    color: var(--clr-text);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.section-anchor {
    display: block;
    height: 0;
    visibility: hidden;
    margin-top: -80px;
    padding-top: 80px;
}

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

a:hover {
    color: var(--clr-red-hover);
}

.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;
}

.req-mark {
    color: var(--clr-red);
}

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

#content {
    flex: 1;
}

.site-header.hdr-sticky {
    position: sticky;
    top: 0;
    z-index: 1030;
    background-color: var(--clr-nav);
    border-bottom: 1px solid var(--clr-nav-border);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}

.hdr-x9k2 {
    min-height: 64px;
}

.hdr-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    border-radius: 6px;
}

.hdr-online-badge {
    background: rgba(40, 169, 9, 0.12);
    border: 1px solid rgba(40, 169, 9, 0.3);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    color: var(--clr-text-muted);
}

.hdr-pulse-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--clr-green);
    border-radius: 50%;
    animation: pulse-anim 1.8s ease-in-out infinite;
}

@keyframes pulse-anim {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(0.7);
    }
}

.hdr-online-txt {
    color: var(--clr-green);
    font-weight: 700;
    font-size: 13px;
}

.hdr-online-label {
    font-size: 12px;
    color: var(--clr-text-muted);
}

.hdr-nav-pc {
    gap: 2px;
}

.hdr-nav-lnk {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--clr-text-muted);
    font-size: 13px;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    white-space: nowrap;
}

.hdr-nav-lnk:hover, .hdr-nav-lnk:focus {
    color: var(--clr-white);
    background: rgba(255, 255, 255, 0.06);
}

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

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

.hdr-lang-btn::after {
    display: none;
}

.hdr-lang-menu {
    background: var(--clr-nav);
    border: 1px solid var(--clr-nav-border);
    border-radius: var(--radius-md);
    min-width: 140px;
    padding: 6px;
    margin-top: 4px;
}

.hdr-lang-item {
    color: var(--clr-text-muted);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    border-radius: 6px;
    transition: var(--transition);
}

.hdr-lang-item:hover, .hdr-lang-item.active {
    color: var(--clr-white);
    background: rgba(255, 255, 255, 0.07);
}

.btn.hdr-btn-demo {
    background: transparent;
    border: 1px solid var(--clr-red);
    color: var(--clr-red);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.btn.hdr-btn-demo:hover {
    background: var(--clr-red);
    color: var(--clr-white);
}

.btn.hdr-btn-money {
    background: var(--clr-green);
    border: none;
    color: var(--clr-white);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(40, 169, 9, 0.3);
}

.btn.hdr-btn-money:hover {
    background: var(--clr-green-hover);
    transform: translateY(-1px);
}

.hdr-burger-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: transparent;
    border: 1px solid var(--clr-nav-border);
    padding: 8px 10px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.hdr-burger-btn:hover {
    border-color: var(--clr-red);
}

.hdr-burger-line {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--clr-text);
    border-radius: 2px;
    transition: var(--transition);
}

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

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

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

.hdr-mobile-menu {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--clr-nav);
    z-index: 1029;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    border-top: 1px solid var(--clr-nav-border);
}

.hdr-mobile-menu.is-open {
    transform: translateX(0);
}

.hdr-mobile-inner {
    padding: 24px 20px;
}

.hdr-mobile-online {
    font-size: 13px;
    color: var(--clr-text-muted);
    padding: 10px 14px;
    background: rgba(40, 169, 9, 0.07);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(40, 169, 9, 0.2);
}

.hdr-mobile-lnk {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--clr-text);
    font-size: 15px;
    font-weight: 500;
    padding: 14px 0;
    border-bottom: 1px solid var(--clr-nav-border);
    transition: var(--transition);
}

.hdr-mobile-lnk:hover {
    color: var(--clr-red);
    padding-left: 4px;
}

.hdr-mobile-btns .btn.hdr-btn-demo {
    flex: 1;
    justify-content: center;
}

.hdr-mobile-btns .btn.hdr-btn-money {
    flex: 1;
    justify-content: center;
}

.hdr-flag-icon {
    font-size: 16px;
}

.hero-x3n1 {
    position: relative;
    min-height: 520px;
    background: url('/hero-banner.jpg') center center / cover no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-x3n1::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(14, 14, 14, 0.92) 0%, rgba(14, 14, 14, 0.65) 60%, rgba(229, 5, 57, 0.15) 100%);
    z-index: 0;
}

.hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 60px 0;
}

.hero-content {
    max-width: 640px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(229, 5, 57, 0.15);
    border: 1px solid rgba(229, 5, 57, 0.4);
    color: var(--clr-red);
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.pulse-dot-sm {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--clr-red);
    border-radius: 50%;
    animation: pulse-anim 1.8s ease-in-out infinite;
}

.hero-h1 {
    font-size: clamp(28px, 5vw, 52px);
    font-weight: 900;
    line-height: 1.15;
    color: var(--clr-white);
    margin-bottom: 16px;
    text-balance: balance;
}

.hero-sub {
    font-size: 16px;
    color: rgba(232, 232, 232, 0.8);
    line-height: 1.6;
    max-width: 520px;
}

.btn-hero-demo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 2px solid var(--clr-red);
    color: var(--clr-red);
    font-weight: 700;
    font-size: 15px;
    padding: 13px 28px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.btn-hero-demo:hover {
    background: var(--clr-red);
    color: var(--clr-white);
    transform: translateY(-2px);
}

.btn-hero-money {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--clr-green);
    border: 2px solid var(--clr-green);
    color: var(--clr-white);
    font-weight: 700;
    font-size: 15px;
    padding: 13px 28px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    box-shadow: 0 4px 18px rgba(40, 169, 9, 0.35);
}

.btn-hero-money:hover {
    background: var(--clr-green-hover);
    border-color: var(--clr-green-hover);
    color: var(--clr-white);
    transform: translateY(-2px);
}

.hero-stats {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
}

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

.hero-stat-val {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: var(--clr-white);
}

.hero-stat-lbl {
    display: block;
    font-size: 11px;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.main-content-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 16px;
    padding-right: 16px;
}

.content-block-x2m5 {
    background: var(--clr-card);
    border: 1px solid var(--clr-card-border);
    border-radius: var(--radius-lg);
    padding: 28px 28px;
    box-shadow: var(--shadow-card);
    margin-bottom: 0;
}

@media (max-width: 576px) {
    .content-block-x2m5 {
        padding: 18px 14px;
    }
}

.section-hd {
    border-bottom: 1px solid var(--clr-card-border);
    padding-bottom: 16px;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 800;
    color: var(--clr-white);
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.section-title svg {
    color: var(--clr-red);
    flex-shrink: 0;
}

.section-sub {
    font-size: 14px;
    color: var(--clr-text-muted);
    margin: 0;
}

.casino-item {
    background: var(--clr-bg);
    border: 1px solid var(--clr-card-border);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 12px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.casino-item:hover {
    border-color: rgba(229, 5, 57, 0.4);
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
}

.casino-item.top-1 {
    border-color: #ffd700;
}

.casino-item.top-1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffd700, #ffaa00);
}

.casino-item.top-2 {
    border-color: #c0c0c0;
}

.casino-item.top-2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #c0c0c0, #aaaaaa);
}

.casino-item.top-3 {
    border-color: #cd7f32;
}

.casino-item.top-3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #cd7f32, #b06020);
}

.casino-rank {
    font-size: 20px;
    font-weight: 900;
    color: var(--clr-text-dim);
    min-width: 36px;
    flex-shrink: 0;
}

.casino-item.top-1 .casino-rank {
    color: #ffd700;
}

.casino-item.top-2 .casino-rank {
    color: #c0c0c0;
}

.casino-item.top-3 .casino-rank {
    color: #cd7f32;
}

.casino-logo-wrap {
    width: 64px;
    height: 64px;
    background: var(--clr-nav);
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 11px;
    color: var(--clr-text-muted);
    text-align: center;
    border: 1px solid var(--clr-nav-border);
}

.casino-logo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 6px;
}

.casino-name {
    font-size: 17px;
    font-weight: 700;
    color: var(--clr-white);
    margin-bottom: 2px;
}

.casino-flag {
    font-size: 15px;
}

.casino-stars {
    display: flex;
    align-items: center;
    gap: 2px;
}

.casino-stars-score {
    font-size: 13px;
    font-weight: 700;
    color: var(--clr-accent);
    margin-left: 4px;
}

.casino-bonus-badge {
    background: rgba(40, 169, 9, 0.12);
    border: 1px solid rgba(40, 169, 9, 0.3);
    color: var(--clr-green);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
}

.casino-perks {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 10px 0;
}

.casino-perk {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--clr-text-muted);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--clr-card-border);
    padding: 4px 10px;
    border-radius: 20px;
}

.casino-perk svg {
    color: var(--clr-green);
    flex-shrink: 0;
}

.casino-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 8px 0;
    font-size: 12px;
    color: var(--clr-text-muted);
}

.casino-meta-item strong {
    color: var(--clr-text);
}

.casino-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.btn-casino-play {
    background: var(--clr-green);
    border: none;
    color: var(--clr-white);
    font-size: 13px;
    font-weight: 700;
    padding: 9px 20px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 3px 12px rgba(40, 169, 9, 0.3);
}

.btn-casino-play:hover {
    background: var(--clr-green-hover);
    color: var(--clr-white);
    transform: translateY(-1px);
}

.btn-casino-review {
    background: transparent;
    border: 1px solid var(--clr-card-border);
    color: var(--clr-text-muted);
    font-size: 13px;
    font-weight: 600;
    padding: 9px 18px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-casino-review:hover {
    border-color: var(--clr-red);
    color: var(--clr-red);
}

.btn-load-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid var(--clr-card-border);
    color: var(--clr-text-muted);
    font-size: 14px;
    font-weight: 600;
    padding: 11px 28px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.btn-load-more:hover {
    border-color: var(--clr-red);
    color: var(--clr-red);
}

.btn-load-more:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.casino-loading-indicator {
    display: flex;
    justify-content: center;
    padding: 20px;
}

.casino-item-enter {
    animation: itemFadeIn 0.35s ease;
}

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

.winners-block .section-hd {
    margin-bottom: 0 !important;
}

.winners-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-top: 20px;
}

.winners-table {
    border-collapse: collapse;
    font-size: 13px;
}

.winners-table th {
    background: rgba(255, 255, 255, 0.04);
    color: var(--clr-text-muted);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 14px;
    text-align: left;
    border-bottom: 2px solid var(--clr-card-border);
    white-space: nowrap;
}

.winners-table td {
    padding: 10px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    color: var(--clr-text);
    white-space: nowrap;
}

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

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

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

.winner-rank-1 {
    color: #ffd700 !important;
}

.winner-rank-2 {
    color: #c0c0c0 !important;
}

.winner-rank-3 {
    color: #cd7f32 !important;
}

.winner-nick {
    font-weight: 600;
    color: var(--clr-white);
}

.winner-coef {
    color: var(--clr-accent);
    font-weight: 700;
}

.winner-coef.high {
    color: #e50539;
}

.winner-win {
    color: var(--clr-green);
    font-weight: 700;
}

.winner-time {
    color: var(--clr-text-muted);
    font-size: 12px;
}

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

.app-info-table {
    border-collapse: collapse;
    min-width: 280px;
}

.app-info-table th {
    background: rgba(255, 255, 255, 0.04);
    color: var(--clr-text-muted);
    font-weight: 600;
    font-size: 13px;
    padding: 11px 16px;
    text-align: left;
    border: 1px solid var(--clr-card-border);
    width: 42%;
    white-space: nowrap;
}

.app-info-table td {
    color: var(--clr-text);
    font-size: 14px;
    padding: 11px 16px;
    border: 1px solid var(--clr-card-border);
}

.app-dl-block {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--clr-card-border);
    border-radius: var(--radius-md);
    padding: 24px;
}

.app-dl-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--clr-white);
    margin-bottom: 16px;
}

.btn.app-dl-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    transition: var(--transition);
    text-decoration: none;
    width: 100%;
}

.btn.app-dl-btn .app-dl-sub {
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1;
}

.btn.app-dl-btn .app-dl-name {
    display: block;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.3;
}

.app-dl-ios {
    background: #1c1c1e;
    border: 1px solid #3a3a3c;
    color: var(--clr-white);
}

.app-dl-ios:hover {
    background: #2c2c2e;
    color: var(--clr-white);
    transform: translateY(-1px);
}

.app-dl-android {
    background: #1a3a1a;
    border: 1px solid rgba(40, 169, 9, 0.4);
    color: var(--clr-white);
}

.app-dl-android:hover {
    background: #203f20;
    color: var(--clr-white);
    transform: translateY(-1px);
}

.app-dl-apk {
    background: rgba(229, 5, 57, 0.1);
    border: 1px solid rgba(229, 5, 57, 0.3);
    color: var(--clr-red);
}

.app-dl-apk:hover {
    background: rgba(229, 5, 57, 0.18);
    color: var(--clr-red);
    transform: translateY(-1px);
}

.app-dl-apk .app-dl-sub {
    color: rgba(229, 5, 57, 0.7);
}

.app-dl-apk .app-dl-name {
    color: var(--clr-red);
}

.app-dl-note {
    font-size: 12px;
    color: var(--clr-text-dim);
    line-height: 1.5;
}

.demo-frame-wrap {
    position: relative;
    border-radius: var(--radius-md);
    border: 1px solid var(--clr-card-border);
    background: #000;
}

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

@media (max-width: 768px) {
    .demo-iframe {
        height: 380px;
    }
}

@media (max-width: 480px) {
    .demo-iframe {
        height: 300px;
    }
}

.demo-overlay {
    position: absolute;
    inset: 0;
    background: rgba(14, 14, 14, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: opacity 0.3s ease;
}


.demo-overlay-content {
    text-align: center;
    padding: 24px;
}

.demo-overlay-logo {
    border-radius: var(--radius-sm);
}

.demo-overlay-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--clr-white);
    margin-bottom: 8px;
}

.demo-overlay-sub {
    font-size: 14px;
    color: var(--clr-text-muted);
    margin-bottom: 20px;
}

.btn-demo-start {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--clr-red);
    border: none;
    color: var(--clr-white);
    font-weight: 700;
    font-size: 16px;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-btn);
}

.btn-demo-start:hover {
    background: var(--clr-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(229, 5, 57, 0.45);
}

.btn-demo-money {
    display: inline-flex;
    align-items: center;
    background: transparent;
    border: 1px solid var(--clr-green);
    color: var(--clr-green);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    text-decoration: none;
}

.btn-demo-money:hover {
    background: var(--clr-green);
    color: var(--clr-white);
}

.demo-cta-bar {
    background: rgba(40, 169, 9, 0.07);
    border: 1px solid rgba(40, 169, 9, 0.2);
    border-radius: var(--radius-sm);
    padding: 14px 20px;
}

.demo-cta-txt {
    font-size: 14px;
    color: var(--clr-text-muted);
}

.btn-demo-reg {
    background: var(--clr-green);
    border: none;
    color: var(--clr-white);
    font-weight: 700;
    font-size: 14px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    white-space: nowrap;
    text-decoration: none;
}

.btn-demo-reg:hover {
    background: var(--clr-green-hover);
    color: var(--clr-white);
    transform: translateY(-1px);
}

.content-review-block .section-hd {
    border-bottom-color: var(--clr-card-border);
}

.author-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--clr-card-border);
}

.author-avatar-placeholder {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--clr-red), #ff4466);
    color: var(--clr-white);
    font-weight: 800;
    font-size: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-name {
    font-weight: 700;
    color: var(--clr-white);
    font-size: 15px;
}

.author-title {
    font-size: 12px;
    color: var(--clr-text-muted);
    line-height: 1.4;
}

.author-lnk {
    font-size: 12px;
    color: var(--clr-red);
}

.author-lnk:hover {
    color: var(--clr-red-hover);
}

.review-content-body {
    margin-top: 8px;
    line-height: 1.75;
    color: var(--clr-text);
}

.review-content-body h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--clr-white);
    margin: 28px 0 12px;
}

.review-content-body h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--clr-white);
    margin: 22px 0 10px;
}

.review-content-body p {
    margin-bottom: 14px;
    color: var(--clr-text);
}

.review-content-body ul, .review-content-body ol {
    padding-left: 20px;
    margin-bottom: 14px;
}

.review-content-body li {
    margin-bottom: 6px;
    color: var(--clr-text);
}

.review-content-body strong {
    color: var(--clr-white);
}

.review-content-body a {
    color: var(--clr-red);
}

.review-content-body a:hover {
    color: var(--clr-red-hover);
}

.review-content-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    overflow-x: auto;
    display: block;
}

.review-content-body table th {
    background: rgba(255, 255, 255, 0.06);
    color: var(--clr-text-muted);
    font-size: 12px;
    text-transform: uppercase;
    padding: 10px 14px;
    border: 1px solid var(--clr-card-border);
    text-align: left;
}

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

.review-content-body blockquote {
    border-left: 3px solid var(--clr-red);
    padding-left: 16px;
    margin: 16px 0;
    color: var(--clr-text-muted);
    font-style: italic;
}

.review-content-body img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-sm);
}

.faq-accordion {
    margin-top: 8px;
}

.faq-item {
    background: transparent;
    border: 1px solid var(--clr-card-border) !important;
    border-radius: var(--radius-sm) !important;
    margin-bottom: 8px;
    overflow: hidden;
}

.faq-btn {
    background: rgba(255, 255, 255, 0.03) !important;
    color: var(--clr-white) !important;
    font-weight: 600;
    font-size: 15px;
    padding: 16px 20px;
    box-shadow: none !important;
    border: none;
}

.faq-btn::after {
    filter: invert(1);
}

.faq-btn:not(.collapsed) {
    background: rgba(229, 5, 57, 0.08) !important;
    color: var(--clr-red) !important;
}

.faq-body {
    background: transparent;
    color: var(--clr-text-muted);
    font-size: 14px;
    line-height: 1.7;
    padding: 0 20px 16px;
}

.review-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--clr-card-border);
    border-radius: var(--radius-md);
    padding: 20px;
    transition: var(--transition);
}

.review-card:hover {
    border-color: rgba(229, 5, 57, 0.3);
}

.review-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #2a2b2c, #3a3b3c);
    color: var(--clr-text-muted);
    font-weight: 700;
    font-size: 13px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.review-name {
    font-weight: 700;
    color: var(--clr-white);
    font-size: 14px;
}

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

.review-txt {
    font-size: 13px;
    color: var(--clr-text-muted);
    line-height: 1.7;
    margin: 0 0 8px;
}

.review-date {
    font-size: 12px;
    color: var(--clr-text-dim);
}

.review-form-wrap {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--clr-card-border);
    border-radius: var(--radius-md);
    padding: 28px;
    margin-top: 8px;
}

.review-form-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--clr-white);
    margin-bottom: 20px;
}

.form-label {
    color: var(--clr-text-muted);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 6px;
}

.rf-input {
    background: var(--clr-bg);
    border: 1px solid var(--clr-card-border);
    color: var(--clr-text);
    border-radius: var(--radius-sm);
    padding: 11px 14px;
    font-size: 14px;
    width: 100%;
    transition: var(--transition);
    font-family: inherit;
}

.rf-input:focus {
    background: var(--clr-bg);
    border-color: var(--clr-red);
    color: var(--clr-text);
    box-shadow: 0 0 0 3px rgba(229, 5, 57, 0.12);
    outline: none;
}

.rf-input::placeholder {
    color: var(--clr-text-dim);
}

textarea.rf-input {
    resize: vertical;
    min-height: 110px;
}

.btn-review-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--clr-red);
    border: none;
    color: var(--clr-white);
    font-weight: 700;
    font-size: 15px;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-btn);
}

.btn-review-submit:hover {
    background: var(--clr-red-hover);
    transform: translateY(-1px);
}

.review-success-msg {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(40, 169, 9, 0.1);
    border: 1px solid rgba(40, 169, 9, 0.3);
    color: var(--clr-green);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    margin-top: 16px;
    font-size: 14px;
}

.review-success-msg svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.review-success-msg strong {
    display: block;
    font-size: 15px;
    margin-bottom: 4px;
}

.review-success-msg p {
    margin: 0;
    color: var(--clr-text-muted);
}

.ftr-x7q1 {
    background: var(--clr-nav);
    border-top: 1px solid var(--clr-nav-border);
}

.ftr-logo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
    border-radius: 6px;
}

.ftr-desc {
    font-size: 13px;
    color: var(--clr-text-muted);
    line-height: 1.6;
}

.ftr-label-sm {
    font-size: 11px;
    color: var(--clr-text-dim);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 6px;
}

.ftr-provider-lnk {
    display: inline-block;
}

.ftr-nav-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--clr-text-dim);
    margin-bottom: 12px;
}

.ftr-nav-list li {
    margin-bottom: 6px;
}

.ftr-nav-lnk {
    font-size: 13px;
    color: var(--clr-text-muted);
    transition: var(--transition);
}

.ftr-nav-lnk:hover {
    color: var(--clr-white);
    padding-left: 4px;
}

.ftr-pay-badge, .ftr-trust-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--clr-nav-border);
    color: var(--clr-text-muted);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.ftr-trust-badge svg {
    color: var(--clr-accent);
}

.ftr-divider {
    height: 1px;
    background: var(--clr-nav-border);
}

.ftr-legal-txt {
    font-size: 12px;
    color: var(--clr-text-dim);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 10px;
}

.ftr-age-warn {
    font-size: 12px;
    color: var(--clr-text-dim);
}

.ftr-age-badge {
    background: var(--clr-red);
    color: var(--clr-white);
    font-size: 11px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 3px;
    margin-right: 6px;
}

.ftr-ext-lnk {
    color: var(--clr-text-dim);
    font-size: 12px;
}

.ftr-ext-lnk:hover {
    color: var(--clr-text-muted);
}

.ftr-copyright {
    font-size: 12px;
    color: var(--clr-text-dim);
}


@media (max-width: 576px) {
    .wgt-x5p2 {
        padding: 10px 14px 10px 10px;
    }

    .wgt-txt-wrap {
        flex: 1;
        min-width: 0;
    }

    .wgt-main-txt {
        font-size: 13px;
    }

    .wgt-reg-btn {
        font-size: 13px;
        padding: 10px 16px;
    }
}

.spinner-border-sm {
    width: 14px;
    height: 14px;
    border-width: 2px;
}

.visually-hidden-focusable:not(:focus):not(:focus-within) {
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.c-xq781 {
    display: none;
}

.e-p94j3 {
    visibility: hidden;
}

.f-m2k7b {
    opacity: 0;
}

#wp-custom-header-video-button {
    display: none;
}

.elementor-widget-text-editor {
    display: block;
}

.wp-block-separator {
    border: none;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

@media (max-width: 991px) {
    .hero-x3n1 {
        min-height: 420px;
    }

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

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

@media (max-width: 767px) {
    .hero-h1 {
        font-size: clamp(22px, 6vw, 32px);
    }

    .hero-stats {
        gap: 20px;
    }

    .hero-stat-val {
        font-size: 18px;
    }

    .casino-item {
        padding: 14px 12px;
    }

    .casino-actions {
        flex-direction: column;
    }

    .btn-casino-play, .btn-casino-review {
        width: 100%;
        justify-content: center;
    }

    .review-form-wrap {
        padding: 18px 14px;
    }

    .wgt-x5p2 .d-flex {
        flex-wrap: wrap;
        gap: 8px;
    }
}

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

    .btn-hero-demo, .btn-hero-money {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }
}

.lkf {
    max-width: 920px;
    margin: 0 auto;
    padding: 40px 20px 56px;
    color: var(--clr-text);
}

.lkf h1,
.lkf h2,
.lkf h3 {
    color: var(--clr-white);
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.lkf h1 {
    font-size: clamp(32px, 4vw, 48px);
    margin: 0 0 24px;
}

.lkf h2 {
    font-size: clamp(24px, 3vw, 32px);
    margin: 40px 0 18px;
}

.lkf h3 {
    font-size: clamp(20px, 2.4vw, 24px);
    margin: 28px 0 14px;
}

.lkf p,
.lkf li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--clr-text);
}

.lkf p {
    margin: 0 0 16px;
}

.lkf ul,
.lkf ol {
    margin: 0 0 20px;
    padding-left: 22px;
}

.lkf li {
    margin-bottom: 10px;
}

.lkf ul li::marker,
.lkf ol li::marker {
    color: var(--clr-red);
}

.lkf a {
    color: var(--clr-red);
    word-break: break-word;
}

.lkf a:hover {
    color: var(--clr-red-hover);
}

.lkf em {
    color: var(--clr-white);
    font-style: italic;
}

.lkf strong {
    color: var(--clr-white);
    font-weight: 700;
}

.lkf > * + * {
    scroll-margin-top: 90px;
}

.lkf > ul,
.lkf > ol {
    background: var(--clr-card);
    border: 1px solid var(--clr-card-border);
    border-radius: var(--radius-md);
    padding: 20px 20px 20px 42px;
}

.lkf h2 + ul,
.lkf h3 + ul,
.lkf h2 + ol,
.lkf h3 + ol {
    margin-top: 8px;
}

.lkf img,
.lkf svg,
.lkf iframe {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
}

.lkf table {
    width: 100%;
    border-collapse: collapse;
    display: block;
    overflow-x: auto;
    margin: 20px 0;
    border-radius: var(--radius-md);
}

.lkf table th,
.lkf table td {
    padding: 12px 14px;
    border: 1px solid var(--clr-card-border);
    text-align: left;
    white-space: nowrap;
}

.lkf table th {
    color: var(--clr-text-muted);
    background: rgba(255, 255, 255, 0.04);
    font-size: 13px;
}

.lkf table td {
    color: var(--clr-text);
    background: rgba(255, 255, 255, 0.02);
    font-size: 14px;
}

.lkf blockquote {
    margin: 24px 0;
    padding: 18px 20px;
    border-left: 4px solid var(--clr-red);
    background: rgba(229, 5, 57, 0.08);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    color: var(--clr-text-muted);
}

.lkf hr {
    border: 0;
    height: 1px;
    background: var(--clr-card-border);
    margin: 32px 0;
}

@media (max-width: 991px) {
    .lkf {
        max-width: 100%;
        padding: 32px 18px 48px;
    }

    .lkf h1 {
        margin-bottom: 20px;
    }

    .lkf h2 {
        margin-top: 34px;
    }

    .lkf h3 {
        margin-top: 24px;
    }
}

@media (max-width: 767px) {
    .lkf {
        padding: 24px 16px 40px;
    }

    .lkf p,
    .lkf li {
        font-size: 15px;
        line-height: 1.75;
    }

    .lkf > ul,
    .lkf > ol {
        padding: 16px 16px 16px 34px;
    }

    .lkf table th,
    .lkf table td {
        padding: 10px 12px;
        font-size: 13px;
    }

    .lkf blockquote {
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .lkf {
        padding: 20px 14px 32px;
    }

    .lkf h1 {
        font-size: 28px;
        line-height: 1.15;
    }

    .lkf h2 {
        font-size: 22px;
        margin: 28px 0 14px;
    }

    .lkf h3 {
        font-size: 18px;
        margin: 22px 0 12px;
    }

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

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

    .lkf > ul,
    .lkf > ol {
        padding: 14px 14px 14px 28px;
        border-radius: var(--radius-sm);
    }

    .lkf table {
        margin: 16px 0;
    }

    .lkf table th,
    .lkf table td {
        padding: 9px 10px;
    }
}

.lkf {
    width: 100%;
    max-width: 920px;
    margin: 0 auto;
    padding: 40px 20px 56px;
    overflow-wrap: anywhere;
    word-wrap: break-word;
}

.lkf * {
    max-width: 100%;
}

.lkf h1,
.lkf h2,
.lkf h3 {
    color: var(--clr-white);
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.02em;
    overflow-wrap: anywhere;
}

.lkf h1 {
    font-size: clamp(30px, 4vw, 48px);
    margin: 0 0 24px;
}

.lkf h2 {
    font-size: clamp(24px, 3vw, 32px);
    margin: 36px 0 16px;
}

.lkf h3 {
    font-size: clamp(19px, 2.2vw, 24px);
    margin: 24px 0 12px;
}

.lkf p,
.lkf li {
    font-size: 16px;
    line-height: 1.75;
    color: var(--clr-text);
    overflow-wrap: anywhere;
    word-break: break-word;
}

.lkf p {
    margin: 0 0 16px;
}

.lkf ul,
.lkf ol {
    margin: 0 0 20px;
    padding-left: 22px;
}

.lkf li {
    margin-bottom: 10px;
}

.lkf ul li::marker,
.lkf ol li::marker {
    color: var(--clr-red);
}

.lkf a {
    color: var(--clr-red);
    text-decoration: none;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.lkf a:hover {
    color: var(--clr-red-hover);
}

.lkf img,
.lkf svg,
.lkf iframe,
.lkf video,
.lkf table {
    max-width: 100%;
}

.lkf table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.lkf blockquote {
    margin: 20px 0;
    padding: 16px 18px;
    border-left: 4px solid var(--clr-red);
    background: rgba(229, 5, 57, 0.08);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.lkf > ul,
.lkf > ol {
    background: var(--clr-card);
    border: 1px solid var(--clr-card-border);
    border-radius: var(--radius-md);
    padding: 18px 18px 18px 36px;
}

@media (max-width: 991px) {
    .lkf {
        max-width: 100%;
        padding: 28px 18px 44px;
    }

    .lkf h1 {
        margin-bottom: 20px;
    }

    .lkf h2 {
        margin: 30px 0 14px;
    }

    .lkf h3 {
        margin: 22px 0 12px;
    }
}

@media (max-width: 767px) {
    .lkf {
        padding: 22px 16px 36px;
    }

    .lkf h1 {
        font-size: 28px;
        line-height: 1.15;
    }

    .lkf h2 {
        font-size: 22px;
        line-height: 1.25;
        margin: 26px 0 12px;
    }

    .lkf h3 {
        font-size: 18px;
        line-height: 1.3;
        margin: 20px 0 10px;
    }

    .lkf p,
    .lkf li {
        font-size: 15px;
        line-height: 1.7;
    }

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

    .lkf > ul,
    .lkf > ol {
        padding: 16px 14px 16px 28px;
    }

    .lkf blockquote {
        padding: 14px 16px;
    }
}

@media (max-width: 480px) {
    .lkf {
        padding: 18px 12px 30px;
    }

    .lkf h1 {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .lkf h2 {
        font-size: 20px;
        margin: 22px 0 10px;
    }

    .lkf h3 {
        font-size: 17px;
        margin: 18px 0 10px;
    }

    .lkf p,
    .lkf li {
        font-size: 14px;
        line-height: 1.65;
    }

    .lkf ul,
    .lkf ol {
        padding-left: 16px;
        margin-bottom: 16px;
    }

    .lkf > ul,
    .lkf > ol {
        padding: 14px 12px 14px 24px;
        border-radius: var(--radius-sm);
    }

    .lkf li {
        margin-bottom: 8px;
    }

    .lkf blockquote {
        margin: 16px 0;
        padding: 12px 14px;
    }
}