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

body {
  background: #0a0519;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  overflow: hidden;
}

#game-container {
  position: relative;
  width: 1200px;
  max-width: 100vw;
}

#game {
  display: block;
  width: 100%;
  height: auto;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}

#login-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

#login-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  pointer-events: all;
  margin-top: 60px;
}

#login-form input {
  width: 280px;
  padding: 10px 14px;
  font-size: 18px;
  font-family: monospace;
  background: rgba(20, 15, 50, 0.85);
  border: 2px solid #5566aa;
  color: #fff;
  border-radius: 4px;
  outline: none;
  text-align: center;
}

#login-form input:focus {
  border-color: #88aaff;
  box-shadow: 0 0 8px rgba(100, 150, 255, 0.4);
}

#login-form input::placeholder {
  color: #6677aa;
}

#login-error {
  color: #ff6666;
  font-family: monospace;
  font-size: 14px;
  min-height: 20px;
  text-align: center;
}
