body {
  margin: 0;
  font-family: "Outfit", "Inter", sans-serif;
  background-color: #0c0c0f;
  color: #f0f0f0;
}
nav {
  background: #111;
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 20px 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
  position: sticky;
  top: 0;
}
nav a {
  color: #bfa8ff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  transition: color 0.3s ease;
}
nav a:hover { color: #fff; }
footer {
  background: #111;
  color: #eee;
  text-align: center;
  padding: 30px 10px;
  font-size: 0.9rem;
}
footer a {
  color: #bfa8ff;
  text-decoration: none;
  font-weight: 500;
}
