*,:before,:after{box-sizing:border-box;margin:0;padding:0}:root{--bg:#0f172a;--surface:#1e293b;--border:#334155;--text:#e2e8f0;--text-muted:#94a3b8;--accent:#38bdf8;--accent-glow:#38bdf822;--success:#4ade80;--error:#f87171;--cell-size:38px;--font:"Segoe UI", system-ui, -apple-system, sans-serif}body{font-family:var(--font);background:var(--bg);color:var(--text);justify-content:center;min-height:100vh;padding:1rem;display:flex}#app{width:100%;max-width:960px}header{text-align:center;padding:1.5rem 0 1rem}header h1{color:var(--accent);letter-spacing:.02em;font-size:1.8rem;font-weight:700}.subtitle{color:var(--text-muted);margin-top:.25rem;font-size:.95rem}#game-container{gap:1.5rem;margin-top:1rem;display:flex}#grid-wrapper{flex-shrink:0;overflow-x:auto}#crossword-grid{-webkit-user-select:none;user-select:none;gap:2px;display:grid}.cell{width:var(--cell-size);height:var(--cell-size);background:var(--surface);border:1px solid var(--border);border-radius:3px;justify-content:center;align-items:center;display:flex;position:relative}.cell.black{background:0 0;border-color:#0000}.cell input{width:100%;height:100%;color:var(--text);text-align:center;text-transform:uppercase;caret-color:var(--accent);background:0 0;border:none;outline:none;font-size:1rem;font-weight:600}.cell input:focus{background:var(--accent-glow)}.cell .cell-number{color:var(--accent);pointer-events:none;z-index:2;font-size:.6rem;font-weight:700;line-height:1;position:absolute;top:2px;left:3px}.cell input{z-index:1;padding-top:6px;position:relative}.cell.correct input{color:var(--success)}.cell.wrong input{color:var(--error)}.cell.revealed input{color:var(--accent)}.cell.highlight{border-color:var(--accent);background:#38bdf810}#clues-panel{flex:1;min-width:0;max-height:70vh;padding-right:.5rem;overflow-y:auto}.clue-section h2{text-transform:uppercase;letter-spacing:.1em;color:var(--accent);border-bottom:1px solid var(--border);margin-bottom:.5rem;padding-bottom:.3rem;font-size:.85rem}.clue-section+.clue-section{margin-top:1.25rem}.clue-section ul{list-style:none}.clue-section li{cursor:pointer;color:var(--text-muted);border-radius:4px;padding:.35rem .5rem;font-size:.85rem;line-height:1.35;transition:background .15s}.clue-section li:hover{background:var(--accent-glow);color:var(--text)}.clue-section li.active{background:var(--accent-glow);color:var(--accent)}.clue-section li .clue-num{color:var(--text);margin-right:.3rem;font-weight:700}#controls{flex-wrap:wrap;justify-content:center;gap:.75rem;margin-top:1.25rem;display:flex}#controls button{border:1px solid var(--border);background:var(--surface);color:var(--text);font-size:.85rem;font-family:var(--font);cursor:pointer;border-radius:6px;padding:.55rem 1.4rem;transition:all .15s}#controls button:hover{border-color:var(--accent);color:var(--accent);background:var(--accent-glow)}#btn-check{border-color:var(--success)!important;color:var(--success)!important}#btn-check:hover{background:#4ade8018!important}#btn-glossary{border-color:var(--accent)!important;color:var(--accent)!important}#btn-glossary:hover{background:var(--accent-glow)!important}.modal-overlay{-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px);z-index:100;background:#000000b3;justify-content:center;align-items:center;padding:1rem;display:flex;position:fixed;inset:0}.modal-overlay.hidden{display:none}.modal{background:var(--surface);border:1px solid var(--border);border-radius:12px;flex-direction:column;width:100%;max-width:700px;max-height:85vh;display:flex;box-shadow:0 24px 48px #0006}.modal-header{border-bottom:1px solid var(--border);justify-content:space-between;align-items:center;padding:1rem 1.25rem;display:flex}.modal-header h2{color:var(--accent);font-size:1.1rem;font-weight:700}.modal-close{color:var(--text-muted);cursor:pointer;background:0 0;border:none;padding:0 .25rem;font-size:1.5rem;line-height:1;transition:color .15s}.modal-close:hover{color:var(--text)}.modal-tabs{border-bottom:1px solid var(--border);flex-shrink:0;gap:0;padding:0 .5rem;display:flex;overflow-x:auto}.tab-btn{color:var(--text-muted);font-size:.78rem;font-family:var(--font);cursor:pointer;white-space:nowrap;background:0 0;border:none;border-bottom:2px solid #0000;padding:.6rem .9rem;transition:all .15s}.tab-btn:hover{color:var(--text);background:var(--accent-glow)}.tab-btn.active{color:var(--accent);border-bottom-color:var(--accent)}.modal-body{flex:1;padding:1rem 1.25rem;overflow-y:auto}.glossary-entry{border-bottom:1px solid var(--border);padding:.75rem 0}.glossary-entry:last-child{border-bottom:none}.glossary-term{color:var(--text);margin-bottom:.2rem;font-size:.95rem;font-weight:700}.glossary-def{color:var(--text-muted);font-size:.85rem;line-height:1.45}.glossary-example{color:var(--text-muted);border-left:2px solid var(--accent);margin-top:.3rem;padding-left:.75rem;font-size:.8rem;font-style:italic;line-height:1.4}.glossary-example strong{color:var(--text);font-style:normal}.modal-body::-webkit-scrollbar{width:4px}.modal-body::-webkit-scrollbar-track{background:0 0}.modal-body::-webkit-scrollbar-thumb{background:var(--border);border-radius:4px}.modal-tabs::-webkit-scrollbar{height:3px}.modal-tabs::-webkit-scrollbar-thumb{background:var(--border);border-radius:3px}#message{text-align:center;border-radius:6px;margin-top:1rem;padding:.75rem;font-size:.9rem;font-weight:600}#message.hidden{display:none}#message.success{color:var(--success);background:#4ade8015;border:1px solid #4ade8030}#message.error{color:var(--error);background:#f8717115;border:1px solid #f8717130}@media (width<=800px){#game-container{flex-direction:column;align-items:center}#clues-panel{width:100%;max-height:none}#grid-wrapper{justify-content:center;width:100%;display:flex}}@media (width<=500px){:root{--cell-size:28px}body{padding:.5rem}header{padding:1rem 0 .5rem}header h1{font-size:1.4rem}.subtitle{font-size:.8rem}#game-container{gap:1rem;margin-top:.5rem}#grid-wrapper{-webkit-overflow-scrolling:touch;justify-content:flex-start;overflow-x:auto}.cell input{padding-top:5px;font-size:.8rem}.cell .cell-number{font-size:.5rem}#controls{gap:.4rem;margin-top:.75rem}#controls button{padding:.5rem .8rem;font-size:.75rem}.clue-section li{padding:.3rem .4rem;font-size:.8rem}.clue-section h2{font-size:.78rem}.modal{border-radius:8px;max-height:90vh;margin:0}.modal-overlay{padding:.5rem}.modal-header{padding:.75rem 1rem}.modal-header h2{font-size:.95rem}.modal-body{padding:.75rem 1rem}.tab-btn{padding:.5rem .65rem;font-size:.7rem}.glossary-term{font-size:.85rem}.glossary-def{font-size:.78rem}.glossary-example{font-size:.72rem}}@media (width<=360px){:root{--cell-size:24px}.cell input{padding-top:4px;font-size:.7rem}.cell .cell-number{font-size:.45rem;top:1px;left:2px}header h1{font-size:1.2rem}#controls button{padding:.45rem .6rem;font-size:.7rem}}#clues-panel::-webkit-scrollbar{width:4px}#clues-panel::-webkit-scrollbar-track{background:0 0}#clues-panel::-webkit-scrollbar-thumb{background:var(--border);border-radius:4px}
