:root {
  --bg: #020617;
  --card: #020617cc;
  --accent: #38bdf8;
  --text: #e5e7eb;
  --muted: #94a3b8;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', system-ui, sans-serif;
}

body {
  background: radial-gradient(circle at top, #020617, #000);
  color: var(--text);
  line-height: 1.6;
}

/* Terminal Intro */
#terminal-intro {
  position: fixed;
  inset: 0;
  background: black;
  color: #22c55e;
  font-family: monospace;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

#terminal-text {
  font-size: 1rem;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(2, 6, 23, 0.7);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 0.8rem;
}

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

/* Header */
header {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

#cursor {
  color: var(--accent);
}

/* Sections */
section {
  max-width: 900px;
  margin: 4rem auto;
  padding: 2rem;
  background: var(--card);
  border-radius: 1rem;
}

h2 {
  color: var(--accent);
  margin-bottom: 1rem;
}

ul {
  list-style: none;
  display: grid;
  gap: 1rem;
}

li {
  background: #020617;
  padding: 1rem;
  border-radius: 0.75rem;
}

.tag {
  display: inline-block;
  font-size: 0.75rem;
  background: rgba(56,189,248,0.15);
  color: var(--accent);
  padding: 0.2rem 0.5rem;
  border-radius: 0.4rem;
}

footer {
  text-align: center;
  padding: 2rem;
  color: var(--muted);
}
