
:root {
  --bg-color: #0a0f1f;
  --text-color: #e0e0e0;
  --muted: #888;
  --accent: #00ffe0;
  --highlight: #FA4CFF;
}

* {
  box-sizing: border-box;
}

body {
  background: linear-gradient(to bottom, #0a0f1f 0%, #05080e 100%);
  color: #e0e0e0;
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.6;
  padding: 2rem;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
}

main, header, footer, nav, .content, .project-grid {
  position: relative;
  z-index: 1;
}

h1, h2, h3 {
  font-family: 'Orbitron', sans-serif;
  color: var(--accent);
  margin-top: 2rem;
}

h2 {
  color: var(--highlight);
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

header {
  text-align: center;
  margin-bottom: 2rem;
}

nav {
  margin-top: 1rem;
}

nav a {
  margin: 0 0.5rem;
  font-weight: bold;
  color: var(--accent);
}

nav a:hover {
  text-decoration: underline;
}

main {
  max-width: 800px;
  margin: 0 auto;
}

footer {
  text-align: center;
  margin-top: 5rem;
  color: var(--muted);
  font-size: 0.9rem;
}

ul {
  padding-left: 1.25rem;
}

ul li {
  margin-bottom: 0.5rem;
}
