/**
 * Base Styles
 * Core HTML element styling and resets
 */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--text-muted);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-primary);
}

/* Custom Link Styles */
a {
  color: var(--accent-primary);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--accent-secondary);
}

/* Placeholder Text */
::placeholder {
  color: var(--text-muted) !important;
  opacity: 1;
}

:-ms-input-placeholder {
  color: var(--text-muted) !important;
}

::-ms-input-placeholder {
  color: var(--text-muted) !important;
}

/* Text Utilities */
.text-muted {
  color: var(--text-muted) !important;
}

