#word-search #wrapper{margin:0 auto;width:100%;max-width:320px;position:relative}#word-search #wrapper #puzzle{display:grid;grid-template-columns:repeat(7,50px);gap:5px;margin-bottom:20px;perspective:1000px;justify-content:center;touch-action:none;-webkit-user-select:none;user-select:none}@media(max-width:576px){#word-search #wrapper #puzzle{grid-template-columns:repeat(7,40px);gap:3px}}#word-search #wrapper .cell{width:50px;height:50px;display:flex;justify-content:center;align-items:center;font-weight:700;font-size:1.2rem;background-color:#fff;cursor:pointer;-webkit-user-select:none;user-select:none;border-radius:8px;box-shadow:0 4px 6px #0000001a;transition:all .3s ease;transform-style:preserve-3d}@media(max-width:576px){#word-search #wrapper .cell{width:40px;height:40px}}#word-search #wrapper .cell:hover{transform:translateZ(10px);box-shadow:0 8px 12px #0003}#word-search #wrapper .cell.selected{background-color:#f9b406;transform:translateZ(20px) rotate(5deg)}#word-search #wrapper .cell.found{background-color:#7fff7f;transform:translateZ(15px) rotate(-5deg)}#word-search #wrapper #words{margin-top:20px;display:flex;flex-wrap:wrap;justify-content:center;gap:10px}@media(max-width:576px){#word-search #wrapper #words{gap:5px;font-size:1rem}}#word-search #wrapper .word{padding:8px 16px;background-color:#f7065d;border:2px solid #F7065D;border-radius:20px;transition:all .3s ease;color:#fff}@media(max-width:576px){#word-search #wrapper .word{padding:4px 6px;border-radius:10px}}#word-search #wrapper .word.found{background-color:#7fff7f;border-color:#4caf50;text-decoration:line-through;transform:scale(.95)}@keyframes celebrate{0%,to{transform:translateY(0)}50%{transform:translateY(-20px)}}#word-search h3.no-touch{display:block}.touch #word-search h3.no-touch,#word-search h3.touch{display:none}.touch #word-search h3.touch{display:block}
