/**
 * Vivid Index - CSS Variables
 * 공통 색상, 폰트, 간격 변수
 */

:root {
    /* Colors - Base */
    --black: #000000;
    --black-light: #0a0a0a;
    --black-card: #111111;
    --black-border: #222222;
    --white: #ffffff;
    --gray: #aaaaaa;
    --gray-dark: #666666;
    --gray-light: #cccccc;

    /* Colors - Vivid */
    --vivid-pink: #E91E63;
    --vivid-green: #8BC34A;
    --vivid-orange: #FF9800;
    --vivid-blue: #2196F3;
    --vivid-yellow: #FFC107;

    /* Colors - Dim (투명도 적용) */
    --vivid-pink-dim: rgba(233, 30, 99, 0.2);
    --vivid-green-dim: rgba(139, 195, 74, 0.2);
    --vivid-orange-dim: rgba(255, 152, 0, 0.2);
    --vivid-blue-dim: rgba(33, 150, 243, 0.2);

    /* Brand Colors */
    --binance-yellow: #F0B90B;
    --bybit-orange: #F7A600;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'Consolas', 'Monaco', monospace;

    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.85rem;
    --text-base: 1rem;
    --text-lg: 1.1rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 2rem;
    --text-4xl: 2.5rem;

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.2s ease;
    --transition-slow: 0.3s ease;

    /* Container */
    --container-max: 960px;
    --container-padding: 20px;
}
