/* Base styling tokens and theme variables */
:root {
    --bg-main: #0f0f1a;
    --border-color: #24243e;
    --border-glow: #4ecdc4;
    
    --text-primary: #f1f1f7;
    --text-secondary: #9494a8;
    --text-accent: #ff6b6b;
    --color-teal: #4ecdc4;
    --color-coral: #ff6b6b;
    --color-gold: #ffd93d;
    --color-violet: #c084fc;
    
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-mono: 'Roboto Mono', 'Fira Code', monospace;
    --transition-smooth: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset and general styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body, html {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: var(--bg-main);
    font-family: var(--font-sans);
    color: var(--text-primary);
}

#sketch-canvas {
    width: 100%;
    height: 100%;
    display: block;
    cursor: crosshair;
}

/* Scrollbar customization */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

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

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