* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #1a1a2e;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  font-family: 'Press Start 2P', 'Courier New', monospace;
  color: #fff;
}

#game-wrapper {
  position: relative;
  border: 4px solid #e94560;
  box-shadow: 0 0 40px #e94560aa, 0 0 80px #0f3460aa;
}

#hud {
  background: #0f3460;
  padding: 8px 16px;
  display: flex;
  gap: 32px;
  font-size: 11px;
  letter-spacing: 1px;
  border-bottom: 2px solid #e94560;
}

#hud span {
  color: #f5c518;
}

canvas {
  display: block;
  background: #5c94fc;
  image-rendering: pixelated;
}

#message {
  position: absolute;
  inset: 0;
  top: 36px; /* below HUD */
  background: rgba(0,0,0,0.75);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  z-index: 10;
}

#message.hidden {
  display: none;
}

#message-title {
  font-size: 28px;
  color: #f5c518;
  text-shadow: 3px 3px 0 #c0392b;
  animation: pulse 1s infinite alternate;
}

#message-sub {
  font-size: 13px;
  color: #ddd;
}

#message-btn {
  padding: 12px 32px;
  font-family: inherit;
  font-size: 14px;
  background: #e94560;
  color: #fff;
  border: none;
  cursor: pointer;
  letter-spacing: 2px;
  box-shadow: 4px 4px 0 #c0392b;
  transition: transform 0.1s;
}

#message-btn:hover {
  transform: scale(1.05);
}

#controls-hint {
  margin-top: 12px;
  font-size: 10px;
  color: #aaa;
  letter-spacing: 1px;
}

@keyframes pulse {
  from { transform: scale(1); }
  to   { transform: scale(1.04); }
}
