/**
 * EMO BAŞKAN - Professional Gaming Theme
 * CSS Variables
 * Version: 1.0.0
 */

:root {
    /* Primary Colors */
    --bg-primary: #0B0F14;
    --bg-secondary: #141B22;
    --bg-tertiary: #1a2332;
    --bg-card: #161b22;
    --bg-hover: #1e2a3a;
    
    /* Accent Colors */
    --accent-cyan: #00F2FF;
    --accent-cyan-dark: #00c4d4;
    --accent-cyan-rgb: 0, 242, 255;
    --accent-gold: #FFD700;
    --accent-gold-rgb: 255, 215, 0;
    --accent-green: #2ECC71;
    --accent-green-rgb: 46, 204, 113;
    --accent-blue: #3498DB;
    --accent-blue-rgb: 52, 152, 219;
    --accent-purple: #9B59B6;
    --accent-purple-rgb: 155, 89, 182;
    --accent-red: #E74C3C;
    --accent-red-rgb: 231, 76, 60;
    --accent-orange: #F39C12;
    --accent-orange-rgb: 243, 156, 18;
    
    /* Text Colors */
    --text-primary: #FFFFFF;
    --text-secondary: #94A3B8;
    --text-muted: #6B7280;
    
    /* Border & Shadow */
    --border-color: rgba(255, 255, 255, 0.1);
    --border-color-light: rgba(255, 255, 255, 0.05);
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 20px rgba(0, 242, 255, 0.3);
    --shadow-gold: 0 0 20px rgba(255, 215, 0, 0.4);
    
    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;
    
    /* Transitions - Animasyonlar devre dışı */
    --transition-fast: 0s;
    --transition-normal: 0s;
    --transition-slow: 0s;
    
    /* Layout */
    --header-height: 70px;
    --header-sub-height: 40px;
    --sidebar-width: 280px;
    --container-max-width: 1600px;
    
    /* Z-index layers */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal-backdrop: 400;
    --z-modal: 500;
    --z-popover: 600;
    --z-tooltip: 700;
    
    /* Font Families */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
    
    /* Font Sizes */
    --text-xs: 11px;
    --text-sm: 13px;
    --text-base: 14px;
    --text-md: 16px;
    --text-lg: 18px;
    --text-xl: 20px;
    --text-2xl: 24px;
    --text-3xl: 28px;
    --text-4xl: 32px;
    --text-5xl: 40px;
    
    /* Line Heights */
    --leading-tight: 1.2;
    --leading-normal: 1.5;
    --leading-relaxed: 1.8;
    
    /* Font Weights */
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    --font-extrabold: 800;
    
    /* Opacity */
    --opacity-0: 0;
    --opacity-25: 0.25;
    --opacity-50: 0.5;
    --opacity-75: 0.75;
    --opacity-100: 1;
}

/* Dark scrollbar styling */
:root {
    color-scheme: dark;
}
