/* Circle Banking — LK (на базе exemp: тёмный auth + app-shell) */

.lk-app-body,
.lk-app-body *,
.lk-app-body *::before,
.lk-app-body *::after,
.lk-auth-body,
.lk-auth-body *,
.lk-auth-body *::before,
.lk-auth-body *::after {
    box-sizing: border-box;
}

/* ── Auth (login / open-account) ── */
.lk-auth-body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #0b0f19;
    color: #e5e7eb;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}
.lk-auth-wrap {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 16px;
    position: relative;
}
.lk-auth-wrap::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, transparent 70%);
    pointer-events: none;
}
.lk-auth-back {
    position: absolute;
    top: 20px;
    left: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.875rem;
    z-index: 2;
}
.lk-auth-back:hover { color: #fff; }
.lk-auth-back i { width: 18px; height: 18px; }
.lk-auth-card {
    width: 100%;
    max-width: 440px;
    background: #141b2d;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 16px;
    padding: 36px 32px 32px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
    position: relative;
    z-index: 1;
}
.lk-auth-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1d4ed8, #2563eb, #60a5fa, #2563eb, #1d4ed8);
    border-radius: 16px 16px 0 0;
}
.lk-auth-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}
/* Монограмма: тёмный силуэт → белый/золотой через filter + цветная подложка */
.pb-site-logo-shell {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
}
.pb-site-logo-shell--sm {
    width: 40px;
    height: 40px;
    padding: 7px;
    border-radius: 10px;
}
.pb-site-logo-shell--icon {
    width: 40px;
    height: 40px;
    padding: 7px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}
.pb-site-logo-shell--icon .pb-site-logo,
.pb-site-logo-shell--icon .lk-sidebar-logo {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: contain;
    filter: none;
}
.pb-site-logo-shell--wordmark {
    width: auto;
    height: auto;
    padding: 0;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    overflow: visible;
}
.pb-site-logo-shell--wordmark .pb-site-logo,
.pb-site-logo-shell--wordmark .lk-auth-logo {
    display: block;
    width: auto;
    height: 44px;
    max-width: min(260px, 78vw);
    object-fit: contain;
    filter: none;
}
.lk-auth-brand--wordmark {
    margin-bottom: 24px;
}
.lk-login-brand-mark .pb-site-logo-shell--wordmark {
    margin: 0 auto;
}
.lk-login-brand-mark .pb-site-logo-shell--wordmark .pb-site-logo {
    height: 48px;
    max-width: min(280px, 84vw);
}
/* Чёрный wordmark → белый на тёмном auth / login */
.lk-auth-body .pb-site-logo-shell--wordmark .pb-site-logo,
.lk-auth-body .pb-site-logo-shell--wordmark .lk-auth-logo {
    filter: brightness(0) invert(1);
}
.pb-site-logo-shell--md {
    width: 48px;
    height: 48px;
    padding: 8px;
}
.pb-site-logo-shell--dark {
    background: linear-gradient(145deg, #92680a 0%, #c9a227 48%, #e8c547 100%);
    box-shadow: 0 6px 20px rgba(201, 162, 39, 0.32);
}
.pb-site-logo-shell--dark .pb-site-logo {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: contain;
    filter: brightness(0) invert(1);
}
.lk-login-brand-mark .pb-site-logo-shell {
    flex-shrink: 0;
}
.pb-site-logo,
.lk-auth-logo,
.lk-sidebar-logo {
    display: block;
    background: transparent;
}
.lk-auth-brand strong {
    display: block;
    color: #f8fafc;
    font-size: 1.05rem;
}
.lk-auth-brand span {
    display: block;
    font-size: 0.75rem;
    color: #64748b;
    margin-top: 2px;
}
.lk-auth-card h1 {
    margin: 0 0 8px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #f8fafc;
}
.lk-auth-sub {
    margin: 0 0 24px;
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.5;
}
.lk-form { display: flex; flex-direction: column; gap: 18px; }
.lk-form label span {
    display: block;
    margin-bottom: 8px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #94a3b8;
}
.lk-form input,
.lk-form select {
    width: 100%;
    padding: 13px 14px;
    background: #0b0f19;
    border: 1px solid #334155;
    border-radius: 10px;
    color: #f1f5f9;
    font-size: 1rem;
    font-family: inherit;
}
.lk-form input:focus,
.lk-form select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}
.lk-form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.lk-form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.82rem;
    color: #94a3b8;
}
.lk-form-checkbox input { margin-top: 3px; accent-color: #2563eb; }
.lk-form-checkbox a { color: #60a5fa; }
.lk-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}
.lk-btn-primary {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
    width: 100%;
}
.lk-btn-primary:hover { filter: brightness(1.08); }
.lk-btn-outline {
    background: transparent;
    border: 1px solid #475569;
    color: #e2e8f0;
}
.lk-form-error {
    padding: 12px 14px;
    border-radius: 10px;
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.35);
    color: #fca5a5;
    font-size: 0.875rem;
    margin-bottom: 16px;
}
.lk-form-notice {
    padding: 12px 14px;
    border-radius: 10px;
    background: rgba(37, 99, 235, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.35);
    color: #93c5fd;
    font-size: 0.875rem;
    margin-bottom: 16px;
}
.lk-auth-switch {
    text-align: center;
    margin-top: 22px;
    font-size: 0.875rem;
    color: #64748b;
}
.lk-auth-switch a { color: #60a5fa; font-weight: 600; text-decoration: none; }
.hp-field { position: absolute; left: -9999px; height: 0; overflow: hidden; }

/* Login page */
.lk-login-page {
    background: #060a12;
}
.lk-login-wrap::before {
    top: -25%;
    right: -20%;
    width: 640px;
    height: 640px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.18) 0%, transparent 68%);
}
.lk-login-wrap::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -18%;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    pointer-events: none;
}
.lk-login-back {
    padding: 8px 12px;
    border-radius: 10px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(51, 65, 85, 0.5);
}
.lk-login-card {
    overflow: hidden;
    max-width: 420px;
    padding: 0;
    border-radius: 24px;
    border: 1px solid rgba(71, 85, 105, 0.45);
    background: linear-gradient(180deg, #151d30 0%, #101827 100%);
    box-shadow:
        0 32px 80px rgba(0, 0, 0, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.lk-login-card::before {
    height: 4px;
    border-radius: 24px 24px 0 0;
}
.lk-login-brand-block {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px 24px 20px;
    border-bottom: 1px solid rgba(51, 65, 85, 0.35);
}
.lk-login-brand-mark {
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 768px) {
    .lk-login-page .lk-login-brand-block {
        display: none;
    }
}
.lk-login-screen {
    display: none;
    padding: 22px 24px 24px;
    animation: lkLoginFade 0.35s ease;
}
.lk-login-screen.is-active { display: block; }
.lk-login-screen[hidden] { display: none !important; }
@keyframes lkLoginFade {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.lk-login-form-head {
    margin-bottom: 16px;
}
.lk-login-heading {
    margin: 0 0 6px;
    font-size: 1.45rem;
    font-weight: 800;
    color: #f8fafc;
    letter-spacing: -0.03em;
}
.lk-login-lead {
    margin: 0;
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.45;
}
.lk-login-steps {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 8px 12px;
    border-radius: 12px;
    background: rgba(10, 15, 26, 0.65);
    border: 1px solid rgba(51, 65, 85, 0.4);
}
.lk-login-step {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
}
.lk-login-step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 8px;
    background: #1e293b;
    font-size: 0.7rem;
    color: #94a3b8;
}
.lk-login-step.is-active {
    color: #e2e8f0;
}
.lk-login-step.is-active span {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: #fff;
}
.lk-login-step-divider {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, #334155, transparent);
}
.lk-login-alert {
    margin: 0 0 16px;
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 0.85rem;
    line-height: 1.4;
}
.lk-login-alert--error {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.35);
    color: #fca5a5;
}
.lk-login-alert--info {
    background: rgba(37, 99, 235, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.35);
    color: #93c5fd;
}
.lk-login-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.lk-login-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.lk-login-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #64748b;
}
.lk-login-input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid #2f3d52;
    background: #0a0e18;
    color: #f1f5f9;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.lk-login-input::placeholder {
    color: #475569;
}
.lk-login-input:focus {
    outline: none;
    border-color: #3b82f6;
    background: #080c14;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}
.lk-login-page .lk-login-input:-webkit-autofill,
.lk-login-page .lk-login-input:-webkit-autofill:hover,
.lk-login-page .lk-login-input:-webkit-autofill:focus {
    -webkit-text-fill-color: #f1f5f9 !important;
    box-shadow: 0 0 0 1000px #0a0e18 inset !important;
    -webkit-box-shadow: 0 0 0 1000px #0a0e18 inset !important;
    border-color: #2f3d52 !important;
    transition: background-color 99999s ease-out 0s;
}
.lk-login-input-wrap {
    position: relative;
}
.lk-login-input--pwd {
    padding-right: 48px;
}
.lk-login-toggle-pwd {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 10px;
    background: transparent;
    color: #64748b;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s, background 0.2s;
}
.lk-login-toggle-pwd:hover {
    color: #93c5fd;
    background: rgba(59, 130, 246, 0.1);
}
.lk-login-eye {
    width: 20px;
    height: 20px;
    pointer-events: none;
}
.lk-login-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 4px;
}
.lk-login-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 15px 20px;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.2s, filter 0.2s, background 0.2s;
}
.lk-login-btn svg {
    width: 18px;
    height: 18px;
}
.lk-login-btn--primary {
    border: none;
    color: #fff;
    background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 45%, #3b82f6 100%);
    box-shadow: 0 10px 32px rgba(37, 99, 235, 0.4);
}
.lk-login-btn--primary:hover {
    transform: translateY(-1px);
    filter: brightness(1.06);
    box-shadow: 0 14px 36px rgba(37, 99, 235, 0.5);
}
.lk-login-btn--ghost {
    background: transparent;
    border: 1px solid #3d4f66;
    color: #cbd5e1;
}
.lk-login-btn--ghost:hover {
    border-color: #64748b;
    background: rgba(255, 255, 255, 0.04);
    color: #f1f5f9;
}
.lk-login-secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    padding: 11px 14px;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.55);
    border: 1px solid rgba(51, 65, 85, 0.45);
    font-size: 0.72rem;
    color: #64748b;
}
.lk-login-secure i {
    width: 16px;
    height: 16px;
    color: #60a5fa;
    flex-shrink: 0;
}
.lk-login-pin-user {
    text-align: center;
    font-size: 1.15rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 6px;
}
.lk-login-pin-sub,
.lk-login-create-title {
    text-align: center;
    color: #94a3b8;
    font-size: 0.9rem;
    margin: 0 0 20px;
}
.lk-login-create-title {
    color: #f8fafc;
    font-size: 1.2rem;
    font-weight: 700;
}
.lk-pin-display {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 24px;
}
.lk-pin-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid #475569;
    transition: all 0.2s;
}
.lk-pin-dot.filled {
    background: #3b82f6;
    border-color: #60a5fa;
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.45);
}
.lk-pin-dot.error {
    background: #f87171;
    border-color: #f87171;
    box-shadow: 0 0 12px rgba(248, 113, 113, 0.4);
}
.lk-pin-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    max-width: 260px;
    margin: 0 auto 8px;
}
.lk-pin-key {
    height: 56px;
    border-radius: 14px;
    border: 1px solid #334155;
    background: #0f172a;
    color: #f1f5f9;
    font-size: 1.35rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    transition: background 0.15s, border-color 0.15s, transform 0.1s;
}
.lk-pin-key:hover { background: #1e293b; border-color: #475569; }
.lk-pin-key:active {
    background: #2563eb;
    border-color: #3b82f6;
    color: #fff;
    transform: scale(0.96);
}
.lk-pin-key--icon i { width: 22px; height: 22px; color: #94a3b8; }
.lk-pin-key--icon:active i { color: #fff; }
.lk-pin-error {
    min-height: 20px;
    text-align: center;
    color: #f87171;
    font-size: 0.85rem;
    margin: 12px 0 0;
}
.lk-login-switch {
    display: block;
    width: 100%;
    margin-top: 18px;
    padding: 0;
    border: none;
    background: none;
    color: #64748b;
    font-size: 0.85rem;
    cursor: pointer;
    text-align: center;
    font-family: inherit;
}
.lk-login-switch:hover { color: #93c5fd; }

/* Auth pages — mobile layout (login / open-account) */
@media (max-width: 768px) {
    .lk-auth-body.lk-login-page {
        overflow-x: hidden;
        min-height: 100vh;
        min-height: 100dvh;
    }

    .lk-auth-wrap.lk-login-wrap {
        display: grid;
        grid-template-rows: auto 1fr;
        width: 100%;
        max-width: 100vw;
        min-height: 100vh;
        min-height: 100dvh;
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding:
            max(16px, env(safe-area-inset-top, 0px))
            max(16px, env(safe-area-inset-right, 0px))
            max(28px, env(safe-area-inset-bottom, 0px))
            max(16px, env(safe-area-inset-left, 0px));
        gap: 16px;
        align-items: stretch;
    }

    .lk-login-wrap::before,
    .lk-login-wrap::after,
    .lk-auth-wrap::before {
        display: none;
    }

    .lk-auth-back.lk-login-back {
        position: relative;
        top: auto;
        left: auto;
        grid-row: 1;
        justify-self: start;
        margin: 0;
        z-index: 1;
        max-width: 100%;
    }

    .lk-auth-card.lk-login-card {
        grid-row: 2;
        width: 100%;
        max-width: min(420px, 100%);
        margin: 0 auto;
        align-self: center;
        justify-self: center;
    }

    .lk-login-screen {
        padding: 20px 20px 26px;
    }

    .lk-login-secure {
        margin-top: 22px;
        margin-bottom: 2px;
    }

    .lk-login-steps {
        flex-wrap: wrap;
        gap: 8px;
    }

    .lk-login-step-divider {
        display: none;
    }
}

/* ── App shell ── */
.lk-app-body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #0f1419;
    color: #e5e7eb;
    -webkit-font-smoothing: antialiased;
}
.lk-crm-sso-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .5rem 1rem;
    background: linear-gradient(90deg, #4338ca, #6366f1);
    color: #fff;
    font-size: .8125rem;
    font-weight: 600;
    text-align: center;
}
.lk-crm-sso-banner svg { width: 16px; height: 16px; flex-shrink: 0; }
.lk-account-block-banner {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    padding: .875rem 1rem;
    background: linear-gradient(90deg, rgba(127, 29, 29, 0.95), rgba(153, 27, 27, 0.92));
    border-bottom: 2px solid rgba(248, 113, 113, 0.5);
    color: #fecaca;
    font-size: .875rem;
    box-shadow: 0 4px 16px rgba(69, 10, 10, 0.25);
}
.lk-account-block-banner svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }
.lk-account-block-banner strong { display: block; color: #fff; margin-bottom: .25rem; }
.lk-account-block-banner p { margin: 0; line-height: 1.45; }
.lk-pay-inactive-note--blocked {
    color: #fecaca;
    background: rgba(248, 113, 113, 0.08);
    border: 1px solid rgba(248, 113, 113, 0.25);
    border-radius: 8px;
    padding: .75rem 1rem;
}

/* Blocked account / instrument UI */
.lk-block-badge {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .25rem .55rem;
    border-radius: 999px;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .02em;
    text-transform: uppercase;
    color: #fecaca;
    background: rgba(127, 29, 29, 0.85);
    border: 1px solid rgba(248, 113, 113, 0.45);
    z-index: 4;
}
.lk-block-badge svg { width: 12px; height: 12px; flex-shrink: 0; }
.lk-block-notice {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    padding: .75rem .875rem;
    margin-bottom: .875rem;
    border-radius: 12px;
    background: rgba(127, 29, 29, 0.22);
    border: 1px solid rgba(248, 113, 113, 0.35);
    color: #fecaca;
}
.lk-block-notice[hidden] {
    display: none !important;
}
.lk-block-notice--inline {
    margin-bottom: .75rem;
    padding: .625rem .75rem;
    background: rgba(0, 0, 0, 0.18);
    border-color: rgba(254, 202, 202, 0.35);
}
.lk-block-notice__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(248, 113, 113, 0.15);
    flex-shrink: 0;
}
.lk-block-notice__icon svg { width: 16px; height: 16px; }
.lk-block-notice__body strong {
    display: block;
    color: #fff;
    font-size: .8125rem;
    margin-bottom: .2rem;
}
.lk-block-notice__body p {
    margin: 0;
    font-size: .78rem;
    line-height: 1.45;
    color: #fca5a5;
}
.lk-app {
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: 100vh;
    max-width: 1200px;
    margin: 0 auto;
    background: #0f1419;
}
.lk-sidebar {
    background: #0b0f19;
    border-right: 1px solid #1e293b;
    padding: 20px 14px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.lk-sidebar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #f8fafc;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 8px 10px;
}
.lk-sidebar-brand .pb-site-logo-shell {
    flex-shrink: 0;
}
.lk-sidebar-user {
    display: flex;
    gap: 12px;
    padding: 14px;
    background: #141b2d;
    border-radius: 14px;
    border: 1px solid #1e293b;
}
.lk-sidebar-user strong {
    display: block;
    font-size: 0.85rem;
    color: #f1f5f9;
    line-height: 1.3;
}
.lk-sidebar-user > div > span:not(.lk-badge) {
    display: block;
    font-size: 0.72rem;
    color: #64748b;
    margin: 4px 0 8px;
    word-break: break-all;
}
.lk-avatar {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
    font-weight: 800;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}
.lk-avatar-sm { width: 36px; height: 36px; font-size: 0.85rem; }
.lk-badge {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 3px 8px;
    border-radius: 6px;
}
.lk-badge-pending { background: rgba(245, 158, 11, 0.15); color: #fbbf24; }
.lk-badge-active { background: rgba(16, 185, 129, 0.15); color: #34d399; }
.lk-badge-danger { background: rgba(239, 68, 68, 0.15); color: #f87171; }

.lk-sidebar-nav,
.lk-sidebar-foot {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.lk-sidebar-foot {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #1e293b;
}
.lk-nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 12px;
    border-radius: 10px;
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
}
.lk-nav-link i { width: 18px; height: 18px; }
.lk-nav-link:hover { background: rgba(255, 255, 255, 0.06); color: #fff; }
.lk-nav-link.is-active {
    background: rgba(37, 99, 235, 0.2);
    color: #93c5fd;
}
.lk-nav-logout:hover { color: #fca5a5; }

.lk-main {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding-bottom: 72px;
}
.lk-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 1px solid #1e293b;
    background: #0f1419;
    position: sticky;
    top: 0;
    z-index: 10;
}
.lk-topbar-greet {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    flex: 1;
}
.lk-topbar-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #db2777, #e11d48);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(225, 29, 72, 0.35);
}
.lk-topbar-greet-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.lk-topbar-welcome {
    font-size: 0.8rem;
    color: #94a3b8;
    line-height: 1.2;
}
.lk-topbar-name {
    font-size: 1rem;
    font-weight: 700;
    color: #f8fafc;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.lk-topbar-page-title {
    display: none;
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: #f8fafc;
}
.lk-topbar-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}
.lk-header-btn {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid #2a3344;
    background: #1a2230;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    padding: 0;
    font: inherit;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.lk-header-btn:hover {
    background: #243044;
    color: #e2e8f0;
    border-color: #3b4a63;
}
.lk-header-btn:focus-visible {
    outline: 2px solid #60a5fa;
    outline-offset: 2px;
}
.lk-header-btn i {
    width: 20px;
    height: 20px;
}
.lk-settings-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 300;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.lk-settings-overlay.is-open {
    display: block;
    opacity: 1;
    pointer-events: auto;
}
.lk-settings-sheet {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 301;
    max-width: 480px;
    margin: 0 auto;
    background: #141820;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding: 12px 16px calc(28px + env(safe-area-inset-bottom, 0px));
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
    max-height: 90vh;
    overflow-y: auto;
}
.lk-settings-overlay.is-open .lk-settings-sheet {
    transform: translateY(0);
}
body.lk-settings-open {
    overflow: hidden;
}
.lk-settings-handle {
    width: 36px;
    height: 4px;
    border-radius: 3px;
    background: #334155;
    margin: 0 auto 18px;
}
.lk-sheet-menu {
    background: #1c2330;
    border: 1px solid #252b3b;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 12px;
}
.lk-sheet-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px 16px;
    text-decoration: none;
    color: #e5e7eb;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.15s;
}
.lk-sheet-item:last-child {
    border-bottom: none;
}
.lk-sheet-item:hover {
    background: rgba(255, 255, 255, 0.04);
}
.lk-sheet-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.lk-sheet-icon i {
    width: 18px;
    height: 18px;
}
.lk-sheet-icon--green {
    background: rgba(16, 185, 129, 0.18);
    color: #34d399;
    box-shadow: inset 0 0 0 1px rgba(52, 211, 153, 0.22);
}
.lk-sheet-icon--green i {
    width: 20px;
    height: 20px;
    stroke-width: 2px;
}
.lk-sheet-icon--blue { background: rgba(59, 130, 246, 0.15); color: #3b82f6; }
.lk-sheet-icon--purple { background: rgba(168, 85, 247, 0.15); color: #a855f7; }
.lk-sheet-icon--red { background: rgba(239, 68, 68, 0.15); color: #ef4444; }
.lk-sheet-item-text {
    flex: 1;
    font-size: 0.94rem;
    font-weight: 500;
}
.lk-sheet-item-arrow {
    color: #555;
    flex-shrink: 0;
}
.lk-sheet-item-arrow i {
    width: 16px;
    height: 16px;
}
.lk-sheet-lang-badge {
    flex-shrink: 0;
    min-width: 36px;
    padding: 4px 10px;
    border-radius: 8px;
    background: rgba(168, 85, 247, 0.15);
    color: #c084fc;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-align: center;
}
.lk-sheet-profile {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #1c2330;
    border: 1px solid #252b3b;
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 12px;
    text-decoration: none;
    color: inherit;
    transition: background 0.15s, border-color 0.15s;
}
.lk-sheet-profile:hover {
    background: #243044;
    border-color: #334155;
}
.lk-sheet-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.lk-sheet-profile-info {
    flex: 1;
    min-width: 0;
}
.lk-sheet-profile-name {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.lk-sheet-profile-sub {
    font-size: 0.8rem;
    color: #6b7280;
    margin-top: 2px;
}
.lk-sheet-profile-check {
    color: #10b981;
    flex-shrink: 0;
}
.lk-sheet-profile-check i {
    width: 22px;
    height: 22px;
}
.lk-sheet-logout {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #1c2330;
    border: 1px solid #252b3b;
    border-radius: 14px;
    padding: 15px 16px;
    text-decoration: none;
    transition: background 0.15s;
}
.lk-sheet-logout:hover {
    background: rgba(239, 68, 68, 0.08);
}
.lk-sheet-logout .lk-sheet-item-text {
    color: #ef4444;
    font-weight: 500;
}
.lk-content {
    padding: 20px 24px 32px;
    flex: 1;
    min-width: 0;
    max-width: 100%;
}

/* Balance + card */
.lk-hero-card {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 45%, #3b82f6 100%);
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(37, 99, 235, 0.35);
}
.lk-hero-card--mc {
    background: linear-gradient(135deg, #7f1d1d 0%, #b45309 45%, #ea580c 100%);
    box-shadow: 0 16px 40px rgba(234, 88, 12, 0.3);
}
.lk-hero-card--unionpay {
    background: linear-gradient(135deg, #0c2340 0%, #14532d 45%, #16a34a 100%);
    box-shadow: 0 16px 40px rgba(22, 163, 74, 0.3);
}
.lk-hero-card--mir {
    background: linear-gradient(135deg, #052e16 0%, #047857 50%, #10b981 100%);
    box-shadow: 0 16px 40px rgba(16, 185, 129, 0.28);
}
.lk-hero-card--amex {
    background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 50%, #0284c7 100%);
    box-shadow: 0 16px 40px rgba(2, 132, 199, 0.28);
}
.lk-hero-card--generic {
    background: linear-gradient(135deg, #312e81 0%, #4338ca 50%, #6366f1 100%);
    box-shadow: 0 16px 40px rgba(99, 102, 241, 0.28);
}
.lk-hero-card--total {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 45%, #3b82f6 100%);
    box-shadow: 0 16px 40px rgba(37, 99, 235, 0.35);
}
.lk-hero-card.is-blocked {
    background: linear-gradient(135deg, #450a0a 0%, #7f1d1d 48%, #991b1b 100%) !important;
    box-shadow: 0 16px 40px rgba(127, 29, 29, 0.35) !important;
}
.lk-hero-card.is-blocked .lk-hero-label,
.lk-hero-card.is-blocked .lk-hero-balance,
.lk-hero-card.is-blocked .lk-hero-iban {
    opacity: 0.92;
}
.lk-card-switcher {
    margin-bottom: 20px;
    width: 100%;
    min-width: 0;
}
.lk-card-switcher-info {
    position: relative;
    margin-bottom: 16px;
}
.lk-card-switcher-panel {
    display: none;
    margin-bottom: 0;
}
.lk-card-switcher-panel.is-active {
    display: block;
}
.lk-card-carousel {
    display: flex;
    gap: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
    box-sizing: border-box;
}
.lk-card-carousel::-webkit-scrollbar {
    display: none;
}
.lk-carousel-card {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    border-radius: 20px;
    padding: 22px 20px;
    min-height: 168px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid #2a2a4a;
    transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
    text-align: left;
    color: inherit;
    font: inherit;
}
.lk-carousel-card:active {
    transform: scale(0.98);
}
.lk-carousel-card:focus-visible {
    outline: 2px solid #60a5fa;
    outline-offset: 3px;
}
.lk-carousel-card.lk-bank-card--visa {
    background: linear-gradient(145deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}
.lk-carousel-card.lk-bank-card--mc {
    background: linear-gradient(145deg, #1a0a0a 0%, #4a1515 45%, #7c2d12 100%);
    border-color: #5c2a2a;
}
.lk-carousel-card.lk-bank-card--unionpay {
    background: linear-gradient(145deg, #0c2340 0%, #14532d 45%, #166534 100%);
    border-color: #15803d;
}
.lk-carousel-card.lk-bank-card--mir {
    background: linear-gradient(145deg, #052e16 0%, #14532d 50%, #059669 100%);
    border-color: #10b981;
}
.lk-carousel-card.lk-bank-card--local {
    background: linear-gradient(145deg, #1e293b 0%, #334155 50%, #475569 100%);
}
.lk-carousel-card.lk-bank-card--amex {
    background: linear-gradient(145deg, #0c4a6e 0%, #0369a1 50%, #0284c7 100%);
}
.lk-carousel-card.lk-bank-card--generic {
    background: linear-gradient(145deg, #312e81 0%, #4338ca 50%, #6366f1 100%);
}
.lk-carousel-card.is-pending {
    opacity: 0.8;
}
.lk-carousel-card.is-blocked {
    border-color: rgba(248, 113, 113, 0.55) !important;
    box-shadow: inset 0 0 0 1px rgba(248, 113, 113, 0.2), 0 10px 28px rgba(69, 10, 10, 0.45);
    cursor: default;
}
.lk-carousel-card-shade {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.52);
    z-index: 2;
    pointer-events: none;
}
.lk-carousel-card-lock {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -58%);
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(127, 29, 29, 0.75);
    border: 2px solid rgba(254, 202, 202, 0.45);
    color: #fecaca;
    pointer-events: none;
}
.lk-carousel-card-lock svg { width: 24px; height: 24px; }
.lk-carousel-card.is-blocked .lk-block-badge {
    position: absolute;
    top: 14px;
    right: 14px;
}
.lk-carousel-card-block-reason {
    position: relative;
    z-index: 4;
    margin: 0;
    padding: .45rem .55rem;
    border-radius: 8px;
    font-size: .72rem;
    line-height: 1.35;
    color: #fecaca;
    background: rgba(69, 10, 10, 0.55);
    border: 1px solid rgba(248, 113, 113, 0.25);
}
.lk-carousel-card.is-blocked .lk-carousel-card-hint {
    color: #fca5a5;
    z-index: 4;
}
.lk-carousel-card::after {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
    pointer-events: none;
}
.lk-carousel-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}
.lk-carousel-card-brand {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}
.lk-carousel-card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
    z-index: 1;
    margin-top: auto;
    padding-top: 20px;
}
.lk-carousel-card-number {
    font-family: ui-monospace, monospace;
    font-size: 1rem;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.75);
}
.lk-carousel-card-exp {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
}
.lk-carousel-card-hint {
    position: relative;
    z-index: 1;
    margin-top: 12px;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.02em;
}
.lk-card-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 12px 0 4px;
}
.lk-card-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #334155;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s;
}
.lk-card-dot.is-active {
    width: 20px;
    border-radius: 3px;
    background: #3b82f6;
}
.lk-card-panel-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.lk-card-panel-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}
.lk-card-panel {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 201;
    max-width: 480px;
    margin: 0 auto;
    background: #0a0a0a;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-x: hidden;
    overflow-y: auto;
    padding-bottom: env(safe-area-inset-bottom, 16px);
}
.lk-card-panel-overlay.is-open .lk-card-panel {
    transform: translateY(0);
}
body.lk-sheet-open {
    overflow: hidden;
}
.lk-card-panel-handle {
    width: 40px;
    height: 4px;
    border-radius: 2px;
    background: #333;
    margin: 10px auto 6px;
}
.lk-card-panel-close {
    position: absolute;
    top: 10px;
    right: 20px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #333;
    background: #222;
    color: #9ca3af;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}
.lk-card-panel-close:hover {
    color: #fff;
    background: #333;
}
.lk-panel-card-wrap {
    padding: 36px 20px 8px;
    margin-bottom: 8px;
    perspective: 1000px;
}
.lk-panel-flip {
    width: 100%;
    height: 228px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border-radius: 20px;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45);
}
.lk-panel-flip.is-flipped {
    transform: rotateY(180deg);
}
.lk-panel-flip.is-blocked {
    box-shadow: 0 20px 48px rgba(69, 10, 10, 0.45);
}
.lk-panel-flip.is-blocked .lk-panel-face {
    filter: saturate(0.85);
}
.lk-panel-face-blocked-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
}
.lk-panel-face {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    border-radius: 20px;
    padding: 20px 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, 0.14);
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.lk-panel-face--back {
    transform: rotateY(180deg);
    justify-content: flex-start;
    gap: 12px;
}
.lk-panel-face--visa.lk-panel-face--front,
.lk-panel-face--visa.lk-panel-face--back {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 42%, #2563eb 100%);
}
.lk-panel-face--mc.lk-panel-face--front,
.lk-panel-face--mc.lk-panel-face--back {
    background: linear-gradient(135deg, #1c0a0a 0%, #7c2d12 45%, #ea580c 100%);
}
.lk-panel-face--unionpay.lk-panel-face--front,
.lk-panel-face--unionpay.lk-panel-face--back {
    background: linear-gradient(135deg, #0c2340 0%, #14532d 45%, #16a34a 100%);
}
.lk-panel-face--mir.lk-panel-face--front,
.lk-panel-face--mir.lk-panel-face--back {
    background: linear-gradient(135deg, #052e16 0%, #047857 50%, #10b981 100%);
}
.lk-panel-face--amex.lk-panel-face--front,
.lk-panel-face--amex.lk-panel-face--back {
    background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 50%, #0284c7 100%);
}
.lk-panel-face--generic.lk-panel-face--front,
.lk-panel-face--generic.lk-panel-face--back {
    background: linear-gradient(135deg, #312e81 0%, #4338ca 50%, #6366f1 100%);
}
.lk-panel-face--visa::before,
.lk-panel-face--mc::before,
.lk-panel-face--unionpay::before,
.lk-panel-face--mir::before,
.lk-panel-face--amex::before,
.lk-panel-face--generic::before {
    content: '';
    position: absolute;
    top: -45%;
    right: -25%;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    pointer-events: none;
}
.lk-panel-face--visa::before {
    background: radial-gradient(circle, rgba(147, 197, 253, 0.22) 0%, transparent 68%);
}
.lk-panel-face--mc::before {
    background: radial-gradient(circle, rgba(251, 191, 36, 0.18) 0%, transparent 68%);
}
.lk-panel-decor {
    position: absolute;
    bottom: -35%;
    left: -15%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
    pointer-events: none;
}
.lk-panel-face-head,
.lk-panel-pan-wrap,
.lk-panel-face-foot,
.lk-panel-fields {
    position: relative;
    z-index: 1;
}
.lk-panel-face-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}
.lk-panel-face-head-left {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}
.lk-panel-face .lk-bank-card-chip-img {
    width: 44px;
    height: auto;
}
.lk-panel-bank-block {
    min-width: 0;
}
.lk-panel-bank {
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #fff;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.lk-panel-bank-sub {
    font-size: 0.58rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 3px;
}
.lk-panel-contactless {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.75);
    flex-shrink: 0;
}
.lk-panel-contactless i {
    width: 20px;
    height: 20px;
}
.lk-panel-pan-wrap {
    text-align: center;
    padding: 12px 0 8px;
}
.lk-panel-pan {
    font-family: ui-monospace, 'Courier New', monospace;
    font-size: clamp(1.2rem, 5vw, 1.55rem);
    letter-spacing: 0.16em;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
    line-height: 1.35;
}
.lk-panel-face-foot {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
}
.lk-panel-foot-col {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    flex: 1;
}
.lk-panel-foot-label {
    font-size: 0.58rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.45);
}
.lk-panel-holder,
.lk-panel-exp {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.92);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.lk-panel-brand-badge {
    flex-shrink: 0;
    align-self: flex-end;
    line-height: 1;
    margin-bottom: 1px;
    font-size: 1.35rem;
    font-weight: 800;
    font-style: italic;
    letter-spacing: 0.04em;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    padding-left: 4px;
}
.lk-panel-brand-badge--visa {
    font-size: 1.5rem;
    letter-spacing: 0.12em;
}
.lk-panel-brand-badge--mc {
    font-size: 0.72rem;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    max-width: 72px;
    text-align: right;
    line-height: 1.15;
}
.lk-panel-stripe {
    position: relative;
    z-index: 1;
    height: 42px;
    margin: 4px -22px 0;
    background: rgba(0, 0, 0, 0.42);
}
.lk-panel-back-note {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.45);
    text-align: center;
}
.lk-panel-fields {
    display: flex;
    gap: 12px;
}
.lk-panel-field {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 10px 14px;
    text-align: center;
}
.lk-panel-field-label {
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 4px;
}
.lk-panel-field-value {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}
.lk-panel-field--cvv {
    cursor: pointer;
}
.lk-panel-field--cvv:hover {
    background: rgba(255, 255, 255, 0.16);
}
.lk-panel-tap-hint {
    text-align: center;
    font-size: 0.7rem;
    color: #555;
    margin: -4px 0 12px;
}
.lk-panel-menu {
    padding: 0 20px 24px;
}
.lk-menu-group {
    background: #1a1a1a;
    border: 1px solid #222;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 12px;
}
.lk-menu-item {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 16px 18px;
    border: none;
    border-bottom: 1px solid #222;
    background: transparent;
    color: inherit;
    cursor: pointer;
    text-align: left;
    font: inherit;
    transition: background 0.15s;
}
.lk-menu-item:last-child {
    border-bottom: none;
}
.lk-menu-item:hover {
    background: #222;
}
.lk-menu-item.is-copied .lk-menu-arrow {
    color: #22c55e;
}
.lk-menu-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.lk-menu-icon i {
    width: 18px;
    height: 18px;
}
.lk-menu-icon--green { background: rgba(16, 185, 129, 0.15); color: #10b981; }
.lk-menu-icon--blue { background: rgba(59, 130, 246, 0.15); color: #3b82f6; }
.lk-menu-icon--purple { background: rgba(139, 92, 246, 0.15); color: #8b5cf6; }
.lk-menu-icon--yellow { background: rgba(245, 158, 11, 0.15); color: #f59e0b; }
.lk-menu-icon--red { background: rgba(239, 68, 68, 0.15); color: #ef4444; }
.lk-menu-icon--cyan { background: rgba(6, 182, 212, 0.15); color: #06b6d4; }
.lk-menu-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.lk-menu-title {
    font-size: 0.88rem;
    font-weight: 500;
    color: #e5e7eb;
}
.lk-menu-sub {
    font-size: 0.75rem;
    color: #6b7280;
    word-break: break-word;
}
.lk-menu-arrow {
    color: #444;
    flex-shrink: 0;
}
.lk-menu-arrow i {
    width: 16px;
    height: 16px;
}
.lk-panel-settings,
.lk-panel-sub {
    padding: 0 20px 24px;
}
.lk-settings-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-top: 10px;
}
.lk-settings-back {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    color: #9ca3af;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.lk-settings-back:hover {
    background: #222;
    color: #3b82f6;
}
.lk-settings-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}
.lk-limit-card {
    background: #1a1a1a;
    border: 1px solid #222;
    border-radius: 16px;
    padding: 18px;
    margin-bottom: 12px;
}
.lk-limit-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}
.lk-limit-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.lk-limit-icon i { width: 18px; height: 18px; }
.lk-limit-icon--green { background: rgba(16, 185, 129, 0.15); color: #10b981; }
.lk-limit-icon--blue { background: rgba(59, 130, 246, 0.15); color: #3b82f6; }
.lk-limit-icon--purple { background: rgba(139, 92, 246, 0.15); color: #8b5cf6; }
.lk-limit-icon--yellow { background: rgba(245, 158, 11, 0.15); color: #f59e0b; }
.lk-limit-name { font-size: 0.88rem; font-weight: 600; color: #e5e7eb; }
.lk-limit-sub { font-size: 0.75rem; color: #6b7280; margin-top: 2px; }
.lk-limit-bar-wrap {
    height: 8px;
    border-radius: 4px;
    background: #222;
    overflow: hidden;
    margin-bottom: 8px;
}
.lk-limit-bar {
    height: 100%;
    border-radius: 4px;
    transition: width 0.5s ease;
}
.lk-limit-bar--green { background: linear-gradient(90deg, #047857, #10b981); }
.lk-limit-bar--yellow { background: linear-gradient(90deg, #d97706, #f59e0b); }
.lk-limit-bar--red { background: linear-gradient(90deg, #dc2626, #ef4444); }
.lk-limit-values {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #9ca3af;
}
.lk-sub-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px auto 16px;
}
.lk-sub-icon i { width: 28px; height: 28px; }
.lk-sub-icon--red { background: rgba(239, 68, 68, 0.15); color: #ef4444; }
.lk-sub-icon--green { background: rgba(16, 185, 129, 0.15); color: #10b981; }
.lk-sub-icon--yellow { background: rgba(245, 158, 11, 0.15); color: #f59e0b; }
.lk-sub-icon--blue { background: rgba(59, 130, 246, 0.15); color: #3b82f6; }
.lk-sub-icon--cyan { background: rgba(6, 182, 212, 0.15); color: #06b6d4; }
.lk-sub-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 8px;
}
.lk-sub-desc {
    font-size: 0.88rem;
    color: #9ca3af;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 24px;
}
.lk-sub-btn {
    display: block;
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 10px;
    font-family: inherit;
}
.lk-sub-btn--red { background: #dc2626; color: #fff; }
.lk-sub-btn--green { background: #059669; color: #fff; }
.lk-sub-btn--green:disabled { opacity: 0.4; cursor: not-allowed; }
.lk-sub-btn--ghost {
    background: transparent;
    color: #9ca3af;
    border: 1px solid #333;
}
.lk-branch-list { margin-bottom: 16px; }
.lk-branch-item {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 16px 18px;
    background: #1a1a1a;
    border: 1px solid #222;
    border-radius: 14px;
    margin-bottom: 8px;
    cursor: pointer;
    color: inherit;
    font: inherit;
    text-align: left;
}
.lk-branch-item.is-selected {
    border-color: rgba(59, 130, 246, 0.5);
    background: #1e293b;
}
.lk-branch-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #444;
    flex-shrink: 0;
    position: relative;
}
.lk-branch-item.is-selected .lk-branch-dot {
    border-color: #3b82f6;
    background: #3b82f6;
}
.lk-branch-item span strong {
    display: block;
    font-size: 0.9rem;
    color: #e5e7eb;
}
.lk-branch-item span small {
    display: block;
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 2px;
}
.lk-details-card {
    background: #1a1a1a;
    border: 1px solid #222;
    border-radius: 16px;
    padding: 18px;
}
.lk-details-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.lk-details-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lk-details-head strong {
    display: block;
    font-size: 0.95rem;
    color: #fff;
}
.lk-details-head small {
    color: #6b7280;
    font-size: 0.75rem;
}
.lk-details-hr {
    border: none;
    border-top: 1px solid #2a2a2a;
    margin: 12px 0;
}
.lk-details-rows > div {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 8px;
    padding: 8px 0;
    font-size: 0.82rem;
}
.lk-details-rows dt {
    color: #6b7280;
    margin: 0;
}
.lk-details-rows dd {
    margin: 0;
    color: #e5e7eb;
}
.lk-mono { font-family: ui-monospace, monospace; word-break: break-all; }
.lk-details-copy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 14px;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid #333;
    background: #111;
    color: #e5e7eb;
    cursor: pointer;
    font: inherit;
    font-weight: 600;
}
.lk-details-copy.is-copied {
    border-color: #22c55e;
    color: #22c55e;
}
.lk-panel-chrome.is-hidden {
    display: none !important;
}
[data-lk-panel-view]:not([data-lk-panel-view="main"])[hidden] {
    display: none !important;
}
.lk-bank-card-picker {
    flex: 0 0 auto;
    margin: 0;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    font: inherit;
    color: inherit;
    text-align: left;
    border-radius: 20px;
}
.lk-hero-card::after {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    pointer-events: none;
}
.lk-hero-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 6px;
}
.lk-hero-balance {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}
.lk-hero-meta {
    display: flex;
    align-items: flex-end;
}
.lk-hero-iban {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.85);
    font-family: ui-monospace, monospace;
    word-break: break-word;
    letter-spacing: 0.02em;
}
.lk-iban-value {
    font-family: ui-monospace, monospace;
    font-size: 0.85rem;
    word-break: break-word;
}
.lk-iban-breakdown {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid #252b3b;
    display: grid;
    gap: 10px;
}
.lk-iban-breakdown > div {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 8px;
    font-size: 0.8rem;
}
.lk-iban-breakdown dt {
    color: #64748b;
    font-weight: 500;
}
.lk-iban-breakdown dd {
    margin: 0;
    color: #e2e8f0;
    font-family: ui-monospace, monospace;
}
.lk-bank-card {
    background: linear-gradient(145deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-radius: 18px;
    padding: 22px;
    margin-bottom: 20px;
    border: 1px solid #2a2a4a;
    max-width: 380px;
    flex: 0 0 auto;
}
.lk-bank-card--visa {
    background: linear-gradient(145deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}
.lk-bank-card--mc {
    background: linear-gradient(145deg, #1a0a0a 0%, #4a1515 45%, #7c2d12 100%);
    border-color: #5c2a2a;
}
.lk-bank-card--unionpay {
    background: linear-gradient(145deg, #0c2340 0%, #14532d 45%, #166534 100%);
    border-color: #15803d;
}
.lk-bank-card--mir {
    background: linear-gradient(145deg, #052e16 0%, #14532d 50%, #059669 100%);
    border-color: #10b981;
}
.lk-bank-card--local,
.lk-bank-card--jcb,
.lk-bank-card--diners,
.lk-bank-card--discover {
    background: linear-gradient(145deg, #1e293b 0%, #334155 50%, #475569 100%);
}
.lk-bank-card--amex {
    background: linear-gradient(145deg, #0c4a6e 0%, #0369a1 50%, #0284c7 100%);
}
.lk-bank-card--generic {
    background: linear-gradient(145deg, #312e81 0%, #4338ca 50%, #6366f1 100%);
}
.lk-card-brand-text,
.lk-card-brand-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 28px;
    padding: 0 .25rem;
    font-size: .58rem;
    font-weight: 700;
    letter-spacing: .03em;
    text-transform: uppercase;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    line-height: 1.1;
}
.lk-bank-card.is-pending { opacity: 0.75; }
.lk-bank-card--compact {
    width: min(320px, 85vw);
    max-width: none;
    margin-bottom: 0;
    scroll-snap-align: center;
}
.lk-cards-row {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 4px 2px 20px;
    margin-bottom: 4px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}
.lk-cards-row::-webkit-scrollbar { height: 4px; }
.lk-cards-row::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 4px;
}
.lk-cards-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 420px;
}
.lk-bank-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
}
.lk-bank-card-chip {
    display: inline-flex;
    line-height: 0;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.35));
}
.lk-bank-card-chip-img {
    display: block;
    width: 48px;
    height: auto;
    object-fit: contain;
    border-radius: 6px;
}
.lk-bank-card--compact .lk-bank-card-chip-img {
    width: 44px;
}
.lk-bank-card-number {
    font-family: ui-monospace, monospace;
    font-size: 1.05rem;
    letter-spacing: 0.12em;
    color: #f1f5f9;
    margin-bottom: 16px;
}
.lk-bank-card-foot {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #94a3b8;
}
.lk-bank-card-foot strong { color: #e2e8f0; display: block; margin-top: 4px; }

.lk-quick {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 24px;
}
.lk-quick-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 14px 6px;
    background: #1a1f2e;
    border: 1px solid #252b3b;
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s, transform 0.15s, background 0.2s;
    min-width: 0;
}
.lk-quick-item:hover {
    border-color: rgba(59, 130, 246, 0.45);
    background: #1e2536;
    transform: translateY(-2px);
}
.lk-quick-item.is-disabled {
    opacity: 0.42;
    pointer-events: none;
    cursor: not-allowed;
    filter: grayscale(0.4);
    transform: none !important;
}
.lk-quick-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.lk-quick-icon i {
    width: 20px;
    height: 20px;
}
.lk-quick-icon--green {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}
.lk-quick-icon--amber {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
}
.lk-quick-icon--blue {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}
.lk-quick-icon--purple {
    background: rgba(139, 92, 246, 0.15);
    color: #8b5cf6;
}
.lk-quick-label {
    font-size: 0.68rem;
    font-weight: 500;
    color: #94a3b8;
    text-align: center;
    line-height: 1.25;
}
.lk-quick-item:hover .lk-quick-label {
    color: #e2e8f0;
}

.lk-panel {
    background: #1a1f2e;
    border: 1px solid #252b3b;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
}
.lk-panel h2 {
    margin: 0 0 16px;
    font-size: 1rem;
    color: #f8fafc;
}
.lk-muted { color: #64748b; font-size: 0.875rem; margin: 0; }

.lk-alert {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 0.875rem;
}
.lk-alert i { width: 22px; height: 22px; flex-shrink: 0; }
.lk-alert-info {
    background: rgba(37, 99, 235, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.35);
    color: #93c5fd;
}
.lk-alert-warn {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.35);
    color: #fcd34d;
}
.lk-alert-danger {
    background: rgba(248, 113, 113, 0.1);
    border: 1px solid rgba(248, 113, 113, 0.35);
    color: #fecaca;
}
.lk-alert-danger strong { color: #fff; }
.lk-alert p { margin: 4px 0 0; color: #94a3b8; font-size: 0.82rem; }
.lk-alert-danger p { color: #fca5a5; }

.lk-tx-list { list-style: none; margin: 0; padding: 0; }

/* ── Transaction feed & History (bank statement UI) ── */
.lk-tx-feed {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}
.lk-tx-feed--compact .lk-tx-row-wrap + .lk-tx-row-wrap .lk-tx-row {
    border-top: 1px solid rgba(148, 163, 184, .08);
}
.lk-tx-feed--statement { gap: 0; }
.lk-tx-row-wrap { list-style: none; }

.lk-tx-row,
a.lk-tx-row,
button.lk-tx-row {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 16px 18px;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transition: background .18s ease;
    text-align: left;
    color: inherit;
    font: inherit;
    cursor: default;
    text-decoration: none;
}
a.lk-tx-row,
button.lk-tx-row { cursor: pointer; }
a.lk-tx-row:hover,
button.lk-tx-row:hover,
.lk-tx-row:hover {
    background: rgba(255, 255, 255, .03);
}
.lk-tx-feed:not(.lk-tx-feed--statement) .lk-tx-row,
.lk-tx-feed:not(.lk-tx-feed--statement) a.lk-tx-row,
.lk-tx-feed:not(.lk-tx-feed--statement) button.lk-tx-row {
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, .1);
    background: #141b2d;
    margin-bottom: 8px;
}
.lk-tx-feed:not(.lk-tx-feed--statement) a.lk-tx-row:hover,
.lk-tx-feed:not(.lk-tx-feed--statement) button.lk-tx-row:hover {
    border-color: rgba(148, 163, 184, .22);
    background: #182035;
}

.lk-tx-row-wrap + .lk-tx-row-wrap .lk-tx-row {
    border-top: 1px solid rgba(148, 163, 184, .08);
}
.lk-tx-row--pending {
    background: linear-gradient(90deg, rgba(245, 158, 11, .1) 0%, transparent 42%);
}
.lk-tx-row--pending:hover {
    background: linear-gradient(90deg, rgba(245, 158, 11, .14) 0%, rgba(255, 255, 255, .03) 42%);
}

.lk-tx-row__icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    flex-shrink: 0;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .04);
}
.lk-tx-row__icon i { width: 19px; height: 19px; stroke-width: 2.1px; }
.lk-tx-row__status {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    box-shadow: 0 0 0 2px #1a1f2e;
    pointer-events: none;
    z-index: 1;
}
.lk-tx-row__status-icon {
    display: block;
    width: 9px;
    height: 9px;
    flex-shrink: 0;
}
.lk-tx-row__status svg {
    display: block;
    width: 9px;
    height: 9px;
}
.lk-tx-row__status--completed {
    background: linear-gradient(145deg, #059669 0%, #10b981 100%);
    color: #fff;
}
.lk-tx-row__status--pending {
    background: linear-gradient(145deg, #b45309 0%, #f59e0b 100%);
    color: #fff;
}
.lk-tx-row__status--failed {
    background: linear-gradient(145deg, #b91c1c 0%, #ef4444 100%);
    color: #fff;
}
.lk-tx-row__icon--credit { background: rgba(16, 185, 129, .14); color: #34d399; }
.lk-tx-row__icon--debit { background: rgba(239, 68, 68, .14); color: #f87171; }
.lk-tx-row__icon--fx { background: rgba(139, 92, 246, .14); color: #a78bfa; }
.lk-tx-row__icon--fee { background: rgba(249, 115, 22, .14); color: #fb923c; }
.lk-tx-row__icon--card { background: rgba(59, 130, 246, .14); color: #60a5fa; }

.lk-tx-row__main {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.lk-tx-row__title {
    font-size: .92rem;
    font-weight: 600;
    color: #f8fafc;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.lk-tx-row__amount {
    font-size: .95rem;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
    font-variant-numeric: tabular-nums;
    letter-spacing: -.01em;
}
.lk-tx-row__amount.is-plus { color: #4ade80; }
.lk-tx-row__amount.is-minus { color: #f87171; }

.lk-tx-row__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.lk-tx-row__time {
    font-size: .76rem;
    color: #64748b;
    font-variant-numeric: tabular-nums;
}
.lk-tx-badge {
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    padding: 0 9px;
    border-radius: 999px;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .03em;
    text-transform: uppercase;
}
.lk-tx-badge--completed {
    background: rgba(16, 185, 129, .12);
    color: #6ee7b7;
    box-shadow: inset 0 0 0 1px rgba(16, 185, 129, .22);
}
.lk-tx-badge--pending {
    background: rgba(245, 158, 11, .14);
    color: #fcd34d;
    box-shadow: inset 0 0 0 1px rgba(245, 158, 11, .28);
}
.lk-tx-badge--failed {
    background: rgba(239, 68, 68, .12);
    color: #fca5a5;
    box-shadow: inset 0 0 0 1px rgba(239, 68, 68, .22);
}

.lk-tx-row__chevron {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    color: #64748b;
    background: rgba(148, 163, 184, .06);
    flex-shrink: 0;
    transition: background .15s ease, color .15s ease;
}
.lk-tx-row:hover .lk-tx-row__chevron {
    color: #cbd5e1;
    background: rgba(148, 163, 184, .12);
}
.lk-tx-row__chevron i { width: 15px; height: 15px; }

/* History page layout */
.lk-history {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 920px;
}

.lk-history-hero {
    padding: 16px;
    border-radius: 20px;
    border: 1px solid rgba(148, 163, 184, .14);
    background:
        radial-gradient(ellipse 80% 60% at 100% 0%, rgba(37, 99, 235, .16) 0%, transparent 55%),
        linear-gradient(180deg, #161f33 0%, #121a2b 100%);
    box-shadow: 0 18px 50px rgba(0, 0, 0, .28);
}
.lk-history-hero__sub {
    margin: 0 0 12px;
    font-size: .84rem;
    color: #94a3b8;
    line-height: 1.45;
}

.lk-history-toolbar {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    align-items: stretch;
}
.lk-history-toolbar__item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    min-height: 64px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(15, 23, 42, .55);
    border: 1px solid rgba(148, 163, 184, .1);
}
.lk-history-toolbar__label {
    display: block;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #64748b;
}
.lk-history-toolbar__value {
    display: block;
    font-size: 1rem;
    font-weight: 800;
    color: #f1f5f9;
    font-variant-numeric: tabular-nums;
    letter-spacing: -.02em;
    line-height: 1.2;
}
.lk-history-toolbar__item--in .lk-history-toolbar__value { color: #4ade80; }
.lk-history-toolbar__item--out .lk-history-toolbar__value { color: #f87171; }
.lk-history-toolbar__item--action {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: background .15s ease, border-color .15s ease, transform .15s ease;
}
.lk-history-toolbar__item--action:hover {
    background: rgba(30, 41, 59, .72);
    border-color: rgba(148, 163, 184, .18);
    transform: translateY(-1px);
}
.lk-history-toolbar__action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .92rem;
    font-weight: 700;
    color: #e2e8f0;
    line-height: 1.2;
}
.lk-history-toolbar__action i {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: #94a3b8;
}
.lk-history-toolbar__item--action:hover .lk-history-toolbar__action i {
    color: #cbd5e1;
}

.lk-history-filters {
    padding: 16px;
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, .12);
    background: #141b2d;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.lk-history-filters__search {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 4px 4px 4px 14px;
    min-height: 46px;
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, .14);
    background: #0f172a;
}
.lk-history-filters__search i { width: 17px; height: 17px; color: #64748b; flex-shrink: 0; }
.lk-history-filters__search input {
    flex: 1;
    border: none;
    background: transparent;
    color: #f1f5f9;
    font-size: .9rem;
    outline: none;
    min-width: 0;
}
.lk-history-filters__search input::placeholder { color: #64748b; }
.lk-history-filters__submit {
    min-height: 36px;
    padding: 0 14px;
    border: none;
    border-radius: 10px;
    background: rgba(59, 130, 246, .22);
    color: #bfdbfe;
    font-size: .8rem;
    font-weight: 700;
    cursor: pointer;
    transition: background .15s ease;
}
.lk-history-filters__submit:hover { background: rgba(59, 130, 246, .32); }

.lk-history-filters__row {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.lk-history-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.lk-history-chip {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, .14);
    background: #0f172a;
    color: #94a3b8;
    font-size: .8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all .15s ease;
}
.lk-history-chip:hover {
    border-color: rgba(148, 163, 184, .28);
    color: #e2e8f0;
}
.lk-history-chip.is-active {
    background: rgba(37, 99, 235, .2);
    border-color: rgba(96, 165, 250, .45);
    color: #dbeafe;
    box-shadow: 0 4px 14px rgba(37, 99, 235, .15);
}

.lk-history-filters__selects {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}
.lk-history-select {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.lk-history-select span {
    font-size: .66rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #64748b;
}
.lk-history-select select {
    min-height: 38px;
    padding: 0 2.25rem 0 12px;
    border-radius: 11px;
    border: 1px solid rgba(148, 163, 184, .14);
    background-color: #0f172a;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 14px;
    color: #e2e8f0;
    font-size: .84rem;
    font-weight: 500;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}
.lk-history-select select:focus {
    outline: none;
    border-color: rgba(96, 165, 250, .45);
}

.lk-history-filters__foot {
    padding-top: 2px;
}
.lk-history-reset {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #93c5fd;
    font-size: .82rem;
    font-weight: 600;
    text-decoration: none;
}
.lk-history-reset i { width: 14px; height: 14px; }
.lk-history-reset:hover { color: #bfdbfe; }

.lk-history-list { display: flex; flex-direction: column; gap: 6px; }
.lk-history-groups { display: flex; flex-direction: column; gap: 22px; }
.lk-history-group-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
    padding: 0 4px;
}
.lk-history-group-title {
    margin: 0;
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #cbd5e1;
}
.lk-history-group-count {
    font-size: .72rem;
    font-weight: 600;
    color: #64748b;
}
.lk-history-group-card {
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, .12);
    background: #141b2d;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
}

.lk-history-empty {
    text-align: center;
    padding: 48px 20px;
    border-radius: 18px;
    border: 1px dashed rgba(148, 163, 184, .18);
    background: rgba(20, 27, 45, .65);
    color: #94a3b8;
}
.lk-history-empty-icon {
    display: inline-flex;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, .12);
    color: #60a5fa;
    margin-bottom: 14px;
}
.lk-history-empty-icon i { width: 26px; height: 26px; }
.lk-history-empty p {
    margin: 0;
    font-size: .92rem;
    color: #94a3b8;
}

/* Transaction detail sheet */
.lk-tx-detail-panel { padding-top: 8px; }
.lk-tx-detail-body {
    position: relative;
    min-height: 280px;
}
.lk-tx-detail { padding: 8px 20px 28px; }
.lk-tx-detail[hidden],
.lk-tx-detail-loading[hidden],
.lk-tx-detail-error[hidden] {
    display: none !important;
}
.lk-tx-detail-loading,
.lk-tx-detail-error {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: #0a0a0a;
}
.lk-tx-detail-hero {
    text-align: center;
    padding: 8px 0 20px;
    margin-bottom: 16px;
}
.lk-tx-detail-icon-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 14px;
}
.lk-tx-detail-icon {
    position: relative;
    display: inline-flex;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, .15);
    color: #60a5fa;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .04);
}
.lk-tx-detail-status {
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    box-shadow: 0 0 0 2px #0a0a0a;
}
.lk-tx-detail-status .lk-tx-row__status-icon,
.lk-tx-detail-status svg {
    width: 11px;
    height: 11px;
}
.lk-tx-detail-icon i { width: 26px; height: 26px; }
.lk-tx-detail-icon.lk-tx-row__icon--credit { background: rgba(16, 185, 129, .15); color: #34d399; }
.lk-tx-detail-icon.lk-tx-row__icon--debit { background: rgba(239, 68, 68, .15); color: #f87171; }
.lk-tx-detail-icon.lk-tx-row__icon--fx { background: rgba(139, 92, 246, .15); color: #a78bfa; }
.lk-tx-detail-icon.lk-tx-row__icon--fee { background: rgba(249, 115, 22, .15); color: #fb923c; }
.lk-tx-detail-icon.lk-tx-row__icon--card { background: rgba(59, 130, 246, .15); color: #60a5fa; }
.lk-tx-detail-amount {
    font-size: 2.15rem;
    font-weight: 800;
    letter-spacing: -.03em;
    color: #f8fafc;
    line-height: 1.1;
    font-variant-numeric: tabular-nums;
}
.lk-tx-detail-amount.is-plus { color: #4ade80; }
.lk-tx-detail-amount.is-minus { color: #f87171; }
.lk-tx-detail-title {
    margin-top: 8px;
    color: #94a3b8;
    font-size: .9rem;
    line-height: 1.45;
    padding: 0 16px;
}
.lk-tx-detail-status-label {
    margin: 8px 0 0;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.lk-tx-detail-status-label[hidden] {
    display: none !important;
}
.lk-tx-detail-status-label--completed { color: #34d399; }
.lk-tx-detail-status-label--pending { color: #fbbf24; }
.lk-tx-detail-status-label--failed { color: #f87171; }

.lk-tx-detail-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 16px;
}
.lk-tx-doc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 12px;
    border-radius: 13px;
    border: 1px solid rgba(148, 163, 184, .14);
    background: #141b2d;
    color: #e2e8f0;
    font-size: .84rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background .15s ease, border-color .15s ease;
}
.lk-tx-doc-btn i { width: 16px; height: 16px; }
.lk-tx-doc-btn:hover { background: #1a2438; border-color: rgba(148, 163, 184, .24); }

.lk-tx-detail-list-wrap {
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, .1);
    background: rgba(15, 23, 42, .42);
    padding: 2px 16px;
}

.lk-tx-detail-list { margin: 0; padding: 0; }
.lk-tx-detail-list div {
    display: grid;
    grid-template-columns: minmax(0, 38%) minmax(0, 1fr);
    align-items: start;
    gap: 8px 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(148, 163, 184, .08);
    font-size: .86rem;
}
.lk-tx-detail-list div.lk-tx-detail-row--stack {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 11px 0;
}
.lk-tx-detail-list div:last-child { border-bottom: none; }
.lk-tx-detail-list dt { color: #64748b; margin: 0; font-weight: 500; }
.lk-tx-detail-list dd {
    margin: 0;
    color: #f1f5f9;
    font-weight: 600;
    text-align: right;
    word-break: break-word;
}
.lk-tx-detail-list div.lk-tx-detail-row--stack dd {
    text-align: left;
}
.lk-tx-detail-list dd.is-mono {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: .76rem;
    line-height: 1.5;
    letter-spacing: .03em;
}
.lk-tx-detail-list div:not(.lk-tx-detail-row--stack) dd.is-mono {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: normal;
    overflow-wrap: normal;
}
.lk-tx-detail-list div.lk-tx-detail-row--stack dd.is-mono {
    word-break: break-all;
    overflow-wrap: anywhere;
}

.lk-tx-detail-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #94a3b8;
    font-size: .88rem;
}
.lk-tx-detail-error {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 24px 20px;
    text-align: center;
}
.lk-tx-detail-error-icon {
    display: inline-flex;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    align-items: center;
    justify-content: center;
    background: rgba(239, 68, 68, .12);
    color: #f87171;
}
.lk-tx-detail-error-icon i { width: 26px; height: 26px; }
.lk-tx-detail-error p {
    margin: 0;
    color: #94a3b8;
    font-size: .9rem;
    line-height: 1.45;
    max-width: 280px;
}
.lk-tx-detail-error .lk-tx-doc-btn {
    min-width: 140px;
}
.lk-spinner {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 3px solid #334155;
    border-top-color: #60a5fa;
    animation: lk-spin .8s linear infinite;
}
@keyframes lk-spin { to { transform: rotate(360deg); } }

@media (max-width: 720px) {
    .lk-history-toolbar {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
    }
    .lk-history-toolbar__item {
        min-height: 58px;
        padding: 10px;
    }
    .lk-history-toolbar__value {
        font-size: .84rem;
    }
    .lk-history-toolbar__action {
        font-size: .78rem;
        gap: 6px;
    }
    .lk-history-toolbar__action span {
        white-space: normal;
    }
    .lk-history-filters__selects {
        grid-template-columns: 1fr;
    }
    .lk-tx-row,
    a.lk-tx-row,
    button.lk-tx-row {
        grid-template-columns: auto 1fr auto;
        grid-template-rows: auto auto;
        gap: 10px 12px;
        padding: 14px 14px;
    }
    .lk-tx-row__amount {
        grid-column: 3;
        grid-row: 1;
        align-self: start;
    }
    .lk-tx-row__chevron {
        grid-column: 3;
        grid-row: 2;
        justify-self: end;
        width: 24px;
        height: 24px;
    }
    .lk-tx-row__main {
        grid-column: 2 / 3;
        grid-row: 1 / 3;
    }
}

@media (min-width: 768px) {
    .lk-history-filters__row {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
    }
    .lk-history-chips { flex: 1; }
    .lk-history-filters__selects {
        flex-shrink: 0;
        width: auto;
        grid-template-columns: repeat(3, 130px);
    }
}

/* Legacy aliases */
.lk-tx-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid #252b3b;
}
.lk-tx-item:last-child { border-bottom: none; }
.lk-tx-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(37, 99, 235, 0.15);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}
.lk-tx-icon i { width: 18px; height: 18px; color: #60a5fa; }
.lk-tx-body { flex: 1; min-width: 0; }
.lk-tx-body strong {
    display: block;
    font-size: 0.9rem;
    color: #f1f5f9;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.lk-tx-body small { color: #64748b; font-size: 0.75rem; }
.lk-tx-amount {
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
}
.lk-tx-amount.is-plus { color: #34d399; }
.lk-tx-amount.is-minus { color: #f87171; }

.lk-details { list-style: none; margin: 0; padding: 0; }
.lk-details li {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid #252b3b;
    font-size: 0.875rem;
}
.lk-details li span { color: #64748b; }
.lk-details li strong { color: #f1f5f9; text-align: right; }

.lk-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Payments page */
.lk-payments {
    display: flex;
    flex-direction: column;
    gap: 28px;
    max-width: 100%;
}
.lk-pay-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 16px;
    font-size: 1.05rem;
    font-weight: 700;
    color: #f8fafc;
}
.lk-pay-section-title svg {
    width: 20px;
    height: 20px;
    color: #60a5fa;
    flex-shrink: 0;
}
.lk-pay-categories,
.lk-pay-recipients {
    padding: 18px;
    border-radius: 18px;
    border: 1px solid #334155;
    background: #141b2d;
}
.lk-pay-recipients-empty {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.5;
}
.lk-pay-quick {
    padding: 22px 20px 20px;
    border-radius: 20px;
    border: 1px solid rgba(51, 65, 85, 0.9);
    background: linear-gradient(165deg, #161f35 0%, #121a2c 48%, #0f1524 100%);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}
.lk-pay-quick-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}
.lk-pay-quick-head-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(59, 130, 246, 0.14);
    color: #60a5fa;
    flex-shrink: 0;
}
.lk-pay-quick-head-icon svg {
    width: 20px;
    height: 20px;
}
.lk-pay-quick-title {
    margin: 0;
    font-size: 1.12rem;
    font-weight: 700;
    color: #f8fafc;
    letter-spacing: -0.02em;
}
.lk-pay-inactive-note {
    margin: -6px 0 16px;
    font-size: 0.875rem;
}
.lk-pay-type-switch {
    display: flex;
    gap: 4px;
    padding: 4px;
    margin-bottom: 18px;
    border-radius: 12px;
    background: #0a0f1a;
    border: 1px solid #2a3548;
}
.lk-pay-type-switch--quick {
    margin-bottom: 20px;
}
.lk-pay-type-switch--sheet {
    margin-bottom: 12px;
    background: #0f172a;
    border-color: #334155;
}
.lk-pay-type-btn {
    flex: 1;
    padding: 11px 10px;
    border: none;
    border-radius: 9px;
    background: transparent;
    color: #64748b;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.lk-pay-type-btn.is-on {
    background: #1c2538;
    color: #f1f5f9;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}
.lk-pay-type-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}
.lk-pay-quick-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.lk-pay-sheet-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0 20px 24px;
}
.lk-pay-sheet-form .lk-pay-type-switch--sheet {
    margin-bottom: 2px;
}
.lk-pay-submit-btn {
    margin-top: 4px;
    width: 100%;
    justify-content: center;
}
.lk-pay-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.lk-pay-field-label,
.lk-pay-field > span:first-child {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #64748b;
}
.lk-pay-field-hint {
    margin: -2px 0 0;
    font-size: 0.72rem;
    line-height: 1.4;
    color: #64748b;
}
.lk-pay-input,
.lk-pay-field input:not(.lk-deposit-amount-input) {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid #334155;
    background: #111827;
    color: #f1f5f9;
    font-size: 0.95rem;
    font-family: inherit;
    appearance: none;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.lk-pay-select {
    width: 100%;
    padding: 14px 40px 14px 16px;
    border-radius: 14px;
    border: 1px solid #334155;
    background-color: #111827;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    color: #f1f5f9;
    font-size: 0.95rem;
    font-family: inherit;
    appearance: none;
    transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
}
.lk-pay-input::placeholder,
.lk-pay-field input:not(.lk-deposit-amount-input)::placeholder {
    color: #475569;
}
.lk-pay-input--card {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    letter-spacing: 0.12em;
    font-size: 0.9rem;
}
.lk-pay-input:focus,
.lk-pay-field input:not(.lk-deposit-amount-input):focus,
.lk-pay-select:focus {
    outline: none;
    border-color: rgba(99, 102, 241, 0.65);
    background-color: #0f172a;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.14);
}
.lk-pay-input:disabled,
.lk-pay-field input:not(.lk-deposit-amount-input):disabled,
.lk-pay-select:disabled {
    opacity: 0.55;
}
.lk-input-mono {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    letter-spacing: 0.04em;
}
.lk-deposit-amount-field.lk-pay-amount-field {
    display: flex;
    align-items: stretch;
    gap: 0;
    padding: 0;
    margin: 0;
    border: 1px solid #334155;
    border-radius: 14px;
    background: #111827;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.lk-deposit-amount-field.lk-pay-amount-field:focus-within {
    border-color: rgba(99, 102, 241, 0.65);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.14);
}
.lk-pay-amount-field {
    margin: 0;
}
.lk-pay-amount-field:focus-within {
    border-color: rgba(99, 102, 241, 0.65);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.14);
}
.lk-pay-amount-field .lk-deposit-amount-prefix {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 54px;
    align-self: stretch;
    margin: 0;
    padding: 0 14px;
    background: rgba(99, 102, 241, 0.12);
    color: #818cf8;
    font-size: 1.15rem;
    font-weight: 700;
    border-right: 1px solid rgba(148, 163, 184, 0.14);
    flex-shrink: 0;
    user-select: none;
}
.lk-pay-amount-field .lk-deposit-amount-input {
    flex: 1;
    min-width: 0;
    width: auto;
    margin: 0;
    padding: 14px 16px;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    font-size: 1.15rem;
    font-weight: 700;
    color: #f8fafc;
    appearance: none;
}
.lk-pay-amount-field .lk-deposit-amount-input:focus {
    outline: none;
    border: none;
    box-shadow: none;
    background: transparent;
}
.lk-pay-amount-field .lk-deposit-amount-input::placeholder {
    color: #475569;
    font-weight: 600;
}
.lk-pay-card-select {
    position: relative;
}
.lk-pay-card-trigger {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 11px 12px 11px 14px;
    border-radius: 14px;
    border: 1px solid #334155;
    background: #111827;
    color: inherit;
    cursor: pointer;
    font: inherit;
    text-align: left;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.lk-pay-card-trigger:hover:not(:disabled) {
    border-color: #475569;
    background: #141c2e;
}
.lk-pay-card-trigger[aria-expanded="true"] {
    border-color: rgba(139, 92, 246, 0.55);
    background: #141c2e;
    box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.12);
}
.lk-pay-card-trigger:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}
.lk-pay-card-trigger-inner {
    flex: 1;
    min-width: 0;
}
.lk-pay-card-trigger-inner .lk-pay-card-option-inner {
    width: 100%;
}
.lk-pay-card-chevron {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    color: #94a3b8;
    background: rgba(148, 163, 184, 0.08);
    flex-shrink: 0;
    transition: background 0.2s, color 0.2s;
}
.lk-pay-card-trigger[aria-expanded="true"] .lk-pay-card-chevron {
    color: #c4b5fd;
    background: rgba(139, 92, 246, 0.14);
}
.lk-pay-card-chevron svg {
    width: 18px;
    height: 18px;
    transition: transform 0.2s;
}
.lk-pay-card-trigger[aria-expanded="true"] .lk-pay-card-chevron svg {
    transform: rotate(180deg);
}
.lk-pay-card-option-inner {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    width: 100%;
}
.lk-card-mini-icon {
    display: block;
    width: 52px;
    height: 34px;
    flex-shrink: 0;
}
.lk-card-mini-icon__face {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.16);
}
.lk-card-mini-icon__shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.22) 0%, transparent 42%, transparent 100%);
    pointer-events: none;
}
.lk-card-mini-icon__chip {
    position: absolute;
    top: 7px;
    left: 7px;
    width: 15px;
    height: 11px;
    border-radius: 2px;
    background: linear-gradient(145deg, #fde68a 0%, #f59e0b 55%, #b45309 100%);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12);
}
.lk-card-mini-icon__chip::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 2px;
    right: 2px;
    height: 1px;
    background: rgba(0, 0, 0, 0.14);
    transform: translateY(-50%);
}
.lk-card-mini-icon__last {
    position: absolute;
    right: 6px;
    bottom: 5px;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.94);
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    line-height: 1;
}
.lk-card-mini-icon--tone-indigo .lk-card-mini-icon__face {
    background: linear-gradient(145deg, #312e81 0%, #4338ca 52%, #6366f1 100%);
}
.lk-card-mini-icon--tone-violet .lk-card-mini-icon__face {
    background: linear-gradient(145deg, #4c1d95 0%, #6d28d9 52%, #8b5cf6 100%);
}
.lk-card-mini-icon--tone-teal .lk-card-mini-icon__face {
    background: linear-gradient(145deg, #134e4a 0%, #0f766e 52%, #14b8a6 100%);
}
.lk-card-mini-icon--tone-slate .lk-card-mini-icon__face {
    background: linear-gradient(145deg, #1e293b 0%, #334155 52%, #475569 100%);
}
.lk-pay-card-option-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.lk-pay-card-option-pan {
    font-size: 0.86rem;
    font-weight: 600;
    color: #f1f5f9;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    letter-spacing: 0.06em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.lk-pay-card-option-brand {
    font-size: 0.74rem;
    font-weight: 500;
    color: #94a3b8;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.lk-pay-card-option-blocked {
    display: inline-block;
    margin-left: 0.35rem;
    padding: 0.05rem 0.35rem;
    border-radius: 999px;
    font-size: 0.62rem;
    font-weight: 700;
    color: #fecaca;
    background: rgba(248, 113, 113, 0.14);
    vertical-align: middle;
}
.lk-pay-card-option-bal {
    font-size: 0.88rem;
    font-weight: 700;
    color: #e9d5ff;
    white-space: nowrap;
    text-align: right;
    line-height: 1.2;
}
.lk-pay-card-menu {
    position: absolute;
    z-index: 30;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    margin: 0;
    padding: 6px;
    list-style: none;
    border-radius: 14px;
    border: 1px solid #334155;
    background: #111827;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.5);
    max-height: 240px;
    overflow-y: auto;
}
.lk-pay-card-menu[hidden] {
    display: none !important;
}
.lk-pay-card-menu li + li {
    margin-top: 4px;
}
.lk-pay-card-option {
    display: block;
    width: 100%;
    padding: 10px 12px;
    border: 1px solid transparent;
    border-radius: 12px;
    background: transparent;
    color: inherit;
    cursor: pointer;
    font: inherit;
    text-align: left;
    transition: background 0.15s, border-color 0.15s;
}
.lk-pay-card-option:hover {
    background: rgba(148, 163, 184, 0.08);
    border-color: rgba(148, 163, 184, 0.12);
}
.lk-pay-card-option.is-selected {
    background: rgba(139, 92, 246, 0.12);
    border-color: rgba(139, 92, 246, 0.28);
}
.lk-pay-card-option.is-selected .lk-pay-card-option-bal {
    color: #ddd6fe;
}
.lk-pay-card-option:focus-visible {
    outline: none;
    border-color: rgba(139, 92, 246, 0.45);
    box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.18);
}
.lk-pay-send-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 4px;
    padding: 16px 20px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, #6d28d9 0%, #8b5cf6 50%, #7c3aed 100%);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    box-shadow: 0 8px 28px rgba(109, 40, 217, 0.35);
    transition: transform 0.15s, box-shadow 0.2s, filter 0.2s;
}
.lk-pay-send-btn:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 12px 32px rgba(139, 92, 246, 0.45);
    filter: brightness(1.05);
}
.lk-pay-send-btn:active:not(:disabled) {
    transform: translateY(0);
}
.lk-pay-send-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}
.lk-pay-send-btn svg {
    width: 18px;
    height: 18px;
}
.lk-pay-submit-btn {
    margin-top: 4px;
    width: 100%;
    justify-content: center;
}
.lk-pay-cat-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}
@media (min-width: 640px) {
    .lk-pay-cat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.lk-pay-cat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
    padding: 16px;
    border-radius: 16px;
    border: 1px solid #334155;
    background: #0f172a;
    color: inherit;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.2s, transform 0.2s, background 0.2s;
    font: inherit;
}
.lk-pay-cat:hover:not(:disabled) {
    border-color: #3b82f6;
    background: #172033;
    transform: translateY(-1px);
}
.lk-pay-cat:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.lk-pay-cat-head {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}
.lk-pay-cat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    flex-shrink: 0;
}
.lk-pay-cat-icon svg {
    width: 22px;
    height: 22px;
}
.lk-pay-cat-icon--blue { background: rgba(59, 130, 246, 0.15); color: #60a5fa; }
.lk-pay-cat-icon--green { background: rgba(16, 185, 129, 0.15); color: #34d399; }
.lk-pay-cat-icon--cyan { background: rgba(6, 182, 212, 0.15); color: #22d3ee; }
.lk-pay-cat-icon--amber { background: rgba(245, 158, 11, 0.15); color: #fbbf24; }
.lk-pay-cat-icon--purple { background: rgba(168, 85, 247, 0.15); color: #c084fc; }
.lk-pay-cat-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #f8fafc;
}
.lk-pay-cat-desc {
    margin: 0;
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.45;
}
.lk-pay-cat-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.lk-pay-tag {
    padding: 4px 10px;
    border-radius: 8px;
    background: #1e293b;
    color: #94a3b8;
    font-size: 0.72rem;
    font-weight: 600;
}
.lk-pay-recipient-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.lk-pay-recipient {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid transparent;
    background: #0f172a;
    color: inherit;
    text-align: left;
    cursor: pointer;
    font: inherit;
    transition: border-color 0.2s, background 0.2s;
}
.lk-pay-recipient:hover {
    border-color: #3b82f6;
    background: #172033;
}
.lk-pay-recipient-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    flex-shrink: 0;
}
.lk-pay-recipient-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.lk-pay-recipient-info strong {
    font-size: 0.9rem;
    color: #f1f5f9;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.lk-pay-recipient-info span {
    font-size: 0.78rem;
    color: #64748b;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.lk-pay-recipient-arrow {
    color: #64748b;
    flex-shrink: 0;
}
.lk-pay-recipient-arrow svg {
    width: 18px;
    height: 18px;
}
.lk-pay-sheet-head {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 8px 20px 18px;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}
.lk-pay-sheet-head .lk-muted {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.45;
    color: #94a3b8;
}
.lk-pay-sheet-title {
    margin: 0 0 4px;
    font-size: 1.15rem;
    font-weight: 700;
    color: #f8fafc;
}
.lk-card-panel [data-lk-pay-sheet-type-panel] {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.lk-card-panel [data-lk-pay-sheet-type-panel][hidden] {
    display: none !important;
}
.lk-pay-card-menu {
    z-index: 40;
}

/* Accounts page — three sections in a column */
.lk-accounts-page {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.lk-accounts-section-title {
    margin: 0 0 12px;
    font-size: 1.05rem;
    font-weight: 700;
    color: #f8fafc;
}
.lk-account-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 100%;
}
.lk-account-item {
    width: 100%;
    max-width: 100%;
    text-align: left;
    font: inherit;
    color: inherit;
}
.lk-account-item--card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 148px;
    padding: 20px 18px;
    border-radius: 20px;
    cursor: pointer;
    flex: none;
    scroll-snap-align: unset;
    appearance: none;
    -webkit-appearance: none;
    margin: 0;
}
.lk-account-item--card .lk-account-item-balance {
    position: relative;
    z-index: 1;
    margin: 8px 0 4px;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
}
.lk-account-item--card .lk-account-item-meta {
    position: relative;
    z-index: 1;
    margin: 0 0 6px;
    font-size: 0.72rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.72);
    letter-spacing: 0.02em;
}
.lk-account-item--card .lk-carousel-card-bottom {
    padding-top: 8px;
}
.lk-account-item--card.is-blocked {
    position: relative;
}
.lk-account-item--card.is-blocked .lk-block-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 4;
}
.lk-account-item-block-reason,
.lk-account-item-body .lk-account-item-block-reason {
    display: block;
    position: relative;
    z-index: 2;
    margin-top: .35rem;
    font-size: .72rem;
    line-height: 1.35;
    color: #fca5a5;
}
.lk-account-item--crypto.is-blocked {
    border-color: rgba(248, 113, 113, 0.45);
    background: rgba(127, 29, 29, 0.32);
    cursor: default;
}
.lk-account-item--crypto.is-blocked:hover {
    border-color: rgba(248, 113, 113, 0.45);
    background: rgba(127, 29, 29, 0.32);
}
.lk-account-item--crypto.is-blocked .lk-crypto-icon {
    background: rgba(69, 10, 10, 0.55);
    border-color: rgba(248, 113, 113, 0.4);
}
.lk-crypto-icon__lock {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #fca5a5;
}
.lk-crypto-icon__lock svg {
    width: 22px;
    height: 22px;
}
.lk-account-item--crypto,
.lk-account-item--deposit {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 16px;
    border-radius: 16px;
    border: 1px solid #334155;
    background: #141b2d;
}
.lk-account-item--crypto {
    width: 100%;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    margin: 0;
    text-align: left;
    font: inherit;
    color: inherit;
    transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.lk-account-item--crypto:hover {
    border-color: #475569;
    background: #1a2234;
}
.lk-account-item--crypto:active {
    transform: scale(0.99);
}
.lk-crypto-panel-hero {
    margin: 8px 16px 20px;
    padding: 20px;
    border-radius: 18px;
    background: linear-gradient(145deg, #1e293b 0%, #312e81 55%, #1e3a5f 100%);
    border: 1px solid rgba(99, 102, 241, 0.35);
    text-align: center;
    position: relative;
}
.lk-crypto-panel-hero.is-blocked {
    background: linear-gradient(145deg, #450a0a 0%, #7f1d1d 55%, #991b1b 100%);
    border-color: rgba(248, 113, 113, 0.35);
}
.lk-crypto-panel-hero.is-blocked .lk-block-badge {
    position: absolute;
    top: 10px;
    right: 10px;
}
.lk-crypto-panel-icon {
    display: inline-flex;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.12);
    margin-bottom: 12px;
}
.lk-crypto-panel-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.lk-crypto-panel-name {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #f8fafc;
}
.lk-crypto-panel-network {
    display: block;
    font-size: 0.8rem;
    color: #94a3b8;
    margin-top: 2px;
}
.lk-crypto-panel-balance {
    margin-top: 16px;
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
}
.lk-crypto-panel-eur {
    margin-top: 4px;
    font-size: 0.9rem;
    color: #cbd5e1;
}

/* Crypto panel sub-views */
.lk-crypto-view {
    padding-top: 0;
}
.lk-crypto-view .lk-settings-header {
    margin-bottom: 20px;
    padding-top: 4px;
}
.lk-crypto-view .lk-settings-back {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(148, 163, 184, 0.18);
}
.lk-crypto-view .lk-settings-title {
    font-size: 1.125rem;
    letter-spacing: -0.02em;
}
.lk-crypto-deposit {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.lk-crypto-deposit__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.lk-crypto-deposit__asset {
    display: flex;
    align-items: center;
    gap: 12px;
}
.lk-crypto-deposit__asset-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(59, 130, 246, 0.12);
    border: 1px solid rgba(96, 165, 250, 0.22);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.lk-crypto-deposit__asset-icon img {
    width: 28px;
    height: 28px;
    display: block;
}
.lk-crypto-deposit__asset-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.lk-crypto-deposit__asset-text strong {
    font-size: 1rem;
    font-weight: 700;
    color: #f8fafc;
    letter-spacing: -0.02em;
}
.lk-crypto-deposit__network {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 3px 10px;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(52, 211, 153, 0.24);
    color: #6ee7b7;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.lk-crypto-deposit__qr-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.lk-crypto-deposit__qr {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    border-radius: 20px;
    background: #fff;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.08),
        0 16px 40px rgba(0, 0, 0, 0.28);
}
.lk-crypto-deposit__qr img {
    display: block;
    width: 168px;
    height: 168px;
    border-radius: 10px;
}
.lk-crypto-deposit__qr-hint {
    margin: 0;
    font-size: 0.8125rem;
    line-height: 1.45;
    color: #94a3b8;
    text-align: center;
    max-width: 280px;
}
.lk-crypto-deposit__notice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.22);
}
.lk-crypto-deposit__notice-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(245, 158, 11, 0.14);
    color: #fbbf24;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.lk-crypto-deposit__notice-icon svg {
    width: 18px;
    height: 18px;
}
.lk-crypto-deposit__notice p {
    margin: 0;
    padding-top: 2px;
    color: #fde68a;
    font-size: 0.8125rem;
    line-height: 1.55;
}
.lk-crypto-deposit__field {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.lk-crypto-deposit__label {
    font-size: 0.6875rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.lk-crypto-deposit__address-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 14px 14px 16px;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 20, 25, 0.98) 100%);
    border: 1px solid rgba(96, 165, 250, 0.18);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}
.lk-crypto-deposit__address {
    flex: 1;
    min-width: 0;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.8125rem;
    line-height: 1.5;
    color: #f1f5f9;
    word-break: break-all;
}
.lk-crypto-deposit__copy {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid rgba(96, 165, 250, 0.24);
    background: rgba(59, 130, 246, 0.12);
    color: #93c5fd;
    cursor: pointer;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.lk-crypto-deposit__copy:hover {
    color: #dbeafe;
    border-color: rgba(96, 165, 250, 0.42);
    background: rgba(59, 130, 246, 0.2);
}
.lk-crypto-deposit__copy:active {
    transform: scale(0.96);
}
.lk-crypto-deposit__copy.is-copied {
    color: #6ee7b7;
    border-color: rgba(52, 211, 153, 0.35);
    background: rgba(16, 185, 129, 0.16);
}
.lk-crypto-deposit__copy svg {
    width: 17px;
    height: 17px;
}
.lk-crypto-deposit__meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.lk-crypto-deposit__meta-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    min-height: 100%;
    padding: 14px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(148, 163, 184, 0.12);
}
.lk-crypto-deposit__meta-icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: rgba(59, 130, 246, 0.12);
    color: #60a5fa;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.lk-crypto-deposit__meta-icon svg {
    width: 16px;
    height: 16px;
}
.lk-crypto-deposit__meta-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}
.lk-crypto-deposit__meta-body small {
    font-size: 0.6875rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.lk-crypto-deposit__meta-body strong {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #e2e8f0;
    line-height: 1.35;
    word-break: break-word;
}
@media (max-width: 420px) {
    .lk-crypto-deposit__meta {
        grid-template-columns: 1fr;
    }
    .lk-crypto-deposit__meta-item {
        flex-direction: row;
        align-items: center;
    }
    .lk-crypto-withdraw__meta {
        grid-template-columns: 1fr;
    }
    .lk-crypto-withdraw__meta-item {
        flex-direction: row;
        align-items: center;
    }
}
.lk-crypto-withdraw {
    gap: 18px;
}
.lk-crypto-withdraw__notice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(96, 165, 250, 0.2);
}
.lk-crypto-withdraw__notice-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(59, 130, 246, 0.14);
    color: #60a5fa;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.lk-crypto-withdraw__notice-icon svg {
    width: 18px;
    height: 18px;
}
.lk-crypto-withdraw__notice p {
    margin: 0;
    padding-top: 2px;
    color: #bfdbfe;
    font-size: 0.8125rem;
    line-height: 1.55;
}
.lk-crypto-withdraw__notice strong {
    color: #e2e8f0;
    font-weight: 700;
}
.lk-crypto-withdraw__field {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.lk-crypto-withdraw__label {
    font-size: 0.6875rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.lk-crypto-withdraw__input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 20, 25, 0.98) 100%);
    color: #f8fafc;
    font: inherit;
    font-size: 0.9375rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.lk-crypto-withdraw__input--mono {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.8125rem;
    line-height: 1.5;
}
.lk-crypto-withdraw__input:focus {
    outline: none;
    border-color: rgba(96, 165, 250, 0.45);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.14);
}
.lk-crypto-withdraw__input::placeholder {
    color: #64748b;
}
.lk-crypto-withdraw__amount {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 6px 6px 16px;
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 20, 25, 0.98) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.lk-crypto-withdraw__amount:focus-within {
    border-color: rgba(96, 165, 250, 0.45);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.14);
}
.lk-crypto-withdraw__amount .lk-crypto-withdraw__input {
    flex: 1;
    min-width: 0;
    padding: 8px 0;
    border: none;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
}
.lk-crypto-withdraw__amount .lk-crypto-withdraw__input:focus {
    box-shadow: none;
}
.lk-crypto-withdraw__suffix {
    flex-shrink: 0;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #94a3b8;
    letter-spacing: 0.02em;
}
.lk-crypto-withdraw__max {
    flex-shrink: 0;
    min-width: 52px;
    height: 36px;
    padding: 0 12px;
    border: 1px solid rgba(52, 211, 153, 0.28);
    border-radius: 10px;
    background: rgba(16, 185, 129, 0.12);
    color: #6ee7b7;
    font: inherit;
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.lk-crypto-withdraw__max:hover {
    background: rgba(16, 185, 129, 0.2);
    border-color: rgba(52, 211, 153, 0.42);
    color: #a7f3d0;
}
.lk-crypto-withdraw__meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.lk-crypto-withdraw__meta-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    min-height: 100%;
    padding: 14px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(148, 163, 184, 0.12);
}
.lk-crypto-withdraw__meta-icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: rgba(16, 185, 129, 0.12);
    color: #34d399;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.lk-crypto-withdraw__meta-icon svg {
    width: 16px;
    height: 16px;
}
.lk-crypto-withdraw__meta-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}
.lk-crypto-withdraw__meta-body small {
    font-size: 0.6875rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.lk-crypto-withdraw__meta-body strong {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #e2e8f0;
    line-height: 1.35;
    word-break: break-word;
}
.lk-crypto-withdraw__submit {
    display: block;
    width: 100%;
    margin-top: 4px;
    padding: 16px 20px;
    border: none;
    border-radius: 16px;
    background: linear-gradient(180deg, #10b981 0%, #059669 100%);
    color: #fff;
    font: inherit;
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(5, 150, 105, 0.28);
    transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}
.lk-crypto-withdraw__submit:hover {
    box-shadow: 0 14px 28px rgba(5, 150, 105, 0.34);
}
.lk-crypto-withdraw__submit:active {
    transform: scale(0.985);
}
.lk-crypto-withdraw__submit:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    box-shadow: none;
}
.lk-crypto-exchange {
    gap: 18px;
}
.lk-crypto-exchange__modes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 4px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(148, 163, 184, 0.12);
}
.lk-crypto-exchange__mode {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 12px;
    border: none;
    border-radius: 12px;
    background: transparent;
    color: #94a3b8;
    font: inherit;
    font-size: 0.8125rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}
.lk-crypto-exchange__mode svg {
    width: 16px;
    height: 16px;
}
.lk-crypto-exchange__mode.is-active {
    background: rgba(59, 130, 246, 0.16);
    color: #dbeafe;
    box-shadow: inset 0 0 0 1px rgba(96, 165, 250, 0.24);
}
.lk-crypto-exchange__mode:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}
.lk-crypto-exchange__hint {
    margin: -6px 0 0;
    font-size: 0.8125rem;
    line-height: 1.45;
    color: #94a3b8;
}
.lk-crypto-exchange__section {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.lk-crypto-exchange__panel {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.lk-crypto-exchange__panel[hidden] {
    display: none !important;
}
.lk-crypto-exchange__wallet-note {
    margin: 0;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(148, 163, 184, 0.12);
    font-size: 0.8125rem;
    line-height: 1.45;
    color: #94a3b8;
}
.lk-crypto-exchange__wallet-note strong {
    color: #e2e8f0;
    font-weight: 600;
}
.lk-crypto-exchange__receive {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.lk-crypto-exchange__receive-label {
    font-size: 0.6875rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.lk-crypto-exchange__receive-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(52, 211, 153, 0.2);
    color: #d1fae5;
    font-size: 0.875rem;
    font-weight: 600;
}
.lk-crypto-exchange__receive-card img {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}
.lk-crypto-exchange__meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.lk-crypto-exchange__meta-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    min-height: 100%;
    padding: 14px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(148, 163, 184, 0.12);
}
.lk-crypto-exchange__meta-icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: rgba(59, 130, 246, 0.12);
    color: #60a5fa;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.lk-crypto-exchange__meta-icon svg {
    width: 16px;
    height: 16px;
}
.lk-crypto-exchange__meta-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}
.lk-crypto-exchange__meta-body small {
    font-size: 0.6875rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.lk-crypto-exchange__meta-body strong {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #e2e8f0;
    line-height: 1.35;
}
.lk-crypto-target__body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    background: linear-gradient(180deg, rgba(20, 27, 45, 0.96) 0%, rgba(15, 20, 25, 0.98) 100%);
    transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.lk-crypto-target__body strong {
    font-size: 0.875rem;
    color: #f8fafc;
}
.lk-crypto-target__body small {
    font-size: 0.75rem;
    color: #64748b;
    line-height: 1.4;
}
.lk-crypto-target.is-active .lk-crypto-target__body,
.lk-crypto-target:has(input:checked) .lk-crypto-target__body {
    border-color: rgba(96, 165, 250, 0.42);
    background: rgba(37, 99, 235, 0.12);
    box-shadow: inset 0 0 0 1px rgba(96, 165, 250, 0.12);
}
@media (max-width: 420px) {
    .lk-crypto-exchange__meta {
        grid-template-columns: 1fr;
    }
    .lk-crypto-exchange__meta-item {
        flex-direction: row;
        align-items: center;
    }
}
.lk-crypto-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.lk-crypto-form__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.lk-crypto-form__field > span {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #cbd5e1;
}
.lk-crypto-form__field input[type="text"] {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid #334155;
    background: #0f1419;
    color: #f8fafc;
    font: inherit;
    font-size: 0.9375rem;
}
.lk-crypto-form__field input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}
.lk-crypto-form__hint {
    margin: -6px 0 0;
    font-size: 0.75rem;
    color: #64748b;
    line-height: 1.4;
}
.lk-crypto-targets {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.lk-crypto-target {
    display: block;
    cursor: pointer;
}
.lk-crypto-target input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.lk-crypto-history {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.lk-crypto-history__body {
    min-height: 180px;
}
.lk-crypto-history__empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 36px 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed rgba(148, 163, 184, 0.18);
}
.lk-crypto-history__empty-icon {
    display: inline-flex;
    width: 72px;
    height: 72px;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    background: rgba(59, 130, 246, 0.12);
    border: 1px solid rgba(96, 165, 250, 0.22);
    color: #60a5fa;
    margin-bottom: 16px;
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.12);
}
.lk-crypto-history__empty-icon svg {
    width: 32px;
    height: 32px;
}
.lk-crypto-history__empty-title {
    margin: 0 0 8px;
    font-size: 1rem;
    font-weight: 700;
    color: #f8fafc;
    letter-spacing: -0.02em;
}
.lk-crypto-history__empty-text {
    margin: 0;
    max-width: 280px;
    font-size: 0.8125rem;
    line-height: 1.55;
    color: #94a3b8;
}
.lk-crypto-history__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.lk-crypto-history__item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 14px;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(20, 27, 45, 0.96) 0%, rgba(15, 20, 25, 0.98) 100%);
    border: 1px solid rgba(148, 163, 184, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}
.lk-crypto-history__item--pending {
    border-color: rgba(245, 158, 11, 0.22);
    background: linear-gradient(180deg, rgba(28, 24, 16, 0.96) 0%, rgba(15, 20, 25, 0.98) 100%);
}
.lk-crypto-history__icon {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}
.lk-crypto-history__icon > i,
.lk-crypto-history__icon > svg:not(.lk-tx-row__status-icon) {
    width: 18px;
    height: 18px;
}
.lk-crypto-history__icon .lk-tx-row__status svg {
    width: 9px;
    height: 9px;
}
.lk-crypto-history__icon .lk-tx-row__status {
    box-shadow: 0 0 0 2px rgba(15, 20, 25, 0.98);
}
.lk-crypto-history__icon--credit { background: rgba(16, 185, 129, 0.15); color: #34d399; }
.lk-crypto-history__icon--debit { background: rgba(239, 68, 68, 0.15); color: #f87171; }
.lk-crypto-history__icon--fx { background: rgba(245, 158, 11, 0.15); color: #fbbf24; }
.lk-crypto-history__icon--fee { background: rgba(148, 163, 184, 0.15); color: #94a3b8; }
.lk-crypto-history__main {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.lk-crypto-history__main strong {
    font-size: 0.875rem;
    font-weight: 600;
    color: #f1f5f9;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.lk-crypto-history__main small {
    font-size: 0.75rem;
    color: #64748b;
}
.lk-crypto-history__side {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    flex-shrink: 0;
}
.lk-crypto-history__amount {
    font-size: 0.9375rem;
    font-weight: 700;
    white-space: nowrap;
    letter-spacing: -0.01em;
}
.lk-crypto-history__amount.is-plus { color: #4ade80; }
.lk-crypto-history__amount.is-minus { color: #f87171; }
.lk-crypto-history__link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 2px;
    padding: 15px 20px;
    border-radius: 16px;
    border: 1px solid rgba(96, 165, 250, 0.24);
    background: rgba(59, 130, 246, 0.12);
    color: #dbeafe;
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 700;
    transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.lk-crypto-history__link:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(96, 165, 250, 0.38);
    color: #eff6ff;
}
.lk-crypto-history__link:active {
    transform: scale(0.985);
}
.lk-crypto-history__link svg {
    width: 18px;
    height: 18px;
}

.lk-account-item-body {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.lk-account-item-body strong {
    font-size: 0.95rem;
    color: #f1f5f9;
}
.lk-account-item-body span {
    font-size: 0.8rem;
    color: #94a3b8;
}
.lk-account-item-balance-col {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    flex-shrink: 0;
    min-width: 0;
}
.lk-account-item-balance-col .lk-account-item-balance {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: #f1f5f9;
}
.lk-account-item-balance-col span {
    font-size: 0.78rem;
    color: #94a3b8;
}
.lk-accounts-footnote {
    margin: 12px 0 0;
    font-size: 0.82rem;
}
.lk-crypto-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    flex-shrink: 0;
    overflow: hidden;
    background: #0f172a;
    border: 1px solid #334155;
}
.lk-crypto-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.lk-crypto-info strong,
.lk-deposit-info strong {
    display: block;
    font-size: 0.95rem;
    color: #f1f5f9;
}
.lk-crypto-info span,
.lk-deposit-info span {
    font-size: 0.8rem;
    color: #94a3b8;
}
.lk-crypto-amount,
.lk-deposit-amount {
    text-align: right;
}
.lk-crypto-amount strong,
.lk-deposit-amount strong {
    display: block;
    font-size: 0.9rem;
    color: #f1f5f9;
}
.lk-crypto-amount span,
.lk-deposit-amount span {
    font-size: 0.78rem;
    color: #94a3b8;
}
.lk-deposit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(37, 99, 235, 0.15);
    color: #93c5fd;
}
.lk-deposit-icon svg {
    width: 22px;
    height: 22px;
}
.lk-account-item--deposit {
    width: 100%;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    margin: 0;
    text-align: left;
    font: inherit;
    color: inherit;
    transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.lk-account-item--deposit:hover {
    border-color: #475569;
    background: #1a2234;
}
.lk-account-stack--deposits {
    margin-bottom: 8px;
}
.lk-deposit-panel-hero {
    margin: 8px 16px 20px;
    padding: 22px 20px;
    border-radius: 18px;
    background: linear-gradient(145deg, #1e3a5f 0%, #312e81 55%, #4c1d95 100%);
    border: 1px solid rgba(99, 102, 241, 0.35);
    text-align: center;
}
.lk-deposit-panel-icon {
    display: inline-flex;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    color: #c4b5fd;
    margin-bottom: 12px;
}
.lk-deposit-panel-icon svg {
    width: 28px;
    height: 28px;
}
.lk-deposit-panel-name {
    font-size: 1rem;
    font-weight: 700;
    color: #f8fafc;
}
.lk-deposit-panel-term {
    font-size: 0.82rem;
    color: #cbd5e1;
    margin-top: 4px;
}
.lk-deposit-panel-balance {
    margin-top: 14px;
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
}
.lk-deposit-panel-sub {
    margin-top: 6px;
    font-size: 0.85rem;
    color: #94a3b8;
}
.lk-deposit-open {
    margin-top: 20px;
    padding-top: 8px;
    border-top: 1px solid #252b3b;
}
.lk-deposit-open--page {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}
.lk-deposit-open-cta {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    margin-top: 12px;
    padding: 16px;
    border-radius: 16px;
    border: 1px solid #334155;
    background: linear-gradient(135deg, rgba(109, 40, 217, 0.15), rgba(30, 58, 95, 0.4));
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s, transform 0.15s, background 0.2s;
}
.lk-deposit-open-cta:hover {
    border-color: #8b5cf6;
    transform: translateY(-1px);
    background: linear-gradient(135deg, rgba(109, 40, 217, 0.22), rgba(30, 58, 95, 0.5));
}
.lk-deposit-open-cta-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.lk-deposit-open-cta-icon svg {
    width: 22px;
    height: 22px;
}
.lk-deposit-open-cta-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.lk-deposit-open-cta-body strong {
    font-size: 0.95rem;
    color: #f8fafc;
}
.lk-deposit-open-cta-body span {
    font-size: 0.78rem;
    color: #94a3b8;
}
.lk-deposit-open-cta-arrow {
    color: #64748b;
    flex-shrink: 0;
}
.lk-deposit-open-cta-arrow svg {
    width: 20px;
    height: 20px;
}
.lk-subpage-back-wrap {
    margin: 0 0 16px;
}
.lk-subpage-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 500;
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s;
}
.lk-subpage-back:hover {
    color: #e2e8f0;
}
.lk-subpage-back svg {
    width: 18px;
    height: 18px;
}
.lk-info-page {
    text-align: center;
    padding: 36px 24px 40px;
}
.lk-info-page__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    border-radius: 20px;
}
.lk-info-page__icon svg {
    width: 32px;
    height: 32px;
}
.lk-info-page__icon--amber {
    background: rgba(245, 158, 11, 0.14);
    color: #fbbf24;
}
.lk-info-page__icon--blue {
    background: rgba(59, 130, 246, 0.14);
    color: #60a5fa;
}
.lk-info-page__icon--green {
    background: rgba(16, 185, 129, 0.14);
    color: #34d399;
}
.lk-info-page__icon--purple {
    background: rgba(124, 58, 237, 0.14);
    color: #a78bfa;
}
.lk-info-page__title {
    margin: 0 0 12px;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #f8fafc;
}
.lk-info-page__desc {
    margin: 0 auto;
    max-width: 420px;
    font-size: 0.9375rem;
    line-height: 1.55;
    color: #94a3b8;
}
.lk-info-page__note {
    margin: 16px auto 0;
    max-width: 420px;
    font-size: 0.8125rem;
    line-height: 1.5;
    color: #64748b;
}
.lk-deposit-open-hero {
    text-align: center;
    padding: 8px 0 20px;
}
.lk-deposit-open-icon {
    display: inline-flex;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    color: #fff;
    margin-bottom: 14px;
    box-shadow: 0 12px 28px rgba(124, 58, 237, 0.35);
}
.lk-deposit-open-icon svg {
    width: 28px;
    height: 28px;
}
.lk-deposit-open-title {
    margin: 0 0 8px;
    font-size: 1.15rem;
    font-weight: 700;
    color: #f8fafc;
}
.lk-deposit-open-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 12px;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #94a3b8;
}
.lk-deposit-open-label svg {
    width: 16px;
    height: 16px;
    color: #a78bfa;
}
.lk-plan-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 22px;
}
.lk-plan-card {
    position: relative;
    width: 100%;
    padding: 18px 16px;
    border-radius: 16px;
    border: 2px solid #334155;
    background: #141b2d;
    cursor: pointer;
    text-align: left;
    font: inherit;
    color: inherit;
    transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.lk-plan-card:hover {
    border-color: rgba(139, 92, 246, 0.45);
    transform: translateY(-1px);
}
.lk-plan-card.is-selected {
    border-color: #8b5cf6;
    background: rgba(139, 92, 246, 0.08);
}
.lk-plan-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}
.lk-plan-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: #f1f5f9;
}
.lk-plan-term {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-top: 2px;
}
.lk-plan-rate {
    font-size: 1.6rem;
    font-weight: 800;
    color: #a78bfa;
    line-height: 1;
}
.lk-plan-rate-label {
    font-size: 0.68rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-align: right;
    margin-top: 2px;
}
.lk-deposit-card-select {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}
.lk-deposit-card-opt {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    border: 2px solid #334155;
    background: #141b2d;
    cursor: pointer;
    text-align: left;
    font: inherit;
    color: inherit;
    transition: border-color 0.2s, background 0.2s;
}
.lk-deposit-card-opt:hover {
    border-color: rgba(139, 92, 246, 0.35);
}
.lk-deposit-card-opt.is-selected {
    border-color: #8b5cf6;
    background: rgba(139, 92, 246, 0.08);
}
.lk-deposit-card-opt .lk-card-mini-icon {
    width: 56px;
    height: 36px;
}
.lk-card-brand-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 32px;
    flex-shrink: 0;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}
.lk-card-brand-icon img {
    display: block;
    width: 42px;
    height: auto;
    max-height: 24px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.94;
}
.lk-card-brand-icon--visa {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    border-color: rgba(96, 165, 250, 0.35);
}
.lk-card-brand-icon--mastercard,
.lk-card-brand-icon--maestro {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    border-color: rgba(148, 163, 184, 0.25);
}
.lk-card-brand-icon--unionpay {
    background: linear-gradient(120deg, #1a237e 0%, #c62828 48%, #2e7d32 100%);
    border-color: rgba(255, 255, 255, 0.12);
}
.lk-card-brand-icon--mir {
    background: linear-gradient(135deg, #064e3b 0%, #059669 100%);
    border-color: rgba(52, 211, 153, 0.35);
}
.lk-card-brand-icon--american_express {
    background: linear-gradient(135deg, #0c4a6e 0%, #0284c7 100%);
    border-color: rgba(56, 189, 248, 0.35);
}
.lk-card-brand-icon--humo,
.lk-card-brand-icon--uzcard,
.lk-card-brand-icon--elcard,
.lk-card-brand-icon--custom,
.lk-card-brand-icon--generic,
.lk-card-brand-icon--jcb,
.lk-card-brand-icon--diners,
.lk-card-brand-icon--discover {
    background: linear-gradient(135deg, #334155 0%, #475569 100%);
    border-color: rgba(148, 163, 184, 0.25);
}
.lk-card-brand-icon--unionpay img,
.lk-card-brand-icon--mir img {
    width: 46px;
    max-height: 18px;
}
.lk-deposit-card-opt .lk-card-brand-icon {
    width: 52px;
}
.lk-deposit-card-opt-info {
    flex: 1;
    min-width: 0;
}
.lk-deposit-card-opt-num {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #f1f5f9;
}
.lk-deposit-card-opt-bal {
    display: block;
    font-size: 0.78rem;
    color: #94a3b8;
    margin-top: 2px;
}
.lk-deposit-card-opt-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid #334155;
    display: flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    flex-shrink: 0;
}
.lk-deposit-card-opt.is-selected .lk-deposit-card-opt-check {
    border-color: #8b5cf6;
    background: #8b5cf6;
    color: #fff;
}
.lk-deposit-card-opt-check svg {
    width: 12px;
    height: 12px;
}
.lk-deposit-amount-wrap {
    margin-bottom: 6px;
}
.lk-deposit-amount-wrap.is-invalid .lk-deposit-amount-field {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}
.lk-deposit-amount-field {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 16px;
    border: 2px solid #334155;
    border-radius: 14px;
    background: #141b2d;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.lk-deposit-amount-field:focus-within {
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
}
.lk-deposit-amount-prefix {
    font-size: 1.2rem;
    font-weight: 700;
    color: #94a3b8;
    flex-shrink: 0;
    user-select: none;
}
.lk-deposit-amount-input {
    flex: 1;
    min-width: 0;
    padding: 14px 0;
    border: none;
    background: transparent;
    color: #f8fafc;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}
.lk-deposit-amount-input:focus {
    outline: none;
}
.lk-deposit-amount-error {
    margin: 8px 0 0;
    font-size: 0.8rem;
    color: #f87171;
}
.lk-deposit-amount-error[hidden] {
    display: none !important;
}
.lk-deposit-amount-quick {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}
.lk-deposit-amount-chip {
    padding: 8px 12px;
    border-radius: 10px;
    border: 1px solid #334155;
    background: #0f172a;
    color: #cbd5e1;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.lk-deposit-amount-chip:hover {
    border-color: #8b5cf6;
    color: #f8fafc;
}
.lk-deposit-amount-chip.is-active {
    border-color: #8b5cf6;
    background: rgba(139, 92, 246, 0.15);
    color: #e9d5ff;
}
.lk-deposit-amount-chip--max {
    margin-left: auto;
    border-color: rgba(139, 92, 246, 0.35);
    color: #c4b5fd;
}
@media (max-width: 400px) {
    .lk-deposit-amount-chip--max {
        margin-left: 0;
    }
}
.lk-deposit-amount-hint {
    margin: 0 0 20px;
    font-size: 0.8rem;
    color: #64748b;
}
.lk-btn-open-deposit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, #6d28d9, #8b5cf6);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.2s;
}
.lk-btn-open-deposit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.35);
}
.lk-btn-open-deposit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}
.lk-btn-open-deposit svg {
    width: 18px;
    height: 18px;
}

/* Useful section (under operations) */
.lk-useful {
    margin-bottom: 24px;
    min-width: 0;
    max-width: 100%;
}
.lk-limits-banner {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    max-width: 100%;
    padding: 16px 18px;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #1e293b 0%, #312e81 100%);
    border: 1px solid rgba(99, 102, 241, 0.35);
    border-radius: 16px;
    cursor: pointer;
    text-align: left;
    font: inherit;
    color: inherit;
    transition: border-color 0.2s, transform 0.15s;
}
.lk-limits-banner:hover {
    border-color: rgba(129, 140, 248, 0.55);
    transform: translateY(-1px);
}
.lk-limits-banner.is-open .lk-limits-banner-arrow {
    transform: rotate(90deg);
}
.lk-limits-banner-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.25);
    color: #a5b4fc;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.lk-limits-banner-icon i {
    width: 20px;
    height: 20px;
}
.lk-limits-banner-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.lk-limits-banner-info strong {
    font-size: 0.95rem;
    font-weight: 600;
    color: #f8fafc;
}
.lk-limits-banner-info small {
    font-size: 0.78rem;
    color: #94a3b8;
}
.lk-limits-banner-arrow {
    color: #64748b;
    flex-shrink: 0;
    transition: transform 0.25s;
}
.lk-limits-banner-arrow i {
    width: 18px;
    height: 18px;
}
.lk-limits-detail {
    margin-bottom: 20px;
    padding: 16px;
    background: #1a1f2e;
    border: 1px solid #252b3b;
    border-radius: 14px;
}
.lk-limits-detail[hidden] {
    display: none !important;
}
.lk-limit-row {
    padding: 10px 0;
}
.lk-limit-row + .lk-limit-row {
    border-top: 1px solid #252b3b;
}
.lk-limit-row-head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.82rem;
    color: #94a3b8;
    margin-bottom: 8px;
}
.lk-limit-row-head span:last-child {
    color: #e2e8f0;
    font-weight: 600;
}
.lk-limit-row--plain {
    display: flex;
    justify-content: space-between;
    font-size: 0.82rem;
    color: #94a3b8;
}
.lk-limit-row--plain span:last-child {
    color: #e2e8f0;
    font-weight: 600;
}
.lk-limit-bar {
    height: 4px;
    background: #252b3b;
    border-radius: 4px;
    overflow: hidden;
}
.lk-limit-bar-fill {
    display: block;
    height: 100%;
    border-radius: 4px;
}
.lk-limit-bar-fill--green { background: #10b981; }
.lk-limit-bar-fill--yellow { background: #f59e0b; }
.lk-limit-bar-fill--red { background: #ef4444; }
.lk-useful-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #f8fafc;
    margin: 0 0 14px;
}
.lk-rates-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 10px;
    margin-bottom: 14px;
    width: 100%;
    max-width: 100%;
}
.lk-rate-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 12px;
    background: #1a1f2e;
    border: 1px solid #252b3b;
    border-radius: 14px;
    min-width: 0;
}
.lk-rate-flag {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.lk-rate-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}
.lk-rate-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #f472b6;
    background: rgba(244, 114, 182, 0.12);
    padding: 2px 6px;
    border-radius: 6px;
}
.lk-rate-name {
    font-size: 0.72rem;
    color: #94a3b8;
    padding-right: 28px;
}
.lk-rate-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: #f8fafc;
}
.lk-rate-info small {
    font-size: 0.65rem;
    color: #64748b;
}
.lk-useful-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 10px;
    width: 100%;
    max-width: 100%;
}
.lk-useful-btn {
    display: block;
    padding: 20px 12px;
    background: #1a1f2e;
    border: 1px solid #252b3b;
    border-radius: 16px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s, transform 0.15s, background 0.2s;
}
.lk-useful-btn:hover {
    border-color: #3b4a63;
    background: #1e2536;
    transform: translateY(-2px);
}
.lk-useful-btn-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}
.lk-useful-btn-icon i {
    width: 22px;
    height: 22px;
}
.lk-useful-btn-icon--green { background: rgba(16, 185, 129, 0.15); color: #10b981; }
.lk-useful-btn-icon--amber { background: rgba(245, 158, 11, 0.15); color: #f59e0b; }
.lk-useful-btn-icon--blue { background: rgba(59, 130, 246, 0.15); color: #3b82f6; }
.lk-useful-btn-icon--purple { background: rgba(168, 85, 247, 0.15); color: #a855f7; }
.lk-useful-btn-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #e2e8f0;
}

/* Bottom nav (mobile) */
.lk-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: #0b0f19;
    border-top: 1px solid #1e293b;
    padding-bottom: env(safe-area-inset-bottom, 0);
}
.lk-bottom-nav .lk-bottom-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 10px 6px;
    color: #64748b;
    text-decoration: none;
    font-size: 0.65rem;
    font-weight: 500;
}
.lk-bottom-nav .lk-bottom-item i { width: 20px; height: 20px; }
.lk-bottom-nav .lk-bottom-item.is-active { color: #60a5fa; }

@media (max-width: 900px) {
    .lk-app {
        grid-template-columns: 1fr;
        max-width: 100%;
        width: 100%;
    }
    .lk-sidebar { display: none; }
    .lk-bottom-nav {
        display: flex;
        min-height: calc(56px + env(safe-area-inset-bottom, 0px));
        padding-top: 6px;
        background: rgba(11, 15, 25, 0.96);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.35);
    }
    .lk-bottom-nav .lk-bottom-item {
        min-height: 48px;
        padding: 8px 4px 10px;
        font-size: 0.625rem;
    }
    .lk-main {
        padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px) + 20px);
        overflow-x: hidden;
        max-width: 100%;
        scroll-padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px) + 20px);
    }
    .lk-content {
        padding: 16px 16px 8px;
        overflow-x: hidden;
    }
    .lk-quick {
        gap: 8px;
    }
    .lk-quick-item {
        padding: 12px 4px;
    }
    .lk-quick-icon {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }
    .lk-quick-label {
        font-size: 0.62rem;
    }
    .lk-grid-2 { grid-template-columns: 1fr; }
    .lk-form-grid-2 { grid-template-columns: 1fr; }
    .lk-carousel-card {
        padding: 20px 18px;
    }
    .lk-carousel-card-number {
        font-size: 0.9rem;
        letter-spacing: 0.06em;
    }
}

@media (min-width: 901px) {
    .lk-card-carousel {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
        overflow: visible;
        scroll-snap-type: none;
    }
    .lk-carousel-card {
        flex: none;
        width: auto;
        max-width: none;
        scroll-snap-align: none;
        opacity: 0.78;
    }
    .lk-carousel-card.is-selected {
        opacity: 1;
        box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.5), 0 14px 28px rgba(0, 0, 0, 0.35);
        transform: translateY(-3px);
    }
    .lk-carousel-card:not(.is-selected):hover {
        opacity: 0.92;
    }
}

@media (min-width: 901px) {
    .lk-bottom-nav { display: none !important; }
    .lk-topbar-greet {
        display: none;
    }
    .lk-topbar-page-title {
        display: block;
        flex: 1;
    }
}

@media (max-width: 900px) {
    .lk-topbar {
        padding: 14px 16px 12px;
    }
    .lk-topbar-avatar {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    .lk-topbar-name {
        font-size: 0.9375rem;
    }
}

.lk-toast {
    position: fixed;
    left: 50%;
    bottom: calc(88px + env(safe-area-inset-bottom, 0px));
    transform: translateX(-50%) translateY(12px);
    z-index: 500;
    max-width: min(92vw, 420px);
    padding: 12px 16px;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.96);
    border: 1px solid rgba(148, 163, 184, 0.25);
    color: #f8fafc;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s, transform 0.2s;
}
.lk-toast.is-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
.lk-toast.is-error {
    border-color: rgba(248, 113, 113, 0.45);
    color: #fecaca;
}

.lk-result-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 400;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    padding-bottom: calc(24px + env(safe-area-inset-bottom, 0px));
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
}
.lk-result-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}
.lk-result-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(10px);
}
.lk-result-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 360px);
    padding: 28px 24px 24px;
    border-radius: 24px;
    background: linear-gradient(165deg, rgba(24, 32, 48, 0.98) 0%, rgba(10, 14, 22, 0.98) 100%);
    border: 1px solid rgba(148, 163, 184, 0.16);
    box-shadow:
        0 24px 64px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(255, 255, 255, 0.04) inset;
    text-align: center;
    transform: translateY(16px) scale(0.96);
    transition: transform 0.32s cubic-bezier(0.34, 1.3, 0.64, 1);
}
.lk-result-modal.is-open .lk-result-modal__dialog {
    transform: translateY(0) scale(1);
}
.lk-result-modal__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.35);
    box-shadow: 0 0 32px rgba(34, 197, 94, 0.22);
    color: #4ade80;
}
.lk-result-modal__icon svg {
    width: 36px;
    height: 36px;
    stroke-width: 2;
}
.lk-result-modal--error .lk-result-modal__icon {
    background: rgba(248, 113, 113, 0.12);
    border-color: rgba(248, 113, 113, 0.35);
    box-shadow: 0 0 32px rgba(248, 113, 113, 0.18);
    color: #f87171;
}
.lk-result-modal__title {
    margin: 0 0 8px;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #f8fafc;
}
.lk-result-modal__message {
    margin: 0 0 18px;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: #94a3b8;
}
.lk-result-modal__details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 22px;
    padding: 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(148, 163, 184, 0.12);
    text-align: left;
}
.lk-result-modal__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.8125rem;
}
.lk-result-modal__row span {
    color: #64748b;
}
.lk-result-modal__row strong {
    color: #e2e8f0;
    font-weight: 600;
    text-align: right;
}
.lk-result-modal__btn {
    width: 100%;
    padding: 14px 20px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
    font-size: 0.9375rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.35);
    transition: transform 0.15s, box-shadow 0.15s, opacity 0.15s;
}
.lk-result-modal__btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(34, 197, 94, 0.4);
}
.lk-result-modal__btn:active {
    transform: translateY(0);
}
.lk-result-modal--error .lk-result-modal__btn {
    background: linear-gradient(135deg, #475569 0%, #334155 100%);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.45);
}
.lk-result-modal--lock .lk-result-modal__icon {
    background: rgba(248, 113, 113, 0.14);
    border-color: rgba(248, 113, 113, 0.38);
    box-shadow: 0 0 36px rgba(248, 113, 113, 0.24);
    color: #f87171;
}
.lk-result-modal--lock .lk-result-modal__btn {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    box-shadow: 0 8px 24px rgba(239, 68, 68, 0.38);
}
.lk-result-modal--lock .lk-result-modal__btn:hover {
    box-shadow: 0 12px 28px rgba(239, 68, 68, 0.45);
}
.lk-result-modal--unlock .lk-result-modal__icon {
    background: rgba(34, 197, 94, 0.14);
    border-color: rgba(34, 197, 94, 0.38);
    box-shadow: 0 0 36px rgba(34, 197, 94, 0.24);
    color: #4ade80;
}
body.lk-result-open {
    overflow: hidden;
}
