/* Explain: Theme design tokens (colors, fonts) — single source of truth. */
:root {
    --primary-color: #00f0ff;
    --primary-hover: #00c3cf;
    --secondary-color: #7000ff;
    --accent-color: #ff003c;
    --background-color: #050510;
    --surface-color: rgba(15, 23, 42, 0.6);
    --text-color: #f8fafc;
    --text-muted: #94a3b8;
    --border-color: rgba(0, 240, 255, 0.2);
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Inter', sans-serif;
}
