* { box-sizing: border-box; }
html, body { margin: 0; height: 100%; overflow: hidden; background: #0d0f12; font-family: system-ui, 'Segoe UI', Roboto, sans-serif; color: #eee; }
#gl, #hud { position: fixed; inset: 0; width: 100%; height: 100%; display: block; }
#hud { pointer-events: none; }

#overlay, #death {
  position: fixed; inset: 0; display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle at 50% 30%, rgba(60,45,30,0.92), rgba(10,10,12,0.97));
  z-index: 10;
}
#death { display: none; background: rgba(60,10,10,0.75); }
.panel {
  background: rgba(18,18,20,0.92); border: 1px solid #4a3c28; border-radius: 10px;
  padding: 28px 34px; width: min(560px, 92vw); text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.panel h1 { font-size: 44px; margin: 0 0 6px; letter-spacing: 4px; color: #cd412b; }
.panel h1 span { color: #e8dcc0; }
.panel h2 { color: #ff7a5c; letter-spacing: 3px; }
.sub { color: #b6ab95; font-size: 14px; margin: 0 0 18px; }
input {
  width: 100%; padding: 12px 14px; font-size: 16px; border-radius: 6px;
  border: 1px solid #5a4a32; background: #14140f; color: #f0e6d0; outline: none;
}
button {
  margin-top: 12px; padding: 12px 24px; font-size: 15px; font-weight: 700; letter-spacing: 2px;
  background: linear-gradient(#c8622b, #9c3f1c); color: #fff; border: none; border-radius: 6px; cursor: pointer;
}
button:hover { filter: brightness(1.12); }
#status { margin-top: 10px; color: #ffb37a; min-height: 18px; font-size: 13px; }
.keys { margin-top: 18px; font-size: 12px; color: #9c917c; line-height: 1.8; }
.keys b { color: #e8c48a; }

#craft, #boxui {
  display: none; position: fixed; top: 80px; left: 50%; transform: translateX(-50%);
  width: min(520px, 92vw); max-height: 70vh; overflow: auto; z-index: 9;
  background: rgba(16,16,18,0.95); border: 1px solid #4a3c28; border-radius: 8px; padding: 16px;
}
#boxui { top: auto; bottom: 120px; width: min(420px, 92vw); }
#craft h3, #boxui h3 { margin: 0 0 12px; color: #e8c48a; }
#craftlist { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.craftitem {
  background: #1e1b17; border: 1px solid #3a3128; border-radius: 6px; padding: 10px; cursor: pointer;
  display: flex; flex-direction: column; gap: 4px; font-size: 13px;
}
.craftitem:hover { border-color: #c8622b; }
.craftitem span { color: #a2977f; font-size: 11px; }
#boxui div { margin: 4px 0; font-size: 13px; }
#boxui button { margin: 4px 4px 0 0; padding: 6px 10px; font-size: 11px; letter-spacing: 1px; }
#boxui .row { display: flex; flex-wrap: wrap; }

#chatbar { display: none; position: fixed; bottom: 150px; left: 20px; width: min(460px, 80vw); z-index: 9; }
#chatbar input { background: rgba(0,0,0,0.75); }
