*{margin:0;padding:0;box-sizing:border-box}:root{--ice-white: #f0f8ff;--ice-pale: #cce5ff;--ice-blue: #99caff;--ocean-dark: #1a3a5c;--ocean-deep: #0d1f33;--warmth-orange: #ff6b35;--hunger-green: #4caf50;--energy-yellow: #ffc107;--text-light: #e8f4fc;--text-muted: #8cb4d4;--bg-dark: #0a1628}body{font-family:Courier New,monospace;background:var(--ocean-deep);color:var(--text-light);overflow:hidden;height:100vh;width:100vw}#game-container{position:relative;width:100%;height:100%;display:flex;justify-content:center;align-items:center}#game-canvas{display:block;image-rendering:pixelated}.screen{position:absolute;top:0;left:0;width:100%;height:100%;display:flex;flex-direction:column;justify-content:center;align-items:center;background:linear-gradient(180deg,var(--ocean-deep) 0%,var(--bg-dark) 100%);z-index:100;transition:opacity .3s ease}.screen.hidden{display:none}.screen.active{display:flex}#title-screen h1{font-size:4rem;letter-spacing:.5rem;color:var(--ice-white);text-shadow:0 0 20px var(--ice-blue);margin-bottom:.5rem}#title-screen .subtitle{font-size:1rem;color:var(--text-muted);margin-bottom:3rem;letter-spacing:.2rem}.primary-btn,.secondary-btn,.action-btn{padding:1rem 2rem;font-family:inherit;font-size:1rem;font-weight:700;letter-spacing:.1rem;cursor:pointer;border:none;transition:all .2s ease;margin:.5rem}.primary-btn{background:var(--ice-blue);color:var(--ocean-deep)}.primary-btn:hover{background:var(--ice-white);transform:scale(1.05)}.secondary-btn{background:transparent;color:var(--text-muted);border:1px solid var(--text-muted)}.secondary-btn:hover{color:var(--text-light);border-color:var(--text-light)}.action-btn{background:var(--ocean-dark);color:var(--text-light);border:1px solid var(--ice-blue)}.action-btn:hover{background:var(--ice-blue);color:var(--ocean-deep)}#game-hud{position:absolute;top:1rem;left:1rem;right:1rem;display:flex;justify-content:space-between;align-items:flex-start;pointer-events:none;z-index:50}#game-hud.hidden{display:none}.stats-panel{display:flex;flex-direction:column;gap:.5rem;background:#0a1628f2;padding:1rem;border-radius:8px;border:1px solid var(--ice-blue);box-shadow:0 4px 12px #0000004d;-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px)}.stat{display:flex;align-items:center;gap:.5rem;min-width:180px}.stat-label{font-size:.75rem;width:60px;color:var(--text-muted)}.stat-bar{flex:1;height:14px;background:var(--ocean-dark);border-radius:4px;overflow:hidden;box-shadow:inset 0 1px 3px #0006}.bar-fill{height:100%;transition:width .3s ease}.bar-fill.warmth{background:linear-gradient(90deg,var(--warmth-orange),#ff8c5a);box-shadow:0 0 6px #ff6b35b3}.bar-fill.hunger{background:linear-gradient(90deg,var(--hunger-green),#81c784);box-shadow:0 0 6px #4caf50b3}.bar-fill.energy{background:linear-gradient(90deg,var(--energy-yellow),#ffd54f);box-shadow:0 0 6px #ffc107b3}.stat-value{font-size:.75rem;width:30px;text-align:right;color:var(--text-light)}.cycle-panel,.actions-panel{background:#0a1628f2;padding:.75rem 1.5rem;border-radius:8px;border:1px solid var(--ice-blue);text-align:center;box-shadow:0 4px 12px #0000004d;-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px);min-width:100px}.cycle-label,.actions-label{display:block;font-size:.65rem;color:var(--text-muted);letter-spacing:.1rem}#cycle-counter,#actions-counter{font-size:1.5rem;color:var(--ice-white);font-weight:700}#game-controls{position:absolute;bottom:1rem;left:50%;transform:translate(-50%);display:flex;gap:.5rem;z-index:50}#game-controls.hidden{display:none}#inventory-panel{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);background:#0a1628f2;border:2px solid var(--ice-blue);border-radius:8px;padding:1rem;z-index:60;min-width:300px}#inventory-panel.hidden{display:none}.panel-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:1rem;padding-bottom:.5rem;border-bottom:1px solid var(--ice-blue)}.panel-header h3{font-size:1rem;color:var(--ice-white);letter-spacing:.1rem}#inventory-count{font-size:.8rem;color:var(--text-muted)}.inventory-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:.5rem}.inventory-slot{width:50px;height:50px;background:var(--ocean-dark);border:1px solid var(--ice-blue);border-radius:4px;display:flex;justify-content:center;align-items:center;font-size:1.5rem}.inventory-slot.empty{opacity:.3}.close-btn{background:none;border:none;color:var(--text-muted);font-size:1.5rem;cursor:pointer}.close-btn:hover{color:var(--text-light)}#crafting-panel{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);background:#0a1628f2;border:2px solid var(--ice-blue);border-radius:8px;padding:1rem;z-index:60;min-width:350px;max-height:80vh;overflow-y:auto}#crafting-panel.hidden{display:none}.recipe-list{display:flex;flex-direction:column;gap:.75rem}.recipe-item{display:flex;justify-content:space-between;align-items:center;padding:.75rem;background:var(--ocean-dark);border:1px solid var(--ice-blue);border-radius:4px}.recipe-info{display:flex;flex-direction:column;gap:.25rem}.recipe-name{font-size:.9rem;color:var(--ice-white);font-weight:700}.recipe-ingredients{font-size:.7rem;color:var(--text-muted)}.recipe-ingredients .available{color:var(--hunger-green)}.recipe-ingredients .missing{color:var(--warmth-orange)}.craft-btn{padding:.5rem 1rem;background:var(--ice-blue);color:var(--ocean-deep);border:none;border-radius:4px;font-family:inherit;font-size:.75rem;font-weight:700;cursor:pointer}.craft-btn:hover:not(:disabled){background:var(--ice-white)}.craft-btn:disabled{background:var(--ocean-dark);color:var(--text-muted);cursor:not-allowed;border:1px solid var(--text-muted)}.overlay{position:absolute;top:0;left:0;width:100%;height:100%;background:#0a1628e6;display:flex;justify-content:center;align-items:center;z-index:200}.overlay.hidden{display:none}.modal{background:var(--bg-dark);border:2px solid var(--ice-blue);border-radius:12px;padding:2.5rem;max-width:600px;max-height:85vh;overflow-y:auto;box-shadow:0 10px 30px #00000080}.modal h2{color:var(--ice-white);margin-bottom:1.5rem;text-align:center;letter-spacing:.2rem;font-size:2.2rem;text-shadow:0 0 10px var(--ice-blue)}.instructions{margin-bottom:1.5rem}.instructions h3{color:var(--ice-white);margin-top:1.2rem;margin-bottom:.5rem;font-size:1.1rem;border-bottom:1px solid var(--ice-blue);padding-bottom:.3rem}.instructions p{margin-bottom:.75rem;line-height:1.6;color:var(--text-light)}.instructions ul{margin-bottom:.75rem;padding-left:1.5rem;color:var(--text-light)}.instructions li{margin-bottom:.4rem;line-height:1.5}.instructions strong{color:var(--ice-pale)}#game-over-screen{background:linear-gradient(180deg,#0a1628fa,#1a3a5cfa)}#game-over-screen h2{font-size:3rem;color:var(--warmth-orange);letter-spacing:.3rem;margin-bottom:1rem}.death-cause{font-size:1.2rem;color:var(--text-light);margin-bottom:2rem;max-width:500px;text-align:center;line-height:1.4;word-wrap:break-word;padding:0 1rem}.score,.best-run{font-size:1rem;color:var(--text-muted);margin-bottom:.5rem}.score span,.best-run span{color:var(--ice-white);font-weight:700}#mute-btn{position:absolute;top:1rem;right:1rem;background:#0a1628d9;border:1px solid var(--ice-blue);border-radius:4px;padding:.5rem;font-size:1.25rem;cursor:pointer;z-index:150;transition:all .2s ease}#mute-btn:hover{background:var(--ice-blue)}#mute-btn.hidden{display:none}.toast{position:absolute;bottom:5rem;left:50%;transform:translate(-50%);background:var(--warmth-orange);color:var(--ocean-deep);padding:.75rem 1.5rem;border-radius:4px;font-weight:700;z-index:80;transition:opacity .3s ease}.toast.hidden{opacity:0;pointer-events:none}.difficulty-selector{margin-top:2rem;text-align:center}.difficulty-selector h3{font-size:.8rem;color:var(--text-muted);margin-bottom:.75rem;letter-spacing:.1rem}.difficulty-options{display:flex;gap:.5rem;justify-content:center}.diff-btn{padding:.5rem 1rem;background:transparent;border:1px solid var(--text-muted);color:var(--text-muted);font-family:inherit;font-size:.75rem;cursor:pointer;transition:all .2s ease}.diff-btn:hover:not(:disabled){border-color:var(--ice-white);color:var(--ice-white)}.diff-btn.active{background:var(--ice-blue);border-color:var(--ice-blue);color:var(--ocean-deep)}.diff-btn:disabled{opacity:.5;cursor:not-allowed}.diff-btn .lock-icon{margin-left:.25rem}#difficulty-selector{margin-bottom:2rem;text-align:center}.difficulty-label{font-size:.7rem;color:var(--text-muted);letter-spacing:.15rem;margin-bottom:.75rem}.difficulty-btn{display:flex;flex-direction:column;align-items:center;padding:.6rem 1rem;background:transparent;border:1px solid var(--text-muted);color:var(--text-muted);font-family:inherit;cursor:pointer;transition:all .2s ease;min-width:90px}.difficulty-btn:hover:not(.locked){border-color:var(--ice-pale);color:var(--ice-pale)}.difficulty-btn.selected{background:var(--ice-blue);border-color:var(--ice-blue);color:var(--ocean-deep)}.difficulty-btn.locked{opacity:.5;cursor:not-allowed}.diff-name{font-size:.7rem;font-weight:700;letter-spacing:.1rem}.diff-name:after{content:attr(data-label)}.perm-name{font-size:.55rem;letter-spacing:.05rem}.diff-lock{font-size:.9rem;display:block;margin-top:.1rem}.diff-subtitle{font-size:.6rem;opacity:.7;margin-top:.2rem}.difficulty-locked-msg{margin-top:.75rem;font-size:.7rem;color:var(--warmth-orange);letter-spacing:.05rem}.difficulty-locked-msg.hidden{display:none}@media (max-width: 768px){#game-hud{flex-wrap:wrap;gap:.5rem}.stats-panel{order:1;width:100%}.cycle-panel,.actions-panel{order:2;flex-grow:1;min-width:auto}}
