/* variables.css */
:root {
    --bg: #0a0b0f;
    --bg2: #12131a;
    --bg3: #1a1b25;
    --bg4: #22232f;
    --text: #e8e9ed;
    --text2: #9a9ba8;
    --text3: #5d5e6c;
    --accent: #f97316;
    --accent2: #fb923c;
    --green: #22c55e;
    --blue: #3b82f6;
    --purple: #8b5cf6;
    --red: #ef4444;
    --yellow: #eab308;
    --cyan: #06b6d4;
    --border: #2a2b38;
    --grey: #94a3b8;
    --radius: 10px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
}