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

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

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  padding: 2rem;
  text-align: center;
  max-width: 560px;
}

.emoji { font-size: 3rem; }

h1 {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
}

p {
  font-size: clamp(1rem, 3vw, 1.2rem);
  color: #a3a3a3;
  line-height: 1.7;
}

.badge {
  margin-top: 0.5rem;
  padding: 0.4rem 1.25rem;
  border-radius: 999px;
  border: 1px solid #333;
  color: #555;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}