:root {
    --clr-bg: #1A1429;
    --clr-hdr: #1C142F;
    --clr-btn-primary: #2D1239;
    --clr-btn-accent: #613225;
    --clr-text: #E8E0F0;
    --clr-text-muted: #9B8EAF;
    --clr-border: #2E2248;
    --clr-gold: #D4A940;
    --clr-gold-light: #F0C84A;
    --clr-card: #221836;
    --clr-card-hover: #2A1E42;
    --clr-green: #2ECC71;
    --clr-slot-win: #F0C84A;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow-card: 0 4px 24px rgba(0, 0, 0, .45);
    --shadow-btn: 0 2px 12px rgba(97, 50, 37, .4);
    --transition: all .25s cubic-bezier(.4, 0, .2, 1);
}

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

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

body {
    font-family: 'Inter', Roboto, Arial, sans-serif;
    background-color: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

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

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

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: inherit;
}

.x9f2k {
    display: none;
}

.b3m7r {
    visibility: hidden;
    position: absolute;
    left: -9999px;
}

.q8p1v {
    opacity: 0;
    pointer-events: none;
    height: 0;
    overflow: hidden;
}

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

.wp-block-group {
    display: block;
}

.wp-content {
    display: block;
}

.entry-content {
    display: block;
}

.elementor-widget-container {
    display: block;
}

.wpcf7 {
    display: block;
}

.lbh-wrap {
    background: var(--clr-hdr);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .6);
}

.lbh-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 12px;
}

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

.lbh-logo img {
    height: 30px;
    width: auto;
    object-fit: contain;
}

.lbh-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.lbh-nav a {
    color: var(--clr-text-muted);
    font-size: 14px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.lbh-nav a:hover {
    color: var(--clr-text);
    background: rgba(255, 255, 255, .06);
}

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

.lbh-online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--clr-green);
    box-shadow: 0 0 6px var(--clr-green);
    animation: lbPulse 2s infinite;
}

@keyframes lbPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: .6;
        transform: scale(1.3);
    }
}

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

.lbh-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    padding: 6px;
    border-radius: var(--radius-sm);
}

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

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

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

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

.lbh-mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--clr-hdr);
    border-top: 1px solid var(--clr-border);
    padding: 16px 20px;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .5);
}

.lbh-mobile-menu.open {
    display: flex;
}

.lbh-mobile-menu a {
    color: var(--clr-text-muted);
    font-size: 15px;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.lbh-mobile-menu a:hover {
    color: var(--clr-text);
    background: rgba(255, 255, 255, .06);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 20px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
    line-height: 1.2;
}

.btn:hover {
    transform: translateY(-1px);
}

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

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

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

.btn-signup {
    background: var(--clr-btn-accent);
    color: #fff;
    box-shadow: var(--shadow-btn);
}

.btn-signup:hover {
    background: #7a3d2e;
    color: #fff;
}

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

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

.btn-lg {
    padding: 14px 32px;
    font-size: 16px;
    border-radius: var(--radius-md);
}

.btn-xl {
    padding: 16px 40px;
    font-size: 18px;
    border-radius: var(--radius-md);
}

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

.lb-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 20, 41, .95) 0%, rgba(44, 18, 57, .85) 50%, rgba(97, 50, 37, .7) 100%), url('/leebet-hero.jpg') center/cover no-repeat;
    z-index: 0;
}

.lb-hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.lb-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(212, 169, 64, .15);
    border: 1px solid rgba(212, 169, 64, .3);
    color: var(--clr-gold);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 20px;
    letter-spacing: .5px;
}

.lb-hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
}

.lb-hero h1 span {
    color: var(--clr-gold);
}

.lb-hero-desc {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--clr-text-muted);
    max-width: 540px;
    margin-bottom: 32px;
    line-height: 1.7;
}

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

.lb-hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.lb-hero-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.lb-hero-stat strong {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--clr-gold);
}

.lb-hero-stat span {
    font-size: 13px;
    color: var(--clr-text-muted);
}

.lb-section {
    padding: 60px 0;
}

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

.lb-section-sub {
    font-size: 15px;
    color: var(--clr-text-muted);
    margin-bottom: 32px;
}

.lb-jackpot-block {
    background: linear-gradient(135deg, var(--clr-card), rgba(97, 50, 37, .2));
    border: 1px solid rgba(212, 169, 64, .2);
    border-radius: var(--radius-xl);
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.lb-jackpot-block::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top, rgba(212, 169, 64, .08) 0%, transparent 70%);
    pointer-events: none;
}

.lb-jackpot-label {
    font-size: 14px;
    color: var(--clr-text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.lb-jackpot-amount {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 900;
    color: var(--clr-gold);
    letter-spacing: -1px;
    text-shadow: 0 0 40px rgba(212, 169, 64, .4);
    animation: jackpotGlow 3s ease-in-out infinite;
}

@keyframes jackpotGlow {
    0%, 100% {
        text-shadow: 0 0 30px rgba(212, 169, 64, .4);
    }
    50% {
        text-shadow: 0 0 60px rgba(212, 169, 64, .8), 0 0 80px rgba(240, 200, 74, .4);
    }
}

.lb-jackpot-currency {
    font-size: 1.5rem;
    color: var(--clr-gold-light);
    vertical-align: super;
}

.lb-jackpot-sub {
    font-size: 14px;
    color: var(--clr-text-muted);
    margin-top: 12px;
}

.lb-jackpot-ticker {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 24px;
}

.lb-jackpot-item {
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    text-align: center;
    min-width: 140px;
}

.lb-jackpot-item-name {
    font-size: 12px;
    color: var(--clr-text-muted);
    margin-bottom: 4px;
}

.lb-jackpot-item-val {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--clr-gold);
}

.lb-screenshots-grid {
    display: flex;
    gap: 16px;
}

.lb-screenshot-item {
    flex: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--clr-border);
    transition: var(--transition);
    cursor: pointer;
}

.lb-screenshot-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .6);
    border-color: rgba(212, 169, 64, .3);
}

.lb-screenshot-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.lb-screenshot-caption {
    background: var(--clr-card);
    padding: 10px 14px;
    font-size: 13px;
    color: var(--clr-text-muted);
}

.lb-screenshots-slider {
    display: none;
    overflow: hidden;
    position: relative;
}

.lb-slider-track {
    display: flex;
    transition: transform .4s cubic-bezier(.4, 0, .2, 1);
}

.lb-slider-track .lb-screenshot-item {
    flex: 0 0 85%;
    margin-right: 12px;
}

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

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

.lb-slider-dot.active {
    background: var(--clr-gold);
    width: 24px;
    border-radius: 4px;
}

.lb-app-block {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-xl);
    padding: 40px;
}

.lb-app-inner {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

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

.lb-app-downloads {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
    min-width: 180px;
}

.lb-app-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.lb-app-table th, .lb-app-table td {
    padding: 11px 14px;
    text-align: left;
    border: 1px solid var(--clr-border);
    font-size: 14px;
}

.lb-app-table th {
    background: rgba(255, 255, 255, .04);
    color: var(--clr-text-muted);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.lb-app-table td {
    color: var(--clr-text);
}

.lb-app-table tr:hover td {
    background: rgba(255, 255, 255, .02);
}

.lb-download-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--clr-btn-primary);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.lb-download-btn:hover {
    background: #3d1a4d;
    color: #fff;
    transform: translateY(-2px);
}

.lb-download-btn-icon {
    font-size: 22px;
    line-height: 1;
}

.lb-download-btn-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.lb-download-btn-text small {
    font-size: 11px;
    font-weight: 400;
    opacity: .7;
}

.lb-slot-block {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-xl);
    padding: 40px;
    text-align: center;
}

.lb-reels {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 24px 0;
}

.lb-reel {
    width: 80px;
    height: 80px;
    background: var(--clr-bg);
    border: 2px solid var(--clr-border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    transition: var(--transition);
    overflow: hidden;
    position: relative;
}

.lb-reel.spinning {
    animation: reelSpin .15s linear infinite;
}

@keyframes reelSpin {
    0% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-4px);
    }
    75% {
        transform: translateY(4px);
    }
    100% {
        transform: translateY(0);
    }
}

.lb-reel.win {
    border-color: var(--clr-gold);
    box-shadow: 0 0 20px rgba(212, 169, 64, .5);
}

.lb-slot-btn {
    margin-top: 8px;
    padding: 14px 40px;
    font-size: 16px;
}

.lb-slot-result {
    margin-top: 20px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(212, 169, 64, .15), rgba(97, 50, 37, .2));
    border: 1px solid rgba(212, 169, 64, .3);
    border-radius: var(--radius-lg);
    display: none;
}

.lb-slot-result.show {
    display: block;
    animation: fadeInUp .4s ease;
}

.lb-slot-result-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--clr-gold);
    margin-bottom: 8px;
}

.lb-slot-result-amount {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 16px;
}

.lb-faq {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.lb-faq-item {
    border-bottom: 1px solid var(--clr-border);
}

.lb-faq-item:last-child {
    border-bottom: none;
}

.lb-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: var(--clr-text);
    transition: var(--transition);
    gap: 12px;
}

.lb-faq-q:hover {
    background: rgba(255, 255, 255, .03);
    color: var(--clr-gold);
}

.lb-faq-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--clr-btn-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
    font-size: 14px;
    color: #fff;
}

.lb-faq-item.open .lb-faq-icon {
    background: var(--clr-btn-accent);
    transform: rotate(45deg);
}

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

.lb-faq-item.open .lb-faq-a {
    max-height: 400px;
}

.lb-faq-a-inner {
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--clr-text-muted);
    line-height: 1.7;
}

.lb-content-block {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-xl);
    padding: 40px;
    margin-top: 0;
}

.lb-content-block h1, .lb-content-block h2, .lb-content-block h3, .lb-content-block h4 {
    color: #fff;
    margin-bottom: 12px;
    margin-top: 24px;
    line-height: 1.3;
}

.lb-content-block h1 {
    font-size: 1.8rem;
}

.lb-content-block h2 {
    font-size: 1.5rem;
}

.lb-content-block h3 {
    font-size: 1.25rem;
}

.lb-content-block h4 {
    font-size: 1.1rem;
}

.lb-content-block p {
    color: var(--clr-text);
    margin-bottom: 14px;
    line-height: 1.7;
    font-size: 15px;
}

.lb-content-block ul, .lb-content-block ol {
    margin: 12px 0 16px 20px;
    color: var(--clr-text);
    font-size: 15px;
}

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

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

.lb-content-block li {
    margin-bottom: 6px;
    line-height: 1.6;
}

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

.lb-content-block table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    overflow-x: auto;
    display: block;
}

.lb-content-block th, .lb-content-block td {
    padding: 10px 14px;
    border: 1px solid var(--clr-border);
    text-align: left;
    font-size: 14px;
}

.lb-content-block th {
    background: rgba(255, 255, 255, .04);
    color: var(--clr-text-muted);
}

.lb-content-block blockquote {
    border-left: 3px solid var(--clr-gold);
    padding: 12px 20px;
    background: rgba(212, 169, 64, .06);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 16px 0;
    font-style: italic;
    color: var(--clr-text-muted);
}

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

.lb-content-block em {
    color: var(--clr-text-muted);
}

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

.lb-author-block {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    margin-top: 32px;
}

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

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

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

.lb-author-bio {
    font-size: 13px;
    color: var(--clr-text-muted);
    line-height: 1.5;
}

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

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

.lb-footer-top {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--clr-border);
    margin-bottom: 24px;
}

.lb-footer-brand {
    flex: 0 0 220px;
}

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

.lb-footer-brand-desc {
    font-size: 13px;
    color: var(--clr-text-muted);
    line-height: 1.6;
}

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

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

.lb-footer-col a {
    display: block;
    font-size: 14px;
    color: var(--clr-text-muted);
    margin-bottom: 8px;
    transition: var(--transition);
}

.lb-footer-col a:hover {
    color: var(--clr-text);
}

.lb-footer-logos-row {
    margin-bottom: 20px;
}

.lb-footer-logos-title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--clr-text-muted);
    margin-bottom: 10px;
}

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

.lb-footer-logo-item {
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    color: var(--clr-text-muted);
    letter-spacing: .3px;
}

.lb-footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    text-align: center;
}

.lb-footer-copyright {
    font-size: 13px;
    color: var(--clr-text-muted);
}

.lb-footer-legal {
    font-size: 12px;
    color: rgba(155, 142, 175, .5);
    line-height: 1.6;
    max-width: 800px;
}

.lb-widget {
    position: fixed;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    z-index: 999;
    pointer-events: none;
    padding: 0 16px;
}

.lb-widget-inner {
    background: linear-gradient(135deg, var(--clr-btn-accent), #7a3d2e);
    border-radius: var(--radius-xl);
    padding: 14px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    pointer-events: all;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .6);
    border: 1px solid rgba(255, 255, 255, .1);
    max-width: 560px;
    width: 100%;
}

.lb-widget-text {
    flex: 1;
}

.lb-widget-bonus {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}

.lb-widget-sub {
    font-size: 12px;
    color: rgba(255, 255, 255, .7);
}

.lb-widget-cta {
    background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-light));
    color: #1A1429;
    font-weight: 800;
    padding: 10px 22px;
    border-radius: var(--radius-md);
    font-size: 14px;
    text-decoration: none;
    white-space: nowrap;
    transition: var(--transition);
    flex-shrink: 0;
}

.lb-widget-cta:hover {
    transform: scale(1.04);
    color: #1A1429;
}

.lb-widget-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, .5);
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
    transition: var(--transition);
    flex-shrink: 0;
}

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

.lb-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--clr-border), transparent);
    margin: 8px 0;
}

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

.lb-grid-2 > * {
    flex: 1;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

.lb-review-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--clr-border);
}

.lb-review-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(212, 169, 64, .1);
    border: 1px solid rgba(212, 169, 64, .2);
    border-radius: var(--radius-lg);
    padding: 16px 20px;
}

.lb-review-score {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--clr-gold);
    line-height: 1;
}

.lb-review-stars {
    color: var(--clr-gold);
    font-size: 16px;
    letter-spacing: 2px;
    margin-top: 4px;
}

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

.lb-review-meta h2 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 6px;
}

.lb-review-meta p {
    color: var(--clr-text-muted);
    font-size: 14px;
    line-height: 1.6;
}

.lb-pros-cons {
    display: flex;
    gap: 16px;
    margin: 24px 0;
}

.lb-pros, .lb-cons {
    flex: 1;
    border-radius: var(--radius-lg);
    padding: 20px;
}

.lb-pros {
    background: rgba(46, 204, 113, .07);
    border: 1px solid rgba(46, 204, 113, .2);
}

.lb-cons {
    background: rgba(231, 76, 60, .07);
    border: 1px solid rgba(231, 76, 60, .2);
}

.lb-pros h4 {
    color: var(--clr-green);
    margin-bottom: 12px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.lb-cons h4 {
    color: #e74c3c;
    margin-bottom: 12px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.lb-pros ul, .lb-cons ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.lb-pros li, .lb-cons li {
    font-size: 13px;
    color: var(--clr-text);
    padding: 4px 0;
    padding-left: 18px;
    position: relative;
    line-height: 1.5;
}

.lb-pros li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--clr-green);
}

.lb-cons li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #e74c3c;
}

.lb-bonus-card {
    background: linear-gradient(135deg, rgba(97, 50, 37, .3), rgba(212, 169, 64, .1));
    border: 1px solid rgba(212, 169, 64, .25);
    border-radius: var(--radius-xl);
    padding: 32px;
    text-align: center;
    margin: 24px 0;
}

.lb-bonus-pct {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--clr-gold);
    line-height: 1;
}

.lb-bonus-desc {
    font-size: 1rem;
    color: var(--clr-text);
    margin-top: 8px;
    margin-bottom: 20px;
}

.lb-table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.lb-table-scroll table {
    min-width: 540px;
}

@media (max-width: 900px) {
    .lb-app-inner {
        flex-direction: column;
    }

    .lb-app-downloads {
        flex-direction: row;
        flex-wrap: wrap;
        min-width: unset;
    }

    .lb-pros-cons {
        flex-direction: column;
    }

    .lb-grid-2 {
        flex-direction: column;
    }
}

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

    .lbh-online {
        display: none;
    }

    .lbh-burger {
        display: flex;
    }

    .lb-screenshots-grid {
        display: none;
    }

    .lb-screenshots-slider {
        display: block;
    }

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

    .lb-hero-cta {
        flex-direction: column;
    }

    .lb-hero-stats {
        gap: 20px;
    }

    .lb-section {
        padding: 40px 0;
    }

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

    .lb-footer-brand {
        flex: unset;
    }

    .lb-jackpot-ticker {
        gap: 10px;
    }

    .lb-jackpot-item {
        min-width: 120px;
    }

    .lb-reels {
        gap: 6px;
    }

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

    .lb-widget-inner {
        flex-wrap: wrap;
    }

    .lb-app-table th, .lb-app-table td {
        padding: 8px 10px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .lb-hero h1 {
        font-size: 1.6rem;
    }

    .lb-jackpot-amount {
        font-size: 2.5rem;
    }

    .lb-bonus-pct {
        font-size: 2.5rem;
    }

    .lb-reel {
        width: 54px;
        height: 54px;
        font-size: 1.7rem;
    }

    .lbh-inner {
        padding: 10px 14px;
    }

    .btn-lg {
        padding: 12px 22px;
        font-size: 15px;
    }
}

.wp-img-placeholder {
    display: none;
}

.wp-post-image {
    display: none;
}

.wp-content-area {
    display: none;
}

.elementor-hidden {
    display: none;
}

.yoast-breadcrumb {
    display: none;
}

.wpcf7-hidden {
    display: none;
}

.wp-caption {
    display: none;
}

.attachment-thumbnail {
    display: none;
}

@media (max-width: 768px) {
    .lb-section {
        padding: 36px 0;
        overflow: hidden;
    }

    .lb-section-title {
        font-size: 1.4rem;
        line-height: 1.3;
        overflow-wrap: anywhere;
    }

    .lb-section-sub {
        font-size: .92rem;
        line-height: 1.6;
        margin-bottom: 20px;
        overflow-wrap: anywhere;
    }

    .lb-app-block {
        padding: 18px 14px;
        border-radius: 18px;
        overflow: hidden;
    }

    .lb-app-inner {
        flex-direction: column;
        gap: 20px;
        width: 100%;
        min-width: 0;
    }

    .lb-app-info {
        width: 100%;
        min-width: 0;
    }

    .lb-table-scroll {
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        border-radius: 14px;
    }

    .lb-table-scroll::-webkit-scrollbar {
        height: 5px;
    }

    .lb-table-scroll::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, .18);
        border-radius: 20px;
    }

    .lb-app-table {
        min-width: 520px;
        width: 100%;
    }

    .lb-app-table th,
    .lb-app-table td {
        padding: 10px 12px;
        font-size: 13px;
        white-space: nowrap;
    }

    .lb-app-downloads {
        width: 100%;
        min-width: 0;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .lb-download-btn {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding: 14px 16px;
        border-radius: 14px;
        overflow: hidden;
    }

    .lb-download-btn-icon {
        flex-shrink: 0;
        font-size: 20px;
    }

    .lb-download-btn-text {
        min-width: 0;
        overflow: hidden;
    }

    .lb-download-btn-text small {
        display: block;
        overflow-wrap: anywhere;
    }

    .lb-download-btn-text {
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .lb-download-btn * {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .lb-app-block {
        padding: 14px 10px;
        border-radius: 14px;
    }

    .lb-section-title {
        font-size: 1.2rem;
    }

    .lb-section-sub {
        font-size: .86rem;
    }

    .lb-app-table {
        min-width: 460px;
    }

    .lb-app-table th,
    .lb-app-table td {
        padding: 8px 10px;
        font-size: 12px;
    }

    .lb-download-btn {
        padding: 12px 14px;
    }

    .lb-download-btn-text {
        font-size: .88rem;
    }

    .lb-download-btn-text small {
        font-size: 10px;
    }
}