:root { background: #090b0c; color: #e6dfc8; font-family: Impact, "Arial Black", system-ui, sans-serif; }
* { box-sizing: border-box; }
body { margin: 0; min-height: 100vh; display: grid; place-items: center; overflow: hidden; }
.game-shell { position: relative; width: min(100vw, 177.78vh); aspect-ratio: 16 / 9; box-shadow: 0 0 70px #000; background: #000; }
canvas { width: 100%; height: 100%; display: block; image-rendering: pixelated; cursor: crosshair; }
.overlay { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px; padding: 28px; text-align: center; background: radial-gradient(circle, #26201a99, #030405ee); }
.overlay.hidden { display: none; }
.eyebrow { margin: 0; color: #de9b38; font-size: clamp(11px, 1.3vw, 16px); letter-spacing: .2em; }
h1 { margin: 0; color: #d3c7a6; font-size: clamp(44px, 8vw, 110px); line-height: .86; letter-spacing: .04em; text-shadow: 5px 5px #63201b, 9px 9px #000; }
.overlay p:not(.eyebrow) { max-width: 560px; margin: 0; font: 600 clamp(14px, 1.7vw, 20px)/1.5 system-ui, sans-serif; color: #c5bdac; }
button { border: 3px solid #e1a13f; background: #7c261d; color: #ffe8ad; padding: 12px 30px; font: inherit; font-size: 20px; letter-spacing: .08em; cursor: pointer; box-shadow: inset 0 0 0 2px #260909, 4px 4px #000; }
button:hover { background: #a63b25; }
small { color: #989181; font: 12px/1.5 system-ui, sans-serif; }
.message { position: absolute; top: 12%; width: 100%; text-align: center; color: #ffe7a7; font-size: clamp(18px, 3vw, 36px); text-shadow: 3px 3px #310c08; pointer-events: none; opacity: 0; transition: opacity .2s; }
.message.show { opacity: 1; }
