body {
  margin: 0;
  background-color: #111;
  overflow: hidden;
  font-family: 'Segoe UI', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

canvas {
  width: 98vw;
  height: 95vh;
  object-fit: contain;
  box-shadow: 0 0 80px rgba(0,0,0,1);
  border-radius: 15px;
  background: #000;
}

#ui-layer {
  position: absolute;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 100;
  pointer-events: none;
}

#status-pill {
  background: rgba(255,255,255,0.95);
  padding: 12px 30px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  display: flex;
  gap: 15px;
  align-items: center;
}


