/* Explain: Theme design tokens (colors, fonts) — single source of truth. - */
:root {
    --primary-color: #e5e4e2; /* Platinum */
    --primary-hover: #ffffff;
    --secondary-color: #1e293b;
    --accent-color: #94a3b8;
    
    /* Deep Navy Theme */
    --background-color: #050a15; 
    --surface-color: rgba(255, 255, 255, 0.03); 
    --glass-border: rgba(229, 228, 226, 0.15);
    --platinum: #e5e4e2;
    
    --text-color: #f8fafc;
    --text-muted: #94a3b8;
    --border-color: rgba(229, 228, 226, 0.15);
    
    /* Elegant Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}