@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
}

html, body {
  width: 100%;
  height: 100vh;
  min-height: 100%;
  background: #0b0d10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  -webkit-font-smoothing: antialiased;
}

footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 1rem 0 0.5rem;
  font-family: 'Instrument Mono', monospace;
  cursor: default;
}

.footer-text {
  font-size: 14px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,0.15); }
.footer-heart { font-size: 10px; color: #ef4444; opacity: 0.7; }

.back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Instrument Mono', monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  text-decoration: none;
  letter-spacing: 0.08em;
  margin-bottom: 2rem;
  transition: color 0.2s;
}
.back:hover { color: rgba(255,255,255,0.5); }
