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

:root {
    --lbx-bg: #1A1429;
    --lbx-hdr: #1C142F;
    --lbx-btn-login: #2D1239;
    --lbx-btn-reg: #613225;
    --lbx-text: #e8e0ff;
    --lbx-text-dim: #b0a0cc;
    --lbx-border: #3a2d55;
    --lbx-accent: #7c4dff;
    --lbx-gold: #f5c842;
    --lbx-green: #22c55e;
    --lbx-red: #ef4444;
    --lbx-card: #231a3a;
    --lbx-card2: #1e1535;
    --lbx-radius: 12px;
    --lbx-radius-sm: 8px;
    --lbx-shadow: 0 4px 24px rgba(0, 0, 0, .45);
    --lbx-trans: .22s ease
}

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

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

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

a:hover {
    color: var(--lbx-gold)
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', Roboto, Arial, sans-serif;
    font-weight: 700;
    line-height: 1.25;
    color: #fff
}

h1 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    margin-bottom: 1rem
}

h2 {
    font-size: clamp(1.4rem, 3vw, 2.1rem);
    margin-bottom: .85rem
}

h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    margin-bottom: .65rem
}

p {
    margin-bottom: 1rem
}

ul, ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem
}

li {
    margin-bottom: .4rem
}

.lbx-wrapper {
    display: grid;
    grid-template-rows:auto 1fr auto;
    min-height: 100vh
}

.lbx-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px
}

.lbx-header {
    background: var(--lbx-hdr);
    position: sticky;
    top: 0;
    z-index: 900;
    border-bottom: 1px solid var(--lbx-border);
    box-shadow: 0 2px 16px rgba(0, 0, 0, .5)
}

.lbx-header__inner {
    display: grid;
    grid-template-columns:auto 1fr auto auto;
    align-items: center;
    gap: 16px;
    padding: 10px 0;
    min-height: 64px
}

.lbx-header__logo {
    flex-shrink: 0
}

.lbx-header__logo img {
    height: 44px;
    width: auto;
    border-radius: 6px
}

.lbx-header__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-wrap: wrap
}

.lbx-nav__link {
    color: var(--lbx-text-dim);
    font-size: .875rem;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
    transition: background var(--lbx-trans), color var(--lbx-trans)
}

.lbx-nav__link:hover {
    color: #fff;
    background: rgba(255, 255, 255, .07)
}

.lbx-header__online {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .78rem;
    color: var(--lbx-text-dim);
    white-space: nowrap;
    background: rgba(34, 197, 94, .08);
    border: 1px solid rgba(34, 197, 94, .2);
    padding: 5px 10px;
    border-radius: 20px
}

.lbx-header__online-dot {
    width: 8px;
    height: 8px;
    background: var(--lbx-green);
    border-radius: 50%;
    animation: lbx-onlineBlink 1.8s infinite
}

.lbx-header__online span {
    font-weight: 700;
    color: var(--lbx-green)
}

.lbx-header__actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0
}

.lbx-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 38px;
    height: 38px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0
}

.lbx-burger__line {
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: var(--lbx-trans)
}

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

.lbx-burger.active .lbx-burger__line:nth-child(2) {
    opacity: 0
}

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

.lbx-mobile-menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--lbx-hdr);
    z-index: 850;
    flex-direction: column;
    padding: 24px 16px;
    gap: 8px;
    overflow-y: auto
}

.lbx-mobile-menu.active {
    display: flex;
    animation: lbx-slideDown .2s ease
}

.lbx-mobile-menu .lbx-nav__link {
    font-size: 1rem;
    padding: 12px 16px;
    border-radius: 8px;
    display: block;
    border-bottom: 1px solid var(--lbx-border)
}

.lbx-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: inherit;
    font-weight: 600;
    font-size: .875rem;
    padding: 9px 20px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all var(--lbx-trans);
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden
}

.lbx-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0);
    transition: background .15s
}

.lbx-btn:hover::after {
    background: rgba(255, 255, 255, .08)
}

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

.lbx-btn--login:hover {
    background: #3d1d52;
    color: #fff
}

.lbx-btn--reg {
    background: var(--lbx-btn-reg);
    color: #fff
}

.lbx-btn--reg:hover {
    background: #7a3e2d;
    color: #fff;
    animation: lbx-glow .5s ease
}

.lbx-btn--lg {
    padding: 13px 32px;
    font-size: 1rem;
    border-radius: 10px
}

.lbx-btn--xl {
    padding: 16px 40px;
    font-size: 1.1rem;
    border-radius: 12px
}

.lbx-btn--bonus {
    background: linear-gradient(135deg, #613225, #8b4513);
    color: #fff;
    border: 1px solid rgba(255, 200, 100, .2)
}

.lbx-btn--bonus:hover {
    background: linear-gradient(135deg, #7a3e2d, #a0522d);
    color: #fff
}

.lbx-btn--outline {
    background: transparent;
    border: 1px solid var(--lbx-border);
    color: var(--lbx-text)
}

.lbx-btn--outline:hover {
    border-color: var(--lbx-accent);
    color: var(--lbx-accent)
}

.lbx-btn--ghost {
    background: rgba(255, 255, 255, .06);
    color: #fff;
    border: 1px solid var(--lbx-border)
}

.lbx-btn--ghost:hover {
    background: rgba(255, 255, 255, .12)
}

.lbx-hero {
    position: relative;
    min-height: 520px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1A1429 0%, #2D1239 50%, #1C142F 100%)
}

.lbx-hero__bg {
    position: absolute;
    inset: 0;
    background-image: url('/lee-hero.png');
    background-size: cover;
    background-position: center;
    opacity: .22;
    transition: opacity 1s
}

.lbx-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26, 20, 41, .3) 0%, rgba(26, 20, 41, .75) 100%)
}

.lbx-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 720px;
    padding: 60px 24px;
    animation: lbx-fadeIn .8s ease
}

.lbx-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(97, 50, 37, .35);
    border: 1px solid rgba(245, 200, 66, .25);
    color: var(--lbx-gold);
    font-size: .82rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
    letter-spacing: .05em;
    text-transform: uppercase
}

.lbx-hero__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 12px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, .8)
}

.lbx-hero__title span {
    background: linear-gradient(135deg, #f5c842, #ff8c42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.lbx-hero__sub {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--lbx-text-dim);
    margin-bottom: 32px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto
}

.lbx-hero__actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap
}

.lbx-hero__trust {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 28px;
    color: var(--lbx-text-dim);
    font-size: .82rem
}

.lbx-hero__trust-item {
    display: flex;
    align-items: center;
    gap: 6px
}

.lbx-hero__trust-item svg {
    color: var(--lbx-green)
}

.lbx-section {
    padding: 56px 0
}

.lbx-section--sm {
    padding: 36px 0
}

.lbx-section__head {
    text-align: center;
    margin-bottom: 36px
}

.lbx-section__head h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 12px
}

.lbx-section__head h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 3px;
    background: linear-gradient(90deg, var(--lbx-btn-login), var(--lbx-btn-reg));
    border-radius: 2px
}

.lbx-section__sub {
    color: var(--lbx-text-dim);
    font-size: .95rem;
    margin-top: 8px
}

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

.lbx-pros-cons__col {
    background: var(--lbx-card);
    border-radius: var(--lbx-radius);
    padding: 24px;
    border: 1px solid var(--lbx-border);
    animation: lbx-fadeIn .6s ease
}

.lbx-pros-cons__col--pros {
    border-top: 3px solid var(--lbx-green)
}

.lbx-pros-cons__col--cons {
    border-top: 3px solid var(--lbx-red)
}

.lbx-pros-cons__title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px
}

.lbx-pros-cons__title--pros {
    color: var(--lbx-green)
}

.lbx-pros-cons__title--cons {
    color: var(--lbx-red)
}

.lbx-pros-cons__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.lbx-pros-cons__item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .9rem;
    color: var(--lbx-text);
    padding: 8px 10px;
    border-radius: var(--lbx-radius-sm);
    background: rgba(255, 255, 255, .03)
}

.lbx-pros-cons__icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px
}

.lbx-pros-cons__icon--pro {
    color: var(--lbx-green)
}

.lbx-pros-cons__icon--con {
    color: var(--lbx-red)
}

.lbx-winners {
    background: var(--lbx-card);
    border-radius: var(--lbx-radius);
    border: 1px solid var(--lbx-border);
    overflow: hidden
}

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

.lbx-winners__table {
    width: 100%;
    border-collapse: collapse;
    font-size: .875rem;
    text-align: left;
    min-width: 480px
}

.lbx-winners__table thead tr {
    background: rgba(45, 18, 57, .7);
    border-bottom: 2px solid var(--lbx-border)
}

.lbx-winners__table th {
    padding: 12px 16px;
    font-weight: 600;
    color: var(--lbx-text-dim);
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    white-space: nowrap
}

.lbx-winners__table td {
    padding: 10px 16px;
    border-bottom: 1px solid rgba(58, 45, 85, .35);
    vertical-align: middle
}

.lbx-winners__table tr:last-child td {
    border-bottom: none
}

.lbx-winners__table tr:hover td {
    background: rgba(255, 255, 255, .03)
}

.lbx-winners__rank {
    font-weight: 700;
    font-size: .95rem;
    text-align: center;
    width: 40px
}

.lbx-winners__rank--gold {
    color: var(--lbx-gold)
}

.lbx-winners__rank--silver {
    color: #c0c0c0
}

.lbx-winners__rank--bronze {
    color: #cd7f32
}

.lbx-winners__avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lbx-btn-login), var(--lbx-btn-reg));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .78rem;
    color: #fff;
    flex-shrink: 0
}

.lbx-winners__nick {
    font-weight: 600;
    color: #fff
}

.lbx-winners__game {
    color: var(--lbx-text-dim);
    font-size: .82rem
}

.lbx-winners__amount {
    font-weight: 700;
    color: var(--lbx-gold)
}

.lbx-winners__badge {
    display: inline-block;
    font-size: .7rem;
    padding: 2px 8px;
    border-radius: 10px;
    background: rgba(34, 197, 94, .12);
    color: var(--lbx-green);
    border: 1px solid rgba(34, 197, 94, .2)
}

.lbx-bonuses {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 20px
}

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

.lbx-bonus-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .5)
}

.lbx-bonus-card__top {
    padding: 28px 24px 20px;
    background: linear-gradient(135deg, var(--lbx-btn-login), #1a0b2e);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    position: relative;
    overflow: hidden
}

.lbx-bonus-card__top::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .04)
}

.lbx-bonus-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem
}

.lbx-bonus-card__label {
    font-size: .72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--lbx-gold);
    background: rgba(245, 200, 66, .1);
    border: 1px solid rgba(245, 200, 66, .2);
    padding: 3px 10px;
    border-radius: 10px
}

.lbx-bonus-card__amount {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    line-height: 1
}

.lbx-bonus-card__body {
    padding: 20px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.lbx-bonus-card__desc {
    font-size: .875rem;
    color: var(--lbx-text-dim);
    line-height: 1.55
}

.lbx-bonus-card__features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px
}

.lbx-bonus-card__features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .82rem;
    color: var(--lbx-text)
}

.lbx-bonus-card__features li::before {
    content: '✓';
    color: var(--lbx-green);
    font-weight: 700;
    flex-shrink: 0
}

.lbx-bonus-card__footer {
    padding: 0 24px 24px
}

.lbx-bonus-card__cta {
    display: block;
    text-align: center;
    background: var(--lbx-btn-reg);
    color: #fff;
    padding: 11px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: .9rem;
    transition: background var(--lbx-trans);
    text-decoration: none
}

.lbx-bonus-card__cta:hover {
    background: #7a3e2d;
    color: #fff
}

.lbx-bonuses-slider {
    display: none;
    position: relative
}

.lbx-bonuses-slider-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 12px
}

.lbx-bonuses-slider-track::-webkit-scrollbar {
    display: none
}

.lbx-bonuses-slider-track .lbx-bonus-card {
    min-width: 280px;
    scroll-snap-align: start;
    flex-shrink: 0
}

.lbx-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px
}

.lbx-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--lbx-border);
    border: none;
    cursor: pointer;
    transition: background var(--lbx-trans), transform var(--lbx-trans)
}

.lbx-slider-dot.active {
    background: var(--lbx-accent);
    transform: scale(1.3)
}

.lbx-wheel-section {
    background: var(--lbx-card2);
    border-radius: var(--lbx-radius);
    border: 1px solid var(--lbx-border);
    padding: 40px 24px;
    text-align: center
}

.lbx-wheel-wrap {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 820px;
    margin: 0 auto
}

.lbx-wheel-canvas-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px
}

.lbx-wheel-pointer {
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 28px solid var(--lbx-gold);
    filter: drop-shadow(0 2px 8px rgba(245, 200, 66, .5));
    flex-shrink: 0
}

#lbxWheel {
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--lbx-border), 0 0 32px rgba(124, 77, 255, .25);
    display: block
}

.lbx-wheel-info {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 20px
}

.lbx-wheel-info h3 {
    font-size: 1.4rem;
    color: #fff
}

.lbx-wheel-info p {
    color: var(--lbx-text-dim);
    font-size: .9rem
}

.lbx-wheel__result {
    display: none;
    padding: 20px;
    border-radius: var(--lbx-radius);
    font-size: 1rem;
    font-weight: 600;
    animation: lbx-scaleIn .3s ease
}

.lbx-wheel__result--win {
    background: rgba(34, 197, 94, .12);
    border: 1px solid rgba(34, 197, 94, .3);
    color: var(--lbx-green)
}

.lbx-wheel__result--lose {
    background: rgba(239, 68, 68, .1);
    border: 1px solid rgba(239, 68, 68, .25);
    color: var(--lbx-red)
}

.lbx-wheel__result-title {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 6px
}

.lbx-wheel__result-bonus {
    font-size: .95rem;
    color: var(--lbx-text-dim)
}

.lbx-wheel-spins {
    font-size: .82rem;
    color: var(--lbx-text-dim);
    margin-top: 4px
}

.lbx-reviews {
    display: grid;
    grid-template-columns:repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px
}

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

.lbx-review-card:hover {
    transform: translateY(-3px)
}

.lbx-review-card__head {
    display: flex;
    align-items: center;
    gap: 12px
}

.lbx-review-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #613225, #2D1239);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    flex-shrink: 0
}

.lbx-review-card__meta {
    flex: 1
}

.lbx-review-card__name {
    font-weight: 700;
    font-size: .95rem;
    color: #fff;
    margin-bottom: 2px
}

.lbx-review-card__date {
    font-size: .75rem;
    color: var(--lbx-text-dim)
}

.lbx-review-card__stars {
    display: flex;
    gap: 2px
}

.lbx-review-card__stars svg {
    color: var(--lbx-gold)
}

.lbx-review-card__text {
    font-size: .875rem;
    color: var(--lbx-text-dim);
    line-height: 1.65
}

.lbx-review-card__game {
    font-size: .75rem;
    background: rgba(124, 77, 255, .1);
    color: var(--lbx-accent);
    border: 1px solid rgba(124, 77, 255, .2);
    padding: 2px 10px;
    border-radius: 10px;
    display: inline-block;
    align-self: flex-start
}

.lbx-review-form {
    background: var(--lbx-card);
    border-radius: var(--lbx-radius);
    border: 1px solid var(--lbx-border);
    padding: 32px;
    max-width: 600px;
    margin: 32px auto 0
}

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

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

.lbx-field {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.lbx-field label {
    font-size: .82rem;
    font-weight: 600;
    color: var(--lbx-text-dim);
    text-transform: uppercase;
    letter-spacing: .05em
}

.lbx-input, .lbx-textarea {
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--lbx-border);
    border-radius: var(--lbx-radius-sm);
    color: #fff;
    font-family: inherit;
    font-size: .9rem;
    padding: 10px 14px;
    width: 100%;
    transition: border-color var(--lbx-trans)
}

.lbx-input:focus, .lbx-textarea:focus {
    outline: none;
    border-color: var(--lbx-accent);
    background: rgba(255, 255, 255, .07)
}

.lbx-input::placeholder, .lbx-textarea::placeholder {
    color: rgba(255, 255, 255, .25)
}

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

.lbx-form__submit {
    background: var(--lbx-btn-reg);
    color: #fff;
    border: none;
    border-radius: var(--lbx-radius-sm);
    font-family: inherit;
    font-weight: 700;
    font-size: .95rem;
    padding: 12px 28px;
    cursor: pointer;
    align-self: flex-start;
    transition: background var(--lbx-trans)
}

.lbx-form__submit:hover {
    background: #7a3e2d
}

.lbx-form__success {
    display: none;
    background: rgba(34, 197, 94, .12);
    border: 1px solid rgba(34, 197, 94, .3);
    color: var(--lbx-green);
    border-radius: var(--lbx-radius-sm);
    padding: 14px 18px;
    font-size: .9rem;
    font-weight: 600;
    animation: lbx-scaleIn .3s ease
}

.lbx-footer {
    background: var(--lbx-hdr);
    border-top: 1px solid var(--lbx-border);
    padding: 48px 0 24px
}

.lbx-footer__top {
    display: grid;
    grid-template-columns:auto 1fr auto;
    gap: 32px;
    align-items: start;
    margin-bottom: 36px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--lbx-border)
}

.lbx-footer__brand {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.lbx-footer__brand img {
    height: 38px;
    width: auto;
    border-radius: 5px
}

.lbx-footer__brand-text {
    font-size: .8rem;
    color: var(--lbx-text-dim);
    max-width: 220px;
    line-height: 1.5
}

.lbx-footer__nav {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 8px 24px;
    justify-content: center
}

.lbx-footer__nav-link {
    color: var(--lbx-text-dim);
    font-size: .85rem;
    padding: 4px 0;
    transition: color var(--lbx-trans)
}

.lbx-footer__nav-link:hover {
    color: #fff
}

.lbx-footer__contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: .85rem;
    color: var(--lbx-text-dim)
}

.lbx-footer__contact a {
    color: var(--lbx-text-dim);
    transition: color var(--lbx-trans)
}

.lbx-footer__contact a:hover {
    color: var(--lbx-accent)
}

.lbx-footer__logos-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px
}

.lbx-footer__logo-badge {
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--lbx-border);
    border-radius: var(--lbx-radius-sm);
    padding: 8px 16px;
    font-size: .78rem;
    font-weight: 600;
    color: var(--lbx-text-dim);
    white-space: nowrap
}

.lbx-footer__logo-badge:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, .2)
}

.lbx-footer__logos-section {
    margin-bottom: 16px
}

.lbx-footer__logos-title {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(176, 160, 204, .5);
    text-align: center;
    margin-bottom: 10px
}

.lbx-footer__bottom {
    text-align: center;
    font-size: .75rem;
    color: rgba(176, 160, 204, .45);
    line-height: 1.7;
    padding-top: 20px;
    border-top: 1px solid var(--lbx-border)
}

.lbx-footer__license {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
    flex-wrap: wrap
}

.lbx-footer__license-badge {
    background: rgba(97, 50, 37, .2);
    border: 1px solid rgba(97, 50, 37, .4);
    color: rgba(245, 200, 66, .7);
    font-size: .72rem;
    padding: 3px 10px;
    border-radius: 10px
}

.lbx-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(90deg, #1C142F, #2D1239);
    border-top: 1px solid rgba(97, 50, 37, .5);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    animation: lbx-widgetBounce 3s ease 2s
}

.lbx-widget__text {
    font-size: .9rem;
    color: var(--lbx-text);
    font-weight: 500;
    white-space: nowrap
}

.lbx-widget__text strong {
    color: var(--lbx-gold)
}

.lbx-widget__close {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--lbx-text-dim);
    cursor: pointer;
    font-size: 1.1rem;
    padding: 4px 8px;
    line-height: 1
}

.lbx-widget__close:hover {
    color: #fff
}

.lbx-widget a {
    text-decoration: none
}

.lbx-content-area {
    animation: lbx-fadeIn .7s ease
}

.lbx-content-area h1, .lbx-content-area h2, .lbx-content-area h3, .lbx-content-area h4, .lbx-content-area h5, .lbx-content-area h6 {
    margin: 1.5em 0 .6em;
    color: #fff;
    line-height: 1.3
}

.lbx-content-area h1 {
    font-size: 1.9rem
}

.lbx-content-area h2 {
    font-size: 1.6rem;
    padding-bottom: .4em;
    border-bottom: 1px solid var(--lbx-border)
}

.lbx-content-area h3 {
    font-size: 1.25rem
}

.lbx-content-area p {
    margin-bottom: 1rem;
    color: var(--lbx-text);
    font-size: .95rem
}

.lbx-content-area ul, .lbx-content-area ol {
    margin: 1rem 0;
    padding-left: 1.75rem
}

.lbx-content-area li {
    margin-bottom: .5rem;
    color: var(--lbx-text);
    font-size: .95rem
}

.lbx-content-area table {
    width: auto;
    min-width: 360px;
    max-width: 100%;
    margin: 1.5rem auto;
    border-collapse: collapse;
    font-size: .9rem;
    text-align: left;
    border: 1px solid var(--lbx-border)
}

.lbx-content-area th {
    background: rgba(45, 18, 57, .7);
    color: var(--lbx-text-dim);
    font-weight: 600;
    padding: 10px 16px;
    border: 1px solid var(--lbx-border)
}

.lbx-content-area td {
    padding: 9px 16px;
    border: 1px solid var(--lbx-border);
    color: var(--lbx-text)
}

.lbx-content-area tr:hover td {
    background: rgba(255, 255, 255, .03)
}

.lbx-content-area a {
    color: var(--lbx-accent);
    text-decoration: underline;
    text-decoration-color: rgba(124, 77, 255, .4)
}

.lbx-content-area a:hover {
    color: var(--lbx-gold)
}

.lbx-content-area blockquote {
    margin: 1.5rem 0;
    padding: 16px 20px;
    border-left: 3px solid var(--lbx-accent);
    background: rgba(124, 77, 255, .07);
    border-radius: 0 var(--lbx-radius-sm) var(--lbx-radius-sm) 0;
    color: var(--lbx-text-dim);
    font-style: italic
}

.lbx-content-area img {
    border-radius: var(--lbx-radius-sm);
    margin: 1rem auto
}

.lbx-content-area strong, .lbx-content-area b {
    color: #fff;
    font-weight: 700
}

.lbx-content-area em, .lbx-content-area i {
    color: var(--lbx-text-dim);
    font-style: italic
}

.lbx-content-area hr {
    border: none;
    border-top: 1px solid var(--lbx-border);
    margin: 2rem 0
}

.lbx-author-block {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--lbx-card);
    border-radius: var(--lbx-radius);
    padding: 20px 24px;
    border: 1px solid var(--lbx-border);
    margin-bottom: 32px
}

.lbx-author-block__avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2D1239, #613225);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    font-size: 1.1rem;
    flex-shrink: 0
}

.lbx-author-block__info h4 {
    font-size: .95rem;
    color: #fff;
    margin-bottom: 2px
}

.lbx-author-block__info p {
    font-size: .8rem;
    color: var(--lbx-text-dim);
    margin: 0
}

.lbx-author-block__info a {
    font-size: .8rem;
    color: var(--lbx-accent)
}

.lbx-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--lbx-card);
    border: 1px solid var(--lbx-border);
    border-radius: var(--lbx-radius);
    padding: 12px 20px;
    margin-bottom: 24px
}

.lbx-rating-badge__score {
    font-size: 2rem;
    font-weight: 900;
    color: var(--lbx-gold);
    line-height: 1
}

.lbx-rating-badge__label {
    font-size: .8rem;
    color: var(--lbx-text-dim)
}

.lbx-rating-badge__stars {
    display: flex;
    gap: 2px
}

.lbx-rating-badge__stars svg {
    color: var(--lbx-gold)
}

.lbx-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .8rem;
    color: var(--lbx-text-dim);
    margin-bottom: 24px;
    flex-wrap: wrap
}

.lbx-breadcrumb a {
    color: var(--lbx-text-dim);
    transition: color var(--lbx-trans)
}

.lbx-breadcrumb a:hover {
    color: #fff
}

.lbx-breadcrumb__sep {
    color: rgba(176, 160, 204, .3)
}

.lbx-box {
    background: var(--lbx-card);
    border-radius: var(--lbx-radius);
    border: 1px solid var(--lbx-border);
    padding: 24px;
    margin-bottom: 20px
}

.lbx-separator {
    border: none;
    border-top: 1px solid var(--lbx-border);
    margin: 0
}

body.lbx-no-scroll {
    overflow: hidden
}

.zq9m-hidden {
    display: none !important
}

.rp3k-wrapper {
    position: relative
}

.ux7t-flex {
    display: flex
}

.bm4s-grid {
    display: grid
}

.nc8w-spacer {
    height: 1px;
    width: 100%
}

.dl2v-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1
}

.wp-block-group {
    margin-bottom: 0
}

.wp-block-image {
    margin: 0
}

.entry-content {
    padding: 0
}

.site-header {
    margin: 0
}

.elementor-widget {
    margin: 0
}

.entry-meta {
    color: var(--lbx-text-dim)
}

@media (max-width: 768px) {
    .lbx-header__nav {
        display: none
    }

    .lbx-header__inner {
        grid-template-columns:auto 1fr auto auto
    }

    .lbx-burger {
        display: flex
    }

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

    .lbx-bonuses {
        display: none
    }

    .lbx-bonuses-slider {
        display: block
    }

    .lbx-wheel-wrap {
        grid-template-columns:1fr
    }

    .lbx-footer__top {
        grid-template-columns:1fr
    }

    .lbx-footer__nav {
        grid-template-columns:1fr 1fr
    }

    .lbx-widget {
        flex-wrap: wrap;
        gap: 8px;
        text-align: center;
        padding: 12px 40px 12px 16px
    }

    .lbx-widget__text {
        font-size: .82rem
    }

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

@media (max-width: 480px) {
    .lbx-hero {
        min-height: 440px
    }

    .lbx-hero__actions {
        flex-direction: column;
        align-items: center
    }

    .lbx-header__online {
        display: none
    }

    .lbx-footer__nav {
        grid-template-columns:1fr
    }

    .lbx-review-form {
        padding: 20px
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .lbx-bonuses {
        grid-template-columns:1fr 1fr
    }

    .lbx-footer__top {
        grid-template-columns:auto 1fr
    }

    .lbx-footer__top > :last-child {
        grid-column: span 2
    }
}

/* =========================
   GLOBAL MOBILE FIXES
========================= */

@media (max-width: 768px) {

    html,
    body {
        overflow-x: hidden;
    }

    * {
        min-width: 0;
    }

    .lbx-container {
        padding: 0 14px;
    }

    .lbx-section {
        padding: 42px 0;
        overflow: hidden;
    }

    .lbx-section--sm {
        padding: 28px 0;
    }

    .lbx-section__head {
        margin-bottom: 24px;
    }

    .lbx-section__head h2 {
        font-size: 1.45rem;
        line-height: 1.3;
        overflow-wrap: anywhere;
    }

    .lbx-section__sub {
        font-size: .9rem;
        line-height: 1.6;
        overflow-wrap: anywhere;
    }

    /* =========================
       HEADER
    ========================= */
    .lbx-header__inner {
        grid-template-columns:auto 1fr auto;
        gap: 10px;
        min-height: 58px;
    }

    .lbx-header__logo img {
        height: 36px;
        width: auto;
    }

    .lbx-header__online {
        display: none;
    }

    .lbx-header__actions {
        gap: 6px;
    }

    .lbx-header__actions .lbx-btn {
        display: none;
    }

    .lbx-burger {
        display: flex;
        width: 40px;
        height: 40px;
    }

    .lbx-mobile-menu {
        top: 58px;
        padding: 18px 14px 24px;
    }

    .lbx-mobile-menu .lbx-nav__link {
        font-size: .95rem;
        padding: 14px 12px;
    }

    /* =========================
       HERO
    ========================= */
    .lbx-hero {
        min-height: auto;
        padding: 34px 0;
    }

    .lbx-hero__content {
        padding: 20px 8px;
    }

    .lbx-hero__badge {
        font-size: .68rem;
        line-height: 1.4;
        padding: 6px 12px;
        text-align: center;
    }

    .lbx-hero__title {
        font-size: 2rem;
        line-height: 1.15;
    }

    .lbx-hero__sub {
        font-size: .95rem;
        line-height: 1.6;
        margin-bottom: 22px;
    }

    .lbx-hero__actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .lbx-hero__actions .lbx-btn {
        width: 100%;
    }

    .lbx-hero__trust {
        gap: 10px;
        margin-top: 22px;
        justify-content: flex-start;
    }

    .lbx-hero__trust-item {
        width: 100%;
        font-size: .78rem;
    }

    /* =========================
       BUTTONS
    ========================= */
    .lbx-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 16px;
        font-size: .92rem;
        white-space: normal;
        text-align: center;
    }

    .lbx-btn--lg,
    .lbx-btn--xl {
        width: 100%;
        padding: 14px 18px;
        font-size: .95rem;
    }

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

    .lbx-pros-cons__col {
        padding: 18px 16px;
    }

    .lbx-pros-cons__title {
        font-size: 1rem;
    }

    .lbx-pros-cons__item {
        font-size: .85rem;
        line-height: 1.5;
        padding: 10px;
    }

    /* =========================
       TABLES
    ========================= */
    .lbx-winners {
        overflow: hidden;
        border-radius: 14px;
    }

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

    .lbx-winners__table {
        min-width: 720px;
    }

    .lbx-winners__table th,
    .lbx-winners__table td {
        padding: 10px 12px;
        font-size: .78rem;
        white-space: nowrap;
    }

    .lbx-content-area {
        overflow: hidden;
    }

    .lbx-content-area table {
        display: block;
        overflow-x: auto;
        width: 100%;
        min-width: 520px;
        margin: 1rem 0;
    }

    .lbx-content-area th,
    .lbx-content-area td {
        white-space: nowrap;
        font-size: .82rem;
        padding: 8px 10px;
    }

    /* =========================
       BONUS CARDS
    ========================= */
    .lbx-bonuses {
        display: none;
    }

    .lbx-bonuses-slider {
        display: block;
    }

    .lbx-bonuses-slider-track {
        gap: 14px;
        padding-bottom: 10px;
    }

    .lbx-bonuses-slider-track .lbx-bonus-card {
        min-width: 86%;
        max-width: 86%;
    }

    .lbx-bonus-card {
        border-radius: 16px;
    }

    .lbx-bonus-card__top {
        padding: 22px 18px 16px;
    }

    .lbx-bonus-card__amount {
        font-size: 1.6rem;
        line-height: 1.1;
    }

    .lbx-bonus-card__body {
        padding: 16px 18px;
    }

    .lbx-bonus-card__footer {
        padding: 0 18px 18px;
    }

    .lbx-bonus-card__cta {
        width: 100%;
    }

    /* =========================
       WHEEL
    ========================= */
    .lbx-wheel-section {
        padding: 22px 14px;
        border-radius: 16px;
    }

    .lbx-wheel-wrap {
        grid-template-columns:1fr;
        gap: 26px;
    }

    #lbxWheel {
        width: 100%;
        max-width: 260px;
        height: auto;
    }

    .lbx-wheel-info {
        text-align: center;
        gap: 16px;
    }

    .lbx-wheel-info h3 {
        font-size: 1.2rem;
    }

    .lbx-wheel-info p {
        font-size: .88rem;
        line-height: 1.6;
    }

    .lbx-wheel__result {
        padding: 16px;
    }

    /* =========================
       CONTENT
    ========================= */
    .lbx-box {
        padding: 18px 16px;
        border-radius: 16px;
    }

    .lbx-content-area h1 {
        font-size: 1.5rem;
    }

    .lbx-content-area h2 {
        font-size: 1.3rem;
    }

    .lbx-content-area h3 {
        font-size: 1.1rem;
    }

    .lbx-content-area p,
    .lbx-content-area li {
        font-size: .9rem;
        line-height: 1.7;
        overflow-wrap: anywhere;
    }

    .lbx-content-area blockquote {
        padding: 14px;
        font-size: .88rem;
    }

    /* =========================
       REVIEWS
    ========================= */
    .lbx-reviews {
        grid-template-columns:1fr;
        gap: 16px;
    }

    .lbx-review-card {
        padding: 18px 16px;
    }

    .lbx-review-card__text {
        font-size: .86rem;
    }

    /* =========================
       REVIEW FORM
    ========================= */
    .lbx-review-form {
        padding: 20px 16px;
        margin-top: 22px;
        border-radius: 16px;
    }

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

    .lbx-form__submit {
        width: 100%;
        justify-content: center;
    }

    .lbx-footer {
        padding: 34px 0 100px;
    }

    .lbx-footer__top {
        grid-template-columns:1fr;
        gap: 24px;
        text-align: center;
    }

    .lbx-footer__brand {
        align-items: center;
    }

    .lbx-footer__brand-text {
        max-width: 100%;
    }

    .lbx-footer__nav {
        grid-template-columns:1fr;
        gap: 6px;
    }

    .lbx-footer__nav-link {
        padding: 8px 0;
    }

    .lbx-footer__contact {
        align-items: center;
    }

    .lbx-footer__logos-row {
        gap: 8px;
    }

    .lbx-footer__logo-badge {
        font-size: .72rem;
        padding: 7px 12px;
    }

    .lbx-footer__bottom {
        font-size: .7rem;
        line-height: 1.7;
    }

    .lbx-widget {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 14px 16px 16px;
    }

    .lbx-widget__text {
        white-space: normal;
        text-align: center;
        font-size: .82rem;
        line-height: 1.5;
    }

    .lbx-widget .lbx-btn {
        width: 100%;
    }

    .lbx-widget__close {
        top: 10px;
        right: 10px;
        transform: none;
    }
}


@media (max-width: 480px) {

    .lbx-container {
        padding: 0 12px;
    }

    .lbx-section {
        padding: 34px 0;
    }

    .lbx-hero__title {
        font-size: 1.7rem;
    }

    .lbx-hero__sub {
        font-size: .88rem;
    }

    .lbx-section__head h2 {
        font-size: 1.25rem;
    }

    .lbx-bonus-card__amount {
        font-size: 1.35rem;
    }

    .lbx-bonuses-slider-track .lbx-bonus-card {
        min-width: 92%;
        max-width: 92%;
    }

    .lbx-review-card,
    .lbx-box,
    .lbx-review-form,
    .lbx-pros-cons__col {
        padding: 16px 14px;
    }

    #lbxWheel {
        max-width: 220px;
    }

    .lbx-footer {
        padding-bottom: 110px;
    }
}

.lbx-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
}

body {
    padding-top: 72px;
}

@media (max-width: 768px) {

    body {
        padding-top: 60px;
    }

    .lbx-header {
        height: 60px;
    }

    .lbx-mobile-menu {
        top: 60px;
        height: calc(100dvh - 60px);
    }

    .lbx-header__inner {
        min-height: 60px;
    }
}