/* ===== CSS Variables ===== */
:root {
  /* Colors - Preserved from original */
  --primary-500: #6366f1;
  --primary-600: #4f46e5;
  --primary-700: #4338ca;

  --success-500: #10b981;
  --success-600: #059669;
  --warning-500: #f59e0b;
  --warning-600: #d97706;
  --danger-500: #ef4444;
  --danger-600: #dc2626;

  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
  --gray-900: #111827;

  /* Dark Theme - Discord-inspired adjustments */
  --bg-primary: #0f0f17;
  --bg-secondary: #1a1a27;
  --bg-tertiary: #262640;
  --bg-accent: #2d2d4d;
  --bg-hover: rgba(255, 255, 255, 0.05);
  --bg-glass: rgba(255, 255, 255, 0.03);
  --bg-overlay: rgba(0, 0, 0, 0.85);

  --text-primary: #ffffff;
  --text-secondary: #b5b5c0;
  --text-muted: #85858f;

  --border-color: rgba(255, 255, 255, 0.08);
  --border-color-hover: rgba(255, 255, 255, 0.16);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;

  /* Border Radius - Discord style (less rounded) */
  --radius-sm: 0.25rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
  --radius-full: 9999px;

  /* Shadows - Subtle Discord style */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.4);

  /* Transitions - Minimal but smooth */
  --transition: 150ms ease;
  --transition-slow: 250ms ease;

  /* Layout */
  --sidebar-width: 240px;
  --user-panel-width: 240px;
  --header-height: 48px;
  --mobile-bottom-padding: 20px;
}
