:root {
  --bg: #0f1115;
  --fg: #e6e6e6;
  --muted: #8a8f98;
  --accent: #6ea8fe;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  height: 100%;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.page {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  gap: 0.5rem;
}

.title {
  font-size: clamp(2.5rem, 8vw, 4rem);
  margin: 0;
  letter-spacing: -0.02em;
}

.tagline {
  color: var(--muted);
  margin: 0 0 1rem;
  font-size: 1.1rem;
}

.links {
  display: flex;
  gap: 1.25rem;
}

.links a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease;
}

.links a:hover {
  border-color: var(--accent);
}

.clock {
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  margin-top: 2rem;
  font-size: 0.9rem;
}
