@font-face {
    font-family: "ManropeLocal";
    src: url("fonts/manrope-400.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "ManropeLocal";
    src: url("fonts/manrope-600.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "ManropeLocal";
    src: url("fonts/manrope-700.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "OutfitLocal";
    src: url("fonts/outfit-600.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "OutfitLocal";
    src: url("fonts/outfit-700.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --lc-bg-deep: #141f1f;
    --lc-bg-panel: #1a2b2b;
    --lc-bg-elevated: #223636;
    --lc-bg-soft: #2a4240;
    --lc-accent-gold: #ffcc00;
    --lc-accent-orange: #f58220;
    --lc-accent-teal: #2d6a5a;
    --lc-text-main: #f5f8f6;
    --lc-text-muted: #a8bdb4;
    --lc-border: rgba(255, 204, 0, 0.16);
    --lc-radius-sm: 8px;
    --lc-radius-md: 14px;
    --lc-radius-lg: 22px;
    --lc-radius-pill: 999px;
    --lc-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
    --lc-header-h: 64px;
    --lc-nav-h: 56px;
    --lc-font-body: "ManropeLocal", system-ui, sans-serif;
    --lc-font-display: "OutfitLocal", "ManropeLocal", sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body.lc-body {
    margin: 0;
    min-height: 100vh;
    font-family: var(--lc-font-body);
    font-size: 15px;
    line-height: 1.55;
    color: var(--lc-text-main);
    background: radial-gradient(circle at 20% -10%, rgba(42, 107, 94, 0.35), transparent 45%),
        radial-gradient(circle at 90% 0%, rgba(240, 146, 77, 0.12), transparent 35%),
        var(--lc-bg-deep);
}

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

a {
    color: inherit;
}

.lc-frame {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.lc-brand-bar {
    position: sticky;
    top: 0;
    z-index: 120;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    min-height: var(--lc-header-h);
    padding: 10px 16px;
    background: rgba(14, 26, 22, 0.94);
    border-bottom: 1px solid var(--lc-border);
    backdrop-filter: blur(10px);
}

.lc-top-cluster {
    position: sticky;
    top: 0;
    z-index: 115;
}

.lc-brand-bar-start,
.lc-brand-bar-center,
.lc-brand-bar-end {
    display: flex;
    align-items: center;
}

.lc-brand-bar-start {
    justify-content: flex-start;
}

.lc-brand-bar-center {
    justify-content: center;
}

.lc-brand-bar-end {
    justify-content: flex-end;
}

.lc-nav-deck {
    background: var(--lc-bg-panel);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0 14px 10px;
}

.lc-route-shell {
    width: min(980px, 100%);
    margin: 0 auto;
    padding: 5px 8px;
    border-radius: var(--lc-radius-pill);
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.lc-drawer-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--lc-radius-sm);
    background: var(--lc-bg-elevated);
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.lc-drawer-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--lc-text-main);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.lc-drawer-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.lc-drawer-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.lc-drawer-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.lc-brand-link {
    justify-self: center;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.lc-brand-link img {
    width: auto;
    height: 49px;
    object-fit: contain;
}

.lc-brand-text {
    font-family: var(--lc-font-display);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--lc-accent-gold);
}

.lc-auth-cluster {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.lc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 18px;
    border-radius: var(--lc-radius-pill);
    font-family: var(--lc-font-display);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

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

.lc-btn-login {
    background: var(--lc-accent-gold);
    color: #1a1200;
    box-shadow: 0 6px 18px rgba(245, 212, 75, 0.25);
}

.lc-btn-register {
    background: var(--lc-accent-orange);
    color: #1a1200;
    box-shadow: 0 6px 18px rgba(240, 146, 77, 0.22);
}

.lc-btn-outline {
    background: transparent;
    color: var(--lc-text-main);
    border-color: rgba(255, 255, 255, 0.35);
}

.lc-btn-outline:hover {
    border-color: var(--lc-accent-gold);
    color: var(--lc-accent-gold);
}

.lc-route-strip {
    position: relative;
    z-index: 110;
    background: transparent;
    border-bottom: none;
}

.lc-route-shell .lc-route-list {
    justify-content: center;
    flex-wrap: nowrap;
    padding: 0;
}

.lc-route-list {
    list-style: none;
    margin: 0;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
}

.lc-route-list::-webkit-scrollbar {
    display: none;
}

.lc-route-item {
    flex: 0 0 auto;
}

.lc-route-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 16px;
    border-radius: var(--lc-radius-pill);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--lc-bg-elevated);
    color: var(--lc-text-main);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
    transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.lc-route-link:hover,
.lc-route-link.is-active {
    border-color: var(--lc-accent-gold);
    background: rgba(245, 212, 75, 0.12);
    color: var(--lc-accent-gold);
}

.lc-route-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    fill: currentColor;
}

.lc-drawer-scrim {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 130;
    background: rgba(0, 0, 0, 0.55);
}

.lc-drawer-scrim.is-visible {
    display: block;
}

.lc-drawer-panel {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 140;
    width: min(86vw, 320px);
    height: 100vh;
    padding: calc(var(--lc-header-h) + 12px) 16px 24px;
    background: var(--lc-bg-panel);
    border-right: 1px solid var(--lc-border);
    transform: translateX(-105%);
    transition: transform 0.28s ease;
    overflow-y: auto;
}

.lc-drawer-panel.is-open {
    transform: translateX(0);
}

.lc-drawer-panel .lc-route-list {
    flex-direction: column;
    align-items: stretch;
    padding: 0;
}

.lc-drawer-panel .lc-route-link {
    width: 100%;
    justify-content: flex-start;
}

.lc-stage {
    flex: 1;
    width: min(1240px, 100%);
    margin: 0 auto;
    padding: 18px 16px 40px;
}

.lc-crumb-trail {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    font-size: 0.82rem;
}

.lc-crumb-link {
    color: var(--lc-accent-gold);
    text-decoration: none;
}

.lc-crumb-link:hover {
    text-decoration: underline;
}

.lc-crumb-sep {
    color: var(--lc-text-muted);
}

.lc-hero-carousel {
    position: relative;
    margin-bottom: 22px;
    border-radius: var(--lc-radius-lg);
    overflow: hidden;
    background: var(--lc-bg-elevated);
    box-shadow: var(--lc-shadow);
}

.lc-hero-carousel-track {
    position: relative;
    width: 100%;
}

.lc-hero-panel {
    display: none;
    width: 100%;
}

.lc-hero-panel.is-current {
    display: block;
}

.lc-hero-panel-media {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a2844 0%, #2a1f5c 55%, #1a2b2b 100%);
    padding: 10px 12px;
}

.lc-hero-panel-media picture,
.lc-hero-panel-media img {
    width: auto;
    max-width: 100%;
    margin: 0 auto;
}

.lc-hero-panel-media img {
    height: auto;
    object-fit: contain;
    max-height: 240px;
}

.lc-hero-panel-body {
    padding: 16px 18px 18px;
    background: var(--lc-bg-soft);
}

.lc-hero-panel-title {
    font-family: var(--lc-font-display);
    font-size: clamp(1rem, 2.4vw, 1.35rem);
    font-weight: 700;
    margin-bottom: 8px;
}

.lc-hero-panel-text {
    color: var(--lc-text-muted);
    margin-bottom: 14px;
    font-size: 0.92rem;
}

.lc-hero-panel-cta {
    display: inline-flex;
}

.lc-hero-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 10px 0 14px;
    background: var(--lc-bg-soft);
}

.lc-hero-carousel-dots:empty {
    display: none;
}

.lc-hero-carousel-dot {
    width: 28px;
    height: 4px;
    border: 0;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    padding: 0;
}

.lc-hero-carousel-dot.is-active {
    background: var(--lc-accent-gold);
}

.lc-block {
    margin-bottom: 28px;
}

.lc-block-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.lc-block-title {
    font-family: var(--lc-font-display);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.lc-link-chip {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: var(--lc-radius-pill);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--lc-text-muted);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 600;
}

.lc-link-chip:hover {
    color: var(--lc-accent-gold);
    border-color: var(--lc-accent-gold);
}

.lc-promotions-stage .lc-block-head .lc-block-title::before {
    content: "";
    display: inline-block;
    width: 22px;
    height: 22px;
    margin-right: 10px;
    vertical-align: -4px;
    background: var(--lc-accent-gold);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M20 6h-2.18c.11-.31.18-.65.18-1a2.996 2.996 0 0 0-5.5-1.65l-.5.67-.5-.68C10.96 2.54 10.05 2 9 2 7.34 2 6 3.34 6 5c0 .35.07.69.18 1H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M20 6h-2.18c.11-.31.18-.65.18-1a2.996 2.996 0 0 0-5.5-1.65l-.5.67-.5-.68C10.96 2.54 10.05 2 9 2 7.34 2 6 3.34 6 5c0 .35.07.69.18 1H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.lc-slot-scroll {
    overflow-x: auto;
    scrollbar-width: thin;
    padding-bottom: 4px;
}

.lc-slot-row {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(132px, 150px);
    gap: 12px;
}

.lc-slot-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lc-slot-frame {
    position: relative;
    border-radius: var(--lc-radius-md);
    overflow: hidden;
    background: var(--lc-bg-elevated);
    aspect-ratio: 3 / 4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lc-slot-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.lc-slot-cta {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    background: rgba(14, 26, 22, 0.72);
    opacity: 0;
    transition: opacity 0.2s ease;
}

@media (hover: none), (max-width: 900px) {
    .lc-slot-cta {
        opacity: 1;
        background: linear-gradient(to top, rgba(14, 26, 22, 0.92) 55%, transparent);
        justify-content: flex-end;
        padding-bottom: 12px;
    }
}

.lc-slot-frame:hover .lc-slot-cta,
.lc-slot-frame:focus-within .lc-slot-cta {
    opacity: 1;
}

.lc-slot-cta .lc-btn {
    width: 100%;
    min-height: 34px;
    font-size: 0.72rem;
    padding: 0 10px;
}

.lc-slot-name {
    font-size: 0.78rem;
    text-align: center;
    color: var(--lc-text-muted);
    line-height: 1.3;
}

.lc-bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 22px;
}

.lc-bonus-card {
    position: relative;
    border-radius: var(--lc-radius-lg);
    overflow: hidden;
    background: linear-gradient(165deg, rgba(34, 54, 54, 0.96), rgba(14, 26, 22, 0.99));
    border: 1px solid rgba(255, 204, 0, 0.12);
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.lc-bonus-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 204, 0, 0.35);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4), 0 0 32px rgba(255, 204, 0, 0.08);
}

.lc-bonus-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--lc-accent-teal), var(--lc-accent-gold), var(--lc-accent-orange));
    opacity: 0.7;
    transition: opacity 0.2s ease;
    z-index: 2;
}

.lc-bonus-card:hover::before {
    opacity: 1;
}

.lc-bonus-visual {
    position: relative;
    background: linear-gradient(135deg, var(--lc-bg-soft), var(--lc-bg-elevated));
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    overflow: hidden;
}

.lc-bonus-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(14, 26, 22, 0.8) 0%, transparent 50%);
    pointer-events: none;
}

.lc-bonus-visual img {
    width: 100%;
    height: auto;
    max-height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.lc-bonus-card:hover .lc-bonus-visual img {
    transform: scale(1.06);
}

.lc-bonus-body {
    padding: 20px 20px 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.bonus-name {
    font-family: var(--lc-font-display);
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--lc-text-main);
}

.bonus-desc {
    color: var(--lc-text-muted);
    font-size: 0.86rem;
    margin: 0;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bonus-meta {
    font-size: 0.82rem;
}

.bonus-meta strong {
    display: inline-block;
    padding: 7px 14px;
    border-radius: var(--lc-radius-pill);
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.2), rgba(245, 130, 32, 0.14));
    border: 1px solid rgba(255, 204, 0, 0.35);
    color: var(--lc-accent-gold);
    font-family: var(--lc-font-display);
    font-size: 0.92rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(255, 204, 0, 0.12);
}

.bonus-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: var(--lc-radius-pill);
    background: rgba(45, 106, 90, 0.4);
    border: 1px solid rgba(45, 106, 90, 0.55);
    color: #b8f0dc;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.bonus-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 204, 0, 0.1);
}

.bonus-actions .lc-btn {
    width: 100%;
    min-height: 40px;
    font-size: 0.74rem;
}

.lc-bonus-block .lc-block-head {
    margin-bottom: 20px;
}

.lc-bonus-block .lc-block-title {
    font-size: 1.2rem;
    background: linear-gradient(135deg, var(--lc-accent-gold), var(--lc-accent-orange));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.lc-promotions-stage .lc-seo-body {
    margin-top: 32px;
    border: 1px solid rgba(255, 204, 0, 0.12);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.lc-prose {
    position: relative;
}

.lc-prose > h1:first-child {
    position: relative;
}

.lc-prose > h1:first-child::after {
    content: "";
    display: block;
    width: 64px;
    height: 3px;
    margin-top: 14px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--lc-accent-gold), var(--lc-accent-orange));
    box-shadow: 0 0 12px rgba(255, 204, 0, 0.3);
}

.lc-prose h2 {
    position: relative;
    padding-left: 16px;
}

.lc-prose h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.35em;
    width: 4px;
    height: 0.85em;
    border-radius: 2px;
    background: linear-gradient(180deg, var(--lc-accent-gold), var(--lc-accent-orange));
    box-shadow: 0 0 8px rgba(255, 204, 0, 0.3);
}

.lc-prose h3 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    color: var(--lc-accent-orange);
}

.lc-prose p {
    text-wrap: pretty;
    line-height: 1.68;
}

.lc-prose p:first-of-type {
    font-size: 1.01rem;
    color: var(--lc-text-main);
}

.lc-prose p + h2,
.lc-prose .list-container + h2,
.lc-prose .table-wrapper + h2,
.lc-prose .faq-wrapper + h2 {
    margin-top: 36px;
    padding-top: 8px;
}

.lc-prose .list-container {
    padding: 4px 0;
}

.lc-prose .list-container ul,
.lc-prose .list-container ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lc-prose .list-container li {
    position: relative;
    padding: 12px 14px 12px 32px;
    margin-bottom: 8px;
    border-radius: var(--lc-radius-sm);
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 204, 0, 0.08);
    line-height: 1.55;
    transition: border-color 0.15s ease, background 0.15s ease;
}

.lc-prose .list-container li:hover {
    border-color: rgba(255, 204, 0, 0.18);
    background: rgba(255, 204, 0, 0.04);
}

.lc-prose .list-container li::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 1.15em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--lc-accent-gold);
    transform: translateY(-50%);
}

.lc-prose .list-container ol {
    counter-reset: lc-prose-step;
}

.lc-prose .list-container ol li {
    counter-increment: lc-prose-step;
    padding-left: 40px;
}

.lc-prose .list-container ol li::before {
    content: counter(lc-prose-step);
    width: 22px;
    height: 22px;
    top: 12px;
    left: 10px;
    transform: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.68rem;
    font-weight: 700;
    color: #1a1200;
    background: var(--lc-accent-gold);
}

.lc-prose blockquote {
    font-style: italic;
    color: var(--lc-text-main);
    border-left-width: 4px;
    border-left-color: var(--lc-accent-orange);
}

.lc-prose .howto-step-item strong {
    display: block;
    margin-bottom: 6px;
    color: var(--lc-accent-gold);
    font-family: var(--lc-font-display);
}

.lc-prose .faq-question-block strong {
    color: var(--lc-text-main);
}

.lc-prose .faq-item-block {
    padding: 16px 18px;
    margin-bottom: 10px;
    border-radius: var(--lc-radius-md);
    background: rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 204, 0, 0.1);
    transition: border-color 0.15s ease, background 0.15s ease;
}

.lc-prose .faq-item-block:hover {
    border-color: rgba(255, 204, 0, 0.22);
    background: rgba(255, 204, 0, 0.04);
}

.lc-prose img {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.lc-prose .table-wrapper {
    border-radius: var(--lc-radius-md);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.lc-prose .table-wrapper tbody tr:hover td {
    background: rgba(245, 212, 75, 0.04);
}

.lc-contact-stage .lc-prose > h1:first-child::after,
.lc-legal-stage .lc-prose > h1:first-child::after {
    display: none;
}

.lc-contact-stage .lc-prose h2::before,
.lc-legal-stage .lc-prose h2::before {
    display: none;
}

.lc-contact-stage .lc-prose h2,
.lc-legal-stage .lc-prose h2 {
    padding-left: 0;
}

.lc-seo-body {
    margin-top: 28px;
    padding: 26px 24px;
    border-radius: var(--lc-radius-lg);
    background: linear-gradient(165deg, rgba(26, 43, 43, 0.95), rgba(20, 31, 31, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.lc-seo-body h1 {
    font-family: var(--lc-font-display);
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 700;
    margin: 0 0 18px;
    line-height: 1.25;
    color: var(--lc-text-main);
}

.lc-seo-body h2 {
    font-family: var(--lc-font-display);
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    font-weight: 700;
    margin: 28px 0 12px;
    color: var(--lc-text-main);
}

.lc-seo-body h3 {
    font-size: 1rem;
    font-weight: 700;
    margin: 20px 0 10px;
    color: var(--lc-accent-gold);
}

.lc-seo-body p {
    margin: 0 0 14px;
    color: var(--lc-text-muted);
    line-height: 1.65;
}

.lc-seo-body a {
    color: var(--lc-accent-gold);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.15s ease;
}

.lc-seo-body a:hover {
    color: var(--lc-accent-orange);
}

.lc-seo-body img {
    border-radius: var(--lc-radius-md);
    margin: 16px 0;
}

.table-wrapper {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    margin: 18px 0;
    border-radius: var(--lc-radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.lc-seo-body table,
.app-info-table {
    width: 100%;
    min-width: 520px;
    border-collapse: collapse;
}

.lc-seo-body th,
.lc-seo-body td,
.app-info-table td {
    padding: 11px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
    vertical-align: top;
}

.lc-seo-body th {
    background: var(--lc-bg-soft);
    font-weight: 700;
    color: var(--lc-text-main);
}

.lc-seo-body ul,
.lc-seo-body ol,
.list-container ul,
.list-container ol {
    margin: 0 0 14px;
    padding-left: 22px;
    color: var(--lc-text-muted);
}

.lc-seo-body blockquote,
.faq-wrapper,
.howto-wrapper {
    margin: 18px 0;
    padding: 14px 16px;
    border-left: 3px solid var(--lc-accent-gold);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 0 var(--lc-radius-sm) var(--lc-radius-sm) 0;
}

.faq-item-block {
    margin-bottom: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--lc-radius-sm);
    overflow: hidden;
}

.faq-question-block {
    padding: 12px 14px;
    background: var(--lc-bg-soft);
}

.faq-answer-block {
    padding: 12px 14px;
    color: var(--lc-text-muted);
}

.howto-steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.howto-step-item {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pay-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 12px;
}

.pay-card {
    padding: 14px 10px;
    border-radius: var(--lc-radius-sm);
    background: var(--lc-bg-elevated);
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

.pay-card img {
    max-height: 36px;
    width: auto;
    margin: 0 auto 8px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.85;
}

.pay-card-name {
    font-size: 0.72rem;
    color: var(--lc-text-muted);
}

.lc-btn-accent {
    background: linear-gradient(135deg, var(--lc-accent-teal), #1d4f44);
    color: var(--lc-text-main);
    border-color: rgba(42, 107, 94, 0.5);
    box-shadow: 0 6px 18px rgba(42, 107, 94, 0.35);
}

.lc-pay-rail {
    margin-top: auto;
    padding: 22px 16px 0;
    background: linear-gradient(180deg, rgba(28, 47, 41, 0.55) 0%, rgba(16, 25, 23, 0.92) 100%);
    border-top: 1px solid rgba(255, 204, 0, 0.1);
}

.lc-pay-rail-label {
    margin: 0 0 14px;
    font-family: var(--lc-font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-align: center;
    color: var(--lc-text-muted);
}

.lc-pay-rail-row {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.lc-pay-rail-chip {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 92px;
    min-height: 50px;
    padding: 8px 14px;
    border-radius: var(--lc-radius-md);
    background: linear-gradient(180deg, #ffffff 0%, #f7f7f4 100%);
    border: 1px solid rgba(255, 204, 0, 0.28);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.5) inset,
        0 4px 14px rgba(0, 0, 0, 0.14),
        0 0 18px rgba(255, 204, 0, 0.12);
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.lc-pay-rail-chip:hover {
    border-color: rgba(255, 204, 0, 0.65);
    background: #fff;
    transform: translateY(-2px);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.6) inset,
        0 8px 22px rgba(0, 0, 0, 0.22),
        0 0 28px rgba(255, 204, 0, 0.32);
}

.lc-pay-rail-chip img {
    display: block;
    max-height: 34px;
    max-width: 84px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter:
        brightness(1.06)
        contrast(1.12)
        drop-shadow(0 1px 1px rgba(0, 0, 0, 0.18))
        drop-shadow(0 0 10px rgba(255, 204, 0, 0.28));
    transition: filter 0.2s ease, transform 0.2s ease;
}

.lc-pay-rail-chip:hover img {
    filter:
        brightness(1.1)
        contrast(1.16)
        drop-shadow(0 2px 3px rgba(0, 0, 0, 0.22))
        drop-shadow(0 0 16px rgba(255, 204, 0, 0.45));
    transform: scale(1.04);
}

.lc-base {
    margin-top: 0;
    position: relative;
    background: linear-gradient(180deg, rgba(21, 36, 32, 0.98) 0%, #0b1411 100%);
    border-top: 1px solid rgba(255, 204, 0, 0.12);
    padding: 0 16px 28px;
    overflow: hidden;
}

.lc-frame > main + .lc-base {
    margin-top: auto;
}

.lc-base::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--lc-accent-gold), var(--lc-accent-orange), var(--lc-accent-gold), transparent);
    opacity: 0.85;
}

.lc-base-glow {
    position: absolute;
    top: -100px;
    right: -60px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 204, 0, 0.08), transparent 70%);
    pointer-events: none;
}

.lc-base-shell {
    position: relative;
    z-index: 1;
    width: min(1240px, 100%);
    margin: 0 auto;
    padding-top: 28px;
}

.lc-base-banner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.lc-base-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 28px 32px;
    padding-bottom: 28px;
}

.lc-base-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.lc-base-logo img {
    height: 55px;
    width: auto;
    object-fit: contain;
}

.lc-base-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.lc-base-cta .lc-btn {
    min-height: 40px;
    padding: 0 18px;
    font-size: 0.74rem;
    white-space: nowrap;
}

.lc-base-heading {
    font-family: var(--lc-font-display);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0 0 14px;
    color: var(--lc-accent-gold);
}

.lc-base-heading::after {
    content: "";
    display: block;
    width: 28px;
    height: 2px;
    margin-top: 8px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--lc-accent-gold) 0%, transparent 100%);
}

.lc-base-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.lc-base-links li {
    margin-bottom: 8px;
}

.lc-base-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--lc-text-muted);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.15s ease, transform 0.15s ease;
}

.lc-base-links a::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 204, 0, 0.35);
    flex-shrink: 0;
    transition: background 0.15s ease, transform 0.15s ease;
}

.lc-base-links a:hover,
.lc-base-links a.is-active {
    color: var(--lc-text-main);
    transform: translateX(3px);
}

.lc-base-links a:hover::before,
.lc-base-links a.is-active::before {
    background: var(--lc-accent-gold);
    transform: scale(1.2);
}

.lc-base-links a.is-active {
    font-weight: 600;
    color: var(--lc-accent-gold);
}

.lc-base-col-social {
    min-width: 180px;
}

.lc-base-social {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lc-base-social-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 8px 16px;
    border-radius: var(--lc-radius-pill);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--lc-text-main);
    text-decoration: none;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.lc-base-social-btn:hover {
    border-color: var(--lc-accent-gold);
    background: rgba(255, 204, 0, 0.1);
    color: var(--lc-accent-gold);
    transform: translateY(-2px);
}

.lc-base-social-name {
    font-size: 0.82rem;
    font-weight: 600;
}

.lc-base-social-svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    flex-shrink: 0;
}

.footer-social-image {
    max-height: 20px;
    width: auto;
    flex-shrink: 0;
}

.lc-base-bottom {
    padding: 22px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.lc-base-safe-title {
    margin: 0 0 14px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--lc-text-muted);
}

.lc-safe-row {
    list-style: none;
    margin: 0 0 18px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.lc-safe-chip {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 8px 14px;
    border-radius: var(--lc-radius-sm);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.lc-safe-chip:hover {
    border-color: rgba(255, 204, 0, 0.25);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-1px);
}

.lc-safe-row img {
    max-height: 36px;
    width: auto;
}

.lc-base-copy {
    margin: 0;
    font-size: 0.76rem;
    color: var(--lc-text-muted);
    line-height: 1.6;
    max-width: 760px;
    margin-inline: auto;
}

.lc-base-copy-main {
    color: var(--lc-text-main);
}

.lc-base-copy-sep {
    opacity: 0.45;
}

.lc-base-copy-note {
    display: inline;
}

.app-info-table-wrapper {
    margin-bottom: 0;
}

.lc-app-showcase {
    position: relative;
    margin-bottom: 28px;
    padding: 32px 26px 26px;
    border-radius: var(--lc-radius-lg);
    background: linear-gradient(155deg, rgba(34, 54, 54, 0.98) 0%, rgba(14, 26, 22, 0.99) 55%, rgba(20, 35, 30, 0.98) 100%);
    border: 1px solid rgba(255, 204, 0, 0.24);
    box-shadow: 0 0 0 1px rgba(255, 204, 0, 0.05), 0 24px 56px rgba(0, 0, 0, 0.45);
    overflow: hidden;
}

.lc-app-showcase::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--lc-accent-teal), var(--lc-accent-gold), var(--lc-accent-orange));
    opacity: 0.8;
}

.lc-app-showcase-glow {
    position: absolute;
    top: -90px;
    right: -50px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 204, 0, 0.18), transparent 68%);
    pointer-events: none;
}

.lc-app-showcase .app-info-table-container {
    border: none;
    overflow: visible;
}

.lc-app-showcase .app-info-table {
    min-width: 0;
    display: block;
}

.lc-app-showcase .app-info-table tbody {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.lc-app-showcase .app-info-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    border-radius: var(--lc-radius-md);
    background: rgba(0, 0, 0, 0.24);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.lc-app-showcase .app-info-row:hover {
    border-color: rgba(255, 204, 0, 0.32);
    background: rgba(255, 204, 0, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.lc-app-showcase .app-info-row:first-child {
    grid-column: 1 / -1;
    padding: 24px 26px;
    background: linear-gradient(135deg, rgba(45, 106, 90, 0.42), rgba(21, 36, 32, 0.95));
    border-color: rgba(255, 204, 0, 0.28);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.lc-app-showcase .app-info-row:last-child {
    grid-column: 1 / -1;
    justify-content: center;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.12), rgba(245, 130, 32, 0.1));
    border-color: rgba(255, 204, 0, 0.3);
}

.lc-app-showcase .app-info-label-cell,
.lc-app-showcase .app-info-value-cell {
    display: block;
    padding: 0;
    border: none;
}

.lc-app-showcase .app-info-label-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.14), rgba(45, 106, 90, 0.2));
    border: 1px solid rgba(255, 204, 0, 0.28);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.lc-app-showcase .app-info-icon {
    width: 22px;
    height: 22px;
    fill: none;
    color: var(--lc-accent-gold);
}

.lc-app-showcase .app-info-icon path[fill] {
    fill: currentColor;
}

.lc-app-showcase .app-info-value-cell {
    flex: 1;
    font-size: 0.92rem;
    color: var(--lc-text-muted);
    line-height: 1.55;
}

.lc-app-showcase .app-info-row:first-child .app-info-value-cell {
    font-family: var(--lc-font-display);
    font-size: 1.28rem;
    font-weight: 700;
    color: var(--lc-text-main);
}

.lc-app-showcase .app-name-with-logo {
    gap: 16px;
}

.lc-app-showcase .app-name-logo {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    border: 2px solid rgba(255, 204, 0, 0.35);
    box-shadow: 0 0 24px rgba(255, 204, 0, 0.2), 0 8px 20px rgba(0, 0, 0, 0.3);
}

.lc-app-showcase .app-download-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 32px;
    border-radius: var(--lc-radius-pill);
    background: linear-gradient(135deg, var(--lc-accent-gold), var(--lc-accent-orange));
    color: #1a1a1a;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 0 28px rgba(255, 204, 0, 0.35), 0 10px 28px rgba(0, 0, 0, 0.3);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.lc-app-showcase .app-download-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 36px rgba(255, 204, 0, 0.45), 0 14px 32px rgba(0, 0, 0, 0.35);
}

.app-info-icon {
    width: 22px;
    height: 22px;
    color: var(--lc-accent-gold);
}

.app-info-label-cell {
    width: 56px;
    text-align: center;
}

.app-name-with-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.app-name-logo {
    width: 42px;
    height: 42px;
    object-fit: contain;
    border-radius: 10px;
}

.app-download-link {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 18px;
    border-radius: var(--lc-radius-pill);
    background: var(--lc-accent-gold);
    color: #1a1200;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.82rem;
}

.lc-error-stage {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - var(--lc-header-h) - var(--lc-nav-h) - 80px);
    padding: 24px 16px 56px;
    background: radial-gradient(ellipse at 50% 20%, rgba(255, 204, 0, 0.12), transparent 55%);
}

.lc-error-panel {
    position: relative;
    width: min(480px, 100%);
    margin: 0 auto;
    text-align: center;
    padding: 44px 24px 36px;
    border-radius: var(--lc-radius-lg);
    background: linear-gradient(165deg, rgba(34, 54, 54, 0.92) 0%, rgba(14, 26, 22, 0.98) 100%);
    border: 1px solid rgba(255, 204, 0, 0.28);
    box-shadow: 0 0 0 1px rgba(255, 204, 0, 0.06), 0 28px 64px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.lc-error-panel::before {
    content: "";
    position: absolute;
    inset: -50% -30% auto;
    height: 240px;
    background: radial-gradient(circle, rgba(255, 204, 0, 0.22), transparent 70%);
    pointer-events: none;
}

.lc-error-visual {
    position: relative;
    width: 88px;
    height: 88px;
    margin: 0 auto 4px;
}

.lc-error-orbit {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px dashed rgba(255, 204, 0, 0.4);
    animation: lc-error-spin 12s linear infinite;
}

.lc-error-lemon {
    position: absolute;
    inset: 14px;
    border-radius: 50% 50% 45% 55% / 55% 55% 45% 45%;
    background: radial-gradient(circle at 35% 28%, #fff8b8, var(--lc-accent-gold) 42%, var(--lc-accent-orange) 100%);
    box-shadow: 0 0 32px rgba(255, 204, 0, 0.45), 0 8px 20px rgba(0, 0, 0, 0.3);
    animation: lc-error-float 3.5s ease-in-out infinite;
}

.lc-error-lemon::after {
    content: "";
    position: absolute;
    top: -7px;
    left: 50%;
    width: 7px;
    height: 12px;
    margin-left: -3px;
    border-radius: 3px 3px 0 0;
    background: #3d8b5a;
    transform: rotate(-10deg);
}

@keyframes lc-error-spin {
    to { transform: rotate(360deg); }
}

@keyframes lc-error-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(3deg); }
}

.lc-error-code {
    position: relative;
    font-family: var(--lc-font-display);
    font-size: clamp(5rem, 22vw, 7.5rem);
    font-weight: 700;
    line-height: 0.9;
    margin-bottom: 12px;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, #fff6a0 0%, var(--lc-accent-gold) 35%, var(--lc-accent-orange) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 6px 24px rgba(255, 204, 0, 0.35));
}

.lc-error-title {
    position: relative;
    font-family: var(--lc-font-display);
    font-size: clamp(1.1rem, 3.5vw, 1.4rem);
    font-weight: 700;
    margin: 0 0 12px;
    line-height: 1.3;
    color: var(--lc-text-main);
}

.lc-error-text {
    position: relative;
    color: var(--lc-text-muted);
    margin: 0 auto 24px;
    max-width: 360px;
    font-size: 0.9rem;
    line-height: 1.55;
}

.lc-error-cta {
    position: relative;
    min-width: 220px;
    min-height: 46px;
    font-size: 0.84rem;
    letter-spacing: 0.04em;
    box-shadow: 0 0 24px rgba(255, 204, 0, 0.35), 0 10px 28px rgba(0, 0, 0, 0.3);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.lc-error-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 32px rgba(255, 204, 0, 0.45), 0 14px 32px rgba(0, 0, 0, 0.35);
}

.lc-contact-stage {
    background: radial-gradient(ellipse at 30% 0%, rgba(255, 204, 0, 0.1), transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(245, 130, 32, 0.08), transparent 45%);
}

.lc-contact-stage .lc-seo-body {
    position: relative;
    padding: 32px 28px 36px;
    border-radius: var(--lc-radius-lg);
    background: linear-gradient(165deg, rgba(34, 54, 54, 0.95) 0%, rgba(14, 26, 22, 0.99) 100%);
    border: 1px solid rgba(255, 204, 0, 0.22);
    box-shadow: 0 0 0 1px rgba(255, 204, 0, 0.05), var(--lc-shadow);
    overflow: hidden;
}

.lc-contact-stage .lc-seo-body::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -30px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 204, 0, 0.16), transparent 70%);
    pointer-events: none;
}

.lc-contact-stage .lc-seo-body h1 {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
    padding-bottom: 18px;
    border-bottom: 2px solid rgba(255, 204, 0, 0.3);
}

.lc-contact-stage .lc-seo-body h1::before {
    content: "";
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--lc-accent-gold), var(--lc-accent-orange));
    box-shadow: 0 0 24px rgba(255, 204, 0, 0.35), 0 8px 20px rgba(0, 0, 0, 0.25);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M20 4H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2zm0 4-8 5L4 8V6l8 5 8-5v2z'/%3E%3C/svg%3E") center / 28px no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M20 4H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2zm0 4-8 5L4 8V6l8 5 8-5v2z'/%3E%3C/svg%3E") center / 28px no-repeat;
}

.lc-contact-stage .lc-seo-body > p:first-of-type {
    font-size: 1.02rem;
    color: var(--lc-text-main);
    margin-bottom: 28px;
    max-width: 540px;
    line-height: 1.6;
}

.lc-contact-stage .lc-seo-body h2 {
    margin-top: 8px;
    margin-bottom: 18px;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--lc-accent-gold);
}

.lc-contact-stage .lc-seo-body h3 {
    margin: 0;
    padding: 18px 20px 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--lc-text-main);
    border-radius: var(--lc-radius-md) var(--lc-radius-md) 0 0;
    background: linear-gradient(145deg, rgba(45, 106, 90, 0.45), rgba(28, 47, 41, 0.95));
    border: 1px solid rgba(255, 204, 0, 0.18);
    border-bottom: 1px solid rgba(255, 204, 0, 0.12);
    transition: border-color 0.2s ease;
}

.lc-contact-stage .lc-seo-body h3:hover {
    border-color: rgba(255, 204, 0, 0.32);
}

.lc-contact-stage .lc-seo-body h3::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: 10px;
    border-radius: 50%;
    background: var(--lc-accent-gold);
    box-shadow: 0 0 14px rgba(255, 204, 0, 0.7);
    vertical-align: middle;
}

.lc-contact-stage .lc-seo-body h3 + p {
    margin: 0 0 18px;
    padding: 10px 20px 20px;
    border-radius: 0 0 var(--lc-radius-md) var(--lc-radius-md);
    background: linear-gradient(145deg, rgba(28, 47, 41, 0.98), rgba(20, 31, 31, 0.99));
    border: 1px solid rgba(255, 204, 0, 0.12);
    border-top: none;
    color: var(--lc-text-muted);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.lc-contact-stage .lc-seo-body h3 + p:hover {
    border-color: rgba(255, 204, 0, 0.22);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.lc-contact-stage .lc-seo-body h3 + p a {
    display: inline-flex;
    align-items: center;
    margin-top: 8px;
    padding: 10px 20px;
    border-radius: var(--lc-radius-pill);
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.18), rgba(245, 130, 32, 0.12));
    border: 1px solid rgba(255, 204, 0, 0.4);
    color: var(--lc-accent-gold);
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(255, 204, 0, 0.15);
    transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.lc-contact-stage .lc-seo-body h3 + p a:hover {
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.28), rgba(245, 130, 32, 0.18));
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 204, 0, 0.25);
}

.lc-contact-stage .lc-seo-body h2:last-of-type + p {
    padding: 20px 22px;
    border-radius: var(--lc-radius-md);
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.12), rgba(245, 130, 32, 0.1));
    border: 1px solid rgba(255, 204, 0, 0.28);
    color: var(--lc-text-main);
    font-size: 0.94rem;
    line-height: 1.65;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.lc-legal-stage {
    background: radial-gradient(ellipse at 70% 0%, rgba(255, 204, 0, 0.08), transparent 50%),
        radial-gradient(ellipse at 10% 30%, rgba(45, 106, 90, 0.1), transparent 45%);
}

.lc-legal-stage .lc-seo-body {
    position: relative;
    padding: 36px 30px 40px;
    border-radius: var(--lc-radius-lg);
    background: linear-gradient(165deg, rgba(34, 54, 54, 0.95) 0%, rgba(14, 26, 22, 0.99) 100%);
    border: 1px solid rgba(255, 204, 0, 0.18);
    box-shadow: 0 0 0 1px rgba(255, 204, 0, 0.04), var(--lc-shadow);
    overflow: hidden;
}

.lc-legal-stage .lc-seo-body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--lc-accent-gold), var(--lc-accent-orange), var(--lc-accent-teal));
}

.lc-legal-stage .lc-seo-body::after {
    content: "";
    position: absolute;
    top: -60px;
    right: -40px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 204, 0, 0.1), transparent 70%);
    pointer-events: none;
}

.lc-legal-stage .lc-seo-body h1 {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 204, 0, 0.15);
}

.lc-legal-privacy .lc-seo-body h1::before,
.lc-legal-terms .lc-seo-body h1::before {
    content: "";
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.25), rgba(45, 106, 90, 0.45));
    border: 1px solid rgba(255, 204, 0, 0.3);
    box-shadow: 0 0 20px rgba(255, 204, 0, 0.15);
}

.lc-legal-privacy .lc-seo-body h1::before {
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 1 3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm-1 6h2v2h-2V7zm0 4h2v6h-2v-6z'/%3E%3C/svg%3E") center / 24px no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 1 3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm-1 6h2v2h-2V7zm0 4h2v6h-2v-6z'/%3E%3C/svg%3E") center / 24px no-repeat;
    background-color: var(--lc-accent-gold);
    background-image: none;
}

.lc-legal-terms .lc-seo-body h1::before {
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8l-6-6zm2 16H8v-2h8v2zm0-4H8v-2h8v2zm-3-5V3.5L18.5 9H13z'/%3E%3C/svg%3E") center / 24px no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8l-6-6zm2 16H8v-2h8v2zm0-4H8v-2h8v2zm-3-5V3.5L18.5 9H13z'/%3E%3C/svg%3E") center / 24px no-repeat;
    background-color: var(--lc-accent-gold);
    background-image: none;
}

.lc-legal-stage .lc-seo-body > p:first-of-type {
    font-size: 0.95rem;
    color: var(--lc-text-main);
    line-height: 1.7;
    margin-bottom: 8px;
}

.lc-legal-stage .lc-seo-body h2 {
    position: relative;
    margin-top: 32px;
    margin-bottom: 12px;
    padding: 14px 0 14px 18px;
    font-size: clamp(1rem, 2.2vw, 1.15rem);
    color: var(--lc-text-main);
    border-left: 3px solid var(--lc-accent-gold);
    background: linear-gradient(90deg, rgba(255, 204, 0, 0.1), transparent);
    border-radius: 0 var(--lc-radius-sm) var(--lc-radius-sm) 0;
}

.lc-legal-stage .lc-seo-body h2:first-of-type {
    margin-top: 24px;
}

.lc-legal-stage .lc-seo-body h3 {
    margin-top: 20px;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: var(--lc-accent-orange);
}

.lc-legal-stage .lc-seo-body p {
    line-height: 1.72;
}

.lc-legal-stage .lc-seo-body .list-container {
    margin: 14px 0 20px;
    padding: 18px 20px;
    border-radius: var(--lc-radius-md);
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 204, 0, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.lc-legal-stage .lc-seo-body .list-container ul,
.lc-legal-stage .lc-seo-body .list-container ol {
    margin: 0;
    padding-left: 20px;
}

.lc-legal-stage .lc-seo-body .list-container li {
    margin-bottom: 8px;
    padding-left: 4px;
    line-height: 1.6;
}

.lc-legal-stage .lc-seo-body .list-container li::marker {
    color: var(--lc-accent-gold);
}

.lc-legal-stage .lc-seo-body a {
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    color: var(--lc-accent-gold);
}

.lc-legal-stage .lc-seo-body a:hover {
    color: var(--lc-accent-orange);
}

.lc-blocked-body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 24px 16px;
    background: radial-gradient(ellipse at 50% 30%, rgba(255, 204, 0, 0.08), transparent 55%),
        radial-gradient(ellipse at 80% 70%, rgba(245, 130, 32, 0.06), transparent 45%),
        var(--lc-bg-deep);
}

.lc-blocked-panel {
    width: min(440px, 100%);
    text-align: center;
    padding: 44px 28px 36px;
    border-radius: var(--lc-radius-lg);
    background: linear-gradient(165deg, rgba(34, 54, 54, 0.95), rgba(14, 26, 22, 0.99));
    border: 1px solid rgba(255, 204, 0, 0.2);
    box-shadow: 0 0 0 1px rgba(255, 204, 0, 0.04), 0 24px 56px rgba(0, 0, 0, 0.45);
}

.lc-blocked-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    margin-bottom: 20px;
    border-radius: 50%;
    background: rgba(245, 130, 32, 0.12);
    border: 1px solid rgba(245, 130, 32, 0.35);
    color: var(--lc-accent-orange);
    box-shadow: 0 0 24px rgba(245, 130, 32, 0.15);
}

.lc-blocked-icon svg {
    width: 34px;
    height: 34px;
    fill: none;
}

.lc-blocked-title {
    font-family: var(--lc-font-display);
    font-size: clamp(1.3rem, 4vw, 1.6rem);
    font-weight: 700;
    margin: 0 0 12px;
    color: var(--lc-text-main);
}

.lc-blocked-text {
    margin: 0;
    font-size: 0.94rem;
    line-height: 1.6;
    color: var(--lc-text-muted);
    max-width: 340px;
    margin-inline: auto;
}

.lc-blocked-code {
    display: inline-block;
    margin-top: 22px;
    padding: 6px 16px;
    border-radius: var(--lc-radius-pill);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--lc-text-muted);
}

@media (max-width: 900px) {
    .lc-drawer-toggle {
        display: inline-flex;
    }

    .lc-nav-deck,
    .lc-route-strip {
        display: none;
    }

    .lc-brand-bar {
        grid-template-columns: auto 1fr auto;
    }

    .lc-auth-cluster .lc-btn-register {
        display: none;
    }

    .lc-hero-panel-media img {
        max-height: 220px;
        max-width: min(100%, 250px);
    }

    .lc-slot-cta {
        opacity: 1;
        background: linear-gradient(to top, rgba(14, 26, 22, 0.92) 55%, transparent);
        justify-content: flex-end;
        padding-bottom: 12px;
    }

    .lc-slot-row {
        grid-auto-columns: minmax(108px, 120px);
    }

    .lc-bonus-grid {
        grid-template-columns: 1fr;
    }

    .lc-base-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .lc-base-banner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .lc-base-cta {
        justify-content: center;
        width: 100%;
    }

    .lc-base-col-social {
        grid-column: 1 / -1;
    }

    .lc-base-copy-note {
        display: block;
        margin-top: 6px;
    }

    .lc-base-copy-sep {
        display: none;
    }

    .lc-app-showcase .app-info-table tbody {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 901px) {
    .lc-drawer-panel,
    .lc-drawer-scrim {
        display: none !important;
    }

    .lc-brand-bar {
        grid-template-columns: 1fr auto 1fr;
    }

    .lc-brand-bar-center {
        justify-content: flex-start;
    }

    .lc-drawer-toggle {
        visibility: hidden;
        pointer-events: none;
    }
}

@media (max-width: 480px) {
    .lc-stage {
        padding: 14px 12px 32px;
    }

    .lc-auth-cluster .lc-btn {
        min-height: 36px;
        padding: 0 12px;
        font-size: 0.7rem;
    }

    .lc-seo-body {
        padding: 16px 14px;
    }

    .lc-base-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .lc-base-shell {
        padding-top: 22px;
    }

    .lc-pay-rail-row {
        gap: 8px;
    }

    .lc-pay-rail-chip {
        min-width: 76px;
        min-height: 42px;
        padding: 6px 12px;
    }

    .lc-error-stage {
        min-height: auto;
        padding-top: 6px;
    }

    .lc-error-panel {
        padding: 36px 18px 32px;
    }

    .lc-error-visual {
        width: 96px;
        height: 96px;
    }

    .lc-legal-stage .lc-seo-body {
        padding: 22px 16px 28px;
    }

    .lc-legal-stage .lc-seo-body h1 {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}
