:root {
    --lvam-bg-primary: #f4f7fb;
    --lvam-bg-secondary: #ffffff;
    --lvam-bg-tertiary: #eef3ff;
    --lvam-border-soft: rgba(99, 102, 241, 0.12);
    --lvam-border-medium: rgba(148, 163, 184, 0.24);
    --lvam-text-primary: #0f172a;
    --lvam-text-secondary: #334155;
    --lvam-text-muted: #64748b;
    --lvam-primary: #6b5cff;
    --lvam-primary-dark: #5546f0;
    --lvam-secondary: #8b7dff;
    --lvam-cyan: #16b6e8;
    --lvam-emerald: #11b981;
    --lvam-amber: #f59e0b;
    --lvam-rose: #f43f5e;
    --lvam-gold: #d97706;
    --lvam-shadow-soft: 0 18px 40px -24px rgba(15, 23, 42, 0.35);
    --lvam-shadow-medium: 0 24px 60px -28px rgba(99, 92, 255, 0.35);
    --lvam-gradient-primary: linear-gradient(135deg, #6b5cff 0%, #8b7dff 100%);
    --lvam-gradient-cyan: linear-gradient(135deg, #16b6e8 0%, #38d5ff 100%);
    --lvam-gradient-success: linear-gradient(135deg, #0ea271 0%, #38d39f 100%);
    --lvam-gradient-amber: linear-gradient(135deg, #d97706 0%, #f8b84f 100%);
    --lvam-gradient-surface: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.loader-wrapper {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(244, 247, 251, 0.88);
    backdrop-filter: blur(10px);
}

.lvam-loader-spinner {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    border: 4px solid rgba(107, 92, 255, 0.16);
    border-top-color: var(--lvam-primary);
    box-shadow: 0 12px 30px -18px rgba(107, 92, 255, 0.6);
    animation: lvam-spin 0.75s linear infinite;
}

@keyframes lvam-spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {
    body.lvam-mobile-shell {
        background: var(--lvam-bg-primary);
        color: var(--lvam-text-primary);
    }

    body.lvam-mobile-shell .main-content {
        margin-left: 0 !important;
    }

    body.lvam-mobile-shell .page-content {
        min-height: 100vh;
        padding: 118px 12px 96px !important;
        background:
            radial-gradient(circle at top right, rgba(107, 92, 255, 0.11), transparent 32%),
            linear-gradient(180deg, #ffffff 0%, #f5f9ff 45%, #eef5ff 100%);
    }

    body.lvam-mobile-shell .container-fluid {
        padding: 0 2px;
        position: relative;
        z-index: 1;
    }

    body.lvam-mobile-shell .page-title-box {
        display: block !important;
        padding: 18px 18px 16px;
        margin: 0 0 18px;
        background: var(--lvam-gradient-surface);
        border: 1px solid var(--lvam-border-soft);
        border-radius: 24px;
        box-shadow: var(--lvam-shadow-soft);
        position: relative;
        overflow: hidden;
    }

    body.lvam-mobile-shell .page-title-box::before {
        content: "";
        position: absolute;
        inset: 0 0 auto;
        height: 4px;
        background: var(--lvam-gradient-primary);
    }

    body.lvam-mobile-shell .page-title-box h4 {
        margin: 0;
        font-size: 1.15rem;
        font-weight: 800;
        letter-spacing: -0.02em;
        text-transform: none;
        color: var(--lvam-text-primary);
    }

    body.lvam-mobile-shell .page-title-right {
        margin-top: 10px;
    }

    body.lvam-mobile-shell .breadcrumb {
        margin: 0;
        gap: 6px;
    }

    body.lvam-mobile-shell .breadcrumb-item,
    body.lvam-mobile-shell .breadcrumb-item a,
    body.lvam-mobile-shell .breadcrumb-item.active {
        font-size: 0.92rem;
        color: var(--lvam-text-muted);
    }

    body.lvam-mobile-shell .breadcrumb-item.active {
        color: var(--lvam-primary);
        font-weight: 700;
    }

    body.lvam-mobile-shell .card {
        border: 1px solid var(--lvam-border-soft);
        border-radius: 28px;
        background: var(--lvam-gradient-surface);
        box-shadow: var(--lvam-shadow-soft);
        overflow: hidden;
    }

    body.lvam-mobile-shell .card-header {
        padding: 18px 20px;
        background: linear-gradient(180deg, rgba(107, 92, 255, 0.08) 0%, rgba(255, 255, 255, 0.98) 100%) !important;
        border-bottom: 1px solid rgba(148, 163, 184, 0.18) !important;
    }

    body.lvam-mobile-shell .card-body {
        padding: 20px;
    }

    body.lvam-mobile-shell .btn-primary,
    body.lvam-mobile-shell .dt-button,
    body.lvam-auth-page .btn-primary {
        border: none !important;
        border-radius: 16px;
        background: var(--lvam-gradient-primary) !important;
        box-shadow: 0 16px 34px -22px rgba(107, 92, 255, 0.75);
        color: #fff !important;
        font-weight: 700;
    }

    body.lvam-mobile-shell .btn-light {
        border-radius: 16px;
        border: 1px solid rgba(107, 92, 255, 0.14) !important;
        background: #fff;
        color: var(--lvam-primary);
        font-weight: 700;
    }

    body.lvam-mobile-shell .table-responsive,
    body.lvam-mobile-shell .dataTables_wrapper {
        border-radius: 20px;
    }

    body.lvam-mobile-shell .dataTables_wrapper .dataTables_filter input,
    body.lvam-mobile-shell .dataTables_wrapper .dataTables_length input,
    body.lvam-mobile-shell .dataTables_wrapper .dataTables_length select {
        border-radius: 14px;
        border: 1px solid var(--lvam-border-medium);
        background: #fff;
        min-height: 42px;
        padding: 0 14px;
    }

    body.lvam-mobile-shell table.dataTable thead th,
    body.lvam-mobile-shell .table > :not(caption) > * > * {
        border-color: rgba(148, 163, 184, 0.18);
    }

    body.lvam-mobile-shell table.dataTable thead th {
        background: #edf1ff;
        color: var(--lvam-primary);
        font-weight: 800;
    }

    body.lvam-mobile-shell .dt-button {
        margin-bottom: 12px;
        padding: 10px 18px !important;
    }

    .lvam-mob-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1003;
        padding: 8px 12px 10px;
        background:
            radial-gradient(circle at top left, rgba(52, 211, 153, 0.16), transparent 34%),
            radial-gradient(circle at top right, rgba(107, 92, 255, 0.18), transparent 40%),
            rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(18px);
        box-shadow: 0 20px 40px -30px rgba(15, 23, 42, 0.45);
        border-bottom: 1px solid rgba(148, 163, 184, 0.14);
    }

    .lvam-mob-header::before {
        content: "";
        position: absolute;
        inset: 0 0 auto;
        height: 4px;
        background: linear-gradient(90deg, #34d399 0%, #6b5cff 50%, #16b6e8 100%);
    }

    .lvam-mob-header-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 8px;
        position: relative;
        z-index: 1;
    }

    .lvam-mob-brand {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        min-width: 0;
        text-decoration: none;
        max-width: calc(100% - 88px);
    }

    .lvam-mob-brand-mark {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
        border-radius: 12px;
        background: linear-gradient(135deg, rgba(107, 92, 255, 0.14), rgba(52, 211, 153, 0.14));
        box-shadow: 0 14px 24px -20px rgba(107, 92, 255, 0.45);
        overflow: hidden;
    }

    .lvam-mob-brand-mark img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .lvam-mob-brand-copy {
        min-width: 0;
    }

    .lvam-mob-brand-copy span {
        display: block;
        font-size: 0.9rem;
        font-weight: 900;
        line-height: 1.05;
        color: var(--lvam-text-primary);
        letter-spacing: -0.02em;
    }

    .lvam-mob-brand-copy small {
        display: none;
    }

    .lvam-mob-header .profile {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 10px 12px;
        border-radius: 20px;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(243, 248, 255, 0.96));
        border: 1px solid rgba(107, 92, 255, 0.08);
        box-shadow: 0 16px 30px -28px rgba(107, 92, 255, 0.28);
        position: relative;
        overflow: hidden;
    }

    .lvam-mob-header .profile::after {
        content: "";
        position: absolute;
        top: 0;
        left: 14px;
        right: 14px;
        height: 3px;
        border-radius: 999px;
        background: linear-gradient(90deg, rgba(52, 211, 153, 0.95), rgba(107, 92, 255, 0.95));
    }

    .lvam-mob-header .profile-pic-con {
        width: 46px;
        height: 46px;
        min-width: 46px;
    }

    .lvam-mob-header .profile-pic {
        width: 100%;
        height: 100%;
        border-radius: 15px;
        border: 2px solid rgba(255, 255, 255, 0.98);
        box-shadow: 0 18px 34px -24px rgba(15, 23, 42, 0.34);
    }

    .lvam-mob-header .profile-info {
        flex: 1;
        min-width: 0;
        padding-left: 0;
    }

    .lvam-mob-header .profile-info .id {
        font-size: 0.82rem;
        line-height: 1.1;
        font-weight: 700;
        color: var(--lvam-primary-dark);
    }

    .lvam-mob-header .profile-info .name {
        font-size: 0.98rem;
        line-height: 1.2;
        font-weight: 800;
        color: var(--lvam-text-primary);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .lvam-mob-header .rank-pic-con {
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 58px;
        padding: 6px 8px;
        border-radius: 14px;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 247, 237, 0.98));
        border: 1px solid rgba(217, 119, 6, 0.12);
        box-shadow: 0 14px 28px -26px rgba(217, 119, 6, 0.26);
    }

    .lvam-mob-header .rank-pic {
        height: 30px;
        width: auto;
        filter: drop-shadow(0 12px 18px rgba(217, 119, 6, 0.16));
    }

    .lvam-mobile-sidebar {
        display: block !important;
        top: 0 !important;
        bottom: 0 !important;
        width: min(84vw, 320px);
        transform: translateX(-115%);
        transition: transform 0.28s ease;
        padding-top: 0;
        background: rgba(255, 255, 255, 0.96) !important;
        backdrop-filter: blur(16px);
        box-shadow: 0 30px 60px -32px rgba(15, 23, 42, 0.75);
        border-right: 1px solid rgba(107, 92, 255, 0.1);
        z-index: 1005;
    }

    body.lvam-mobile-shell.sidebar-enable::before {
        content: "";
        position: fixed;
        inset: 0;
        z-index: 1004;
        background: rgba(15, 23, 42, 0.42);
        backdrop-filter: blur(2px);
    }

    body.lvam-mobile-shell.sidebar-enable .lvam-mobile-sidebar {
        transform: translateX(0);
    }

    .lvam-mobile-menu-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 18px 18px 14px;
        border-bottom: 1px solid rgba(148, 163, 184, 0.16);
        background: linear-gradient(180deg, rgba(107, 92, 255, 0.09), rgba(255, 255, 255, 0.94));
    }

    .lvam-mobile-menu-brand {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .lvam-mobile-menu-brand img {
        width: 42px;
        height: 42px;
        border-radius: 14px;
        box-shadow: 0 14px 28px -24px rgba(107, 92, 255, 0.55);
    }

    .lvam-mobile-menu-brand span {
        display: block;
        font-size: 1rem;
        font-weight: 800;
        color: var(--lvam-text-primary);
        line-height: 1.1;
    }

    .lvam-mobile-menu-brand small {
        display: block;
        font-size: 0.78rem;
        color: var(--lvam-text-muted);
        letter-spacing: 0.04em;
        text-transform: uppercase;
    }

    .lvam-menu-close {
        width: 38px;
        height: 38px;
        border: none;
        border-radius: 12px;
        background: rgba(107, 92, 255, 0.08);
        color: var(--lvam-primary);
        font-size: 1.3rem;
    }

    .lvam-mobile-sidebar #sidebar-menu {
        padding: 14px 10px 96px;
    }

    .lvam-mobile-sidebar #sidebar-menu ul li a {
        border-radius: 16px;
        margin: 4px 8px;
        padding: 13px 14px;
        font-size: 0.94rem;
        color: var(--lvam-text-secondary);
    }

    .lvam-mobile-sidebar #sidebar-menu ul li a i {
        color: var(--lvam-primary);
        opacity: 1;
    }

    .lvam-mobile-sidebar #sidebar-menu ul li a:hover,
    .lvam-mobile-sidebar #sidebar-menu ul li.mm-active > a,
    .lvam-mobile-sidebar #sidebar-menu ul li a.active {
        background: linear-gradient(135deg, #5e59ff 0%, #7d74ff 100%);
        color: #fff !important;
        box-shadow: 0 20px 36px -28px rgba(107, 92, 255, 0.92);
    }

    .lvam-mobile-sidebar #sidebar-menu ul li.mm-active > a i,
    .lvam-mobile-sidebar #sidebar-menu ul li.mm-active > a span,
    .lvam-mobile-sidebar #sidebar-menu ul li a.active i,
    .lvam-mobile-sidebar #sidebar-menu ul li a.active span,
    .lvam-mobile-sidebar #sidebar-menu ul li a:hover i,
    .lvam-mobile-sidebar #sidebar-menu ul li a:hover span {
        color: #fff !important;
    }

    .lvam-mobile-sidebar #sidebar-menu ul li.mm-active,
    .lvam-mobile-sidebar #sidebar-menu ul li.mm-active > a,
    .lvam-mobile-sidebar #sidebar-menu ul li.mm-active > a *,
    .lvam-mobile-sidebar #sidebar-menu ul li a.active,
    .lvam-mobile-sidebar #sidebar-menu ul li a.active *,
    .lvam-mobile-sidebar #sidebar-menu ul li a:hover,
    .lvam-mobile-sidebar #sidebar-menu ul li a:hover * {
        color: #fff !important;
    }

    .lvam-mobile-sidebar .menu-title {
        padding: 12px 18px 6px !important;
        font-size: 0.7rem;
        color: rgba(100, 116, 139, 0.9);
        letter-spacing: 0.12em;
        opacity: 1;
    }

    .lvam-mobile-footer {
        display: flex;
        justify-content: space-around;
        align-items: center;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        height: 78px;
        padding: 10px 14px 14px;
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(16px);
        border-top: 1px solid rgba(148, 163, 184, 0.18);
        box-shadow: 0 -12px 35px -26px rgba(15, 23, 42, 0.5);
        z-index: 1003;
    }

    .lvam-mobile-footer button {
        background: none;
        border: none;
        color: var(--lvam-text-secondary);
        font-size: 1.55rem;
        position: relative;
    }

    .lvam-mobile-footer button a,
    .lvam-mobile-footer button div {
        color: inherit;
    }

    .lvam-mobile-footer .footer_center {
        width: 66px;
        height: 66px;
        top: -24px;
        border-radius: 24px;
        background: var(--lvam-gradient-primary);
        box-shadow: 0 20px 34px -18px rgba(107, 92, 255, 0.7);
    }

    .lvam-mobile-footer .footer_center img {
        width: 42px;
        height: 42px;
        object-fit: contain;
        margin-top: 11px;
        filter: brightness(0) invert(1);
    }

    .lvam-mobile-footer .notification span {
        top: -4px;
        right: -10px;
        width: 20px;
        height: 20px;
        padding: 0;
        font-size: 0.7rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: var(--lvam-rose);
        box-shadow: 0 8px 15px -10px rgba(244, 63, 94, 0.75);
    }

    .lvam-surface-card {
        background: var(--lvam-gradient-surface);
    }

    .lvam-transfer-hero {
        background: linear-gradient(135deg, #6b5cff 0%, #7f70ff 55%, #8b7dff 100%);
        color: #fff;
        position: relative;
        overflow: hidden;
    }

    .lvam-transfer-hero::after,
    .lvam-withdraw-hero::after,
    .lvam-investment-board::after {
        content: "";
        position: absolute;
        inset: auto -40px -70px auto;
        width: 180px;
        height: 180px;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 68%);
        pointer-events: none;
    }

    .lvam-transfer-hero h4,
    .lvam-withdraw-hero h4 {
        color: #fff;
        font-size: 2rem;
        font-weight: 800;
        margin-bottom: 10px;
    }

    .lvam-transfer-hero .text-muted,
    .lvam-withdraw-hero .text-muted {
        color: rgba(255, 255, 255, 0.82) !important;
    }

    .lvam-transfer-hero .text-primary,
    .lvam-withdraw-hero .text-primary {
        color: #fff !important;
        font-weight: 700;
    }

    .lvam-hero-pill {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 7px 14px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.14);
        border: 1px solid rgba(255, 255, 255, 0.22);
        color: #fff;
        font-weight: 700;
    }

    .lvam-transfer-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        margin-top: 18px;
    }

    .lvam-transfer-action {
        width: 100%;
        min-height: 68px;
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.18) !important;
        background: rgba(255, 255, 255, 0.14) !important;
        color: #fff !important;
        font-size: 1rem;
        font-weight: 800;
        box-shadow: none !important;
    }

    .lvam-transfer-action.receive {
        background: rgba(18, 182, 232, 0.22) !important;
        border-color: rgba(61, 213, 255, 0.28) !important;
    }

    .lvam-withdraw-hero {
        background: linear-gradient(135deg, #6b5cff 0%, #8b7dff 100%);
        color: #fff;
        position: relative;
        overflow: hidden;
    }

    .lvam-withdraw-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
        margin-top: 22px;
    }

    .lvam-withdraw-option {
        padding: 18px 14px;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.14);
        border: 1px solid rgba(255, 255, 255, 0.2);
        text-align: center;
    }

    .lvam-withdraw-option h5,
    .lvam-withdraw-option .text-danger,
    .lvam-withdraw-option small {
        color: #fff !important;
    }

    .lvam-balance-pill {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 12px;
        padding: 7px 14px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.92);
        color: var(--lvam-emerald);
        font-weight: 800;
        box-shadow: 0 14px 28px -24px rgba(15, 23, 42, 0.55);
    }

    .lvam-investment-board {
        background: linear-gradient(180deg, rgba(107, 92, 255, 0.12) 0%, rgba(255, 255, 255, 0.98) 100%);
        position: relative;
        overflow: hidden;
    }

    .lvam-plan-card {
        border: 1px solid rgba(107, 92, 255, 0.12) !important;
        box-shadow: 0 22px 40px -32px rgba(107, 92, 255, 0.55);
    }

    .lvam-plan-chip-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
    }

    .lvam-plan-chip-grid li {
        border: 1px solid rgba(148, 163, 184, 0.24);
        border-radius: 14px;
        background: #fff;
        padding: 10px 6px;
        font-weight: 800;
        color: var(--lvam-text-secondary);
    }

    .lvam-plan-chip-grid li.active {
        background: rgba(107, 92, 255, 0.1);
        border-color: rgba(107, 92, 255, 0.36);
        color: var(--lvam-primary-dark);
        box-shadow: 0 18px 24px -26px rgba(107, 92, 255, 0.8);
    }
}

body.lvam-auth-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(107, 92, 255, 0.14), transparent 32%),
        radial-gradient(circle at bottom right, rgba(22, 182, 232, 0.14), transparent 32%),
        linear-gradient(180deg, #f9fbff 0%, #eef4ff 100%);
    color: var(--lvam-text-primary);
}

.lvam-auth-shell {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 16px;
}

.lvam-auth-panel {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
}

.lvam-auth-brand {
    text-align: center;
    margin-bottom: 18px;
}

.lvam-auth-brand img {
    max-width: 220px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 18px 30px rgba(107, 92, 255, 0.14));
}

.lvam-auth-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(107, 92, 255, 0.08);
    color: var(--lvam-primary);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.lvam-auth-card {
    border-radius: 30px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(107, 92, 255, 0.12);
    box-shadow: 0 34px 70px -44px rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(16px);
}

.lvam-auth-hero {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
}

.lvam-auth-mark {
    width: 78px;
    height: 78px;
    min-width: 78px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(107, 92, 255, 0.12), rgba(22, 182, 232, 0.12));
    box-shadow: 0 22px 38px -30px rgba(107, 92, 255, 0.7);
}

.lvam-auth-mark img {
    width: 54px;
    height: 54px;
    object-fit: contain;
}

.lvam-auth-hero h1 {
    margin: 0 0 8px;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.05;
}

.lvam-auth-hero p {
    margin: 0;
    color: var(--lvam-text-muted);
    font-size: 0.98rem;
}

.lvam-auth-form .auth-form-group-custom {
    position: relative;
    margin-bottom: 16px !important;
}

.lvam-auth-form .auth-form-group-custom label {
    position: static;
    display: block;
    margin-bottom: 8px;
    font-weight: 800;
    color: var(--lvam-text-secondary);
}

.lvam-auth-form .auth-form-group-custom .form-control {
    height: 58px;
    padding-left: 48px;
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.24);
    background: #f8fbff;
    box-shadow: none;
    font-size: 1rem;
    color: var(--lvam-text-primary);
    padding-top: 0;
}

.lvam-auth-form .auth-form-group-custom .auti-custom-input-icon {
    position: absolute;
    left: 16px;
    top: 44px;
    font-size: 1.2rem;
    color: var(--lvam-primary);
}

.lvam-auth-actions {
    margin-top: 18px;
}

.lvam-auth-submit {
    width: 100%;
    min-height: 58px;
    border-radius: 18px !important;
    font-size: 1rem;
}

.lvam-auth-links {
    text-align: center;
    margin-top: 16px;
}

.lvam-auth-links a {
    color: var(--lvam-text-secondary);
    font-weight: 700;
}

.lvam-auth-footer {
    margin-top: 16px;
    text-align: center;
    color: var(--lvam-text-muted);
    font-weight: 600;
}

@media (max-width: 768px) {
    .lvam-auth-shell {
        padding: 18px 14px 28px;
        align-items: flex-start;
    }

    .lvam-auth-panel {
        max-width: 100%;
        margin-top: 18px;
    }

    .lvam-auth-brand img {
        max-width: 210px;
    }

    .lvam-auth-card {
        padding: 22px 18px;
        border-radius: 26px;
    }

    .lvam-auth-hero {
        align-items: flex-start;
    }

    .lvam-auth-hero h1 {
        font-size: 1.8rem;
    }
}
