* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: linear-gradient(180deg, #0a0a2e 0%, #000000 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  font-family: monospace;
  color: #fff;
}

#game-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

canvas {
  display: block;
  image-rendering: pixelated;
  cursor: none;
  box-shadow: 0 0 30px rgba(0, 120, 255, 0.15);
  border: 1px solid #1a1a3e;
}

#gangsta-banner {
  font-size: 12px;
  color: #666;
  text-align: center;
  padding: 4px 0;
  letter-spacing: 0.5px;
}

#gangsta-banner a {
  color: #4d8eff;
  text-decoration: none;
  font-weight: bold;
}

#gangsta-banner a:hover {
  color: #7ab3ff;
  text-decoration: underline;
}

#controls-hint {
  font-size: 11px;
  color: #555;
  text-align: center;
  padding: 5px 10px;
  letter-spacing: 0.5px;
}