:root {
    --bg-primary: #09090b;
    --bg-secondary: #0c0c0e;
    --bg-tertiary: #18181b;
    --text-primary: #fafafa;
    --text-muted: #a1a1aa;
    --accent: #6366f1;
    --accent-hover: #818cf8;
    --border: #27272a;
    --card-bg: #09090b;
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.5);
}

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

body {
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    overflow: hidden;
    height: 100vh;
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}