/* Basic CSS reset and globals */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body, #root {
  height: 100%;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

body {
  background-color: #181A1B;
  color: #E5E5E5;
  overflow-x: hidden;
}

/* Remove default link styling */
a {
  color: inherit;
  text-decoration: none;
}

/* Button reset */
button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* Hide scrollbar but keep functionality */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #252627;
}

::-webkit-scrollbar-thumb {
  background: #C6FF00;
  border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
  background: #B6FF57;
}

/* Selection highlighting */
::selection {
  background: rgba(198, 255, 0, 0.3);
  color: #181A1B;
}

/* Focus outline for accessibility */
*:focus {
  outline: 2px solid #C6FF00;
  outline-offset: 2px;
}