:root {
    --bg: #0f172a;
    --card: #111827;
    --muted: #94a3b8;
    --text: #e5e7eb;
    --accent: #22c55e;
    --danger: #ef4444;
    --brand: #38bdf8;
    --ok: #22c55e;
    --warn: #f59e0b;
    --bad: #ef4444;
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
    background: linear-gradient(120deg, #0b1021, #0f172a 1000%, #0b1021);
    color: var(--text)
}

.toast {
    position: fixed;
    right: 16px;
    bottom: 16px;
    background: #0b1224;
    border: 1px solid rgba(255, 255, 255, .15);
    padding: 12px 14px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
    transform: translateY(20px);
    opacity: 0;
    transition: .2s
}

.toast.show {
    transform: none;
    opacity: 1
}