:root {
    --bg-body: #0f172a;
    --bg-card: #1e293b;
    --bg-editor: #111b2d;
    --bg-sidebar: #1e293b;
    --text-main: #e2e8f0;
    --text-muted: #94a3b8;
    --text-light: #cbd5e1;

    --accent: #60a5fa;
    --accent-hover: #3b82f6;
    --accent-glow: rgba(96, 165, 250, 0.1);

    --border: 1px solid rgba(255, 255, 255, 0.1);
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --radius: 0.75rem;
    --hover-item: rgba(96, 165, 250, 0.1);
}

* {
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    background: var(--bg-body);
    color: var(--text-main);
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}
