:root {
  --bg: #0a0a0a;
  --text: #e0e0e0;
  --accent: #00ff88;
  --nav-height: 60px;
}

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

body {
  font-family: 'Courier New', monospace;
  background-color: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

nav {
  height: var(--nav-height);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #1a1a1a;
}

.nav {
  color: var(--accent);
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: bold;
}

.cursor {
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

main {
  flex: 1;
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

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

p {
  font-size: 1rem;
  line-height: 1.6;
}

footer {
  padding: 1.5rem 2rem;
  text-align: center;
  border-top: 1px solid #1a1a1a;
  font-size: 0.875rem;
  color: #666;
}
