/* Main Core Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

:root {
  --theme-bg: #050505;
  --theme-card-bg: #09090b;
  --theme-text-primary: #f8fafc;
  --theme-text-secondary: #94a3b8;
  --theme-accent: #6366f1;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--theme-bg);
  color: var(--theme-text-secondary);
  font-family: 'Inter', sans-serif;
}

/* Custom Scrollbar Utilities */
.scrollbar-none::-webkit-scrollbar {
  display: none;
}
.scrollbar-none {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

::selection {
  background-color: rgba(99, 102, 241, 0.3);
  color: #c7d2fe;
}
