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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  overflow: hidden;
}

#game {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #ce4257;
  cursor: pointer;
  user-select: none;
  transition: background 0.1s;
}

#game.waiting {
  background: #ce4257;
}

#game.ready {
  background: #06d6a0;
}

#game.early {
  background: #ff6b6b;
}

#game.result {
  background: #4361ee;
}

#message {
  font-size: 3rem;
  color: white;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  padding: 1rem;
}

#result {
  font-size: 1.5rem;
  color: rgba(255,255,255,0.9);
  margin-top: 1rem;
}

.time {
  font-size: 5rem;
  font-weight: bold;
}

.best {
  font-size: 1.2rem;
  margin-top: 0.5rem;
  opacity: 0.8;
}
