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

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

:root {
    --lp-bg: #0C0C0D;
    --lp-header: #373A3E;
    --lp-btn-dark: #464749;
    --lp-btn-yellow: #FFCC00;
    --lp-text: #E8E9EA;
    --lp-text-muted: #9A9DA2;
    --lp-border: #2A2C30;
    --lp-card: #1A1B1E;
    --lp-card2: #1E2024;
    --lp-accent: #FFCC00;
    --lp-radius: 10px;
    --lp-radius-sm: 6px;
    --lp-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
    --lp-transition: 0.25s ease;
}

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

body {
    background: var(--lp-bg);
    color: var(--lp-text);
    font-family: 'Roboto', 'Open Sans', Arial, sans-serif;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

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

a:hover {
    color: #ffe566;
}

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

ul {
    list-style: none;
}

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

/* HEADER */
.q4t8n-header {
    background: var(--lp-header);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.q4t8n-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 68px;
}

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

.q4t8n-logo img {
    height: 38px;
    width: auto;
    display: block;
}

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

.q4t8n-nav a {
    color: var(--lp-text);
    font-size: 0.88rem;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: var(--lp-radius-sm);
    transition: background var(--lp-transition), color var(--lp-transition);
}

.q4t8n-nav a:hover {
    background: rgba(255, 204, 0, 0.12);
    color: var(--lp-accent);
}

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

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

.q4t8n-online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4caf50;
    display: inline-block;
    animation: lp-pulse-dot 1.8s infinite;
}

@keyframes lp-pulse-dot {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.5)
    }
    50% {
        box-shadow: 0 0 0 5px rgba(76, 175, 80, 0)
    }
}

.m2p6s-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: var(--lp-radius-sm);
    cursor: pointer;
    font-family: inherit;
    font-weight: 600;
    text-decoration: none;
    transition: transform var(--lp-transition), box-shadow var(--lp-transition), background var(--lp-transition);
    white-space: nowrap;
}

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

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

.m2p6s-login {
    background: var(--lp-btn-dark);
    color: #fff;
    font-size: 0.85rem;
    padding: 8px 18px;
}

.m2p6s-login:hover {
    background: #5a5d61;
    color: #fff;
}

.m2p6s-signup {
    background: var(--lp-btn-yellow);
    color: #111;
    font-size: 0.85rem;
    padding: 8px 18px;
    box-shadow: 0 2px 12px rgba(255, 204, 0, 0.3);
}

.m2p6s-signup:hover {
    background: #ffe566;
    color: #111;
    box-shadow: 0 4px 18px rgba(255, 204, 0, 0.45);
}

.q4t8n-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

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

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

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

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

.q4t8n-mobile-menu {
    display: none;
    background: #2c2f33;
    padding: 0;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.q4t8n-mobile-menu.open {
    max-height: 400px;
    padding: 12px 0;
}

.q4t8n-mobile-menu a {
    display: block;
    color: var(--lp-text);
    font-size: 0.92rem;
    padding: 10px 20px;
    transition: background var(--lp-transition);
}

.q4t8n-mobile-menu a:hover {
    background: rgba(255, 204, 0, 0.1);
}

.q4t8n-mobile-menu .lp-mob-btns {
    display: flex;
    gap: 10px;
    padding: 12px 20px 4px;
}

.q4t8n-mobile-menu .lp-mob-btns .m2p6s-btn {
    flex: 1;
    justify-content: center;
    padding: 10px;
}

/* HERO */
.x9b3f-hero {
    position: relative;
    overflow: hidden;
    background: #0a0a0b;
    min-height: 480px;
}

.x9b3f-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    will-change: transform;
}

.x9b3f-slide {
    flex: 0 0 100%;
    min-height: 480px;
    position: relative;
    display: flex;
    align-items: center;
}

.x9b3f-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.x9b3f-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.35) 60%, transparent 100%);
}

.x9b3f-content {
    position: relative;
    z-index: 2;
    padding: 40px 60px;
    max-width: 560px;
}

.x9b3f-label {
    display: inline-block;
    background: var(--lp-btn-yellow);
    color: #111;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.x9b3f-content h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 14px;
}

.x9b3f-content p {
    font-size: 1.02rem;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 28px;
    line-height: 1.6;
}

.x9b3f-btn {
    background: var(--lp-btn-yellow);
    color: #111;
    font-size: 1rem;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: var(--lp-radius-sm);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform var(--lp-transition), box-shadow var(--lp-transition);
    box-shadow: 0 4px 20px rgba(255, 204, 0, 0.4);
}

.x9b3f-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(255, 204, 0, 0.5);
    color: #111;
}

.x9b3f-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.x9b3f-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: background var(--lp-transition), transform var(--lp-transition);
    border: none;
    padding: 0;
}

.x9b3f-dot.active {
    background: var(--lp-btn-yellow);
    transform: scale(1.25);
}

.x9b3f-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--lp-transition);
    font-size: 1.1rem;
}

.x9b3f-arrow:hover {
    background: rgba(255, 204, 0, 0.25);
}

.x9b3f-prev {
    left: 16px;
}

.x9b3f-next {
    right: 16px;
}

/* SECTIONS */
.lp-section {
    padding: 60px 0;
}

.lp-section-sm {
    padding: 40px 0;
}

.lp-section-title {
    font-size: clamp(1.3rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

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

.lp-divider {
    width: 48px;
    height: 3px;
    background: var(--lp-btn-yellow);
    border-radius: 2px;
    margin-bottom: 16px;
}

/* TOC */
.k5v1r-toc {
    background: var(--lp-card);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 28px 32px;
    margin-bottom: 40px;
}

.k5v1r-toc h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.k5v1r-toc h2::before {
    content: '';
    display: block;
    width: 4px;
    height: 20px;
    background: var(--lp-btn-yellow);
    border-radius: 2px;
}

.k5v1r-toc ol {
    counter-reset: toc-counter;
    padding-left: 0;
}

.k5v1r-toc ol li {
    counter-increment: toc-counter;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.k5v1r-toc ol li:last-child {
    border-bottom: none;
}

.k5v1r-toc ol li::before {
    content: counter(toc-counter) ".";
    color: var(--lp-btn-yellow);
    font-weight: 700;
    min-width: 22px;
    font-size: 0.9rem;
}

.k5v1r-toc a {
    color: var(--lp-text);
    font-size: 0.92rem;
    transition: color var(--lp-transition);
}

.k5v1r-toc a:hover {
    color: var(--lp-accent);
}

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

.lp-adv-item {
    flex: 1 1 calc(25% - 16px);
    min-width: 200px;
    background: var(--lp-card);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 22px 18px;
    transition: transform var(--lp-transition), border-color var(--lp-transition);
}

.lp-adv-item:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 204, 0, 0.3);
}

.lp-adv-icon {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.lp-adv-item h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.lp-adv-item p {
    font-size: 0.84rem;
    color: var(--lp-text-muted);
    line-height: 1.55;
}

/* MIRRORS TABLE */
.w8g3d-block {
    background: var(--lp-card);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    overflow: hidden;
}

.w8g3d-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--lp-border);
    flex-wrap: wrap;
    gap: 10px;
}

.w8g3d-header h2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
}

.w8g3d-time {
    font-size: 0.82rem;
    color: var(--lp-text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.w8g3d-time-val {
    color: var(--lp-accent);
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}

.w8g3d-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(76, 175, 80, 0.15);
    color: #4caf50;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.lp-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

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

.lp-table th {
    background: rgba(255, 255, 255, 0.04);
    color: var(--lp-text-muted);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--lp-border);
}

.lp-table td {
    padding: 14px 16px;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    vertical-align: middle;
}

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

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

.lp-mirror-link {
    color: var(--lp-accent);
    font-weight: 500;
}

.lp-mirror-link:hover {
    color: #ffe566;
    text-decoration: underline;
}

.lp-status-ok {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #4caf50;
    font-size: 0.85rem;
    font-weight: 500;
}

.lp-status-ok::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4caf50;
    display: block;
}

.lp-btn-sm {
    background: var(--lp-btn-yellow);
    color: #111;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 7px 16px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    transition: background var(--lp-transition), transform var(--lp-transition);
}

.lp-btn-sm:hover {
    background: #ffe566;
    color: #111;
    transform: scale(1.04);
}

/* BONUSES */
.j6n2x-grid {
    display: flex;
    gap: 18px;
}

.j6n2x-card {
    flex: 1;
    background: var(--lp-card);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    overflow: hidden;
    transition: transform var(--lp-transition), box-shadow var(--lp-transition);
}

.j6n2x-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.j6n2x-top {
    background: linear-gradient(135deg, #1a1d22 0%, #242830 100%);
    padding: 28px 24px 20px;
    border-bottom: 1px solid var(--lp-border);
}

.j6n2x-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}

.j6n2x-tag.welcome {
    background: rgba(255, 204, 0, 0.18);
    color: var(--lp-accent);
    border: 1px solid rgba(255, 204, 0, 0.3);
}

.j6n2x-tag.reload {
    background: rgba(100, 160, 255, 0.15);
    color: #64a0ff;
    border: 1px solid rgba(100, 160, 255, 0.3);
}

.j6n2x-tag.cashback {
    background: rgba(76, 175, 80, 0.15);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.j6n2x-amount {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 6px;
}

.j6n2x-desc {
    font-size: 0.85rem;
    color: var(--lp-text-muted);
    margin-bottom: 0;
}

.j6n2x-body {
    padding: 20px 24px;
}

.j6n2x-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--lp-text);
    margin-bottom: 8px;
}

.j6n2x-feature::before {
    content: '✓';
    color: var(--lp-accent);
    font-weight: 700;
    flex-shrink: 0;
}

.j6n2x-cta {
    display: block;
    width: 100%;
    background: var(--lp-btn-yellow);
    color: #111;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 12px;
    border-radius: var(--lp-radius-sm);
    text-align: center;
    margin-top: 18px;
    border: none;
    cursor: pointer;
    transition: background var(--lp-transition), transform var(--lp-transition);
}

.j6n2x-cta:hover {
    background: #ffe566;
    transform: translateY(-2px);
    color: #111;
}

/* BONUS SLIDER MOBILE */
.j6n2x-slider {
    position: relative;
    overflow: hidden;
}

.j6n2x-track {
    display: flex;
    transition: transform 0.4s ease;
}

/* WHEEL GAME */
.c3h9p-wrap {
    background: var(--lp-card);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 36px 24px;
    text-align: center;
}

.c3h9p-canvas-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 24px;
}

#c3h9p-canvas {
    border-radius: 50%;
    display: block;
    filter: drop-shadow(0 0 20px rgba(255, 204, 0, 0.25));
}

.c3h9p-pin {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 24px solid var(--lp-btn-yellow);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.c3h9p-spin-btn {
    background: var(--lp-btn-yellow);
    color: #111;
    font-size: 1rem;
    font-weight: 800;
    padding: 14px 40px;
    border-radius: var(--lp-radius-sm);
    border: none;
    cursor: pointer;
    transition: transform var(--lp-transition), box-shadow var(--lp-transition);
    box-shadow: 0 4px 20px rgba(255, 204, 0, 0.35);
    letter-spacing: 0.3px;
}

.c3h9p-spin-btn:hover:not(:disabled) {
    transform: scale(1.05);
    box-shadow: 0 6px 28px rgba(255, 204, 0, 0.5);
}

.c3h9p-spin-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.c3h9p-result {
    margin-top: 24px;
    padding: 20px;
    border-radius: var(--lp-radius);
    border: 1px solid transparent;
    display: none;
}

.c3h9p-result.win {
    background: rgba(76, 175, 80, 0.1);
    border-color: rgba(76, 175, 80, 0.3);
}

.c3h9p-result.lose {
    background: rgba(255, 80, 80, 0.08);
    border-color: rgba(255, 80, 80, 0.2);
}

.c3h9p-result-title {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.c3h9p-result.win .c3h9p-result-title {
    color: #4caf50;
}

.c3h9p-result.lose .c3h9p-result-title {
    color: #f44;
}

.c3h9p-result-text {
    font-size: 0.93rem;
    color: var(--lp-text-muted);
    margin-bottom: 16px;
}

.c3h9p-get-btn {
    background: var(--lp-btn-yellow);
    color: #111;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: var(--lp-radius-sm);
    display: inline-block;
    transition: transform var(--lp-transition);
}

.c3h9p-get-btn:hover {
    transform: scale(1.04);
    color: #111;
}

/* AUTHOR */
.a7m4q-block {
    background: var(--lp-card);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 32px;
    display: flex;
    gap: 28px;
    align-items: flex-start;
}

.a7m4q-photo {
    flex-shrink: 0;
}

.a7m4q-photo img {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    border: 3px solid var(--lp-btn-yellow);
    object-fit: cover;
}

.a7m4q-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.a7m4q-role {
    font-size: 0.83rem;
    color: var(--lp-accent);
    font-weight: 600;
    margin-bottom: 12px;
}

.a7m4q-bio {
    font-size: 0.9rem;
    color: var(--lp-text-muted);
    line-height: 1.65;
    margin-bottom: 14px;
}

.a7m4q-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.a7m4q-social a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--lp-text-muted);
    border: 1px solid var(--lp-border);
    padding: 6px 14px;
    border-radius: 20px;
    transition: border-color var(--lp-transition), color var(--lp-transition);
}

.a7m4q-social a:hover {
    border-color: var(--lp-accent);
    color: var(--lp-accent);
}

/* CONTENT AREA */
.lp-content-area {
    background: var(--lp-card);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 32px;
}

.lp-content-area h1 {
    font-size: clamp(1.35rem, 2.5vw, 1.8rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
    line-height: 1.3;
}

.lp-content-area h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin: 28px 0 14px;
}

.lp-content-area h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #e0e0e0;
    margin: 22px 0 10px;
}

.lp-content-area p {
    font-size: 0.95rem;
    color: var(--lp-text);
    line-height: 1.75;
    margin-bottom: 14px;
}

.lp-content-area ul, .lp-content-area ol {
    margin: 0 0 14px 20px;
}

.lp-content-area ul li {
    list-style: disc;
    font-size: 0.93rem;
    color: var(--lp-text);
    line-height: 1.7;
    margin-bottom: 6px;
}

.lp-content-area ol li {
    list-style: decimal;
    font-size: 0.93rem;
    color: var(--lp-text);
    line-height: 1.7;
    margin-bottom: 6px;
}

.lp-content-area a {
    color: var(--lp-accent);
}

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

.lp-content-area table th {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    padding: 10px 14px;
    text-align: left;
    border: 1px solid var(--lp-border);
    font-size: 0.88rem;
}

.lp-content-area table td {
    padding: 10px 14px;
    border: 1px solid var(--lp-border);
    font-size: 0.88rem;
    color: var(--lp-text);
}

.lp-content-area strong {
    color: #fff;
    font-weight: 700;
}

.lp-content-area em {
    color: #c0c0c0;
}

.lp-content-area blockquote {
    border-left: 3px solid var(--lp-accent);
    padding: 12px 18px;
    margin: 18px 0;
    background: rgba(255, 204, 0, 0.06);
    border-radius: 0 6px 6px 0;
    color: var(--lp-text-muted);
    font-style: italic;
}

/* FOOTER */
.lp-footer {
    background: var(--lp-header);
    padding: 48px 0 0;
    margin-top: 60px;
}

.lp-footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lp-footer-col {
    flex: 1;
    min-width: 180px;
}

.lp-footer-logo img {
    height: 40px;
    margin-bottom: 14px;
}

.lp-footer-about {
    font-size: 0.83rem;
    color: var(--lp-text-muted);
    line-height: 1.65;
    max-width: 240px;
}

.lp-footer-col h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--lp-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}

.lp-footer-col ul li {
    margin-bottom: 8px;
}

.lp-footer-col ul li a {
    font-size: 0.85rem;
    color: var(--lp-text-muted);
    transition: color var(--lp-transition);
}

.lp-footer-col ul li a:hover {
    color: var(--lp-accent);
}

.lp-footer-payments {
    margin-bottom: 12px;
}

.lp-footer-payments h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--lp-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.lp-payment-logos, .lp-provider-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.lp-payment-badge, .lp-provider-badge {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    padding: 6px 12px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--lp-text-muted);
    white-space: nowrap;
}

.lp-footer-bottom {
    padding: 18px 0;
    text-align: center;
}

.lp-footer-bottom p {
    font-size: 0.78rem;
    color: var(--lp-text-muted);
    line-height: 1.6;
}

.lp-footer-bottom a {
    color: var(--lp-text-muted);
    font-size: 0.78rem;
}

.lp-footer-bottom a:hover {
    color: var(--lp-text);
}

.lp-footer-legal {
    font-size: 0.75rem;
    color: #666;
    margin-top: 8px;
    line-height: 1.55;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.lp-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px 16px;
    margin-bottom: 8px;
}

.lp-license {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--lp-text-muted);
}

.lp-license-badge {
    background: rgba(255, 204, 0, 0.12);
    border: 1px solid rgba(255, 204, 0, 0.25);
    color: var(--lp-accent);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
}

/* FIXED WIDGET */
.lp-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: linear-gradient(90deg, #1a1d21 0%, #232629 100%);
    border-top: 2px solid var(--lp-btn-yellow);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.5);
}

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

.lp-widget-label {
    font-size: 0.78rem;
    color: var(--lp-text-muted);
}

.lp-widget-bonus {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
}

.lp-widget-bonus span {
    color: var(--lp-accent);
}

.lp-widget-cta {
    background: var(--lp-btn-yellow);
    color: #111;
    font-size: 0.9rem;
    font-weight: 800;
    padding: 11px 28px;
    border-radius: var(--lp-radius-sm);
    white-space: nowrap;
    flex-shrink: 0;
    transition: transform var(--lp-transition), box-shadow var(--lp-transition);
    box-shadow: 0 2px 14px rgba(255, 204, 0, 0.35);
}

.lp-widget-cta:hover {
    transform: scale(1.04);
    box-shadow: 0 4px 20px rgba(255, 204, 0, 0.5);
    color: #111;
}

.lp-widget-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--lp-text-muted);
    font-size: 1.1rem;
    padding: 4px;
    line-height: 1;
    flex-shrink: 0;
}

.lp-widget-close:hover {
    color: var(--lp-text);
}

body {
    padding-bottom: 72px;
}

/* BREADCRUMB */
.lp-breadcrumb {
    padding: 12px 0;
}

.lp-breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    align-items: center;
}

.lp-breadcrumb li {
    font-size: 0.82rem;
    color: var(--lp-text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.lp-breadcrumb li::after {
    content: '›';
    margin-left: 4px;
}

.lp-breadcrumb li:last-child::after {
    display: none;
}

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

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

.lp-breadcrumb li:last-child {
    color: var(--lp-text);
}

/* FADE-IN ANIMATION */
.lp-fadein {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.lp-fadein.visible {
    opacity: 1;
    transform: none;
}

/* PLACEHOLDER ELEMENTS (uniquization) */
.lp-wp-dummy {
    display: none !important;
}

.screen-reader-text {
    position: absolute;
    left: -9999px;
}

.entry-meta, .post-thumbnail {
    display: none;
}

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

    .j6n2x-grid {
        display: block;
        position: relative;
        overflow: hidden;
    }

    .j6n2x-track {
        display: flex;
    }

    .j6n2x-card {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .a7m4q-block {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .a7m4q-social {
        justify-content: center;
    }

    .lp-footer-top {
        gap: 24px;
    }
}

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

    .q4t8n-burger {
        display: flex;
    }

    .x9b3f-content {
        padding: 28px 24px;
    }

    .x9b3f-slide {
        min-height: 340px;
    }

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

    .k5v1r-toc {
        padding: 20px;
    }

    .lp-widget {
        flex-wrap: wrap;
    }

    .lp-footer-col {
        min-width: 140px;
    }
}

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

    .x9b3f-content h2 {
        font-size: 1.3rem;
    }

    .lp-footer-top {
        flex-direction: column;
    }

    .lp-widget-text {
        display: none;
    }

    .lp-widget {
        justify-content: center;
    }

    #c3h9p-canvas {
        width: 260px !important;
        height: 260px !important;
    }
}

.q4t8n-header {
    position: sticky;
    top: 0;
    z-index: 1200;
    background: rgba(20, 20, 22, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 204, 0, 0.08);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}

.q4t8n-inner {
    max-width: 1280px;
    margin: 0 auto;
    min-height: 74px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.q4t8n-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.q4t8n-logo img {
    width: auto;
    height: 42px;
    display: block;
}

.q4t8n-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.q4t8n-nav a {
    position: relative;
    color: #e8e8e8;
    font-size: .92rem;
    font-weight: 600;
    padding: 10px 14px;
    border-radius: 10px;
    transition: .25s ease;
}

.q4t8n-nav a::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255, 204, 0, .14), rgba(255, 204, 0, 0));
    opacity: 0;
    transition: .25s ease;
}

.q4t8n-nav a:hover {
    color: #ffcc00;
}

.q4t8n-nav a:hover::before {
    opacity: 1;
}

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

.m2p6s-btn {
    height: 42px;
    padding: 0 18px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .88rem;
    font-weight: 700;
    text-decoration: none;
    transition: .25s ease;
    border: 1px solid transparent;
    white-space: nowrap;
}

.m2p6s-login {
    background: rgba(255, 255, 255, .06);
    border-color: rgba(255, 255, 255, .08);
    color: #fff;
}

.m2p6s-login:hover {
    background: rgba(255, 255, 255, .12);
    transform: translateY(-1px);
}

.m2p6s-signup {
    background: linear-gradient(135deg, #ffcc00, #ffdb4d);
    color: #111;
    box-shadow: 0 8px 24px rgba(255, 204, 0, .22);
}

.m2p6s-signup:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(255, 204, 0, .32);
}

.q4t8n-burger {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 10px;
    background: rgba(255, 255, 255, .04);
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    transition: .25s ease;
}

.q4t8n-burger:hover {
    background: rgba(255, 255, 255, .08);
}

.q4t8n-burger span {
    width: 18px;
    height: 2px;
    background: #fff;
    border-radius: 10px;
    transition: .25s ease;
}

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

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

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

.q4t8n-mobile-menu {
    position: fixed;
    top: 74px;
    left: 0;
    width: 100%;
    background: #151618;
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transform: translateY(-14px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: .28s ease;
    z-index: 1190;
}

.q4t8n-mobile-menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.q4t8n-mobile-menu a {
    width: 100%;
    min-height: 48px;
    border-radius: 12px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    color: #f2f2f2;
    font-size: .95rem;
    font-weight: 600;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .04);
    transition: .25s ease;
}

.q4t8n-mobile-menu a:hover {
    background: rgba(255, 204, 0, .08);
    border-color: rgba(255, 204, 0, .16);
    color: #ffcc00;
}

.lp-mob-btns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 10px;
}

.lp-mob-btns .m2p6s-btn {
    width: 100%;
}

@media (max-width: 980px) {

    .q4t8n-nav {
        display: none;
    }

    .q4t8n-burger {
        display: flex;
    }
}

@media (max-width: 768px) {

    .q4t8n-inner {
        min-height: 66px;
        padding: 0 14px;
    }

    .q4t8n-logo img {
        height: 36px;
    }


    .q4t8n-mobile-menu {
        top: 66px;
        padding: 14px;
    }
}

@media (max-width: 480px) {

    .q4t8n-inner {
        padding: 0 12px;
    }

    .q4t8n-logo img {
        height: 32px;
    }

    .lp-mob-btns {
        grid-template-columns: 1fr;
    }

    .q4t8n-mobile-menu a {
        font-size: .9rem;
    }
}

@media (max-width: 900px) {

    #j6n2x-slider {
        overflow: hidden;
    }

    .j6n2x-grid {
        overflow: hidden;
    }

    #j6n2x-track {
        gap: 14px !important;
        transition: transform .35s ease;
        will-change: transform;
    }

    .j6n2x-card {
        min-width: calc(100vw - 48px);
        max-width: calc(100vw - 48px);
        flex: 0 0 calc(100vw - 48px);
        border-radius: 16px;
        overflow: hidden;
    }

    .j6n2x-top {
        padding: 24px 18px 18px;
    }

    .j6n2x-tag {
        font-size: .7rem;
        padding: 5px 10px;
        margin-bottom: 12px;
    }

    .j6n2x-amount {
        font-size: 1.8rem;
        line-height: 1.1;
        margin-bottom: 8px;
    }

    .j6n2x-desc {
        font-size: .88rem;
        line-height: 1.55;
    }

    .j6n2x-body {
        padding: 18px;
    }

    .j6n2x-feature {
        font-size: .86rem;
        line-height: 1.45;
        align-items: flex-start;
    }

    .j6n2x-cta {
        width: 100%;
        min-height: 48px;
        font-size: .92rem;
        margin-top: 16px;
        border-radius: 10px;
    }

    #j6n2x-controls {
        display: flex !important;
    }
}

@media (max-width: 768px) {

    .lp-section-sub {
        margin-bottom: 20px;
    }

    .j6n2x-card {
        min-width: calc(100vw - 32px);
        max-width: calc(100vw - 32px);
        flex: 0 0 calc(100vw - 32px);
    }

    .j6n2x-top {
        padding: 20px 16px 16px;
    }

    .j6n2x-body {
        padding: 16px;
    }

    .j6n2x-amount {
        font-size: 1.6rem;
    }

    .j6n2x-desc {
        font-size: .84rem;
    }

    .j6n2x-feature {
        font-size: .82rem;
    }

    #j6n2x-controls {
        margin-top: 14px !important;
    }

    #j6n2x-prev,
    #j6n2x-next {
        width: 42px !important;
        height: 42px !important;
        font-size: 1.15rem !important;
    }
}

@media (max-width: 480px) {

    #j6n2x-slider {
        margin: 0 -12px;
        padding: 0 12px;
    }

    #j6n2x-track {
        gap: 12px !important;
    }

    .j6n2x-card {
        min-width: calc(100vw - 24px);
        max-width: calc(100vw - 24px);
        flex: 0 0 calc(100vw - 24px);
        border-radius: 14px;
    }

    .j6n2x-top {
        padding: 18px 14px 14px;
    }

    .j6n2x-body {
        padding: 14px;
    }

    .j6n2x-amount {
        font-size: 1.45rem;
    }

    .j6n2x-desc {
        font-size: .8rem;
    }

    .j6n2x-feature {
        font-size: .8rem;
        margin-bottom: 10px;
    }

    .j6n2x-cta {
        min-height: 46px;
        font-size: .88rem;
    }
}