:root{--bg-gradient: linear-gradient(180deg, #2563eb 0%, #1e40af 100%);--card-bg: #ffffff;--text-main: #1e293b;--key-default: #e2e8f0;--key-wrong: #94a3b8;--key-correct: #22c55e;--danger: #ef4444}body{margin:0;padding:0;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica,Arial,sans-serif;background:var(--bg-gradient);min-height:100vh;display:flex;justify-content:center;align-items:center;color:var(--text-main);overflow:hidden;touch-action:none}.container{width:100%;height:100vh;display:flex;justify-content:center;align-items:center;padding:16px;box-sizing:border-box}.game-card{background:var(--card-bg);width:100%;max-width:420px;height:100%;max-height:800px;border-radius:24px;display:flex;flex-direction:column;padding:24px;box-shadow:0 20px 25px -5px #0003;position:relative;overflow:hidden}header{display:flex;justify-content:space-between;align-items:center;margin-bottom:20px}h1{margin:0;font-size:1.5rem;color:#1e3a8a}.stats{display:flex;gap:16px;align-items:center}.lives{display:flex;align-items:center;gap:6px;font-weight:700;font-size:1.2rem;color:var(--danger)}.icon-heart{color:var(--danger)}.icon-dead{color:#64748b}.reset-btn{background:#f1f5f9;border:none;border-radius:50%;width:40px;height:40px;display:flex;align-items:center;justify-content:center;cursor:pointer;color:#475569;transition:background .2s}.reset-btn:active{background:#e2e8f0}.drawing-area{flex:1;background:#f8fafc;border-radius:16px;margin-bottom:24px;position:relative;display:flex;justify-content:center;align-items:flex-end;padding-bottom:20px}.hangman-figure{width:120px;height:160px;position:relative}.pole{position:absolute;bottom:0;left:20px;width:4px;height:100%;background:#334155}.pole:before{content:"";position:absolute;bottom:0;left:-20px;width:44px;height:4px;background:#334155;border-radius:2px}.pole:after{content:"";position:absolute;top:0;left:0;width:80px;height:4px;background:#334155;border-radius:2px}.rope{position:absolute;top:0;right:20px;width:2px;height:30px;background:#94a3b8}.head,.body,.arm-left,.arm-right,.leg-left,.leg-right{display:none;background:#1e293b;position:absolute}.head{top:30px;right:6px;width:26px;height:26px;border-radius:50%;border:2px solid #1e293b;box-sizing:border-box}.body{top:56px;right:18px;width:4px;height:50px}.arm-left{top:60px;right:20px;width:30px;height:4px;transform:rotate(30deg);transform-origin:right center}.arm-right{top:60px;right:-8px;width:30px;height:4px;transform:rotate(-30deg);transform-origin:left center}.leg-left{top:100px;right:18px;width:4px;height:40px;transform:rotate(20deg);transform-origin:top center}.leg-right{top:100px;right:18px;width:4px;height:40px;transform:rotate(-20deg);transform-origin:top center}.stage-1 .head,.stage-2 .head,.stage-2 .body,.stage-3 .head,.stage-3 .body,.stage-3 .arm-left,.stage-4 .head,.stage-4 .body,.stage-4 .arm-left,.stage-4 .arm-right,.stage-5 .head,.stage-5 .body,.stage-5 .arm-left,.stage-5 .arm-right,.stage-5 .leg-left,.stage-6 .head,.stage-6 .body,.stage-6 .arm-left,.stage-6 .arm-right,.stage-6 .leg-left,.stage-6 .leg-right{display:block}.word-display{display:flex;justify-content:center;gap:8px;flex-wrap:wrap;margin-bottom:24px;min-height:40px}.letter{font-size:1.5rem;font-weight:700;border-bottom:2px solid #334155;width:24px;text-align:center;color:#1e293b}.letter.missed{color:var(--danger);border-bottom-color:var(--danger)}.status-message{text-align:center;height:24px;margin-bottom:20px;font-weight:500}.win-msg{color:#16a34a}.lose-msg{color:var(--danger)}.info-msg{color:#94a3b8;font-size:.9rem}.keyboard{display:grid;grid-template-columns:repeat(7,1fr);gap:6px}.key-btn{aspect-ratio:1;border:none;background:var(--key-default);border-radius:8px;font-weight:600;font-size:1rem;color:#334155;cursor:pointer;touch-action:manipulation;transition:all .1s}.key-btn:active{transform:scale(.95)}.key-btn:disabled{opacity:.6;cursor:default}.key-btn.wrong{background:var(--key-wrong);color:#fff;opacity:.4}.key-btn.correct{background:var(--key-correct);color:#fff}@media (min-height: 700px){.drawing-area{flex:2}}
