* { margin:0; padding:0; box-sizing:border-box; }
body {
  background: #04000c;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Courier New', monospace;
  color: #ddc8ff;
  overflow: hidden;
}
#wrap { display:flex; flex-direction:column; align-items:center; }
canvas {
  display: block;
  width: 768px;
  height: 672px;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  cursor: pointer;
  border: 3px solid #3a0066;
  border-bottom: none;
}
#hud {
  width: 768px;
  background: #080014;
  border: 3px solid #3a0066;
  padding: 8px 18px 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
#actName {
  font-size: 15px;
  color: #ffdd44;
  text-align: center;
  letter-spacing: 2px;
  text-shadow: 0 0 10px #cc8800;
  min-height: 20px;
}
#subtitle {
  font-size: 11px;
  color: #aa77ee;
  text-align: center;
  font-style: italic;
  min-height: 15px;
}
#row2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#dots { display: flex; gap: 5px; }
.dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #150022;
  border: 1px solid #3a0066;
  transition: all .3s;
  cursor: pointer;
}
.dot:hover { background: #2a0044; border-color: #8855cc; }
.dot.past { background: #4422aa; border-color: #6644cc; }
.dot.now  { background: #ffdd44; border-color: #ffaa00; box-shadow: 0 0 6px #ffdd44; }
#btns { display: flex; gap: 7px; }
button {
  background: #150022;
  color: #bb88ff;
  border: 2px solid #4422aa;
  padding: 4px 13px;
  font-family: inherit;
  font-size: 11px;
  cursor: pointer;
  letter-spacing: 1px;
}
button:hover { background: #2a0044; color: #fff; }
