/* Explain: Theme design tokens (colors, fonts) — single source of truth */
:root {
    --background-color: #1c1c1c;
    --surface-color: rgba(255, 204, 0, 0.15);
    --surface-hover: #333333;
    --primary-color: #ffcc00;
    --primary-hover: #e6b800;
    --secondary-color: #111111;
    --accent-color: #ffcc00;
    --text-color: #ffffff;
    --text-muted: #9ca3af;
    --border-color: rgba(255, 255, 255, 0.15);
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
}
