:root {
  /* Fonts */
  --font-sans: "Inter", system-ui, sans-serif;
  --font-display: "Oswald", "Impact", sans-serif;

  /* Base colors */
  --color-bg: #0b0b0b;
  --color-bg-2: #141414;
  --color-bg-3: #1a1a1a;
  --color-surface: #ffffff;
  --color-surface-2: #f0f0f0;
  --color-border-dark: #262626;
  --color-border-light: #e5e5e5;

  /* Text */
  --color-text: #ffffff;
  --color-text-muted: #9ca3af;
  --color-text-dark: #0b0b0b;
  --color-gray-300: #d1d5db;
  --color-gray-400: #9ca3af;
  --color-gray-500: #6b7280;
  --color-gray-600: #4b5563;
  --color-gray-700: #374151;
  --color-gray-800: #1f2937;
  --color-gray-900: #111827;

  /* Accent */
  --color-accent: #3b82f6;
  --color-accent-hover: #2563eb;
  --color-accent-2: #8b5cf6;

  /* Utility */
  --color-danger: #dc2626;
  --color-telegram: #0088cc;
  --color-scrollbar: #333333;

  /* Layout */
  --container-width: 1440px;
  --header-height: 70px;

  /* Spacing scale */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-7: 28px;
  --space-8: 32px;
  --space-9: 36px;
  --space-10: 40px;
  --space-11: 44px;
  --space-12: 48px;
  --space-13: 56px;
  --space-14: 64px;
  --space-15: 80px;
  --space-16: 96px;
  --space-17: 112px;
  --space-18: 128px;

  /* Typography */
  --text-xxs: 10px;
  --text-xs: 12px;
  --text-sm: 14px;
  --text-md: 16px;
  --text-lg: 18px;
  --text-xl: 20px;
  --text-2xl: 24px;
  --text-3xl: 30px;
  --text-4xl: 36px;
  --text-5xl: 48px;
  --text-6xl: 60px;
  --text-7xl: 72px;
  --text-8xl: 96px;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
}

html {
  scroll-padding-top: calc(var(--header-height) + 12px);
}
