body {
  margin: 0;
  overflow: hidden;
  background: #000;
  font-family: Arial, sans-serif;
  color: white;
}

canvas {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

video {
  display: none;
}

#status {
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 22px;
  z-index: 10;
  text-shadow: 0 0 5px black;
}

#ui {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.65);
  padding: 18px 35px;
  border-radius: 15px;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0,0,0,0.6);
}

input, button {
  padding: 12px 18px;
  font-size: 17px;
  border: none;
  border-radius: 8px;
  margin: 0 8px;
}

input {
  width: 280px;
  background: #222;
  color: white;
}

button {
  background: #ff3366;
  color: white;
  cursor: pointer;
}

button:hover {
  background: #ff5599;
}
