/* Explain: Updated design tokens for premium dark theme with anthracite backgrounds and gold accents. - */
:root {
    --primary-color: #111111;
    --primary-hover: #1a1a1a;
    --secondary-color: #222222;
    --accent-color: #d4af37; /* Metallic Gold */
    --accent-hover: #b5952f;
    --background-color: #111111; /* Dark Anthracite */
    --surface-color: #1a1a1a; /* Lighter Anthracite for cards */
    --text-color: #ffffff; /* White */
    --text-muted: #a1a1aa; /* Soft gray */
    --border-color: #333333; /* Dark gray borders */
    
    /* Modern, elegant, clean fonts */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}