:root {
    --bg: #0b0f19;
    --card: #111729;
    --muted: #c7d2fe;
    --pri: #7c3aed;
    --pri-2: #a78bfa;
    --ok: #22c55e;
    --warn: #f59e0b;
    --err: #ef4444;
    --text: #e5e7eb;
    --soft: #94a3b8;
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    background: linear-gradient(135deg, #0b0f19, #0e1324 30%, #0b0f19);
    background-repeat: no-repeat;
    background-attachment: fixed;
    font: 12px/1.5 system-ui, Segoe UI, Roboto, Ubuntu;
    color: var(--text);
}

.notif {
    position: fixed;
    top: 20px;
    left: 50%;
    width: 70%;
    transform: translateX(-50%);
    background: #09a045;
    border: 1px solid #08853a;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.notif.show {
    opacity: 1;
}