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

:root {
    --clr-bg: #1A1429;
    --clr-header: #1C142F;
    --clr-btn-login: #2D1239;
    --clr-btn-reg: #613225;
    --clr-gold: #D4A843;
    --clr-gold-light: #F5C842;
    --clr-text: #E8E0F0;
    --clr-text-muted: #A89FC0;
    --clr-border: #2E2150;
    --clr-card: #221840;
    --clr-card2: #1E1636;
    --radius: 12px;
    --radius-sm: 8px;
    --font-main: 'Inter', Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
    background: var(--clr-bg)
}

body {
    font-family: var(--font-main);
    background: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.6;
    overflow-x: hidden
}

a {
    color: var(--clr-gold);
    text-decoration: none;
    transition: color .2s
}

a:hover {
    color: var(--clr-gold-light)
}

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

.lb-wrap {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px
}

.lb-hdr {
    background: var(--clr-header);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .5)
}

.lb-hdr__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 16px;
    max-width: 1280px;
    margin: 0 auto
}

.lb-hdr__logo img {
    height: 44px;
    width: auto;
    border-radius: 6px
}

.lb-hdr__nav {
    display: flex;
    align-items: center;
    gap: 24px
}

.lb-hdr__nav a {
    color: var(--clr-text);
    font-size: .9rem;
    font-weight: 500;
    transition: color .2s;
    white-space: nowrap
}

.lb-hdr__nav a:hover {
    color: var(--clr-gold)
}

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

.lb-online {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .78rem;
    color: var(--clr-text-muted);
    white-space: nowrap
}

.lb-online__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3ecf4a;
    animation: pulse 1.8s infinite
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(62, 207, 74, .5)
    }
    50% {
        box-shadow: 0 0 0 5px rgba(62, 207, 74, 0)
    }
}

.lb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: .85rem;
    padding: 8px 18px;
    transition: transform .15s, box-shadow .15s, filter .15s;
    text-decoration: none;
    white-space: nowrap
}

.lb-btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.15)
}

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

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

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

.lb-btn--gold {
    background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-light));
    color: #1A1429;
    font-weight: 700
}

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

.lb-btn--xl {
    padding: 16px 40px;
    font-size: 1.1rem;
    border-radius: var(--radius)
}

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

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

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

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

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

.lb-mob-menu {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--clr-header);
    z-index: 99;
    padding: 20px 16px;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .5)
}

.lb-mob-menu.open {
    display: flex
}

.lb-mob-menu a {
    color: var(--clr-text);
    font-size: 1rem;
    padding: 10px 0;
    border-bottom: 1px solid var(--clr-border)
}

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

.lb-hero__bg {
    position: absolute;
    inset: 0;
    background-image: url(/bet-hero.jpg);
    background-size: cover;
    background-position: center;
    filter: brightness(.55)
}

.lb-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 20, 41, .85) 0%, rgba(44, 18, 57, .6) 100%)
}

.lb-hero__content {
    position: relative;
    z-index: 1;
    max-width: 680px;
    padding: 80px 16px 80px
}

.lb-hero__badge {
    display: inline-block;
    background: var(--clr-btn-reg);
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
    letter-spacing: .5px;
    text-transform: uppercase
}

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

.lb-hero__title span {
    color: var(--clr-gold)
}

.lb-hero__sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .85);
    margin-bottom: 28px;
    line-height: 1.7
}

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

.lb-hero__wrap {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px
}

.lb-section {
    padding: 60px 0
}

.lb-section__title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px
}

.lb-section__sub {
    font-size: .95rem;
    color: var(--clr-text-muted);
    margin-bottom: 32px
}

.lb-section__head {
    margin-bottom: 32px
}

.lb-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--clr-border);
    margin: 0 0 40px
}

.lb-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 560px
}

.lb-table th {
    background: var(--clr-header);
    color: var(--clr-gold);
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: 12px 16px;
    text-align: left
}

.lb-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--clr-border);
    font-size: .9rem;
    line-height: 1.5;
    vertical-align: top
}

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

.lb-table tr:nth-child(even) td {
    background: rgba(255, 255, 255, .03)
}

.lb-table td:first-child {
    color: var(--clr-text-muted);
    font-weight: 500;
    width: 40%
}

.lb-table td:last-child {
    color: var(--clr-text);
    font-weight: 500
}

.lb-table .lb-badge {
    display: inline-block;
    background: rgba(212, 168, 67, .15);
    color: var(--clr-gold);
    border: 1px solid rgba(212, 168, 67, .3);
    border-radius: 4px;
    padding: 2px 8px;
    font-size: .78rem;
    font-weight: 600
}

.lb-table .lb-badge--green {
    background: rgba(62, 207, 74, .1);
    color: #3ecf4a;
    border-color: rgba(62, 207, 74, .25)
}

.lb-tournaments {
    display: flex;
    gap: 20px;
    margin-bottom: 40px
}

.lb-tourn-card {
    flex: 1;
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform .2s, box-shadow .2s;
    position: relative;
    overflow: hidden
}

.lb-tourn-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--clr-gold), var(--clr-btn-reg))
}

.lb-tourn-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .4)
}

.lb-tourn-card__badge {
    display: inline-block;
    background: rgba(97, 50, 37, .5);
    color: #F5A87A;
    border: 1px solid rgba(97, 50, 37, .8);
    border-radius: 4px;
    padding: 3px 10px;
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    align-self: flex-start
}

.lb-tourn-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff
}

.lb-tourn-card__desc {
    font-size: .875rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
    flex: 1
}

.lb-tourn-card__prize {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--clr-gold)
}

.lb-tourn-card__prize-label {
    font-size: .75rem;
    color: var(--clr-text-muted);
    margin-bottom: 2px
}

.lb-tourn-card__timer {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-top: auto
}

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

.lb-timer__unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, .3);
    border-radius: 6px;
    padding: 4px 8px;
    min-width: 38px
}

.lb-timer__num {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    font-variant-numeric: tabular-nums
}

.lb-timer__label {
    font-size: .6rem;
    color: var(--clr-text-muted);
    text-transform: uppercase
}

.lb-timer__sep {
    font-size: 1rem;
    color: var(--clr-gold);
    font-weight: 700;
    margin-top: -4px
}

.lb-games {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px
}

.lb-game-card {
    flex: 1;
    min-width: 140px;
    max-width: 220px;
    background: var(--clr-card2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .2s, box-shadow .2s
}

.lb-game-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .5)
}

.lb-game-card__img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover
}

.lb-game-card__body {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1
}

.lb-game-card__title {
    font-size: .875rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.3
}

.lb-game-card__provider {
    font-size: .75rem;
    color: var(--clr-text-muted)
}

.lb-game-card__btn {
    margin-top: auto
}

.lb-slot-game {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 32px;
    max-width: 480px;
    margin: 0 auto 40px;
    text-align: center
}

.lb-slot-game__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px
}

.lb-slot__reels {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 24px
}

.lb-slot__reel {
    width: 80px;
    height: 80px;
    background: linear-gradient(180deg, #0d0920, #1a1429);
    border: 2px solid var(--clr-border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    transition: all .1s;
    overflow: hidden
}

.lb-slot__reel.spinning {
    animation: spin-reel .08s steps(1) infinite
}

@keyframes spin-reel {
    0% {
        filter: blur(2px)
    }
    100% {
        filter: blur(0)
    }
}

.lb-slot__spin-btn {
    width: 100%
}

.lb-slot__result {
    margin-top: 20px;
    padding: 16px;
    border-radius: var(--radius-sm);
    display: none
}

.lb-slot__result.win {
    display: block;
    background: rgba(62, 207, 74, .1);
    border: 1px solid rgba(62, 207, 74, .3)
}

.lb-slot__result.lose {
    display: block;
    background: rgba(97, 50, 37, .15);
    border: 1px solid rgba(97, 50, 37, .3)
}

.lb-slot__result-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px
}

.lb-slot__result.win .lb-slot__result-title {
    color: #3ecf4a
}

.lb-slot__result.lose .lb-slot__result-title {
    color: #F5A87A
}

.lb-slot__result-text {
    font-size: .875rem;
    color: var(--clr-text-muted);
    margin-bottom: 12px
}

.lb-faq {
    max-width: 860px;
    margin: 0 auto 40px
}

.lb-faq__item {
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
    overflow: hidden;
    transition: border-color .2s
}

.lb-faq__item.open {
    border-color: rgba(212, 168, 67, .4)
}

.lb-faq__q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    cursor: pointer;
    background: var(--clr-card2);
    user-select: none;
    gap: 12px
}

.lb-faq__q-text {
    font-size: .95rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.4
}

.lb-faq__icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--clr-btn-login);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .3s, background .2s
}

.lb-faq__icon svg {
    width: 12px;
    height: 12px;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    transition: transform .3s
}

.lb-faq__item.open .lb-faq__icon {
    background: var(--clr-gold)
}

.lb-faq__item.open .lb-faq__icon svg {
    stroke: #1A1429;
    transform: rotate(180deg)
}

.lb-faq__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .3s
}

.lb-faq__a-inner {
    padding: 0 20px 18px;
    font-size: .9rem;
    color: var(--clr-text-muted);
    line-height: 1.7
}

.lb-faq__item.open .lb-faq__a {
    max-height: 600px
}

.lb-content-body {
    background: var(--clr-card2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 32px 28px;
    margin-bottom: 40px
}

.lb-content-body h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin: 24px 0 12px
}

.lb-content-body h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--clr-gold);
    margin: 20px 0 10px
}

.lb-content-body p {
    font-size: .9rem;
    color: var(--clr-text-muted);
    line-height: 1.8;
    margin-bottom: 12px
}

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

.lb-content-body li {
    font-size: .9rem;
    color: var(--clr-text-muted);
    line-height: 1.7
}

.lb-content-body a {
    color: var(--clr-gold)
}

.lb-content-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    border-radius: 8px;
    overflow: hidden
}

.lb-content-body table th {
    background: var(--clr-header);
    color: var(--clr-gold);
    padding: 10px 14px;
    text-align: left;
    font-size: .85rem
}

.lb-content-body table td {
    padding: 10px 14px;
    border-bottom: 1px solid var(--clr-border);
    font-size: .875rem;
    color: var(--clr-text-muted)
}

.lb-content-body strong {
    color: var(--clr-text);
    font-weight: 600
}

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

.lb-author__avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--clr-gold);
    flex-shrink: 0
}

.lb-author__name {
    font-weight: 700;
    color: #fff;
    font-size: .95rem;
    margin-bottom: 2px
}

.lb-author__bio {
    font-size: .8rem;
    color: var(--clr-text-muted);
    line-height: 1.5
}

.lb-author__link {
    font-size: .8rem;
    color: var(--clr-gold)
}

.lb-ftr {
    background: var(--clr-header);
    padding: 48px 0 24px;
    margin-top: 40px
}

.lb-ftr__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px
}

.lb-ftr__top {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap
}

.lb-ftr__logo img {
    height: 40px;
    border-radius: 6px;
    margin-bottom: 12px
}

.lb-ftr__tagline {
    font-size: .82rem;
    color: var(--clr-text-muted);
    max-width: 240px;
    line-height: 1.6
}

.lb-ftr__col {
    flex: 1;
    min-width: 140px
}

.lb-ftr__col-title {
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: var(--clr-gold);
    margin-bottom: 14px
}

.lb-ftr__col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.lb-ftr__col ul li a {
    font-size: .85rem;
    color: var(--clr-text-muted);
    transition: color .2s
}

.lb-ftr__col ul li a:hover {
    color: var(--clr-text)
}

.lb-ftr__divider {
    border: none;
    border-top: 1px solid var(--clr-border);
    margin: 24px 0
}

.lb-ftr__logos {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin: 16px 0
}

.lb-ftr__logo-item {
    background: rgba(255, 255, 255, .07);
    border: 1px solid var(--clr-border);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: .75rem;
    color: var(--clr-text-muted);
    font-weight: 600;
    white-space: nowrap
}

.lb-ftr__section-label {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--clr-text-muted);
    margin-bottom: 8px
}

.lb-ftr__legal {
    font-size: .75rem;
    color: rgba(168, 159, 192, .55);
    line-height: 1.7;
    margin-top: 20px
}

.lb-ftr__copyright {
    font-size: .8rem;
    color: rgba(168, 159, 192, .5);
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--clr-border)
}

.lb-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: linear-gradient(90deg, #2D1239, #613225);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, .5)
}

.lb-widget__text {
    color: #fff;
    font-size: .875rem;
    font-weight: 500;
    line-height: 1.4;
    flex: 1
}

.lb-widget__bonus {
    color: var(--clr-gold-light);
    font-weight: 700
}

.lb-widget__close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, .5);
    cursor: pointer;
    font-size: 1.4rem;
    padding: 0 4px;
    line-height: 1;
    flex-shrink: 0;
    transition: color .2s
}

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

.lb-widget__btn {
    flex-shrink: 0
}

.lb-slider-wrap {
    position: relative;
    overflow: hidden
}

.lb-slider-track {
    display: flex;
    gap: 16px;
    transition: transform .35s ease
}

.lb-slider-controls {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 16px
}

.lb-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--clr-border);
    border: none;
    cursor: pointer;
    transition: background .2s
}

.lb-slider-dot.active {
    background: var(--clr-gold)
}

.lb-grid-3 {
    display: flex;
    gap: 20px
}

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

.lb-decoy-wp {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important
}

@media (max-width: 900px) {
    .lb-hdr__nav {
        display: none
    }

    .lb-burger {
        display: flex
    }

    .lb-tournaments {
        flex-direction: column
    }

    .lb-games {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 8px;
        scroll-snap-type: x mandatory
    }

    .lb-game-card {
        min-width: 160px;
        flex-shrink: 0;
        scroll-snap-align: start
    }

    .lb-grid-3 {
        flex-direction: column
    }

    .lb-ftr__top {
        flex-direction: column;
        gap: 24px
    }

    .lb-hero__content {
        padding: 60px 16px
    }

    .lb-widget {
        padding: 10px 14px
    }

    .lb-widget__text {
        font-size: .78rem
    }
}

@media (max-width: 480px) {
    .lb-hero__btns {
        flex-direction: column
    }

    .lb-slot__reel {
        width: 64px;
        height: 64px;
        font-size: 2rem
    }

    .lb-ftr__logos {
        gap: 6px
    }

    .lb-widget__text br {
        display: none
    }
}

.lb-a7f3k {
    display: none
}

.lb-x9q2m {
    visibility: hidden;
    position: absolute;
    pointer-events: none
}

.lb-zz14p {
    opacity: 0;
    height: 0;
    overflow: hidden
}

input[type=text], input[type=email], input[type=password], select, textarea {
    display: block;
    width: 100%;
    background: var(--clr-card2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    color: var(--clr-text);
    font-family: var(--font-main);
    font-size: .9rem;
    padding: 10px 14px;
    outline: none;
    transition: border-color .2s
}

input:focus, select:focus, textarea:focus {
    border-color: var(--clr-gold)
}

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

.lb-fade-up {
    animation: fadeInUp .5s ease both
}

.lb-fade-up-d1 {
    animation-delay: .1s
}

.lb-fade-up-d2 {
    animation-delay: .2s
}

.lb-fade-up-d3 {
    animation-delay: .3s
}

.lb-section--alt {
    background: rgba(255, 255, 255, .015)
}

.lb-pill {
    display: inline-block;
    background: rgba(212, 168, 67, .12);
    color: var(--clr-gold);
    border: 1px solid rgba(212, 168, 67, .25);
    border-radius: 20px;
    padding: 3px 10px;
    font-size: .75rem;
    font-weight: 600
}
