:root {
    /* Fonts */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Lato', sans-serif;

    /* Colors - Default (Dark/Black & Red) */
    --bg-body: #050505;
    --bg-card: #111111;
    --bg-header: rgba(5, 5, 5, 0.8);
    
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-muted: #555555;
    
    --accent-color: #ff0033; /* Red */
    --accent-hover: #cc0029;
    
    --border-color: #222222;
    
    /* Spacing */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 48px;
    
    /* Radius */
    --radius-sm: 2px;
    --radius-md: 4px;
    --radius-lg: 8px; /* Minimal radius as requested */
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

[theme="apple"] {
    --bg-body: #f5f5f7;
    --bg-card: #ffffff;
    --bg-header: rgba(255, 255, 255, 0.8);
    --text-primary: #1d1d1f;
    --text-secondary: #86868b;
    --border-color: #d2d2d7;
    --accent-color: #0071e3;
    --radius-lg: 12px;
}

[theme="light"] {
    --bg-body: #ffffff;
    --bg-card: #f9f9f9;
    --bg-header: rgba(255, 255, 255, 0.9);
    --text-primary: #000000;
    --text-secondary: #666666;
    --border-color: #e0e0e0;
}
