* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { height: 100%; overflow: hidden; background: #0e1116; font-family: system-ui, sans-serif; }
#game { display: block; width: 100vw; height: 100vh; cursor: crosshair; }
#hud {
  position: fixed; left: 12px; top: 12px; color: #d7e0ea;
  font-size: 13px; line-height: 1.4; pointer-events: none;
  text-shadow: 0 1px 2px #000;
}
#status { font-weight: 600; }
#help { opacity: 0.7; margin-top: 2px; }
#skills {
  margin-top: 10px; background: rgba(14,17,22,0.6); padding: 6px 10px;
  border-radius: 6px; min-width: 140px; display: inline-block;
}
.skill-title { font-weight: 600; margin-bottom: 4px; }
.skill-row { display: flex; justify-content: space-between; gap: 12px; font-size: 12px; }

/* Login overlay */
.overlay {
  position: fixed; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(8,10,14,0.82); z-index: 10;
}
#login-form {
  background: #161b22; padding: 28px 32px; border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5); width: 280px; text-align: center;
  border: 1px solid #2a313c;
}
#login-form h1 { color: #ffd24a; font-size: 20px; margin-bottom: 18px; font-weight: 700; }
#login-form .row { margin-bottom: 12px; }
#login-form input {
  width: 100%; padding: 10px 12px; border-radius: 6px; border: 1px solid #2a313c;
  background: #0e1116; color: #e6edf3; font-size: 14px; outline: none;
}
#login-form input:focus { border-color: #ffd24a; }
#login-form .buttons { display: flex; gap: 10px; }
#login-form button {
  flex: 1; padding: 10px; border-radius: 6px; border: none; cursor: pointer;
  font-size: 14px; font-weight: 600; background: #ffd24a; color: #1a1a1a;
}
#login-form button:hover { background: #ffdd6e; }
#login-form .msg { min-height: 16px; margin-top: 10px; font-size: 12px; color: #ff8a8a; }
