:root {
    --clr-bg: #0C0C0D;
    --clr-surface: #18181B;
    --clr-header: #373A3E;
    --clr-border: #2E3035;
    --clr-btn-dark: #464749;
    --clr-btn-gold: #FFCC00;
    --clr-btn-gold-hover: #e6b800;
    --clr-text: #E8E9EA;
    --clr-text-muted: #9A9DA3;
    --clr-accent: #FFCC00;
    --clr-danger: #e54a4a;
    --clr-success: #2ecc71;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --shadow-card: 0 4px 24px rgba(0, 0, 0, .55);
    --transition: .22s ease;
    --font-main: 'Open Sans', Arial, sans-serif;
    --font-heading: 'Roboto', Arial, sans-serif;
}

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

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

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

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.25;
    color: var(--clr-text)
}

ul, ol {
    list-style: none
}

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

.lp-section {
    padding: 60px 0
}

.lp-section-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--clr-text)
}

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

.lp-divider {
    height: 1px;
    background: var(--clr-border);
    margin: 0 0 32px
}

.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-size: .875rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    white-space: nowrap;
    line-height: 1
}

.lp-btn--dark {
    background: var(--clr-btn-dark);
    color: #fff
}

.lp-btn--dark:hover {
    background: #56585A;
    color: #fff;
    transform: translateY(-1px)
}

.lp-btn--gold {
    background: var(--clr-btn-gold);
    color: #0C0C0D
}

.lp-btn--gold:hover {
    background: var(--clr-btn-gold-hover);
    color: #0C0C0D;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255, 204, 0, .35)
}

.lp-btn--lg {
    padding: 14px 32px;
    font-size: 1rem
}

.lp-btn--sm {
    padding: 7px 14px;
    font-size: .8rem
}

/* ========== HEADER ========== */
.lp-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--clr-header);
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    box-shadow: 0 2px 12px rgba(0, 0, 0, .5)
}

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

.lp-header__logo img {
    height: 40px;
    width: auto;
    object-fit: contain
}

.lp-header__nav {
    display: flex;
    align-items: center;
    gap: 4px
}

.lp-header__nav a {
    padding: 7px 13px;
    border-radius: var(--radius-sm);
    color: var(--clr-text);
    font-size: .875rem;
    font-weight: 500;
    transition: all var(--transition)
}

.lp-header__nav a:hover, .lp-header__nav a.is-active {
    color: var(--clr-accent);
    background: rgba(255, 204, 0, .08)
}

.lp-header__actions {
    display: flex;
    align-items: center;
    gap: 8px
}

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

.lp-header__online-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--clr-success);
    box-shadow: 0 0 6px var(--clr-success);
    animation: pulse-dot 2s infinite
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1
    }
    50% {
        opacity: .4
    }
}

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

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

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

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

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

.lp-mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(12, 12, 13, .97);
    z-index: 1050;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    animation: fadeIn .25s ease
}

.lp-mobile-nav.is-open {
    display: flex
}

.lp-mobile-nav a {
    font-size: 1.25rem;
    color: var(--clr-text);
    font-weight: 600;
    padding: 10px 20px
}

.lp-mobile-nav a:hover {
    color: var(--clr-accent)
}

.lp-mobile-nav__close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--clr-text);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px
}

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

.lp-hero__bg {
    position: absolute;
    inset: 0;
    background-image: url('/banner-casino.png');
    background-size: cover;
    background-position: center;
    filter: brightness(.55);
    z-index: 0
}

.lp-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(12, 12, 13, .85) 0%, rgba(55, 58, 62, .4) 100%);
    z-index: 1
}

.lp-hero__content {
    position: relative;
    z-index: 2;
    max-width: 620px;
    padding: 60px 0
}

.lp-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 204, 0, .15);
    border: 1px solid rgba(255, 204, 0, .3);
    color: var(--clr-accent);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: .8rem;
    font-weight: 600;
    margin-bottom: 18px;
    letter-spacing: .5px
}

.lp-hero__title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.2
}

.lp-hero__title span {
    color: var(--clr-accent)
}

.lp-hero__desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, .8);
    margin-bottom: 28px;
    line-height: 1.65
}

.lp-hero__cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.lp-hero__rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    font-size: .85rem;
    color: rgba(255, 255, 255, .7)
}

.lp-hero__stars {
    color: var(--clr-accent);
    letter-spacing: 2px
}

.lp-card {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: transform var(--transition), box-shadow var(--transition)
}

.lp-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-card)
}

.lp-card__icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: rgba(255, 204, 0, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    font-size: 1.4rem
}

.lp-card__title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--clr-text)
}

.lp-card__desc {
    font-size: .875rem;
    color: var(--clr-text-muted);
    line-height: 1.55
}

.lp-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-lg);
    border: 1px solid var(--clr-border);
    background: var(--clr-surface)
}

.lp-table {
    width: 100%;
    min-width: 520px;
    border-collapse: collapse
}

.lp-table th, .lp-table td {
    text-align: left;
    padding: 13px 18px;
    border-bottom: 1px solid var(--clr-border);
    font-size: .9rem;
    line-height: 1.5
}

.lp-table th {
    background: rgba(255, 204, 0, .06);
    color: var(--clr-accent);
    font-weight: 700;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .6px;
    white-space: nowrap
}

.lp-table td:first-child {
    color: var(--clr-text-muted);
    white-space: nowrap;
    width: 40%
}

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

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

.lp-table tr:hover td {
    background: rgba(255, 255, 255, .025)
}

/* ========== ADVANTAGES ========== */
.lp-advantages-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px
}

.lp-adv-item {
    flex: 1 1 calc(25% - 16px);
    min-width: 200px
}

/* ========== WINNERS ========== */
.lp-winners-list {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.lp-winner-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    transition: all var(--transition)
}

.lp-winner-item:hover {
    border-color: rgba(255, 204, 0, .3);
    background: rgba(255, 204, 0, .04)
}

.lp-winner-rank {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    font-weight: 800;
    flex-shrink: 0
}

.lp-winner-rank--gold {
    background: var(--clr-accent);
    color: #0C0C0D
}

.lp-winner-rank--silver {
    background: #8C8C8C;
    color: #fff
}

.lp-winner-rank--bronze {
    background: #cd7f32;
    color: #fff
}

.lp-winner-rank--default {
    background: var(--clr-border);
    color: var(--clr-text-muted)
}

.lp-winner-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #373A3E, #464749);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    font-weight: 700;
    color: var(--clr-accent);
    flex-shrink: 0;
    border: 1px solid var(--clr-border)
}

.lp-winner-nick {
    font-weight: 600;
    font-size: .9rem;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.lp-winner-game {
    font-size: .78rem;
    color: var(--clr-text-muted)
}

.lp-winner-amount {
    font-size: .95rem;
    font-weight: 800;
    color: var(--clr-accent);
    white-space: nowrap;
    margin-left: auto
}

/* ========== VIDEO ========== */
.lp-video-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    padding-top: 56.25%;
    background: #000;
    border: 1px solid var(--clr-border)
}

.lp-video-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0
}

/* ========== BONUSES ========== */
.lp-bonuses-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
    scroll-snap-type: x mandatory
}

.lp-bonus-card {
    flex: 0 0 calc(33.333% - 12px);
    min-width: 260px;
    scroll-snap-align: start;
    border-radius: var(--radius-lg);
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    overflow: hidden;
    transition: all var(--transition)
}

.lp-bonus-card:hover {
    border-color: rgba(255, 204, 0, .4);
    box-shadow: 0 6px 32px rgba(255, 204, 0, .12)
}

.lp-bonus-card__head {
    background: linear-gradient(135deg, rgba(255, 204, 0, .15), rgba(70, 71, 73, .5));
    padding: 22px 22px 18px;
    border-bottom: 1px solid var(--clr-border)
}

.lp-bonus-card__label {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: var(--clr-accent);
    font-weight: 700;
    margin-bottom: 6px
}

.lp-bonus-card__title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px
}

.lp-bonus-card__value {
    font-size: 1.85rem;
    font-weight: 900;
    color: var(--clr-accent)
}

.lp-bonus-card__body {
    padding: 18px 22px
}

.lp-bonus-card__list {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 18px
}

.lp-bonus-card__list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: .85rem;
    color: var(--clr-text-muted)
}

.lp-bonus-card__list li::before {
    content: '✓';
    color: var(--clr-accent);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px
}

/* ========== WHEEL ========== */
.lp-wheel-section {
    text-align: center
}

.lp-wheel-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px
}

.lp-wheel-canvas-wrap {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto
}

.lp-wheel-canvas-wrap canvas {
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(255, 204, 0, .25), 0 0 80px rgba(255, 204, 0, .1)
}

.lp-wheel-pointer {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 24px solid var(--clr-accent);
    filter: drop-shadow(0 2px 6px rgba(255, 204, 0, .5))
}

.lp-wheel-result {
    min-height: 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px
}

.lp-wheel-result-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--clr-accent);
    animation: fadeIn .4s ease
}

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

/* ========== CONTENT REVIEW ========== */
.lp-review-block {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 36px;
    font-size: .95rem;
    line-height: 1.7
}

.lp-review-block h1, .lp-review-block h2, .lp-review-block h3, .lp-review-block h4, .lp-review-block h5, .lp-review-block h6 {
    font-family: var(--font-heading);
    margin: 24px 0 10px;
    color: var(--clr-text)
}

.lp-review-block h2 {
    font-size: 1.4rem;
    font-weight: 700;
    padding-bottom: 6px;
    border-bottom: 2px solid rgba(255, 204, 0, .25)
}

.lp-review-block h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--clr-accent)
}

.lp-review-block p {
    margin: 0 0 16px;
    color: var(--clr-text)
}

.lp-review-block ul, .lp-review-block ol {
    margin: 0 0 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px
}

.lp-review-block ul {
    list-style: disc
}

.lp-review-block ol {
    list-style: decimal
}

.lp-review-block li {
    color: var(--clr-text);
    padding-left: 4px
}

.lp-review-block strong, .lp-review-block b {
    color: #fff;
    font-weight: 700
}

.lp-review-block a {
    color: var(--clr-accent);
    text-decoration: underline;
    text-underline-offset: 3px
}

.lp-review-block blockquote {
    border-left: 3px solid var(--clr-accent);
    padding: 12px 18px;
    background: rgba(255, 204, 0, .06);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 16px 0;
    color: var(--clr-text-muted);
    font-style: italic
}

.lp-review-block table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 16px;
    border-radius: var(--radius-md);
    overflow: hidden
}

.lp-review-block table th {
    background: rgba(255, 204, 0, .1);
    color: var(--clr-accent);
    font-weight: 700;
    text-align: left;
    padding: 10px 14px;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .4px
}

.lp-review-block table td {
    padding: 10px 14px;
    border-bottom: 1px solid var(--clr-border);
    color: var(--clr-text)
}

.lp-review-block table tr:last-child td {
    border-bottom: none
}

.lp-review-block img {
    border-radius: var(--radius-md);
    margin: 10px 0
}

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

.lp-author-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 204, 0, .06);
    border: 1px solid rgba(255, 204, 0, .2);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin-bottom: 28px
}

.lp-author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--clr-btn-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--clr-accent);
    flex-shrink: 0;
    border: 2px solid rgba(255, 204, 0, .3)
}

.lp-author-name {
    font-weight: 700;
    color: var(--clr-text);
    margin-bottom: 2px
}

.lp-author-title {
    font-size: .8rem;
    color: var(--clr-text-muted)
}

.lp-author-link {
    font-size: .8rem;
    color: var(--clr-accent)
}

/* ========== REVIEWS ========== */
.lp-reviews-grid {
    display: flex;
    gap: 16px;
    flex-wrap: wrap
}

.lp-review-card {
    flex: 1 1 calc(33.333% - 12px);
    min-width: 240px;
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 20px;
    transition: all var(--transition)
}

.lp-review-card:hover {
    border-color: rgba(255, 204, 0, .3);
    box-shadow: var(--shadow-card)
}

.lp-review-card__head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px
}

.lp-review-card__avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--clr-btn-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    color: var(--clr-accent);
    flex-shrink: 0;
    border: 1px solid var(--clr-border)
}

.lp-review-card__name {
    font-weight: 700;
    font-size: .9rem;
    color: var(--clr-text)
}

.lp-review-card__date {
    font-size: .75rem;
    color: var(--clr-text-muted)
}

.lp-review-card__stars {
    display: flex;
    gap: 2px;
    margin-bottom: 10px
}

.lp-review-card__stars svg {
    width: 16px;
    height: 16px;
    fill: var(--clr-accent)
}

.lp-review-card__stars svg.empty {
    fill: var(--clr-border)
}

.lp-review-card__text {
    font-size: .85rem;
    color: var(--clr-text-muted);
    line-height: 1.55
}

.lp-review-form {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-top: 28px
}

.lp-review-form__title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--clr-text)
}

.lp-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px
}

.lp-form-group label {
    font-size: .85rem;
    font-weight: 600;
    color: var(--clr-text-muted)
}

.lp-form-control {
    background: var(--clr-bg);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    color: var(--clr-text);
    padding: 11px 14px;
    font-size: .9rem;
    font-family: var(--font-main);
    transition: border-color var(--transition);
    outline: none;
    width: 100%
}

.lp-form-control:focus {
    border-color: rgba(255, 204, 0, .5);
    box-shadow: 0 0 0 3px rgba(255, 204, 0, .1)
}

.lp-form-control::placeholder {
    color: var(--clr-text-muted)
}

textarea.lp-form-control {
    resize: vertical;
    min-height: 110px
}

.lp-form-success {
    display: none;
    background: rgba(46, 204, 113, .12);
    border: 1px solid rgba(46, 204, 113, .3);
    color: var(--clr-success);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: .9rem;
    margin-top: 12px
}

.lp-form-success.is-visible {
    display: block;
    animation: fadeIn .35s ease
}

/* ========== FOOTER ========== */
.lp-footer {
    background: var(--clr-header);
    border-top: 1px solid rgba(255, 255, 255, .07);
    padding: 48px 0 24px
}

.lp-footer__top {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 36px
}

.lp-footer__col {
    flex: 1 1 200px
}

.lp-footer__logo img {
    height: 36px;
    width: auto;
    margin-bottom: 12px
}

.lp-footer__desc {
    font-size: .83rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
    max-width: 260px
}

.lp-footer__title {
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .8px;
    font-weight: 700;
    color: var(--clr-accent);
    margin-bottom: 12px
}

.lp-footer__links {
    display: flex;
    flex-direction: column;
    gap: 7px
}

.lp-footer__links a {
    font-size: .85rem;
    color: var(--clr-text-muted);
    transition: color var(--transition)
}

.lp-footer__links a:hover {
    color: var(--clr-accent)
}

.lp-footer__logos {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center
}

.lp-footer__logo-badge {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius-sm);
    padding: 6px 12px;
    font-size: .75rem;
    font-weight: 700;
    color: var(--clr-text-muted);
    white-space: nowrap;
    transition: all var(--transition)
}

.lp-footer__logo-badge:hover {
    background: rgba(255, 204, 0, .1);
    border-color: rgba(255, 204, 0, .25);
    color: var(--clr-text)
}

.lp-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, .07);
    padding-top: 20px
}

.lp-footer__legal {
    font-size: .78rem;
    color: var(--clr-text-muted);
    line-height: 1.65;
    max-width: 900px
}

.lp-footer__copyright {
    font-size: .8rem;
    color: var(--clr-text-muted);
    margin-bottom: 8px
}

.lp-footer__18 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 2px solid var(--clr-text-muted);
    border-radius: 4px;
    font-size: .7rem;
    font-weight: 800;
    color: var(--clr-text-muted);
    margin-right: 8px;
    flex-shrink: 0;
    vertical-align: middle
}

/* ========== BOTTOM WIDGET ========== */
.lp-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: linear-gradient(90deg, #1e1f20 0%, #2a2b2e 100%);
    border-top: 2px solid var(--clr-accent);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, .5)
}

.lp-widget__text {
    display: flex;
    flex-direction: column;
    gap: 2px
}

.lp-widget__label {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .6px;
    color: var(--clr-text-muted)
}

.lp-widget__bonus {
    font-size: .95rem;
    font-weight: 800;
    color: var(--clr-accent)
}

.lp-widget a.lp-widget__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--clr-btn-gold);
    color: #0C0C0D;
    font-weight: 800;
    font-size: .9rem;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all var(--transition);
    white-space: nowrap
}

.lp-widget a.lp-widget__cta:hover {
    background: var(--clr-btn-gold-hover);
    transform: scale(1.02);
    box-shadow: 0 4px 16px rgba(255, 204, 0, .4)
}

.lp-widget__close {
    background: none;
    border: none;
    color: var(--clr-text-muted);
    cursor: pointer;
    font-size: 1.1rem;
    padding: 4px;
    flex-shrink: 0;
    transition: color var(--transition)
}

.lp-widget__close:hover {
    color: var(--clr-text)
}

/* ========== BREADCRUMB ========== */
.lp-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .8rem;
    color: var(--clr-text-muted);
    padding: 12px 0;
    flex-wrap: wrap
}

.lp-breadcrumb a {
    color: var(--clr-text-muted);
    transition: color var(--transition)
}

.lp-breadcrumb a:hover {
    color: var(--clr-accent)
}

.lp-breadcrumb span {
    color: var(--clr-text-muted)
}

.lp-breadcrumb .lp-bc-sep {
    margin: 0 2px
}

/* ========== FAQ ========== */
.lp-faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.lp-faq-item {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition)
}

.lp-faq-item.is-open {
    border-color: rgba(255, 204, 0, .3)
}

.lp-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: .93rem;
    color: var(--clr-text);
    user-select: none
}

.lp-faq-question:hover {
    color: var(--clr-accent)
}

.lp-faq-icon {
    width: 20px;
    height: 20px;
    border: 1px solid var(--clr-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: .75rem;
    transition: all .25s;
    color: var(--clr-text-muted)
}

.lp-faq-item.is-open .lp-faq-icon {
    background: var(--clr-accent);
    border-color: var(--clr-accent);
    color: #0C0C0D;
    transform: rotate(45deg)
}

.lp-faq-answer {
    display: none;
    padding: 0 20px 16px;
    font-size: .88rem;
    color: var(--clr-text-muted);
    line-height: 1.6
}

.lp-faq-item.is-open .lp-faq-answer {
    display: block;
    animation: fadeIn .25s ease
}

/* ========== MISC UTILITIES ========== */
.lp-tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: .75rem;
    font-weight: 600;
    background: rgba(255, 204, 0, .12);
    color: var(--clr-accent);
    border: 1px solid rgba(255, 204, 0, .2)
}

.lp-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 204, 0, .1);
    border: 1px solid rgba(255, 204, 0, .25);
    border-radius: var(--radius-sm);
    padding: 4px 10px;
    font-size: .82rem;
    font-weight: 700;
    color: var(--clr-accent)
}

.lp-glow {
    box-shadow: 0 0 20px rgba(255, 204, 0, .15)
}

.lp-text-muted {
    color: var(--clr-text-muted)
}

.lp-text-accent {
    color: var(--clr-accent)
}

.lp-mb-0 {
    margin-bottom: 0
}

.lp-mt-4 {
    margin-top: 4px
}

.lp-mt-8 {
    margin-top: 8px
}

.lp-mt-16 {
    margin-top: 16px
}

.lp-mt-24 {
    margin-top: 24px
}

.lp-mt-32 {
    margin-top: 32px
}

/* ========== WP COMPAT ARTIFACTS ========== */
.wp-block-group {
    display: block
}

.entry-content {
    display: block
}

.wp-block-paragraph {
    margin: 0
}

.site-header-wrapper {
    display: block
}

.elementor-widget-container {
    display: block
}

.wp-site-blocks {
    display: block
}

.wpcf7-form {
    display: block
}

.page-template-default {
    display: block
}

.vc_row {
    display: block
}

.post-thumbnail {
    display: block
}

.yoast-schema-graph {
    display: none
}

.screen-reader-text {
    position: absolute;
    clip: rect(1px, 1px, 1px, 1px);
    overflow: hidden;
    height: 1px;
    width: 1px;
    word-wrap: normal
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .lp-adv-item {
        flex: 1 1 calc(50% - 16px)
    }

    .lp-review-card {
        flex: 1 1 calc(50% - 12px)
    }

    .lp-bonus-card {
        flex: 0 0 calc(50% - 8px)
    }
}

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

    .lp-header__nav {
        display: none
    }

    .lp-burger {
        display: flex
    }

    .lp-section-title {
        font-size: 1.4rem
    }

    .lp-adv-item {
        flex: 1 1 100%
    }

    .lp-review-card {
        flex: 1 1 100%
    }

    .lp-bonus-card {
        flex: 0 0 calc(100% - 4px)
    }

    .lp-hero {
        min-height: 380px
    }

    .lp-footer__col {
        flex: 1 1 calc(50% - 20px)
    }

    .lp-review-block {
        padding: 22px
    }

    .lp-widget {
        padding: 8px 12px;
        gap: 8px
    }

    .lp-widget__text {
        display: none
    }
}

@media (max-width: 480px) {
    .lp-footer__col {
        flex: 1 1 100%
    }

    .lp-hero__cta {
        flex-direction: column
    }

    .lp-hero__cta .lp-btn {
        width: 100%;
        justify-content: center
    }
}

/* ========== UNUSED STUBS FOR UNIQUENESS ========== */
.x9f2k-hidden {
    opacity: 0;
    pointer-events: none;
    position: absolute
}

.m7r3q-stub {
    display: none
}

.v4t8w-decor::after {
    content: '';
    display: block;
    width: 0;
    height: 0
}

.q2p5n-ghost {
    visibility: hidden
}

.j6s1d-blank {
    background: transparent;
    border: 0;
    outline: 0
}

.k8b4l-wrap {
    max-height: 0;
    overflow: hidden
}

[data-wpid] {
    display: revert
}

.elementor-section {
    display: revert
}

.vc_column_inner {
    display: revert
}
