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

:root {
    --clr-bg: #000000;
    --clr-header: #0a0a35;
    --clr-primary: #fbec1f;
    --clr-secondary: #016d19;
    --clr-text: #e8e8f0;
    --clr-text-muted: #9090b0;
    --clr-border: rgba(255, 255, 255, 0.1);
    --clr-surface: #0d0d2e;
    --clr-surface-alt: #12122a;
    --clr-card: #111130;
    --clr-pros: #0d2d1a;
    --clr-cons: #2d0d0d;
    --clr-pros-border: #016d19;
    --clr-cons-border: #8b1a1a;
    --clr-ok: #016d19;
    --clr-warn: #c0392b;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow-card: 0 2px 16px rgba(0, 0, 0, 0.5);
    --shadow-hero: 0 4px 32px rgba(0, 0, 0, 0.7);
    --transition: 0.22s ease;
    --font: 'Inter', sans-serif;
    --max-w: 1200px;
}

html {
    background: var(--clr-bg);
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font);
    color: var(--clr-text);
    background: var(--clr-bg);
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

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

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

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

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: var(--font);
}

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

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font);
    font-weight: 700;
    letter-spacing: 0.02em;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
    text-decoration: none;
    border: 2px solid transparent;
    white-space: nowrap;
}

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

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

.btn--primary {
    background: var(--clr-primary);
    color: #000;
    border-color: var(--clr-primary);
}

.btn--primary:hover {
    background: #ffe000;
    color: #000;
    box-shadow: 0 4px 18px rgba(251, 236, 31, 0.35);
}

.btn--secondary {
    background: var(--clr-secondary);
    color: #fff;
    border-color: var(--clr-secondary);
}

.btn--secondary:hover {
    background: #01881e;
    color: #fff;
    box-shadow: 0 4px 18px rgba(1, 109, 25, 0.35);
}

.btn--ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-color: #fff;
}

.btn--block {
    display: flex;
    width: 100%;
    justify-content: center;
}

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

.btn--md {
    padding: 10px 22px;
    font-size: 0.95rem;
}

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

.site-header {
    background: var(--clr-header);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.6);
}

.hdr-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 20px;
}

.hdr-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    height: 68px;
    position: relative;
}

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

.hdr-logo img {
    height: 42px;
    width: auto;
}

.logo-link {
    display: flex;
    align-items: center;
}

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

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

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.88rem;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
}

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

.nav-link:hover {
    color: var(--clr-primary);
    background: rgba(255, 255, 255, 0.06);
}

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

.hdr-online {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-right: 8px;
}

.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: 0.6;
        transform: scale(1.3);
    }
}

.online-count {
    color: #22c55e;
    font-weight: 700;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
    z-index: 110;
}

.burger:hover {
    background: rgba(255, 255, 255, 0.08);
}

.burger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.22s, opacity 0.22s;
}

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

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

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

.hdr-mobile-nav {
    display: none;
    background: var(--clr-surface);
    border-top: 1px solid var(--clr-border);
    padding: 12px 20px 20px;
}

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

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav-link {
    display: block;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition);
}

.mobile-nav-link:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--clr-primary);
}

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

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

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 10, 53, 0.92) 0%, rgba(0, 0, 0, 0.82) 60%, rgba(0, 0, 0, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 60px 20px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
}

.hero-eyebrow {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--clr-primary);
    margin-bottom: 12px;
}

.hero-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 28px;
    max-width: 520px;
}

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

.hero-bonus-card {
    background: rgba(13, 13, 46, 0.92);
    border: 1.5px solid rgba(251, 236, 31, 0.3);
    border-radius: var(--radius-xl);
    padding: 28px 24px;
    width: 280px;
    flex-shrink: 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
}

.bonus-card-inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bonus-badge {
    background: var(--clr-primary);
    color: #000;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-block;
    align-self: flex-start;
}

.bonus-title {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    font-weight: 500;
}

.bonus-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--clr-primary);
    line-height: 1.1;
}

.bonus-extra {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.bonus-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.bonus-details li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.bonus-disclaimer {
    font-size: 0.72rem;
    color: var(--clr-text-muted);
    text-align: center;
    line-height: 1.4;
}

.content-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 20px;
}

.pros-cons-block, .live-games-block, .demo-block, .review-content-block, .registration-steps-block, .security-table-block, .responsible-block, .faq-block {
    padding: 60px 0;
    border-bottom: 1px solid var(--clr-border);
}

.faq-block {
    border-bottom: none;
}

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

.section-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--clr-text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.pros-cons-card {
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-card);
}

.pros-card {
    background: var(--clr-pros);
    border: 1.5px solid var(--clr-pros-border);
}

.cons-card {
    background: var(--clr-cons);
    border: 1.5px solid var(--clr-cons-border);
}

.pcc-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pcc-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pcc-icon--pros {
    background: rgba(1, 109, 25, 0.3);
    color: #22c55e;
}

.pcc-icon--cons {
    background: rgba(139, 26, 26, 0.3);
    color: #ef4444;
}

.pcc-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.pcc-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pcc-list li {
    display: flex;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    align-items: flex-start;
}

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

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

.live-games-wrapper {
    position: relative;
    overflow: hidden;
}

.live-games-track {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    transition: transform var(--transition);
}

.lg-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 20px 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.lg-card:hover {
    border-color: rgba(251, 236, 31, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.lg-card-img {
    width: 80px;
    height: 60px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lg-card-provider {
    font-size: 0.72rem;
    color: var(--clr-text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.lg-card-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.lg-card-btn {
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

.lg-slider-controls {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.lg-btn-prev, .lg-btn-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition), border-color var(--transition);
}

.lg-btn-prev:hover, .lg-btn-next:hover {
    background: var(--clr-primary);
    color: #000;
    border-color: var(--clr-primary);
}

.lg-dots {
    display: flex;
    gap: 6px;
}

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

.lg-dot.active {
    background: var(--clr-primary);
}

.demo-wrapper {
    max-width: 860px;
    margin: 0 auto;
}

.demo-selector {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.demo-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    white-space: nowrap;
}

.select-wrap {
    position: relative;
    flex: 1;
    min-width: 220px;
}

.demo-select {
    width: 100%;
    appearance: none;
    background: var(--clr-surface);
    border: 1.5px solid var(--clr-border);
    border-radius: var(--radius-sm);
    color: #fff;
    font-family: var(--font);
    font-size: 0.9rem;
    padding: 10px 36px 10px 14px;
    cursor: pointer;
    transition: border-color var(--transition);
}

.demo-select:focus {
    outline: none;
    border-color: var(--clr-primary);
}

.select-wrap::after {
    content: '';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid rgba(255, 255, 255, 0.5);
    pointer-events: none;
}

.demo-frame-container {
    position: relative;
    width: 100%;
    border-radius: var(--radius-md);
    border: 1.5px solid var(--clr-border);
    background: #000;
}

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

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

.demo-loading {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: var(--clr-surface);
    z-index: 2;
    transition: opacity 0.3s;
}

.demo-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--clr-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.demo-cta-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 20px;
    padding: 20px 24px;
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    flex-wrap: wrap;
}

.demo-cta-text {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

.review-content-block {
    padding-top: 60px;
}

.review-h1 {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 28px;
    line-height: 1.3;
}

.cms-content {
    color: var(--clr-text);
    line-height: 1.75;
}

.cms-content h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin: 32px 0 14px;
    padding-top: 8px;
    border-top: 1px solid var(--clr-border);
}

.cms-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin: 24px 0 10px;
}

.cms-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--clr-primary);
    margin: 20px 0 8px;
}

.cms-content p {
    margin-bottom: 16px;
}

.cms-content a {
    color: var(--clr-secondary);
    text-decoration: underline;
}

.cms-content a:hover {
    color: var(--clr-primary);
}

.cms-content ul, .cms-content ol {
    margin: 12px 0 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

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

.cms-content li {
    color: var(--clr-text);
    line-height: 1.6;
}

.cms-content strong {
    color: #fff;
    font-weight: 700;
}

.cms-content em {
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
}

.cms-content blockquote {
    border-left: 3px solid var(--clr-primary);
    padding: 14px 20px;
    margin: 20px 0;
    background: var(--clr-surface);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

.cms-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: var(--clr-surface);
    border-radius: var(--radius-md);
    overflow: hidden;
    text-align: left;
}

.cms-content th {
    background: var(--clr-header);
    color: var(--clr-primary);
    font-weight: 700;
    padding: 12px 16px;
    border-bottom: 2px solid var(--clr-border);
}

.cms-content td {
    padding: 10px 16px;
    border-bottom: 1px solid var(--clr-border);
    color: var(--clr-text);
}

.cms-content tr:last-child td {
    border-bottom: none;
}

.cms-content img {
    border-radius: var(--radius-md);
    margin: 16px 0;
    max-width: 100%;
}

.cms-content hr {
    border: none;
    border-top: 1px solid var(--clr-border);
    margin: 28px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.step-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
    text-align: center;
    position: relative;
    transition: border-color var(--transition), transform var(--transition);
}

.step-card:hover {
    border-color: rgba(251, 236, 31, 0.3);
    transform: translateY(-3px);
}

.step-num {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--clr-primary);
    color: #000;
    font-size: 0.85rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon {
    color: var(--clr-primary);
    margin-top: 8px;
}

.step-title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

.step-desc {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
    flex: 1;
}

.step-btn {
    margin-top: auto;
}

.table-scroll-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-lg);
    border: 1px solid var(--clr-border);
}

.security-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--clr-surface);
    min-width: 560px;
}

.security-table th {
    background: var(--clr-header);
    color: var(--clr-primary);
    font-weight: 700;
    font-size: 0.88rem;
    padding: 14px 18px;
    text-align: left;
    border-bottom: 2px solid rgba(251, 236, 31, 0.2);
}

.security-table td {
    padding: 14px 18px;
    border-bottom: 1px solid var(--clr-border);
    color: var(--clr-text);
    font-size: 0.88rem;
    vertical-align: middle;
}

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

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

.tbl-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
}

.tbl-label svg {
    color: var(--clr-primary);
    flex-shrink: 0;
}

.tbl-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    white-space: nowrap;
}

.tbl-badge--ok {
    background: rgba(1, 109, 25, 0.2);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.tbl-badge--warn {
    background: rgba(192, 57, 43, 0.2);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.tbl-badge--info {
    background: rgba(251, 236, 31, 0.12);
    color: var(--clr-primary);
    border: 1px solid rgba(251, 236, 31, 0.3);
}

.rg-block {
    background: var(--clr-surface);
    border: 1.5px solid rgba(1, 109, 25, 0.3);
    border-radius: var(--radius-xl);
    padding: 40px;
}

.rg-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.rg-icon {
    color: var(--clr-secondary);
}

.rg-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
}

.rg-intro {
    font-size: 0.95rem;
    color: var(--clr-text-muted);
    line-height: 1.7;
    margin-bottom: 28px;
}

.rg-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}

.rg-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rg-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.rg-card-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
}

.rg-card-badge {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: rgba(1, 109, 25, 0.2);
    color: #22c55e;
    padding: 3px 8px;
    border-radius: 20px;
    white-space: nowrap;
    flex-shrink: 0;
}

.rg-card-desc {
    font-size: 0.83rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
    flex: 1;
}

.rg-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--clr-secondary);
    font-size: 0.83rem;
    font-weight: 600;
    margin-top: auto;
}

.rg-link:hover {
    color: var(--clr-primary);
}

.rg-warning {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 16px 20px;
    background: rgba(251, 236, 31, 0.05);
    border: 1px solid rgba(251, 236, 31, 0.2);
    border-radius: var(--radius-md);
}

.rg-warn-icon {
    color: var(--clr-primary);
    flex-shrink: 0;
    margin-top: 1px;
}

.rg-warning p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

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

.faq-item:has(.faq-question[aria-expanded="true"]) {
    border-color: rgba(251, 236, 31, 0.3);
}

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

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

.faq-icon {
    flex-shrink: 0;
    color: var(--clr-primary);
}

.faq-icon-plus {
    display: block;
}

.faq-icon-minus {
    display: none;
}

.faq-question[aria-expanded="true"] .faq-icon-plus {
    display: none;
}

.faq-question[aria-expanded="true"] .faq-icon-minus {
    display: block;
}

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

.faq-answer p {
    margin-bottom: 10px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    margin: 8px 0 12px 18px;
    list-style: disc;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

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

.faq-answer strong {
    color: #fff;
}

.site-footer {
    background: var(--clr-header);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: auto;
}

.ftr-main {
    padding: 50px 0 24px;
}

.ftr-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.ftr-top {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: start;
}

.ftr-brand {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 340px;
}

.ftr-logo-link img {
    height: 38px;
    width: auto;
}

.ftr-country {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

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

.ftr-social {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 34px;
    height: 34px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--clr-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}

.ftr-nav-cols {
    display: flex;
    gap: 40px;
}

.ftr-nav-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ftr-col-title {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--clr-primary);
}

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

.ftr-nav-list a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition);
}

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

.ftr-section-label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--clr-text-muted);
    margin-bottom: 14px;
}

.ftr-logos-row {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.ftr-pay-badge {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 6px 14px;
    display: flex;
    align-items: center;
    height: 38px;
}

.ftr-provider-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 5px 12px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
}

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

.ftr-legal {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ftr-legal-text {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
}

.ftr-copyright p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.3);
}

.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: var(--clr-header);
    border-top: 2px solid var(--clr-primary);
    padding: 10px 20px;
    transform: translateY(0);
    transition: transform 0.35s ease;
}

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

.widget-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
}

.widget-close {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: background var(--transition);
}

.widget-close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.widget-content {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    flex-wrap: wrap;
}

.widget-bonus-tag {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--clr-text-muted);
    background: rgba(255, 255, 255, 0.06);
    padding: 3px 8px;
    border-radius: 20px;
    white-space: nowrap;
}

.widget-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--clr-primary);
}

.widget-sub {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.widget-cta {
    margin-left: auto;
}

.widget-disclaimer {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.35);
    white-space: nowrap;
    margin-right: 36px;
}

.info-main {
    padding: 60px 0 80px;
}

.info-container {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 20px;
}

.info-content-block.cms-content h1 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 28px;
    line-height: 1.3;
}

@media (max-width: 1024px) {
    .live-games-track {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

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

    .hdr-online {
        display: none;
    }

    .burger {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 40px 20px;
    }

    .hero-bonus-card {
        width: 100%;
    }

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

    .live-games-track {
        display: flex;
        gap: 14px;
        overflow: hidden;
    }

    .lg-card {
        min-width: calc(50% - 7px);
        flex-shrink: 0;
    }

    .lg-slider-controls {
        display: flex;
    }

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

    .rg-cards-grid {
        grid-template-columns: 1fr;
    }

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

    .ftr-nav-cols {
        flex-wrap: wrap;
        gap: 24px;
    }

    .ftr-brand {
        max-width: 100%;
    }

    .demo-cta-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .widget-content {
        gap: 8px;
    }

    .widget-disclaimer {
        display: none;
    }
}

@media (max-width: 480px) {
    .lg-card {
        min-width: calc(100% - 0px);
    }

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

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

    .hdr-actions .btn--secondary {
        display: none;
    }

    .rg-block {
        padding: 24px;
    }

    .security-table td:last-child {
        min-width: 200px;
    }
}

.b4f2a, .c7e91 {
    display: none;
}

div[data-wp-block], div[data-elementor-type] {
    display: none;
}

.lckiwu {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 28px 0;
    padding: 30px 32px;
    overflow: hidden;
    color: var(--clr-text, #e8e8f0);
    background: linear-gradient(
            145deg,
            rgba(17, 17, 48, 0.98) 0%,
            rgba(10, 10, 42, 0.98) 100%
    );
    border: 1px solid rgba(251, 236, 31, 0.28);
    border-radius: 16px;
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

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

.lckiwu > * {
    max-width: 100%;
}

.lckiwu h1,
.lckiwu h2,
.lckiwu h3,
.lckiwu h4,
.lckiwu h5,
.lckiwu h6 {
    max-width: 100%;
    color: #fff;
    line-height: 1.3;
    overflow-wrap: anywhere;
    word-break: normal;
}

.lckiwu h1 {
    margin: 0 0 20px;
    font-size: 2rem;
}

.lckiwu h2 {
    margin: 30px 0 13px;
    padding-top: 4px;
    color: #fff;
    font-size: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lckiwu h3 {
    margin: 23px 0 10px;
    font-size: 1.2rem;
}

.lckiwu h4 {
    margin: 18px 0 8px;
    color: var(--clr-primary, #fbec1f);
    font-size: 1rem;
}

.lckiwu p {
    max-width: 100%;
    margin: 0 0 16px;
    color: var(--clr-text, #e8e8f0);
    font-size: 0.95rem;
    line-height: 1.75;
    overflow-wrap: anywhere;
    word-break: normal;
}

.lckiwu a {
    max-width: 100%;
    color: var(--clr-secondary, #22c55e);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.lckiwu a:hover {
    color: var(--clr-primary, #fbec1f);
}

.lckiwu strong,
.lckiwu b {
    color: #fff;
}

.lckiwu ul,
.lckiwu ol {
    max-width: 100%;
    margin: 13px 0 20px;
    padding-left: 23px;
}

.lckiwu ul {
    list-style: disc;
}

.lckiwu ol {
    list-style: decimal;
}

.lckiwu li {
    max-width: 100%;
    margin-bottom: 8px;
    color: var(--clr-text, #e8e8f0);
    line-height: 1.65;
    overflow-wrap: anywhere;
}

.lckiwu blockquote {
    width: 100%;
    max-width: 100%;
    margin: 20px 0;
    padding: 14px 18px;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(251, 236, 31, 0.055);
    border-left: 3px solid var(--clr-primary, #fbec1f);
    border-radius: 0 10px 10px 0;
    overflow-wrap: anywhere;
}

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

.lckiwu img,
.lckiwu video {
    display: block;
    width: auto;
    height: auto;
    margin: 18px auto;
    border-radius: 11px;
}

.lckiwu iframe {
    display: block;
    width: 100% !important;
    min-width: 0;
    min-height: 320px;
    border: 0;
    border-radius: 11px;
}

.lckiwu pre {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 18px 0;
    padding: 14px;
    overflow-x: auto;
    color: var(--clr-text, #e8e8f0);
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 10px;
    white-space: pre;
    -webkit-overflow-scrolling: touch;
}

.lckiwu code {
    max-width: 100%;
    overflow-wrap: anywhere;
}

.lckiwu table {
    width: 100%;
    min-width: 620px;
    margin: 20px 0;
    border-collapse: collapse;
    color: var(--clr-text, #e8e8f0);
    background: rgba(255, 255, 255, 0.025);
}

.lckiwu table th,
.lckiwu table td {
    padding: 12px 14px;
    text-align: left;
    vertical-align: top;
    border: 1px solid rgba(255, 255, 255, 0.09);
}

.lckiwu table th {
    color: var(--clr-primary, #fbec1f);
    font-weight: 700;
    background: var(--clr-header, #0a0a35);
}

.lckiwu table td {
    font-size: 0.88rem;
}

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

.lckiwu input,
.lckiwu select,
.lckiwu textarea,
.lckiwu button,
.lckiwu .btn {
    max-width: 100%;
}

.lckiwu input,
.lckiwu select,
.lckiwu textarea {
    width: 100%;
    min-width: 0;
}

@media (max-width: 768px) {
    .lckiwu {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        margin: 18px 0;
        padding: 19px 14px;
        overflow: hidden;
        border-radius: 13px;
    }

    .lckiwu > div,
    .lckiwu > section,
    .lckiwu > article {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .lckiwu h1 {
        margin-bottom: 16px;
        font-size: 1.4rem;
    }

    .lckiwu h2 {
        margin-top: 22px;
        font-size: 1.18rem;
    }

    .lckiwu h3 {
        margin-top: 18px;
        font-size: 1.03rem;
    }

    .lckiwu h4 {
        font-size: 0.92rem;
    }

    .lckiwu p,
    .lckiwu li {
        font-size: 0.83rem;
        line-height: 1.65;
    }

    .lckiwu ul,
    .lckiwu ol {
        padding-left: 19px;
    }

    .lckiwu blockquote {
        margin: 15px 0;
        padding: 11px 12px;
        font-size: 0.81rem;
    }

    .lckiwu table {
        display: block;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        margin: 16px 0;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: rgba(251, 236, 31, 0.65) rgba(255, 255, 255, 0.06);
    }

    .lckiwu table tbody,
    .lckiwu table thead {
        width: max-content;
        min-width: 600px;
    }

    .lckiwu table th,
    .lckiwu table td {
        min-width: 120px;
        padding: 9px 10px;
        font-size: 0.73rem;
        white-space: nowrap;
    }

    .lckiwu iframe {
        width: 100% !important;
        height: auto;
        min-height: 210px;
        aspect-ratio: 16 / 9;
    }

    .lckiwu img {
        width: auto;
        max-width: 100%;
        height: auto;
    }

    .lckiwu .btn,
    .lckiwu button {
        min-width: 0;
        white-space: normal;
        text-align: center;
    }

    .lckiwu input,
    .lckiwu select,
    .lckiwu textarea {
        font-size: 16px;
    }
}

@media (max-width: 420px) {
    .lckiwu {
        padding: 15px 11px;
        border-radius: 11px;
    }

    .lckiwu h1 {
        font-size: 1.28rem;
    }

    .lckiwu h2 {
        font-size: 1.08rem;
    }

    .lckiwu h3 {
        font-size: 0.98rem;
    }

    .lckiwu p,
    .lckiwu li {
        font-size: 0.8rem;
    }

    .lckiwu table th,
    .lckiwu table td {
        min-width: 110px;
        padding: 8px;
        font-size: 0.69rem;
    }
}

.faq-answer {
    display: grid;
    grid-template-rows: 1fr;
    opacity: 1;
    visibility: visible;
    transition: grid-template-rows 0.3s ease,
    opacity 0.25s ease,
    visibility 0.3s ease,
    padding 0.3s ease;
}

.faq-answer > div {
    min-height: 0;
    overflow: hidden;
}

.faq-answer.faq-answer--closed {
    grid-template-rows: 0fr;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
    visibility: hidden;
}

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

.faq-question[aria-expanded="true"] .faq-icon-plus {
    display: none;
}

.faq-question[aria-expanded="true"] .faq-icon-minus {
    display: block;
}

.faq-question[aria-expanded="false"] .faq-icon-plus {
    display: block;
}

.faq-question[aria-expanded="false"] .faq-icon-minus {
    display: none;
}