/* GGLog Design System - CSS Variables */

/* Pretendard font with swap to show text immediately while font loads */
@font-face {
    font-family: 'Pretendard Variable';
    font-display: swap;
    src: local('Pretendard Variable');
}

:root {
    /* Colors - Dark Theme (Discord-inspired) */
    --color-bg-primary: #0a0a0f;
    --color-bg-secondary: #12121a;
    --color-bg-tertiary: #1a1a25;
    --color-bg-elevated: #22222f;
    --color-bg-hover: #2a2a3a;
    
    /* Accent Colors */
    --color-accent: #5865f2;
    --color-accent-hover: #4752c4;
    --color-accent-glow: rgba(88, 101, 242, 0.3);
    
    /* Status Colors */
    --color-success: #3ba55c;
    --color-warning: #faa61a;
    --color-error: #ed4245;
    --color-info: #5865f2;
    
    /* Text Colors */
    --color-text-primary: #ffffff;
    --color-text-secondary: #b9bbbe;
    --color-text-muted: #8e9297;
    --color-text-link: #00aff4;
    
    /* Border Colors */
    --color-border: #2f3136;
    --color-border-hover: #40444b;
    
    /* Surface & Text (for form elements) */
    --color-surface: #1e1f22;
    --color-text: #e0e0e0;
    --color-primary: #5865f2;
    
    /* Category Colors */
    --color-computer: #5865f2;
    --color-monitor: #eb459e;
    --color-keyboard: #fee75c;
    --color-mouse: #57f287;
    --color-audio: #ed4245;
    --color-other: #9b59b6;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px var(--color-accent-glow);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
    
    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    
    /* Typography */
    --font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, 'Helvetica Neue', 'Segoe UI', 'Apple SD Gothic Neo', 'Noto Sans KR', 'Malgun Gothic', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-md: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 2.5rem;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 250ms ease;
    --transition-slow: 350ms ease;
    
    /* Layout */
    --header-height: 64px;
    --sidebar-width: 280px;
    --content-max-width: 1200px;
}
