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

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #0a0a14;
  font-family: 'Segoe UI', Verdana, Arial, sans-serif;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
}

#game {
  background: #000;
  max-width: 100vw;
  max-height: 100vh;
  cursor: pointer;
  image-rendering: auto;
  touch-action: none;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  -webkit-user-select: none;
}

#loading {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffd166;
  font-size: 22px;
  letter-spacing: 4px;
  background: #0a0a14;
  z-index: 10;
}