:root {
    /* Gold-Palette */
    --primary: #f9b41c;
    --primary-dark: #d99a0e;
    --primary-light: #fcd34d;
    --primary-subtle: rgba(249, 180, 28, 0.1);
    
    /* Status */
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    
    /* Light Mode */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-elevated: #ffffff;
    --text-primary: #0f172a;
    --text-secondary: #64748b;
    --border: #e2e8f0;

    /* Effekte */
    --radius: 14px;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-hover: 0 10px 15px -3px rgba(249, 180, 28, 0.15);
    --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] {
    --bg-primary: #0f172a;
    --bg-secondary: #020617;
    --bg-elevated: #1e293b;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --border: #334155;
    --primary-subtle: rgba(249, 180, 28, 0.15);
}