* { margin: 0; padding: 0; box-sizing: border-box; }
html, body {
  width: 100%; height: 100%;
  background: #0a0a1a;
  overflow: hidden;
  font-family: 'Segoe UI', Arial, sans-serif;
}
#game-container {
  position: relative;
  width: 100vw; height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a0a1a;
}
#gameCanvas {
  display: block;
  max-width: 100vw;
  max-height: 100vh;
  object-fit: contain;
  background: #08070f;
  touch-action: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}
#score-display {
  position: absolute;
  top: 18px; right: 24px;
  font-size: 32px;
  font-weight: 900;
  color: #e0d0ff;
  text-shadow: 0 2px 12px #9b59b688;
  letter-spacing: 2px;
  z-index: 10;
  pointer-events: none;
}
#game-over-overlay, #start-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,26,0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
}
#game-over-overlay.hidden, #start-overlay.hidden {
  display: none;
}
#game-over-box, #start-box {
  background: linear-gradient(135deg, #0c0a16 60%, #0d0b18 100%);
  border-radius: 18px;
  padding: 36px 40px;
  text-align: center;
  box-shadow: 0 0 60px #9b59b622, inset 0 0 30px #06050a;
  border: 2px solid #9b59b644;
}
#game-over-box h1, #start-box h1 {
  color: #c39bd3;
  font-size: 32px;
  margin-bottom: 12px;
  text-shadow: 0 0 18px #9b59b666;
}
#game-over-box p, #start-box p {
  color: #b0c4de;
  font-size: 17px;
  margin-bottom: 8px;
}
#restart-btn, #start-btn {
  margin-top: 18px;
  padding: 14px 44px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #9b59b6 0%, #6c3483 100%);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 4px 18px #9b59b655;
  transition: transform 0.12s;
}
#restart-btn:active, #start-btn:active {
  transform: scale(0.95);
}
