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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #0a0a0a;
  color: #f0f0f0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  text-align: center;
  padding: 2rem;
}

h1 {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: #ffffff;
}

p {
  font-size: 1.1rem;
  color: #888;
  margin-bottom: 2rem;
}

a {
  color: #f0f0f0;
  text-decoration: none;
  font-size: 0.95rem;
  border-bottom: 1px solid #444;
  padding-bottom: 2px;
  transition: border-color 0.2s;
}

a:hover {
  border-color: #f0f0f0;
}
