body {
  background: #181018;
  min-height: 100vh;
  margin: 0;
  font-family: 'Press Start 2P', Arial, sans-serif;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.game-title {
  font-size: 2.5rem;
  letter-spacing: 0.1em;
  margin: 48px 0 10px 0;
  color: #fff;
  text-shadow: 0 2px 16px #ff2222, 0 1px 0 #000;
  text-align: center;
  font-family: 'Brush Script MT', 'Pacifico', cursive, sans-serif;
}

.score-ui {
  font-size: 1rem;
  margin-bottom: 36px;
  margin-top: 0;
  color: #fff;
  background: linear-gradient(90deg, #2a0a0a 0%, #ff2222 50%, #2a0a0a 100%);
  border: 2.5px solid #ff2222;
  border-radius: 18px;
  padding: 14px 48px;
  box-shadow: 0 2px 24px #ff222244, 0 0 0 4px #000 inset;
  text-align: center;
  min-width: 180px;
  font-family: 'Press Start 2P', Arial, sans-serif;
  letter-spacing: 0.08em;
  text-shadow: 0 2px 8px #ff2222, 0 1px 0 #000;
  transition: box-shadow 0.2s, background 0.2s;
  position: relative;
  z-index: 2;
}

.score-ui::after {
  content: '';
  display: block;
  position: absolute;
  left: 10%;
  right: 10%;
  top: 0;
  height: 8px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.33) 50%, rgba(255,255,255,0.18) 100%);
  pointer-events: none;
}

.canvas-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  margin-top: 18px;
}

#gameCanvas {
  display: block;
  margin: 0 auto;
  box-shadow: 0 0 32px #ff222288, 0 2px 32px #000a;
  border-radius: 16px;
  background: transparent;
}
