:root {
    --bg: #05070C;
    --bg-alt: #0A0E17;
    --surface: #0F1524;
    --border: rgba(255, 255, 255, 0.08);
    --text: #F4F6FB;
    --muted: #9AA3B8;
    --primary: #7C5CFF;
    --primary-2: #00D4FF;
    --accent: #FFB86B;
    --danger: #FF5C7C;
    --success: #2EE6A8;
    --warning: #FFB86B;
    --grad: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    --radius: 18px;
    --radius-sm: 12px;
    --font-head: 'Sora', sans-serif;
    --font-body: 'Inter', sans-serif;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

.muted { color: var(--muted); }
.text-success { color: var(--success); }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 22px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 14px;
    font-family: var(--font-head);
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--grad); color: #05070C; box-shadow: 0 8px 30px rgba(124, 92, 255, 0.35); }
.btn--primary:hover { box-shadow: 0 12px 40px rgba(124, 92, 255, 0.5); }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--border); }
.btn--ghost:hover { border-color: var(--primary); }
.btn--small { padding: 8px 16px; font-size: 13px; }
.btn--block { width: 100%; justify-content: center; }

/* App shell */
.app { display: flex; min-height: 100vh; }
.app-side {
    position: fixed;
    inset: 0 auto 0 0;
    width: 250px;
    background: var(--bg-alt);
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    padding: 26px 20px;
    z-index: 40;
    transition: transform 0.3s ease;
}
.app-side__brand { display: flex; align-items: center; gap: 12px; margin-bottom: 30px; font-family: var(--font-head); }
.brand__mark {
    width: 42px; height: 42px; border-radius: 12px;
    background: var(--grad);
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 15px; color: #05070C;
}
.app-side__brand-name { font-weight: 700; font-size: 16px; line-height: 1.2; }
.app-nav { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.app-nav__link {
    display: flex; align-items: center; gap: 12px;
    padding: 11px 14px; border-radius: 12px;
    font-size: 14px; font-weight: 500; color: var(--muted);
    transition: background 0.2s ease, color 0.2s ease;
}
.app-nav__link::before { content: attr(data-icon); font-size: 13px; opacity: 0.9; }
.app-nav__link:hover { background: rgba(124, 92, 255, 0.08); color: var(--text); }
.app-nav__link.is-active { background: var(--grad); color: #05070C; font-weight: 600; box-shadow: 0 6px 20px rgba(124, 92, 255, 0.35); }
.app-side__logout { margin-top: 18px; padding: 11px 14px; border-radius: 12px; text-align: center; font-size: 14px; color: var(--danger); border: 1px solid var(--border); }
.app-side__logout:hover { border-color: var(--danger); }
.app-side__backdrop { display: none; }

.app-main { flex: 1; margin-left: 250px; display: flex; flex-direction: column; min-width: 0; }
.app-topbar {
    position: sticky; top: 0; z-index: 20;
    display: flex; align-items: center; gap: 16px;
    padding: 16px 28px;
    background: rgba(5, 7, 12, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}
.app-burger { display: none; background: none; border: none; color: var(--text); font-size: 22px; cursor: pointer; }
.app-topbar__brand { font-family: var(--font-head); font-weight: 700; font-size: 15px; }
.app-topbar__user { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.app-topbar__name { font-size: 14px; color: var(--muted); }
.app-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; color: #fff; font-size: 15px;
}
.app-content { padding: 26px 28px 60px; flex: 1; }

/* Layout helpers */
.row { display: flex; flex-wrap: wrap; }
.row--gutter { margin: 0 -12px; }
.row--gutter > [class*="col-"] { padding: 0 12px; }
.col-12 { flex: 0 0 100%; max-width: 100%; }
.col-6 { flex: 0 0 50%; max-width: 50%; }
@media (min-width: 768px) {
    .col-md-6 { flex: 0 0 50%; max-width: 50%; }
    .col-md-4 { flex: 0 0 33.333%; max-width: 33.333%; }
}
@media (min-width: 992px) {
    .col-lg-3 { flex: 0 0 25%; max-width: 25%; }
    .col-lg-4 { flex: 0 0 33.333%; max-width: 33.333%; }
    .col-lg-5 { flex: 0 0 41.666%; max-width: 41.666%; }
    .col-lg-6 { flex: 0 0 50%; max-width: 50%; }
    .col-lg-7 { flex: 0 0 58.333%; max-width: 58.333%; }
}

/* Panels & cards */
.panel {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}
.panel__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 18px; flex-wrap: wrap; }
.panel__title { font-family: var(--font-head); font-size: 17px; font-weight: 700; }

.stat-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}
.stat-card__label { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.stat-card__value { font-family: var(--font-head); font-size: 22px; font-weight: 800; }
.stat-card__link { font-size: 13px; color: var(--primary-2); font-weight: 600; }
.stat-card__link:hover { text-decoration: underline; }

.stat-row { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 16px; }
.stat-row .stat-card { flex: 1; min-width: 200px; margin: 10px 0; }

.balance-box {
    background: linear-gradient(135deg, rgba(124, 92, 255, 0.18), rgba(0, 212, 255, 0.12));
    border: 1px solid rgba(124, 92, 255, 0.35);
    border-radius: var(--radius);
    padding: 26px;
    display: flex; flex-direction: column; gap: 6px;
    margin-bottom: 18px;
}
.balance-box__label { font-size: 13px; color: var(--muted); }
.balance-box__amount { font-family: var(--font-head); font-size: 30px; font-weight: 800; }
.balance-box--compact { padding: 16px 20px; margin-top: 4px; }
.balance-box--compact .balance-box__amount { font-size: 22px; }

/* Tables */
.table-wrap { overflow-x: auto; }
.table { width: 100%; border-collapse: collapse; font-size: 14px; }
.table th {
    text-align: left; padding: 12px 14px;
    color: var(--muted); font-size: 12px;
    text-transform: uppercase; letter-spacing: 1px;
    border-bottom: 1px solid var(--border);
    font-weight: 600; white-space: nowrap;
}
.table td { padding: 12px 14px; border-bottom: 1px solid var(--border); vertical-align: middle; white-space: nowrap; }
.table tr:last-child td { border-bottom: none; }
.table tr:hover td { background: rgba(255, 255, 255, 0.02); }

.badge {
    display: inline-block; padding: 4px 12px;
    border-radius: 100px; font-size: 12px; font-weight: 600;
    text-transform: capitalize;
}
.badge--success { background: rgba(46, 230, 168, 0.15); color: var(--success); }
.badge--warning { background: rgba(255, 184, 107, 0.15); color: var(--warning); }
.badge--danger { background: rgba(255, 92, 124, 0.15); color: var(--danger); }
.badge--primary { background: rgba(124, 92, 255, 0.15); color: var(--primary-2); }

/* Progress */
.progress { height: 8px; background: rgba(255, 255, 255, 0.08); border-radius: 100px; overflow: hidden; width: 120px; }
.progress__bar { height: 100%; background: var(--grad); border-radius: 100px; }

/* Timeline */
.timeline { display: flex; flex-direction: column; }
.timeline__item { display: flex; gap: 14px; padding-bottom: 18px; position: relative; }
.timeline__item:not(:last-child)::before {
    content: ""; position: absolute; left: 7px; top: 18px; bottom: 0;
    width: 2px; background: var(--border);
}
.timeline__badge { width: 16px; height: 16px; border-radius: 50%; background: var(--primary); flex-shrink: 0; margin-top: 3px; }
.timeline__badge--success { background: var(--success); }
.timeline__badge--danger { background: var(--danger); }
.timeline__badge--primary { background: var(--primary); }
.timeline__body { display: flex; flex-direction: column; gap: 2px; }
.timeline__title { font-weight: 600; font-size: 14px; text-transform: capitalize; }
.timeline__text { font-size: 13px; color: var(--muted); }
.timeline__meta { font-size: 12px; color: var(--muted); }

/* Notices */
.notice-board { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.notice {
    background: rgba(124, 92, 255, 0.1);
    border: 1px solid rgba(124, 92, 255, 0.3);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    display: flex; flex-direction: column; gap: 2px;
}
.notice__title { font-weight: 700; font-size: 14px; }
.notice__text { font-size: 13px; color: var(--muted); }
.notice__time { font-size: 12px; color: var(--muted); }
.notice--info { border-color: rgba(0, 212, 255, 0.4); border-left-color: var(--primary-2); background: rgba(0, 212, 255, 0.07); }

/* Empty state */
.empty {
    text-align: center; color: var(--muted);
    padding: 30px 10px; font-size: 14px;
    border: 1px dashed var(--border); border-radius: var(--radius-sm);
}

/* Flash */
.flash {
    padding: 12px 16px; border-radius: var(--radius-sm);
    font-size: 14px; margin-bottom: 14px; font-weight: 500;
}
.flash--success { background: rgba(46, 230, 168, 0.15); color: var(--success); border: 1px solid rgba(46, 230, 168, 0.3); }
.flash--error { background: rgba(255, 92, 124, 0.15); color: var(--danger); border: 1px solid rgba(255, 92, 124, 0.3); }

/* Forms */
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 7px; color: var(--text); }
.form-hint { display: block; font-size: 12px; color: var(--muted); margin-top: 6px; }
.form-input, .auth-form input, select.form-input {
    width: 100%; padding: 13px 15px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: 14px; font-family: var(--font-body);
    transition: border-color 0.2s ease;
}
.form-input:focus, .auth-form input:focus {
    outline: none; border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(124, 92, 255, 0.15);
}
select.form-input { appearance: none; }
.form-actions { margin-top: 20px; }

.segmented { display: flex; gap: 10px; }
.segmented__option { flex: 1; }
.segmented__option input { position: absolute; opacity: 0; }
.segmented__option span {
    display: flex; align-items: center; justify-content: center;
    padding: 12px; border-radius: var(--radius-sm);
    border: 1px solid var(--border); cursor: pointer;
    font-size: 14px; font-weight: 600; transition: all 0.2s ease;
}
.segmented__option input:checked + span { background: var(--grad); color: #05070C; border-color: transparent; }

.calc { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 16px; margin: 18px 0; }
.calc__row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 14px; color: var(--muted); }
.calc__row strong { color: var(--text); }

.ref-share { display: flex; gap: 12px; align-items: flex-end; flex-wrap: wrap; margin: 16px 0; }
.ref-share .form-group { flex: 1; min-width: 260px; margin-bottom: 0; }

.summary-list { display: flex; flex-direction: column; }
.summary-list li {
    display: flex; justify-content: space-between; gap: 12px;
    padding: 13px 0; border-bottom: 1px solid var(--border);
    font-size: 14px;
}
.summary-list li:last-child { border-bottom: none; }
.summary-list span { color: var(--muted); }

hr { border: none; border-top: 1px solid var(--border); margin: 18px 0; }

/* Plan cards */
.plan-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.plan-card {
    background: #171031;
    border: 1px solid var(--border);
    border-radius: 30px 12px 70px 12px / 30px 12px 44px 12px;
    position: relative;
    overflow: hidden;
    display: flex; flex-direction: column;
    transition: transform 0.25s ease, border-color 0.25s ease;
}
.plan-card:hover { transform: translateY(-4px); border-color: var(--primary); }
.plan-card__tag { font-family: var(--font-head); font-weight: 700; font-size: 15px; }
.plan-card__return { display: flex; align-items: baseline; gap: 8px; }
.plan-card__roi { font-family: var(--font-head); font-size: 34px; font-weight: 800; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.plan-card__per { color: var(--muted); font-size: 13px; }
.plan-card__list { display: flex; flex-direction: column; gap: 8px; font-size: 13px; color: var(--muted); flex: 1; }
.plan-card__list strong { color: var(--text); }
.plan-card__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center 28%;
    filter: blur(16px) saturate(1.25) brightness(0.72);
    transform: scale(1.12);
}
.plan-card__hero { position: relative; z-index: 1; flex: none; height: 150px; clip-path: polygon(0 0, 100% 0, 100% 74%, 0 100%); }
.plan-card__hero img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; transition: transform 0.35s ease; clip-path: inherit; }
.plan-card:hover .plan-card__hero img { transform: scale(1.04); }
.plan-card__shade {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(15, 8, 35, 0) 24%, rgba(15, 8, 35, 0.38) 50%, rgba(15, 8, 35, 0.82) 78%, rgba(15, 8, 35, 0.95) 100%);
}
.plan-card__content { position: relative; z-index: 3; padding: 14px 24px 24px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.panel__title { display: flex; align-items: center; gap: 10px; }
.panel__title-icon { width: 22px; height: 22px; color: var(--accent); flex-shrink: 0; }

/* Auth pages */
.auth-body {
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    padding: 40px 20px;
    background:
        radial-gradient(circle at 20% 20%, rgba(124, 92, 255, 0.18), transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 212, 255, 0.12), transparent 50%),
        var(--bg);
}
.auth {
    width: 100%; max-width: 440px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 34px;
    box-shadow: var(--shadow);
}
.auth__back { font-size: 13px; color: var(--muted); display: inline-block; margin-bottom: 18px; }
.auth__back:hover { color: var(--text); }
.auth__brand { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; font-family: var(--font-head); }
.auth__brand-name { font-weight: 700; font-size: 17px; }
.auth__title { font-family: var(--font-head); font-size: 24px; font-weight: 800; margin-bottom: 6px; }
.auth__sub { color: var(--muted); font-size: 14px; margin-bottom: 24px; }
.auth-form { display: flex; flex-direction: column; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 13px; font-weight: 600; }
.auth__foot { text-align: center; font-size: 14px; color: var(--muted); margin-top: 22px; }
.auth__foot a { color: var(--primary-2); font-weight: 600; }
.auth__foot a:hover { text-decoration: underline; }

/* Responsive */
@media (max-width: 991px) {
    .app-side { transform: translateX(-100%); }
    .app-side.is-open { transform: translateX(0); }
    .app-side__backdrop {
        display: block; position: fixed; inset: 0; z-index: 30;
        background: rgba(0, 0, 0, 0.6);
    }
    .app-main { margin-left: 0; }
    .app-burger { display: inline-flex; }
    .app-content { padding: 20px 18px 60px; }
}

/* Support nav badge */
.app-nav__badge {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 20px; height: 20px; padding: 0 6px;
    border-radius: 100px; font-size: 11px; font-weight: 700;
    background: var(--danger); color: #fff; line-height: 1;
}

/* Tickets list */
.ticket-list { display: flex; flex-direction: column; }
.ticket {
    display: flex; flex-direction: column; gap: 4px;
    padding: 14px; border-bottom: 1px solid var(--border);
    transition: background 0.15s ease;
}
.ticket:hover { background: rgba(124, 92, 255, 0.06); }
.ticket:last-child { border-bottom: none; }
.ticket__head { display: flex; align-items: center; gap: 8px; font-size: 14px; }
.ticket__preview { font-size: 13px; color: var(--muted); }
.ticket__meta { display: flex; align-items: center; gap: 10px; margin-top: 4px; font-size: 12px; }

/* Chat */
.chat {
    max-height: 400px; overflow-y: auto;
    padding: 16px; background: var(--bg);
    border: 1px solid var(--border); border-radius: var(--radius-sm);
    display: flex; flex-direction: column; gap: 12px; margin-bottom: 14px;
}
.chat__msg { display: flex; width: 100%; }
.chat__msg--user  { justify-content: flex-end; }
.chat__msg--admin { justify-content: flex-start; }
.chat__bubble { max-width: 78%; padding: 12px 16px; border-radius: 14px; font-size: 14px; line-height: 1.55; }
.chat__msg--user  .chat__bubble { background: rgba(124, 92, 255, 0.18); border: 1px solid rgba(124, 92, 255, 0.3); border-bottom-right-radius: 4px; }
.chat__msg--admin .chat__bubble { background: rgba(0, 212, 255, 0.1); border: 1px solid rgba(0, 212, 255, 0.22); border-bottom-left-radius: 4px; }
.chat__role  { display: block; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.8px; color: var(--primary-2); margin-bottom: 3px; }
.chat__time  { display: block; font-size: 11px; color: var(--muted); margin-top: 5px; }
.chat__avatar { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; flex-shrink: 0; margin-right: 10px; align-self: flex-end; }
.chat__form  { display: flex; gap: 10px; align-items: flex-end; }
.chat__form textarea { flex: 1; resize: none; min-height: 44px; }
.chat__form .btn { border-radius: 14px; padding: 12px 20px; }

/* Support chat widget */
.chat-launcher {
    position: fixed; right: 22px; bottom: 22px; z-index: 1000;
    display: flex; align-items: center; gap: 10px;
    cursor: pointer; -webkit-tap-highlight-color: transparent;
}
.chat-launcher__label {
    background: #fff; color: #14161F;
    padding: 10px 16px; border-radius: 40px;
    font-family: var(--font-head); font-size: 13px; font-weight: 600;
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.4);
    transition: opacity 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
}
.chat-launcher__btn {
    width: 58px; height: 58px; border-radius: 18px;
    background: var(--grad); color: #fff;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 34px rgba(124, 92, 255, 0.45);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.chat-launcher:hover .chat-launcher__btn,
.chat-launcher:focus .chat-launcher__btn { transform: scale(1.06); box-shadow: 0 14px 44px rgba(124, 92, 255, 0.6); }
.chat-launcher:focus { outline: none; }
.chat-launcher:focus-visible .chat-launcher__btn { outline: 3px solid rgba(0, 212, 255, 0.7); outline-offset: 3px; }
.chat-launcher__icon { width: 20px; height: 20px; }

@media (max-width: 620px) {
    .chat-launcher { right: 16px; bottom: 16px; }
    .chat-launcher__label { display: none; }
}

/* Welcome bonus banner */
.welcome-banner {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    margin-bottom: 18px;
    background: linear-gradient(135deg, rgba(124, 92, 255, 0.16), rgba(255, 184, 107, 0.1));
    border: 1px solid rgba(124, 92, 255, 0.35);
    border-radius: var(--radius-sm);
}
.welcome-banner__ico { font-size: 26px; flex-shrink: 0; }
.welcome-banner__body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.welcome-banner__title { color: var(--text); font-family: var(--font-head); font-size: 14px; }
.welcome-banner__text { color: var(--muted); font-size: 13px; }
.welcome-banner form { flex-shrink: 0; }
@media (max-width: 620px) {
    .welcome-banner { flex-wrap: wrap; }
    .welcome-banner form { width: 100%; }
    .welcome-banner form .btn { width: 100%; }
}

/* Welcome bonus modal */
.welcome-modal[hidden] { display: none; }
.welcome-modal {
    position: fixed; inset: 0; z-index: 1200;
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
}
.welcome-modal__backdrop { position: absolute; inset: 0; background: rgba(5, 8, 20, 0.66); backdrop-filter: blur(3px); }
.welcome-modal__card {
    position: relative;
    width: 100%; max-width: 380px;
    background: var(--surface);
    border: 1px solid rgba(124, 92, 255, 0.4);
    border-radius: 22px;
    padding: 30px 26px 24px;
    text-align: center;
    box-shadow: var(--shadow);
    animation: welcomePop 0.3s ease;
}
@keyframes welcomePop {
    from { opacity: 0; transform: scale(0.92) translateY(12px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}
.welcome-modal__close {
    position: absolute; top: 12px; right: 12px;
    width: 32px; height: 32px; border: none; border-radius: 50%;
    background: rgba(255, 255, 255, 0.06); color: var(--muted);
    font-size: 18px; line-height: 1; cursor: pointer;
}
.welcome-modal__close:hover { color: var(--text); background: rgba(124, 92, 255, 0.16); }
.welcome-modal__gift { font-size: 46px; line-height: 1; margin-bottom: 12px; }
.welcome-modal__title { font-family: var(--font-head); font-size: 19px; font-weight: 700; margin: 0 0 8px; }
.welcome-modal__amount {
    display: inline-block;
    font-family: var(--font-head); font-size: 28px; font-weight: 800;
    background: var(--grad);
    -webkit-background-clip: text; background-clip: text; color: transparent;
    margin: 4px 0 10px;
}
.welcome-modal__body { margin: 0 0 20px; color: var(--muted); font-size: 14px; line-height: 1.6; }
.welcome-modal__body strong { color: var(--text); }
.welcome-modal__cta { width: 100%; }
.welcome-modal__later {
    width: 100%; margin-top: 10px; padding: 10px;
    background: none; border: none; color: var(--muted);
    font-size: 13px; cursor: pointer;
}
.welcome-modal__later:hover { color: var(--text); }

/* ---------- Mobile polish ---------- */
@media (max-width: 620px) {
    .welcome-modal__card { padding: 26px 20px 22px; }
    .balance-box__amount { font-size: 26px; }
}
@media (max-width: 480px) {
    .app-topbar { padding: 12px 16px; gap: 12px; }
    .app-topbar__name { display: none; }
    .app-content { padding: 16px 14px 60px; }
    .panel, .stat-card { padding: 16px; }
    .auth { padding: 26px 20px; }
    .auth-body { padding: 24px 14px; }
    .table th, .table td { padding: 10px 12px; }
}