* {
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  margin: 0;
  background: radial-gradient(circle at top, #1f2933, #0f172a);
  color: #f8fafc;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  text-align: center;
  max-width: 600px;
}

.title {
  font-size: 3rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.coming-soon {
  font-size: 1.5rem;
  background: linear-gradient(90deg, #facc15, #fb7185);
  color: #000;
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  animation: pulse 2s infinite;
}

.subtitle {
  opacity: 0.85;
  margin-bottom: 1rem;
}

canvas {
  background: #020617;
  border-radius: 12px;
  border: 2px solid #334155;
}

.instructions {
  font-size: 0.85rem;
  opacity: 0.6;
  margin-top: 0.5rem;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}