@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Roboto:wght@300;400;500;700&display=swap');

:root {
    --bg: #1A1429;
    --header-bg: #1C142F;
    --btn-login: #2D1239;
    --btn-reg: #613225;
    --btn-login-h: #3d1a50;
    --btn-reg-h: #7a3d2e;
    --text: #e8e0f5;
    --text-muted: #b0a0cc;
    --text-dim: #7a6a99;
    --accent: #a855f7;
    --accent2: #f97316;
    --card-bg: #231836;
    --card-border: #352548;
    --input-bg: #1e1530;
    --success: #22c55e;
    --danger: #ef4444;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    --transition: 0.25s ease;
}

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

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

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

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

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

a:hover {
    color: var(--accent2);
}

h1, h2, h3, h4, h5 {
    line-height: 1.25;
    font-weight: 700;
}

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

.m9k3p-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

/* ─── BUTTONS ─── */
.bz4r8-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    white-space: nowrap;
}

.bz4r8-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

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

.btn-login {
    background: var(--btn-login);
    color: #e8e0f5;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.btn-login:hover {
    background: var(--btn-login-h);
    color: #fff;
}

.btn-reg {
    background: var(--btn-reg);
    color: #fff;
    border: 1px solid rgba(249, 115, 22, 0.3);
}

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

.btn-accent {
    background: linear-gradient(135deg, var(--accent), #7c3aed);
    color: #fff;
    padding: 14px 32px;
    font-size: 1rem;
    border-radius: var(--radius);
    box-shadow: 0 0 24px rgba(168, 85, 247, 0.4);
}

.btn-accent:hover {
    box-shadow: 0 0 40px rgba(168, 85, 247, 0.6);
    color: #fff;
}

.btn-bonus-widget {
    background: var(--btn-reg);
    color: #fff !important;
    text-decoration: none !important;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-block;
    border: 1px solid rgba(249, 115, 22, 0.4);
    transition: all var(--transition);
}

.btn-bonus-widget:hover {
    background: var(--btn-reg-h);
    transform: translateY(-2px);
}

/* ─── HEADER ─── */
.lbh-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--header-bg);
    border-bottom: 1px solid rgba(168, 85, 247, 0.15);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}

.lbh-header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 12px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.lbh-logo:hover {
    opacity: 0.85;
}

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

.lbh-nav a {
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: 6px;
    transition: all var(--transition);
}

.lbh-nav a:hover {
    color: var(--text);
    background: rgba(168, 85, 247, 0.1);
}

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

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

.lbh-online-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
    flex-shrink: 0;
}

@keyframes pulse-dot {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
    }
    50% {
        box-shadow: 0 0 0 5px rgba(34, 197, 94, 0);
    }
}

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

.lbh-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 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-nav {
    display: none;
    background: var(--header-bg);
    border-top: 1px solid rgba(168, 85, 247, 0.1);
    padding: 16px 20px;
    flex-direction: column;
    gap: 8px;
}

.lbh-mobile-nav.active {
    display: flex;
}

.lbh-mobile-nav a {
    color: var(--text-muted);
    padding: 10px 12px;
    border-radius: 6px;
    font-weight: 500;
    transition: all var(--transition);
}

.lbh-mobile-nav a:hover {
    color: var(--text);
    background: rgba(168, 85, 247, 0.1);
}

/* ─── HERO ─── */
.lbh-hero {
    position: relative;
    min-height: 520px;
    display: grid;
    place-items: center;
    overflow: hidden;
    padding: 80px 20px;
}

.lbh-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/banner.png');
    background-size: cover;
    background-position: center;
    filter: brightness(0.4);
    z-index: 0;
}

.lbh-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 20, 41, 0.85) 0%, rgba(45, 18, 57, 0.6) 50%, rgba(97, 50, 37, 0.4) 100%);
    z-index: 1;
}

.lbh-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
}

.lbh-hero-badge {
    display: inline-block;
    background: rgba(168, 85, 247, 0.2);
    border: 1px solid rgba(168, 85, 247, 0.5);
    color: var(--accent);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
    animation: fadeInDown 0.6s ease;
}

.lbh-hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 0.7s ease 0.1s both;
}

.lbh-hero-content p {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-muted);
    margin-bottom: 32px;
    animation: fadeInDown 0.8s ease 0.2s both;
}

.lbh-hero-bonus {
    display: inline-block;
    background: linear-gradient(135deg, var(--btn-reg), #8b2a0e);
    color: #fff;
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 800;
    padding: 6px 20px;
    border-radius: 8px;
    margin-bottom: 28px;
    animation: fadeInDown 0.9s ease 0.3s both;
}

.lbh-hero-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInDown 1s ease 0.4s both;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ─── SECTION COMMON ─── */
.lbh-section {
    padding: 64px 0;
}

.lbh-section-head {
    text-align: center;
    margin-bottom: 40px;
}

.lbh-section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
}

.lbh-section-head h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--text);
    margin-bottom: 10px;
}

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

/* ─── CONTENT BLOCK (review text) ─── */
.lbh-content-block {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 36px;
    margin: 48px 0;
}

.lbh-content-block h1,
.lbh-content-block h2,
.lbh-content-block h3 {
    color: var(--text);
    margin-bottom: 14px;
    margin-top: 24px;
}

.lbh-content-block h1:first-child,
.lbh-content-block h2:first-child,
.lbh-content-block h3:first-child {
    margin-top: 0;
}

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

.lbh-content-block ul, .lbh-content-block ol {
    color: var(--text-muted);
    padding-left: 24px;
    margin-bottom: 14px;
}

.lbh-content-block li {
    margin-bottom: 6px;
}

.lbh-content-block a {
    color: var(--accent);
}

.lbh-content-block table {
    width: auto;
    max-width: 100%;
    margin: 20px auto;
    border-collapse: collapse;
    display: block;
    overflow-x: auto;
}

.lbh-content-block table th,
.lbh-content-block table td {
    border: 1px solid var(--card-border);
    padding: 10px 16px;
    text-align: left;
    white-space: nowrap;
}

.lbh-content-block table th {
    background: rgba(168, 85, 247, 0.15);
    color: var(--text);
    font-weight: 600;
}

.lbh-content-block table td {
    color: var(--text-muted);
}

.lbh-author-box {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(168, 85, 247, 0.08);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    margin-top: 32px;
}

.lbh-author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #7c3aed);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: #fff;
    flex-shrink: 0;
}

.lbh-author-info a {
    color: var(--accent);
    font-weight: 600;
}

.lbh-author-info span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 3px;
}

/* ─── PROS/CONS ─── */
.lbh-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 8px;
}

.lbh-pros-card, .lbh-cons-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 28px;
}

.lbh-pros-card {
    border-top: 3px solid var(--success);
}

.lbh-cons-card {
    border-top: 3px solid var(--danger);
}

.lbh-pros-card h3 {
    color: var(--success);
    margin-bottom: 18px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lbh-cons-card h3 {
    color: var(--danger);
    margin-bottom: 18px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lbh-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lbh-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.lbh-list-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 11px;
    margin-top: 2px;
}

.lbh-pros-card .lbh-list-icon {
    background: rgba(34, 197, 94, 0.15);
    color: var(--success);
}

.lbh-cons-card .lbh-list-icon {
    background: rgba(239, 68, 68, 0.15);
    color: var(--danger);
}

/* ─── SCREENSHOTS ─── */
.lbh-screenshots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.lbh-screenshot-item {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--card-border);
    transition: transform var(--transition), box-shadow var(--transition);
    cursor: pointer;
}

.lbh-screenshot-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

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

.lbh-slider-wrap {
    position: relative;
}

.lbh-slider-track {
    display: flex;
    overflow: hidden;
    gap: 0;
}

.lbh-slider-track .lbh-screenshot-item,
.lbh-slider-track .lbh-bonus-card {
    min-width: 100%;
    transition: transform 0.4s ease;
}

.lbh-slider-dots {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
}

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

.lbh-slider-dot.active {
    background: var(--accent);
}

.lbh-slider-arrows {
    display: none;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}

.lbh-slider-arrow {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    color: var(--text);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lbh-slider-arrow:hover {
    background: var(--accent);
    border-color: var(--accent);
}

/* ─── WINNERS ─── */
.lbh-winners-table-wrap {
    overflow-x: auto;
}

.lbh-winners-table {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    border-collapse: collapse;
}

.lbh-winners-table th {
    background: rgba(168, 85, 247, 0.15);
    color: var(--text);
    font-weight: 600;
    padding: 13px 18px;
    text-align: left;
    font-size: 0.85rem;
    border-bottom: 2px solid rgba(168, 85, 247, 0.3);
}

.lbh-winners-table td {
    padding: 11px 18px;
    font-size: 0.88rem;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(53, 37, 72, 0.5);
}

.lbh-winners-table tr:hover td {
    background: rgba(168, 85, 247, 0.05);
}

.lbh-winners-table .lbh-rank {
    font-weight: 700;
    color: var(--text-dim);
}

.lbh-winners-table tr:nth-child(1) .lbh-rank {
    color: #ffd700;
}

.lbh-winners-table tr:nth-child(2) .lbh-rank {
    color: #c0c0c0;
}

.lbh-winners-table tr:nth-child(3) .lbh-rank {
    color: #cd7f32;
}

.lbh-winners-table .lbh-win-amount {
    color: var(--success);
    font-weight: 600;
}

/* ─── BONUSES ─── */
.lbh-bonuses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.lbh-bonus-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
}

.lbh-bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
}

.lbh-bonus-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.lbh-bonus-card-icon {
    font-size: 2.5rem;
    margin-bottom: 14px;
    display: block;
}

.lbh-bonus-card h3 {
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 8px;
}

.lbh-bonus-amount {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 10px;
}

.lbh-bonus-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 18px;
    line-height: 1.55;
}

.lbh-bonus-tag {
    display: inline-block;
    background: rgba(168, 85, 247, 0.15);
    border: 1px solid rgba(168, 85, 247, 0.3);
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

/* ─── WHEEL ─── */
.lbh-wheel-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.lbh-wheel-canvas-wrap {
    position: relative;
    display: flex;
    justify-content: center;
}

.lbh-wheel-pointer {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 22px solid var(--accent2);
    z-index: 10;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

#lbhWheelCanvas {
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(168, 85, 247, 0.3);
    max-width: 100%;
}

.lbh-wheel-info h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--text);
}

.lbh-wheel-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 24px;
    line-height: 1.6;
}

.lbh-wheel-result {
    display: none;
    margin-top: 20px;
    padding: 18px;
    border-radius: var(--radius-sm);
    text-align: center;
    animation: fadeIn 0.4s ease;
}

.lbh-wheel-result.win {
    display: block;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: var(--success);
}

.lbh-wheel-result.lose {
    display: block;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: var(--danger);
}

.lbh-wheel-result h4 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.lbh-wheel-result p {
    font-size: 0.85rem;
    margin-bottom: 12px;
    color: inherit;
}

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

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

.lbh-review-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 22px;
    transition: transform var(--transition);
}

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

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

.lbh-review-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--card-border);
}

.lbh-review-meta-name {
    font-weight: 600;
    color: var(--text);
    font-size: 0.9rem;
}

.lbh-stars {
    display: flex;
    gap: 2px;
    margin-top: 3px;
}

.lbh-review-text {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.65;
}

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

.lbh-review-form-wrap h3 {
    font-size: 1.15rem;
    margin-bottom: 22px;
    color: var(--text);
}

.lbh-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

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

.lbh-field label {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-muted);
}

.lbh-field input,
.lbh-field textarea {
    background: var(--input-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-sm);
    padding: 11px 14px;
    color: var(--text);
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
    transition: border-color var(--transition);
    resize: none;
}

.lbh-field input:focus,
.lbh-field textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.15);
}

.lbh-field textarea {
    min-height: 100px;
}

.lbh-form-success {
    display: none;
    text-align: center;
    padding: 24px;
    animation: fadeIn 0.4s ease;
}

.lbh-form-success.visible {
    display: block;
}

.lbh-form-success-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.lbh-form-success h4 {
    color: var(--success);
    margin-bottom: 8px;
}

.lbh-form-success p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* ─── FOOTER ─── */
.lbh-footer {
    background: var(--header-bg);
    border-top: 1px solid rgba(168, 85, 247, 0.15);
    padding: 48px 0 24px;
}

.lbh-footer-grid {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 32px;
    align-items: start;
    margin-bottom: 32px;
}

.lbh-footer-logo img {
    height: 40px;
    opacity: 0.85;
}

.lbh-footer-logo:hover {
    opacity: 1;
}

.lbh-footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 16px;
}

.lbh-footer-nav a {
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: color var(--transition);
}

.lbh-footer-nav a:hover {
    color: var(--text);
}

.lbh-footer-info {
    text-align: right;
}

.lbh-footer-info span {
    display: block;
    font-size: 0.78rem;
    color: var(--text-dim);
    line-height: 1.7;
}

.lbh-footer-logos-row {
    border-top: 1px solid rgba(53, 37, 72, 0.6);
    padding-top: 24px;
    margin-bottom: 24px;
}

.lbh-footer-logos-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 10px;
}

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

.lbh-logo-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 6px 14px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    transition: all var(--transition);
}

.lbh-logo-chip:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text);
}

.lbh-footer-legal {
    border-top: 1px solid rgba(53, 37, 72, 0.6);
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.lbh-footer-legal p {
    font-size: 0.75rem;
    color: var(--text-dim);
    line-height: 1.6;
    max-width: 700px;
}

.lbh-footer-copyright {
    font-size: 0.78rem;
    color: var(--text-dim);
    white-space: nowrap;
}

.lbh-footer-age {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 2px solid var(--text-dim);
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-dim);
    flex-shrink: 0;
}

/* ─── WIDGET ─── */
.lbh-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(90deg, #1C142F, var(--btn-reg));
    border-top: 1px solid rgba(168, 85, 247, 0.25);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
}

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

.lbh-widget-text strong {
    color: var(--accent2);
}

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

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

/* ─── WP OBFUSCATION (unused elements) ─── */
.wp-block-group, .elementor-widget-wrap, .wp-block-cover {
    display: none;
}

.entry-content, .site-footer, .wp-site-blocks {
    display: none;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
    .lbh-pros-cons {
        grid-template-columns: 1fr;
    }

    .lbh-screenshots-grid {
        grid-template-columns: 1fr;
        display: none;
    }

    .lbh-bonuses-grid {
        grid-template-columns: 1fr;
        display: none;
    }

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

    .lbh-footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .lbh-footer-nav {
        justify-content: center;
    }

    .lbh-footer-info {
        text-align: center;
    }

    .lbh-footer-legal {
        flex-direction: column;
        text-align: center;
    }

    .lbh-footer-copyright {
        white-space: normal;
        text-align: center;
    }

    #lbhWheelCanvas {
        width: 260px !important;
        height: 260px !important;
    }

    .lbh-slider-wrap .lbh-screenshots-grid,
    .lbh-slider-wrap .lbh-bonuses-grid {
        display: flex;
    }

    .lbh-slider-dots {
        display: flex;
    }

    .lbh-slider-arrows {
        display: flex;
    }
}

@media (max-width: 768px) {
    .lbh-header-inner {
        grid-template-columns: auto 1fr;
    }

    .lbh-nav {
        display: none;
    }

    .lbh-burger {
        display: flex;
    }

    .lbh-online {
        font-size: 0.72rem;
    }

    .lbh-footer-grid {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .lbh-section {
        padding: 44px 0;
    }

    .lbh-hero {
        min-height: 400px;
        padding: 60px 16px;
    }

    .lbh-content-block {
        padding: 20px;
    }

    .lbh-review-form-wrap {
        padding: 20px;
    }

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

    .lbh-widget-text {
        font-size: 0.78rem;
    }

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

/* ─── ANIMATIONS ─── */
.lbh-fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.lbh-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── UNUSED / UNIQUE ─── */
.rz9q1-unused {
    display: none;
    color: transparent;
    pointer-events: none;
}

.wp-caption-text {
    display: none;
}

.wp-pagenavi {
    display: none;
}

.k4m7n-obfus {
    visibility: hidden;
    height: 0;
    overflow: hidden;
}

@media (max-width: 900px) {
    .lbh-slider-wrap {
        overflow: visible;
    }

    .lbh-slider-track {
        display: flex;
        gap: 14px;
        overflow-x: auto;
        overflow-y: visible;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 4px 4px 12px;
    }

    .lbh-slider-track::-webkit-scrollbar {
        display: none;
    }

    .lbh-slider-track {
        scrollbar-width: none;
    }

    .lbh-slider-track .lbh-screenshot-item,
    .lbh-slider-track .lbh-bonus-card {
        min-width: 86%;
        flex: 0 0 86%;
        scroll-snap-align: center;
        transform: none !important;
    }

    .lbh-slider-track .lbh-screenshot-item img {
        height: auto;
        aspect-ratio: 16 / 10;
        object-fit: cover;
    }

    .lbh-slider-arrows,
    .lbh-slider-dots {
        display: none;
    }
}

@media (max-width: 480px) {
    .lbh-slider-track .lbh-screenshot-item,
    .lbh-slider-track .lbh-bonus-card {
        min-width: 92%;
        flex-basis: 92%;
    }
}