:root {
    --lb-bg: #041121;
    --lb-header-bg: #052240;
    --lb-footer-bg: #052240;
    --lb-btn-login: #082B53;
    --lb-btn-signup: #31CD68;
    --lb-accent: #31CD68;
    --lb-accent-hover: #27a854;
    --lb-text: #e8edf5;
    --lb-text-muted: #8fa3bf;
    --lb-text-dim: #6b85a0;
    --lb-card-bg: #071829;
    --lb-card-border: #0d2b4a;
    --lb-card-bg-alt: #081e38;
    --lb-gold: #f0c040;
    --lb-silver: #aab8cc;
    --lb-radius: 12px;
    --lb-radius-sm: 8px;
    --lb-radius-xs: 4px;
    --lb-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    --lb-shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.3);
    --lb-transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --lb-container: 1200px;
    --lb-gap: 24px;
}

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

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

body {
    font-family: 'Inter', 'Roboto', Arial, sans-serif;
    background: var(--lb-bg);
    color: var(--lb-text);
    line-height: 1.65;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--lb-accent);
    text-decoration: none;
    transition: color var(--lb-transition);
}

a:hover {
    color: var(--lb-accent-hover);
}

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

ul {
    list-style: none;
}

input, textarea, button, select {
    font-family: inherit;
}

.lb-container {
    max-width: var(--lb-container);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

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

.lb-header {
    background: var(--lb-header-bg);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(49, 205, 104, 0.12);
}

.lb-header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 0 20px;
    height: 68px;
    max-width: var(--lb-container);
    margin: 0 auto;
}

.lb-header-logo {
    flex-shrink: 0;
}

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

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

.lb-logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--lb-accent);
    letter-spacing: -0.5px;
    align-items: center;
}

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

.lb-header-nav {
    display: flex;
    align-items: center;
}

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

.lb-nav-item a {
    color: rgba(232, 237, 245, 0.85);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: var(--lb-radius-xs);
    transition: all var(--lb-transition);
    white-space: nowrap;
}

.lb-nav-item a:hover, .lb-nav-item--active a {
    color: #fff;
    background: rgba(49, 205, 104, 0.12);
}

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

.lb-online-counter {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--lb-text-muted);
    white-space: nowrap;
    padding: 6px 10px;
    background: rgba(49, 205, 104, 0.06);
    border-radius: 20px;
    border: 1px solid rgba(49, 205, 104, 0.15);
}

.lb-online-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--lb-accent);
    box-shadow: 0 0 6px var(--lb-accent);
    animation: lb-pulse 2s infinite;
}

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

.lb-online-num {
    font-weight: 600;
    color: var(--lb-accent);
}

.lb-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--lb-radius-xs);
    cursor: pointer;
    transition: all var(--lb-transition);
}

.lb-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--lb-text);
    border-radius: 2px;
    transition: all var(--lb-transition);
}

.lb-burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.lb-burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.lb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: var(--lb-radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    transition: all var(--lb-transition);
    white-space: nowrap;
    line-height: 1;
    text-decoration: none;
}

.lb-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}

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

.lb-btn--login {
    background: var(--lb-btn-login);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.lb-btn--login:hover {
    background: #0d3d75;
    color: #fff;
}

.lb-btn--signup {
    background: var(--lb-btn-signup);
    color: #fff;
    box-shadow: 0 0 16px rgba(49, 205, 104, 0.3);
}

.lb-btn--signup:hover {
    background: var(--lb-accent-hover);
    color: #fff;
    box-shadow: 0 0 24px rgba(49, 205, 104, 0.5);
}

.lb-btn--green {
    background: var(--lb-btn-signup);
    color: #fff;
    box-shadow: 0 0 16px rgba(49, 205, 104, 0.25);
}

.lb-btn--green:hover {
    background: var(--lb-accent-hover);
    color: #fff;
    box-shadow: 0 0 28px rgba(49, 205, 104, 0.5);
}

.lb-btn--outline {
    background: transparent;
    color: var(--lb-text);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.lb-btn--outline:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.lb-btn--copy {
    background: var(--lb-btn-login);
    color: var(--lb-accent);
    border: 1px solid var(--lb-accent);
    font-size: 0.82rem;
    padding: 8px 14px;
}

.lb-btn--copy:hover {
    background: rgba(49, 205, 104, 0.15);
}

.lb-btn--copy.copied {
    background: var(--lb-accent);
    color: #fff;
    border-color: var(--lb-accent);
}

.lb-btn--full {
    width: 100%;
}

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

.lb-btn--spin {
    background: linear-gradient(135deg, #7c3aed, #4f46e5);
    color: #fff;
    padding: 14px 40px;
    font-size: 1.05rem;
    border-radius: 50px;
    box-shadow: 0 0 24px rgba(124, 58, 237, 0.4);
}

.lb-btn--spin:hover {
    box-shadow: 0 0 36px rgba(124, 58, 237, 0.6);
}

.lb-btn--spin:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

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

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

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

.lb-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(4, 17, 33, 0.92) 0%, rgba(5, 34, 64, 0.8) 50%, rgba(4, 17, 33, 0.7) 100%);
}

.lb-hero-content {
    position: relative;
    z-index: 1;
    padding: 60px 20px;
}

.lb-hero-badge {
    display: inline-block;
    background: rgba(49, 205, 104, 0.15);
    border: 1px solid rgba(49, 205, 104, 0.4);
    color: var(--lb-accent);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.3px;
}

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

.lb-hero-accent {
    color: var(--lb-accent);
    background: linear-gradient(135deg, #31CD68, #27f07c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lb-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(232, 237, 245, 0.9);
    margin-bottom: 20px;
    max-width: 540px;
}

.lb-hero-subtitle strong {
    color: #fff;
}

.lb-hero-features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.lb-hero-feature {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.9rem;
    color: rgba(232, 237, 245, 0.8);
}

.lb-hero-feature span {
    color: var(--lb-accent);
    font-weight: 700;
}

.lb-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.lb-hero-note {
    font-size: 0.75rem;
    color: rgba(232, 237, 245, 0.45);
}

.lb-main {
    flex: 1;
    padding: 20px 0 60px;
}

.lb-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    padding: 14px 0;
    font-size: 0.83rem;
    color: var(--lb-text-muted);
}

.lb-breadcrumbs a {
    color: var(--lb-text-muted);
}

.lb-breadcrumbs a:hover {
    color: var(--lb-accent);
}

.lb-bc-sep {
    color: var(--lb-text-dim);
}

.lb-bc-current {
    color: var(--lb-text);
}

.lb-h1 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 2px solid rgba(49, 205, 104, 0.2);
}

.lb-section {
    margin-bottom: 48px;
}

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

.lb-section-title h2 {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 700;
    color: #fff;
    margin: 10px 0 8px;
}

.lb-section-title p {
    color: var(--lb-text-muted);
    font-size: 0.95rem;
    max-width: 540px;
    margin: 0 auto;
}

.lb-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    background: rgba(49, 205, 104, 0.1);
    color: var(--lb-accent);
    border: 1px solid rgba(49, 205, 104, 0.25);
}

.lb-badge--gold {
    background: rgba(240, 192, 64, 0.1);
    color: var(--lb-gold);
    border-color: rgba(240, 192, 64, 0.3);
}

.lb-badge--silver {
    background: rgba(170, 184, 204, 0.1);
    color: var(--lb-silver);
    border-color: rgba(170, 184, 204, 0.25);
}

.lb-badge--purple {
    background: rgba(124, 58, 237, 0.1);
    color: #a78bfa;
    border-color: rgba(124, 58, 237, 0.3);
}

.lb-badge--blue {
    background: rgba(59, 130, 246, 0.1);
    color: #60a5fa;
    border-color: rgba(59, 130, 246, 0.25);
}

.lb-promo-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: var(--lb-gap);
}

.lb-promo-card {
    background: var(--lb-card-bg);
    border: 1px solid var(--lb-card-border);
    border-radius: var(--lb-radius);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all var(--lb-transition);
    position: relative;
    overflow: hidden;
}

.lb-promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--lb-accent), #27f07c);
    border-radius: var(--lb-radius) var(--lb-radius) 0 0;
}

.lb-promo-card:hover {
    border-color: rgba(49, 205, 104, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

.lb-promo-card--main {
    border-color: rgba(49, 205, 104, 0.35);
    background: linear-gradient(135deg, var(--lb-card-bg) 0%, rgba(49, 205, 104, 0.04) 100%);
}

.lb-promo-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--lb-accent);
}

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

.lb-status-dot--warn {
    background: #f59e0b;
}

.lb-promo-status--expiring {
    color: #f59e0b;
}

.lb-promo-label {
    font-size: 0.82rem;
    color: var(--lb-text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lb-promo-bonus {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
}

.lb-promo-desc {
    font-size: 0.85rem;
    color: var(--lb-text-muted);
    line-height: 1.5;
}

.lb-promo-code-wrap {
    display: flex;
    gap: 8px;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    border: 1px dashed rgba(49, 205, 104, 0.4);
    border-radius: var(--lb-radius-sm);
    padding: 10px 12px;
}

.lb-promo-code {
    font-family: 'Roboto Mono', 'Courier New', monospace;
    font-size: 1rem;
    font-weight: 700;
    color: var(--lb-accent);
    letter-spacing: 1.5px;
    flex: 1;
}

.lb-promo-timer {
    font-size: 0.8rem;
    color: var(--lb-text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.lb-timer-val {
    color: var(--lb-gold);
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}

.lb-jackpot-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 16px;
}

.lb-jackpot-card {
    background: var(--lb-card-bg);
    border: 1px solid var(--lb-card-border);
    border-radius: var(--lb-radius);
    padding: 24px 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: all var(--lb-transition);
}

.lb-jackpot-card:hover {
    transform: translateY(-3px);
}

.lb-jackpot-card--mega {
    border-color: rgba(240, 192, 64, 0.4);
    background: linear-gradient(135deg, var(--lb-card-bg) 0%, rgba(240, 192, 64, 0.05) 100%);
}

.lb-jackpot-card--major {
    border-color: rgba(229, 115, 56, 0.35);
    background: linear-gradient(135deg, var(--lb-card-bg) 0%, rgba(229, 115, 56, 0.04) 100%);
}

.lb-jackpot-card--minor {
    border-color: rgba(99, 181, 255, 0.3);
}

.lb-jackpot-card--mini {
    border-color: rgba(170, 184, 204, 0.2);
}

.lb-jackpot-name {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.lb-jackpot-card--mega .lb-jackpot-name {
    color: var(--lb-gold);
}

.lb-jackpot-card--major .lb-jackpot-name {
    color: #e57338;
}

.lb-jackpot-card--minor .lb-jackpot-name {
    color: #63b5ff;
}

.lb-jackpot-card--mini .lb-jackpot-name {
    color: var(--lb-silver);
}

.lb-jackpot-amount {
    display: flex;
    align-items: baseline;
    gap: 3px;
}

.lb-jackpot-currency {
    font-size: 1rem;
    font-weight: 700;
    color: var(--lb-text-muted);
}

.lb-jackpot-card--mega .lb-jackpot-currency {
    color: var(--lb-gold);
}

.lb-jackpot-val {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 800;
    color: #fff;
    font-variant-numeric: tabular-nums;
}

.lb-jackpot-card--mega .lb-jackpot-val {
    color: var(--lb-gold);
    text-shadow: 0 0 20px rgba(240, 192, 64, 0.4);
}

.lb-jackpot-sub {
    font-size: 0.75rem;
    color: var(--lb-text-muted);
    line-height: 1.4;
}

.lb-winners-table-wrap {
    overflow-x: auto;
    border-radius: var(--lb-radius);
    border: 1px solid var(--lb-card-border);
}

.lb-winners-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 480px;
    background: var(--lb-card-bg);
}

.lb-winners-table thead {
    background: rgba(8, 43, 83, 0.8);
}

.lb-winners-table th {
    padding: 14px 16px;
    text-align: left;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--lb-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--lb-card-border);
}

.lb-winners-table td {
    padding: 13px 16px;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(13, 43, 74, 0.6);
    transition: background var(--lb-transition);
}

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

.lb-winners-table tbody tr:hover td {
    background: rgba(49, 205, 104, 0.04);
}

.lb-winners-table .lb-rank {
    font-weight: 700;
    color: var(--lb-text-muted);
    width: 40px;
}

.lb-winners-table .lb-rank--1 {
    color: var(--lb-gold);
}

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

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

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

.lb-winners-table .lb-win-player {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.lb-player-ico {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--lb-btn-login);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--lb-accent);
    flex-shrink: 0;
}

.lb-win-game-name {
    color: var(--lb-text-muted);
    font-size: 0.85rem;
}

.lb-slot-machine {
    max-width: 480px;
    margin: 0 auto;
}

.lb-slot-display {
    background: linear-gradient(135deg, #0a1628, #071020);
    border: 2px solid #1a3a6b;
    border-radius: var(--lb-radius);
    padding: 28px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.6), inset 0 0 40px rgba(0, 0, 0, 0.4);
    margin-bottom: 20px;
}

.lb-slot-reels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.lb-slot-reel {
    background: #000d1a;
    border: 2px solid #1a3a6b;
    border-radius: 8px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.lb-slot-symbol {
    font-size: 2.8rem;
    line-height: 1;
    user-select: none;
    transition: transform 0.1s;
}

.lb-slot-reel.spinning .lb-slot-symbol {
    animation: lb-spin-reel 0.1s linear infinite;
}

@keyframes lb-spin-reel {
    0% {
        transform: translateY(-100%) scale(0.8)
    }
    50% {
        transform: translateY(0) scale(1)
    }
    100% {
        transform: translateY(100%) scale(0.8)
    }
}

.lb-slot-lines {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    pointer-events: none;
}

.lb-slot-line {
    height: 2px;
    background: rgba(49, 205, 104, 0.15);
    margin: 0 16px;
}

.lb-slot-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
    background: var(--lb-card-bg);
    border: 1px solid var(--lb-card-border);
    border-radius: var(--lb-radius-sm);
    padding: 14px 16px;
}

.lb-slot-balance, .lb-slot-bet {
    font-size: 0.9rem;
    color: var(--lb-text-muted);
}

.lb-slot-balance span, .lb-slot-bet span {
    color: #fff;
    font-weight: 700;
}

.lb-slot-result {
    min-height: 24px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--lb-text-muted);
    margin-bottom: 8px;
}

.lb-slot-result--win {
    color: var(--lb-accent);
    font-weight: 600;
    animation: lb-fadeIn 0.4s ease;
}

.lb-slot-result--lose {
    color: #ef4444;
}

.lb-spin-icon {
    font-size: 1.2rem;
    display: inline-block;
}

.lb-slot-win-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: lb-fadeIn 0.3s ease;
    backdrop-filter: blur(4px);
}

.lb-slot-win-inner {
    background: linear-gradient(135deg, #071829, #0a2240);
    border: 2px solid rgba(49, 205, 104, 0.4);
    border-radius: var(--lb-radius);
    padding: 36px 32px;
    max-width: 380px;
    width: 90%;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 0 60px rgba(49, 205, 104, 0.2);
    animation: lb-popIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes lb-popIn {
    from {
        transform: scale(0.8);
        opacity: 0
    }
    to {
        transform: scale(1);
        opacity: 1
    }
}

.lb-slot-win-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--lb-gold);
    text-shadow: 0 0 20px rgba(240, 192, 64, 0.5);
}

.lb-slot-win-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--lb-accent);
}

.lb-slot-win-inner p {
    color: var(--lb-text-muted);
    font-size: 0.9rem;
}

.lb-reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--lb-gap);
    margin-bottom: 36px;
}

.lb-review-card {
    background: var(--lb-card-bg);
    border: 1px solid var(--lb-card-border);
    border-radius: var(--lb-radius);
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all var(--lb-transition);
}

.lb-review-card:hover {
    border-color: rgba(49, 205, 104, 0.25);
    transform: translateY(-2px);
    box-shadow: var(--lb-shadow-sm);
}

.lb-review-header {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.lb-review-avatar img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--lb-btn-login);
    object-fit: cover;
}

.lb-review-info {
    flex: 1;
}

.lb-review-name {
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.lb-review-stars {
    display: flex;
    gap: 3px;
}

.lb-star {
    width: 16px;
    height: 16px;
    fill: var(--lb-gold);
}

.lb-star--empty {
    fill: rgba(170, 184, 204, 0.3);
}

.lb-review-text {
    font-size: 0.9rem;
    color: var(--lb-text-muted);
    line-height: 1.6;
}

.lb-review-date {
    font-size: 0.78rem;
    color: var(--lb-text-dim);
}

.lb-review-form-wrap {
    background: var(--lb-card-bg);
    border: 1px solid var(--lb-card-border);
    border-radius: var(--lb-radius);
    padding: 28px;
    max-width: 560px;
}

.lb-review-form-wrap h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.lb-review-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lb-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.lb-form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--lb-text-muted);
}

.lb-form-group input, .lb-form-group textarea {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid var(--lb-card-border);
    border-radius: var(--lb-radius-sm);
    padding: 12px 14px;
    color: var(--lb-text);
    font-size: 0.9rem;
    width: 100%;
    transition: border-color var(--lb-transition);
    resize: vertical;
}

.lb-form-group input:focus, .lb-form-group textarea:focus {
    outline: none;
    border-color: rgba(49, 205, 104, 0.5);
    box-shadow: 0 0 0 3px rgba(49, 205, 104, 0.08);
}

.lb-form-group input::placeholder, .lb-form-group textarea::placeholder {
    color: var(--lb-text-dim);
}

.lb-form-success {
    background: rgba(49, 205, 104, 0.1);
    border: 1px solid rgba(49, 205, 104, 0.3);
    border-radius: var(--lb-radius-sm);
    padding: 12px 16px;
    color: var(--lb-accent);
    font-size: 0.9rem;
    animation: lb-fadeIn 0.4s ease;
}

.lb-content-section {
    background: var(--lb-card-bg);
    border: 1px solid var(--lb-card-border);
    border-radius: var(--lb-radius);
    padding: 32px;
}

.lb-content-wrap h1, .lb-content-wrap h2, .lb-content-wrap h3, .lb-content-wrap h4, .lb-content-wrap h5, .lb-content-wrap h6 {
    color: #fff;
    line-height: 1.25;
    margin-top: 24px;
    margin-bottom: 12px;
    font-weight: 700;
}

.lb-content-wrap h2 {
    font-size: 1.5rem;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--lb-card-border);
}

.lb-content-wrap h3 {
    font-size: 1.2rem;
    color: var(--lb-accent);
}

.lb-content-wrap p {
    color: var(--lb-text-muted);
    margin-bottom: 14px;
    line-height: 1.75;
}

.lb-content-wrap ul, .lb-content-wrap ol {
    color: var(--lb-text-muted);
    padding-left: 20px;
    margin-bottom: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    line-height: 1.65;
}

.lb-content-wrap ul {
    list-style: disc;
}

.lb-content-wrap ol {
    list-style: decimal;
}

.lb-content-wrap li::marker {
    color: var(--lb-accent);
}

.lb-content-wrap a {
    color: var(--lb-accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

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

.lb-content-wrap em {
    color: rgba(232, 237, 245, 0.75);
    font-style: italic;
}

.lb-content-wrap table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    font-size: 0.9rem;
    background: var(--lb-card-bg-alt);
}

.lb-content-wrap th {
    background: rgba(8, 43, 83, 0.7);
    padding: 12px 14px;
    text-align: left;
    color: var(--lb-text-muted);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    border: 1px solid var(--lb-card-border);
}

.lb-content-wrap td {
    padding: 11px 14px;
    color: var(--lb-text-muted);
    border: 1px solid var(--lb-card-border);
}

.lb-content-wrap tr:nth-child(even) td {
    background: rgba(0, 0, 0, 0.2);
}

.lb-content-wrap blockquote {
    border-left: 3px solid var(--lb-accent);
    padding: 12px 18px;
    background: rgba(49, 205, 104, 0.04);
    border-radius: 0 var(--lb-radius-sm) var(--lb-radius-sm) 0;
    margin-bottom: 14px;
    color: rgba(232, 237, 245, 0.75);
    font-style: italic;
}

.lb-footer {
    background: var(--lb-footer-bg);
    border-top: 1px solid rgba(49, 205, 104, 0.1);
    padding: 48px 0 0;
}

.lb-footer-inner {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.lb-footer-top {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
}

.lb-footer-brand {
}

.lb-footer-logo {
    height: 36px;
    width: auto;
    margin-bottom: 14px;
}

.lb-footer-logo-text {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--lb-accent);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
}

.lb-footer-desc {
    font-size: 0.85rem;
    color: var(--lb-text-muted);
    line-height: 1.65;
    margin-bottom: 16px;
}

.lb-footer-contact {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.lb-footer-email {
    color: var(--lb-accent);
    font-size: 0.88rem;
    font-weight: 500;
}

.lb-footer-support {
    font-size: 0.78rem;
    color: var(--lb-text-dim);
}

.lb-footer-nav-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.lb-footer-col-title {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--lb-text-muted);
    margin-bottom: 14px;
}

.lb-footer-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lb-footer-nav a {
    color: rgba(232, 237, 245, 0.6);
    font-size: 0.88rem;
    transition: color var(--lb-transition);
}

.lb-footer-nav a:hover {
    color: var(--lb-accent);
}

.lb-footer-section-title {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--lb-text-muted);
    margin-bottom: 14px;
}

.lb-payment-logos {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

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

.lb-pay-svg {
    height: 30px;
    width: auto;
    min-width: 60px;
}

.lb-provider-logos {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

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

.lb-prov-svg {
    height: 36px;
    width: auto;
}

.lb-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lb-footer-license {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.lb-license-badge {
    background: rgba(49, 205, 104, 0.1);
    border: 1px solid rgba(49, 205, 104, 0.25);
    color: var(--lb-accent);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.78rem;
    font-weight: 600;
}

.lb-license-text {
    font-size: 0.78rem;
    color: var(--lb-text-muted);
}

.lb-footer-legal p {
    font-size: 0.78rem;
    color: rgba(232, 237, 245, 0.4);
    line-height: 1.6;
    margin-bottom: 6px;
}

.lb-footer-link {
    color: rgba(232, 237, 245, 0.5);
}

.lb-copyright {
    color: rgba(232, 237, 245, 0.35) !important;
}

.lb-footer-bottom-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.lb-footer-bottom-links a {
    font-size: 0.78rem;
    color: rgba(232, 237, 245, 0.4);
}

.lb-footer-bottom-links a:hover {
    color: var(--lb-accent);
}

.lb-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.lb-widget-inner {
    background: linear-gradient(90deg, #052240, #082B53);
    border-top: 2px solid var(--lb-accent);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
}

.lb-widget-text {
    font-size: 0.9rem;
    color: #fff;
    font-weight: 500;
}

.lb-widget-text strong {
    color: var(--lb-accent);
}

.lb-widget-btn {
    display: inline-block;
    background: var(--lb-btn-signup);
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 0 20px rgba(49, 205, 104, 0.35);
    transition: all var(--lb-transition);
    white-space: nowrap;
}

.lb-widget-btn:hover {
    background: var(--lb-accent-hover);
    box-shadow: 0 0 30px rgba(49, 205, 104, 0.55);
    color: #fff;
    text-decoration: none;
    transform: scale(1.03);
}

.lb-widget-close {
    background: transparent;
    border: none;
    color: rgba(232, 237, 245, 0.5);
    font-size: 1rem;
    cursor: pointer;
    padding: 4px 8px;
    transition: color var(--lb-transition);
    line-height: 1;
}

.lb-widget-close:hover {
    color: #fff;
}

@keyframes lb-fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.lb-t3k8f {
    display: none;
}

.lb-qr7p2 {
    visibility: hidden;
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.lb-d9x4m[data-type="placeholder"] {
    content: '';
}

@media (max-width: 1024px) {
    .lb-jackpot-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lb-promo-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .lb-footer-nav-cols {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .lb-header-inner {
        grid-template-columns: auto auto auto;
        gap: 10px;
        padding: 0 14px;
        height: 60px;
    }

    .lb-header-nav-wrap {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--lb-header-bg);
        border-bottom: 1px solid var(--lb-card-border);
        padding: 16px 20px;
        z-index: 999;
    }

    .lb-header-nav-wrap.open {
        display: flex;
    }

    .lb-nav-list {
        flex-direction: column;
        gap: 4px;
        width: 100%;
    }

    .lb-nav-item a {
        display: block;
        padding: 10px 12px;
    }

    .lb-header-actions {
        gap: 6px;
    }

    .lb-online-counter {
        display: none;
    }

    .lb-burger {
        display: flex;
    }

    .lb-btn--login, .lb-btn--signup {
        padding: 8px 12px;
        font-size: 0.82rem;
    }

    .lb-hero {
        min-height: 360px;
    }

    .lb-hero-content {
        padding: 40px 20px;
    }

    .lb-promo-grid {
        grid-template-columns: 1fr;
    }

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

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

    .lb-footer-nav-cols {
        grid-template-columns: repeat(2, 1fr);
    }

    .lb-footer-top {
        gap: 28px;
    }

    .lb-widget-inner {
        flex-wrap: wrap;
        text-align: center;
        gap: 10px;
        padding: 12px 14px;
    }
}

@media (max-width: 480px) {
    .lb-jackpot-grid {
        grid-template-columns: 1fr 1fr;
    }

    .lb-jackpot-card {
        padding: 16px 12px;
    }

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

    .lb-slot-machine {
        padding: 0 4px;
    }

    .lb-h1 {
        font-size: 1.3rem;
    }
}

.jvcdfd {
    position: relative;
    max-width: 980px;
    margin: 48px auto;
    padding: 42px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .025), transparent 100%),
    linear-gradient(145deg, #071829 0%, #0a1d34 100%);
    border: 1px solid rgba(49, 205, 104, .14);
    box-shadow: 0 12px 50px rgba(0, 0, 0, .42),
    inset 0 1px 0 rgba(255, 255, 255, .03);
    overflow: hidden;
}

.jvcdfd::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(49, 205, 104, .08), transparent 26%),
    radial-gradient(circle at bottom left, rgba(59, 130, 246, .08), transparent 32%);
    pointer-events: none;
}

.jvcdfd > * {
    position: relative;
    z-index: 2;
}

.jvcdfd h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -.04em;
    color: #fff;
    margin-bottom: 24px;
    max-width: 860px;
}

.jvcdfd h2 {
    font-size: clamp(1.35rem, 3vw, 1.9rem);
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -.03em;
    color: #fff;
    margin-top: 46px;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(49, 205, 104, .14);
}

.jvcdfd p {
    font-size: 1rem;
    line-height: 1.9;
    color: #9fb1c9;
    margin-bottom: 18px;
}

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

.jvcdfd a {
    color: #31CD68;
    text-decoration: none;
    border-bottom: 1px solid rgba(49, 205, 104, .24);
    transition: color .2s ease,
    border-color .2s ease,
    opacity .2s ease;
}

.jvcdfd a:hover {
    color: #52e487;
    border-color: rgba(82, 228, 135, .5);
    opacity: 1;
}

.jvcdfd ul,
.jvcdfd ol {
    padding-left: 22px;
    margin-bottom: 20px;
}

.jvcdfd li {
    color: #9fb1c9;
    line-height: 1.8;
    margin-bottom: 8px;
}

.jvcdfd blockquote {
    margin: 28px 0;
    padding: 22px 24px;
    border-radius: 18px;
    border: 1px solid rgba(49, 205, 104, .16);
    background: rgba(49, 205, 104, .05);
    color: #d6e3f1;
    line-height: 1.8;
}

.jvcdfd table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 18px;
    margin: 28px 0;
    border: 1px solid rgba(49, 205, 104, .12);
}

.jvcdfd table th {
    background: rgba(49, 205, 104, .08);
    color: #fff;
    text-align: left;
    padding: 14px 16px;
    font-size: .82rem;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.jvcdfd table td {
    padding: 14px 16px;
    border-top: 1px solid rgba(255, 255, 255, .05);
    color: #9fb1c9;
    font-size: .94rem;
}

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

.jvcdfd img {
    width: 100%;
    border-radius: 20px;
    margin: 28px 0;
    border: 1px solid rgba(49, 205, 104, .12);
}

.jvcdfd hr {
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, .08);
    margin: 34px 0;
}

@media (max-width: 900px) {
    .jvcdfd {
        margin: 34px auto;
        padding: 34px 28px;
        border-radius: 24px;
    }

    .jvcdfd h1 {
        font-size: 2.1rem;
        margin-bottom: 22px;
    }

    .jvcdfd h2 {
        margin-top: 38px;
        margin-bottom: 16px;
    }

    .jvcdfd p {
        font-size: .96rem;
        line-height: 1.82;
    }
}

@media (max-width: 640px) {
    .jvcdfd {
        margin: 22px auto;
        padding: 24px 18px;
        border-radius: 20px;
    }

    .jvcdfd h1 {
        font-size: 1.55rem;
        line-height: 1.12;
        margin-bottom: 18px;
    }

    .jvcdfd h2 {
        font-size: 1.2rem;
        line-height: 1.24;
        margin-top: 30px;
        margin-bottom: 14px;
        padding-bottom: 10px;
    }

    .jvcdfd p,
    .jvcdfd li {
        font-size: .9rem;
        line-height: 1.75;
    }

    .jvcdfd blockquote {
        padding: 18px 16px;
        border-radius: 16px;
        font-size: .9rem;
    }

    .jvcdfd table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        border-radius: 16px;
    }

    .jvcdfd table th,
    .jvcdfd table td {
        padding: 12px 14px;
        font-size: .84rem;
    }

    .jvcdfd img {
        border-radius: 16px;
        margin: 22px 0;
    }
}

@media (max-width: 420px) {
    .jvcdfd {
        padding: 20px 14px;
        border-radius: 18px;
    }

    .jvcdfd h1 {
        font-size: 1.4rem;
    }

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

    .jvcdfd p,
    .jvcdfd li {
        font-size: .86rem;
    }
}
