/* Explain: Theme design tokens (colors, fonts) — single source of truth */
:root {
    --primary-color: #00f5ff;
    --primary-hover: #00d2d6;
    --secondary-color: #334155;
    --accent-color: #3b82f6;
    --background-color: #0b0f19;
    --surface-color: #1e293b;
    --text-color: #f8fafc;
    --text-muted: #94a3b8;
    --border-color: #334155;
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
}
