:root {
    /* --- Theme Palette (Luxurious Dark Mode) --- */
    --primary-color: #d4af37; /* Classic Gold */
    --primary-gradient: linear-gradient(135deg, #d4af37 0%, #f3d87c 100%);
    --primary-glow: rgba(212, 175, 55, 0.4);
    
    --bg-color: #0a0a0a; /* Deep Black */
    --bg-secondary: #141414; /* Slightly lighter black */
    --text-color: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.6);
    
    --danger-color: #ff4444;
    --success-color: #00c853;

    /* --- Glassmorphism Variables --- */
    /* The background of the glass cards */
    --glass-bg: rgba(255, 255, 255, 0.03);
    /* The blur intensity underneath the glass */
    --glass-blur: blur(16px);
    /* The subtle border around glass elements */
    --glass-border: 1px solid rgba(255, 255, 255, 0.08);
    /* Deep, soft shadow for floating effect */
    --shadow-glass: 0 20px 40px rgba(0, 0, 0, 0.6);

    /* --- UI Defaults --- */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --font-stack: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}