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

body {
  background: #0a0a12;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  overflow: hidden;
}

#game-wrapper {
  position: relative;
  border: 3px solid #3a3a5c;
  border-radius: 8px;
  box-shadow: 0 0 40px rgba(100, 100, 255, 0.15), 0 0 80px rgba(50, 50, 120, 0.1);
}

#gameCanvas {
  display: block;
  background: #1a1a2e;
  border-radius: 5px;
}

#hud {
  position: absolute;
  top: 12px;
  left: 12px;
  pointer-events: none;
}

#zone-label {
  background: rgba(10, 10, 30, 0.85);
  color: #e8d8b0;
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1px solid rgba(200, 180, 140, 0.3);
  backdrop-filter: blur(4px);
  text-shadow: 0 0 10px rgba(232, 216, 176, 0.3);
  transition: opacity 0.4s ease;
}

#coords {
  margin-top: 6px;
  background: rgba(10, 10, 30, 0.7);
  color: #8888aa;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-family: 'Courier New', monospace;
  border: 1px solid rgba(100, 100, 160, 0.2);
}

#minimap-container {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(10, 10, 30, 0.85);
  border: 1px solid rgba(200, 180, 140, 0.25);
  border-radius: 6px;
  padding: 6px;
  backdrop-filter: blur(4px);
}

#minimapCanvas {
  display: block;
  border-radius: 3px;
}

#minimap-label {
  text-align: center;
  color: #666688;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
}

#controls-help {
  position: absolute;
  bottom: 12px;
  left: 12px;
  color: #555577;
  font-size: 12px;
  background: rgba(10, 10, 30, 0.6);
  padding: 4px 12px;
  border-radius: 4px;
  border: 1px solid rgba(100, 100, 160, 0.15);
  letter-spacing: 0.5px;
}
