:root {
  --fg: #e8ebf1;
  --accent: #6ae3ff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Inter, system-ui, -apple-system, sans-serif;
}

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.container {
  text-align: center;
  max-width: 520px;
  padding: 32px;
  animation: fadeIn 0.8s ease-out;
}

.code {
  font-size: 120px;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  background: linear-gradient(90deg, #F8FAFF, #F8FAFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h1 {
  font-size: 28px;
  margin-top: 16px;
}

.heading {
  color: #EAF2FF;
}

p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.6;
}

.description {
  color: rgba(255,255,255,0.78);
}

.highlight {
  color: #FFE9A8;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
