/* ============================================
   CSS VARIABLES & DESIGN TOKENS
   ============================================ */

:root {
  /* Colors */
  --buzz-red: #F44336;
  --buzz-red-dark: #d32f2f;
  --buzz-red-darker: #b71c1c;
  --buzz-gray: rgba(0, 0, 0, 0.55);
  --buzz-middle-gray: #B3B3B3;
  --black: #000000;
  --white: #ffffff;
  --dark: #182938;
  --gray: #747577;
  --light: #FAFAFA;
  
  /* Typography */
  --font-primary: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-buzz: 'BuzzfontBold', var(--font-primary);
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 12px 70px rgba(73, 0, 0, 0.16);
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.2s ease;
  --transition-slow: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slower: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

