:root {
    --bg: #1A1429;
    --hdr: #1C142F;
    --btn-lg: #2D1239;
    --btn-sg: #613225;
    --txt: #F0E6FF;
    --txt-m: #B8A8D4;
    --acc: #9B59B6;
    --acc2: #7C3AED;
    --brd: rgba(255, 255, 255, .1);
    --card: rgba(255, 255, 255, .05);
    --f: 'Inter', 'Roboto', Arial, sans-serif;
    --tr: .3s ease;
    --r: 12px;
    --rs: 8px
}

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

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

body {
    background: var(--bg);
    color: var(--txt);
    font-family: var(--f);
    font-size: 16px;
    line-height: 1.7;
    min-height: 100vh
}

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

a {
    color: var(--txt);
    text-decoration: none;
    transition: color var(--tr)
}

a:hover {
    color: var(--acc)
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: #fff
}

h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem)
}

h2 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    margin-bottom: 1.5rem
}

h3 {
    font-size: clamp(1.1rem, 2vw, 1.4rem)
}

p {
    margin-bottom: 1rem
}

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

table {
    width: 100%;
    border-collapse: collapse
}

th, td {
    padding: 12px 16px;
    text-align: left;
    border: 1px solid var(--brd)
}

th {
    background: rgba(155, 89, 182, .2);
    color: #fff;
    font-weight: 600
}

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

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

.lbx-section {
    padding: 60px 0
}

.lbx-section-title {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative
}

.lbx-section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--acc), var(--acc2));
    border-radius: 2px;
    margin: 12px auto 0
}

.lbx-card {
    background: var(--card);
    border: 1px solid var(--brd);
    border-radius: var(--r);
    padding: 24px;
    transition: transform var(--tr), box-shadow var(--tr)
}

.lbx-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(155, 89, 182, .2)
}

.lbx-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--rs);
    font-family: var(--f);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: filter var(--tr), transform var(--tr);
    text-decoration: none;
    letter-spacing: .3px
}

.lbx-btn:active {
    transform: scale(.97)
}

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

.lbx-btn-login:hover {
    filter: brightness(1.3);
    color: #fff
}

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

.lbx-btn-signup:hover {
    filter: brightness(1.3);
    color: #fff
}

.lbx-btn-acc {
    background: linear-gradient(135deg, var(--acc), var(--acc2));
    color: #fff
}

.lbx-btn-acc:hover {
    filter: brightness(1.2);
    color: #fff
}

.lbx-btn-sm {
    padding: 8px 18px;
    font-size: 13px
}

.lbx-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600
}

.lbx-badge-green {
    background: rgba(34, 197, 94, .2);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, .3)
}

.lbx-badge-yellow {
    background: rgba(234, 179, 8, .2);
    color: #eab308;
    border: 1px solid rgba(234, 179, 8, .3)
}

.lbx-hdr {
    background: var(--hdr);
    position: sticky;
    top: 0;
    z-index: 200;
    box-shadow: 0 2px 24px rgba(0, 0, 0, .5)
}

.lbx-hdr-inner {
    display: grid;
    grid-template-columns:auto 1fr auto;
    align-items: center;
    gap: 20px;
    padding: 14px 20px;
    max-width: 1200px;
    margin: 0 auto
}

.lbx-logo img {
    height: 44px;
    width: auto
}

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

.lbx-nav a {
    padding: 8px 14px;
    border-radius: var(--rs);
    font-size: 14px;
    font-weight: 500;
    color: var(--txt-m);
    transition: all var(--tr)
}

.lbx-nav a:hover, .lbx-nav a.active {
    color: #fff;
    background: rgba(255, 255, 255, .08)
}

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

.lbx-online {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--txt-m);
    white-space: nowrap
}

.lbx-online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    animation: pulse 2s infinite
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, .4)
    }
    50% {
        box-shadow: 0 0 0 6px rgba(34, 197, 94, 0)
    }
}

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

.lbx-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all var(--tr)
}

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

.lbx-burger.open span:nth-child(2) {
    opacity: 0
}

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

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

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

.lbx-mob-menu a {
    padding: 14px 16px;
    border-radius: var(--rs);
    font-size: 16px;
    color: var(--txt-m);
    border-bottom: 1px solid var(--brd);
    display: block
}

.lbx-mob-menu a:hover {
    color: #fff;
    background: rgba(255, 255, 255, .06)
}

.lbx-mob-menu .lbx-btn {
    width: 100%;
    margin-top: 6px
}

.lbx-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0d0920
}

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

.lbx-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 20, 41, .95) 0%, rgba(45, 18, 57, .7) 50%, rgba(97, 50, 37, .5) 100%)
}

.lbx-hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%
}

.lbx-hero-inner {
    max-width: 640px
}

.lbx-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(155, 89, 182, .2);
    border: 1px solid rgba(155, 89, 182, .4);
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 13px;
    color: var(--acc);
    font-weight: 600;
    margin-bottom: 20px
}

.lbx-hero h1 {
    margin-bottom: 16px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, .5)
}

.lbx-hero-sub {
    font-size: 18px;
    color: var(--txt-m);
    margin-bottom: 32px;
    max-width: 480px
}

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

.lbx-hero-bonus {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--r);
    max-width: 420px
}

.lbx-hero-bonus-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1
}

.lbx-hero-bonus-txt {
    font-size: 13px;
    color: var(--txt-m);
    line-height: 1.4
}

.lbx-promo-wrap {
    padding: 60px 0
}

.lbx-promo-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 24px;
    align-items: start
}

.lbx-promo-code-card {
    background: linear-gradient(135deg, rgba(97, 50, 37, .3), rgba(45, 18, 57, .5));
    border: 1px solid rgba(155, 89, 182, .3);
    border-radius: var(--r);
    padding: 32px;
    text-align: center
}

.lbx-promo-label {
    font-size: 13px;
    color: var(--txt-m);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px
}

.lbx-promo-code {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 4px;
    color: #fff;
    background: rgba(255, 255, 255, .08);
    border: 2px dashed rgba(155, 89, 182, .5);
    border-radius: var(--rs);
    padding: 16px 24px;
    display: inline-block;
    margin-bottom: 16px;
    font-family: monospace;
    transition: background var(--tr)
}

.lbx-promo-code:hover {
    background: rgba(155, 89, 182, .15)
}

.lbx-promo-status {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 24px;
    flex-wrap: wrap
}

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

.lbx-copy-msg {
    font-size: 13px;
    color: #22c55e;
    margin-top: 10px;
    min-height: 20px;
    transition: opacity var(--tr)
}

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

.lbx-promo-info-item {
    background: var(--card);
    border: 1px solid var(--brd);
    border-radius: var(--rs);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px
}

.lbx-promo-info-icon {
    font-size: 24px;
    flex-shrink: 0
}

.lbx-promo-info-title {
    font-size: 12px;
    color: var(--txt-m);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 4px
}

.lbx-promo-info-val {
    font-weight: 700;
    color: #fff
}

.lbx-mirrors-wrap {
    padding: 60px 0;
    background: rgba(255, 255, 255, .02)
}

.lbx-mirrors-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap
}

.lbx-mirrors-time {
    font-size: 13px;
    color: var(--txt-m)
}

.lbx-mirrors-time strong {
    color: #22c55e
}

.lbx-table-wrap {
    overflow-x: auto;
    border-radius: var(--r);
    border: 1px solid var(--brd)
}

.lbx-table-wrap table {
    border: none
}

.lbx-table-wrap th:first-child, .lbx-table-wrap td:first-child {
    border-left: none
}

.lbx-table-wrap th:last-child, .lbx-table-wrap td:last-child {
    border-right: none
}

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

.lbx-mirror-link {
    color: var(--acc);
    font-family: monospace;
    font-size: 14px
}

.lbx-mirror-link:hover {
    color: var(--acc2)
}

.lbx-mirror-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px
}

.lbx-mirror-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e
}

.lbx-winners-wrap {
    padding: 60px 0
}

.lbx-winners-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 24px
}

.lbx-winners-list {
    display: flex;
    flex-direction: column;
    gap: 2px
}

.lbx-winner-row {
    display: grid;
    grid-template-columns:36px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: var(--rs);
    transition: background var(--tr)
}

.lbx-winner-row:hover {
    background: rgba(255, 255, 255, .05)
}

.lbx-winner-pos {
    font-size: 13px;
    font-weight: 700;
    color: var(--txt-m);
    text-align: center
}

.lbx-winner-pos.gold {
    color: #f59e0b
}

.lbx-winner-pos.silver {
    color: #9ca3af
}

.lbx-winner-pos.bronze {
    color: #b45309
}

.lbx-winner-nick {
    font-size: 14px;
    font-weight: 500
}

.lbx-winner-amt {
    font-size: 14px;
    font-weight: 700;
    color: #22c55e;
    white-space: nowrap
}

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

.lbx-winners-stat {
    background: linear-gradient(135deg, rgba(155, 89, 182, .15), rgba(97, 50, 37, .15));
    border: 1px solid rgba(155, 89, 182, .2);
    border-radius: var(--r);
    padding: 20px;
    text-align: center
}

.lbx-winners-stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px
}

.lbx-winners-stat-lbl {
    font-size: 13px;
    color: var(--txt-m)
}

.lbx-app-wrap {
    padding: 60px 0;
    background: rgba(255, 255, 255, .02)
}

.lbx-app-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 40px;
    align-items: center
}

.lbx-app-downloads {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px
}

.lbx-app-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    background: var(--card);
    border: 1px solid var(--brd);
    border-radius: var(--rs);
    transition: all var(--tr);
    cursor: pointer;
    text-decoration: none;
    color: var(--txt)
}

.lbx-app-btn:hover {
    border-color: var(--acc);
    background: rgba(155, 89, 182, .1);
    color: var(--txt)
}

.lbx-app-btn-icon {
    font-size: 28px;
    flex-shrink: 0
}

.lbx-app-btn-txt {
    font-size: 12px;
    color: var(--txt-m);
    line-height: 1
}

.lbx-app-btn-name {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3
}

.lbx-app-info {
    flex: 1
}

.lbx-wheel-wrap {
    padding: 60px 0
}

.lbx-wheel-inner {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 40px;
    align-items: center
}

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

.lbx-wheel-pointer {
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 28px solid #fff;
    margin-bottom: -8px;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .5))
}

.lbx-wheel-canvas {
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(155, 89, 182, .4);
    cursor: pointer
}

.lbx-wheel-spin-btn {
    padding: 14px 40px;
    font-size: 16px
}

.lbx-wheel-result {
    display: none;
    padding: 24px;
    background: linear-gradient(135deg, rgba(34, 197, 94, .15), rgba(155, 89, 182, .15));
    border: 1px solid rgba(34, 197, 94, .3);
    border-radius: var(--r);
    text-align: center;
    margin-top: 16px
}

.lbx-wheel-result.show {
    display: block;
    animation: fadeIn .5s ease
}

.lbx-wheel-result-icon {
    font-size: 3rem;
    margin-bottom: 8px
}

.lbx-wheel-result-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px
}

.lbx-wheel-result-text {
    color: var(--txt-m);
    margin-bottom: 16px
}

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

.lbx-wheel-rule {
    background: var(--card);
    border: 1px solid var(--brd);
    border-radius: var(--rs);
    padding: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px
}

.lbx-wheel-rule-icon {
    font-size: 20px;
    flex-shrink: 0
}

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

.lbx-reviews-wrap {
    padding: 60px 0;
    background: rgba(255, 255, 255, .02)
}

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

.lbx-review-card {
    background: var(--card);
    border: 1px solid var(--brd);
    border-radius: var(--r);
    padding: 24px;
    transition: transform var(--tr)
}

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

.lbx-review-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px
}

.lbx-review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(155, 89, 182, .3)
}

.lbx-review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.lbx-review-name {
    font-weight: 600;
    font-size: 15px;
    color: #fff
}

.lbx-review-date {
    font-size: 12px;
    color: var(--txt-m)
}

.lbx-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 10px
}

.lbx-stars svg {
    width: 16px;
    height: 16px
}

.lbx-review-text {
    font-size: 14px;
    color: var(--txt-m);
    line-height: 1.6
}

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

.lbx-form-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
    text-align: center
}

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

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

.lbx-field label {
    font-size: 13px;
    color: var(--txt-m);
    font-weight: 500
}

.lbx-field input, .lbx-field textarea {
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--brd);
    border-radius: var(--rs);
    padding: 12px 16px;
    color: #fff;
    font-family: var(--f);
    font-size: 14px;
    transition: border-color var(--tr);
    resize: vertical
}

.lbx-field input:focus, .lbx-field textarea:focus {
    outline: none;
    border-color: var(--acc);
    background: rgba(155, 89, 182, .1)
}

.lbx-field textarea {
    min-height: 100px
}

.lbx-form-msg {
    display: none;
    padding: 14px 16px;
    background: rgba(34, 197, 94, .15);
    border: 1px solid rgba(34, 197, 94, .3);
    border-radius: var(--rs);
    color: #22c55e;
    font-size: 14px;
    text-align: center
}

.lbx-form-msg.show {
    display: block
}

.lbx-content-block {
    padding: 60px 0
}

.lbx-content-inner {
    background: var(--card);
    border: 1px solid var(--brd);
    border-radius: var(--r);
    padding: 32px
}

.lbx-content-inner h1, .lbx-content-inner h2, .lbx-content-inner h3, .lbx-content-inner h4 {
    margin-top: 1.5rem;
    margin-bottom: .75rem
}

.lbx-content-inner h1:first-child, .lbx-content-inner h2:first-child, .lbx-content-inner h3:first-child {
    margin-top: 0
}

.lbx-content-inner p {
    color: var(--txt-m);
    margin-bottom: 1rem
}

.lbx-content-inner ul, .lbx-content-inner ol {
    color: var(--txt-m);
    padding-left: 1.5rem;
    margin-bottom: 1rem
}

.lbx-content-inner li {
    margin-bottom: .4rem
}

.lbx-content-inner a {
    color: var(--acc);
    text-decoration: underline
}

.lbx-content-inner a:hover {
    color: var(--acc2)
}

.lbx-content-inner table {
    border-radius: var(--rs);
    overflow: hidden;
    margin-bottom: 1rem
}

.lbx-content-inner strong, .lbx-content-inner b {
    color: #fff
}

.lbx-content-inner em, .lbx-content-inner i {
    color: var(--acc)
}

.lbx-content-inner blockquote {
    border-left: 3px solid var(--acc);
    padding-left: 16px;
    margin: 1rem 0;
    color: var(--txt-m);
    font-style: italic
}

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

.lbx-author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(155, 89, 182, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0
}

.lbx-author-name {
    font-weight: 700;
    color: #fff;
    font-size: 15px;
    margin-bottom: 4px
}

.lbx-author-role {
    font-size: 13px;
    color: var(--txt-m)
}

.lbx-author-link {
    font-size: 13px;
    color: var(--acc);
    margin-top: 4px;
    display: inline-block
}

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

.lbx-ftr-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

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

.lbx-ftr-logo img {
    height: 40px;
    width: auto
}

.lbx-ftr-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 20px
}

.lbx-ftr-nav a {
    font-size: 14px;
    color: var(--txt-m);
    transition: color var(--tr)
}

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

.lbx-ftr-legal {
    font-size: 12px;
    color: var(--txt-m);
    max-width: 260px;
    line-height: 1.5
}

.lbx-ftr-payments {
    margin-bottom: 32px
}

.lbx-ftr-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--txt-m);
    margin-bottom: 12px
}

.lbx-ftr-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}

.lbx-ftr-icon {
    background: rgba(255, 255, 255, .08);
    border: 1px solid var(--brd);
    border-radius: var(--rs);
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--txt-m)
}

.lbx-ftr-bottom {
    border-top: 1px solid var(--brd);
    padding: 20px 0;
    text-align: center
}

.lbx-ftr-copy {
    font-size: 12px;
    color: var(--txt-m);
    line-height: 1.6
}

.lbx-ftr-copy a {
    color: var(--acc)
}

.lbx-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 300;
    background: linear-gradient(90deg, #2D1239, #613225);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, .5);
    transform: translateY(100%);
    animation: slideUp .6s .8s forwards ease
}

@keyframes slideUp {
    to {
        transform: translateY(0)
    }
}

.lbx-widget-txt {
    font-size: 14px;
    color: rgba(255, 255, 255, .85);
    flex: 1
}

.lbx-widget-txt strong {
    color: #fff;
    font-size: 16px;
    display: block
}

.lbx-widget-close {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, .6);
    font-size: 20px;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
    flex-shrink: 0
}

.lbx-widget a {
    text-decoration: none !important;
    color: inherit
}

.lbx-widget-btn {
    background: #fff;
    color: #2D1239;
    padding: 10px 22px;
    border-radius: var(--rs);
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: filter var(--tr)
}

.lbx-widget-btn:hover {
    filter: brightness(.9);
    color: #2D1239
}

.lbx-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--brd), transparent);
    margin: 0
}

.lbx-d-none {
    display: none !important
}

.lbx-text-center {
    text-align: center
}

.lbx-mt-2 {
    margin-top: 2rem
}

.lbx-p-0 {
    padding: 0 !important
}

.lbx-breadcrumb {
    padding: 16px 0;
    font-size: 13px;
    color: var(--txt-m)
}

.lbx-breadcrumb a {
    color: var(--txt-m)
}

.lbx-breadcrumb a:hover {
    color: var(--acc)
}

.lbx-breadcrumb span {
    color: #fff
}

.wp-block-unstyled {
    display: none
}

.site-description {
    display: none
}

.entry-content {
    display: none
}

.wp-site-blocks {
    display: none
}

@media (max-width: 900px) {
    .lbx-hdr-inner {
        grid-template-columns:auto 1fr;
        gap: 12px
    }

    .lbx-nav {
        display: none
    }

    .lbx-burger {
        display: flex
    }

    .lbx-promo-grid, .lbx-app-grid, .lbx-winners-grid, .lbx-wheel-inner {
        grid-template-columns:1fr
    }

    .lbx-ftr-top {
        grid-template-columns:1fr
    }

    .lbx-hero-content {
        padding: 60px 20px
    }

    .lbx-hero-actions {
        flex-direction: column;
        align-items: flex-start
    }

    .lbx-hero-actions .lbx-btn {
        width: 100%;
        max-width: 300px
    }
}

@media (max-width: 600px) {
    .lbx-section {
        padding: 40px 0
    }

    .lbx-promo-actions {
        flex-direction: column;
        align-items: stretch
    }

    .lbx-promo-actions .lbx-btn {
        width: 100%
    }

    .lbx-widget {
        flex-wrap: wrap;
        gap: 8px
    }

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

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

.lbx-xr7q2 {
    display: none
}

.lbx-mn4p8 {
    visibility: hidden;
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden
}

.lbx-unused-anim {
    animation: lbx-dummy 1s infinite
}

.lbx-qt9f1 {
    pointer-events: none;
    opacity: 0;
    position: fixed;
    z-index: -1
}

@keyframes lbx-dummy {
    0% {
        transform: none
    }
    50% {
        transform: none
    }
    100% {
        transform: none
    }
}
