:root{--cell-size:56px;--cell-font:32px;--input-size:44px;--key-height:56px;--key-width:40px;--key-gap:6px}#wordle-game{margin:0 auto;padding:0 8px;text-align:center;font-family:Arial,sans-serif;position:relative;display:flex;justify-content:center}#grid{display:grid;row-gap:6px}.row-wordle{display:grid;grid-template-columns:repeat(5,var(--cell-size));gap:6px;justify-content:center}.cell{width:var(--cell-size);height:var(--cell-size);border:2px solid #d3d6da;display:flex;align-items:center;justify-content:center;font-size:var(--cell-font);font-weight:700;background:#fff;transform-style:preserve-3d}.cell.flip{animation:flip .6s ease forwards}@keyframes flip{0%{transform:rotateX(0)}45%{transform:rotateX(90deg);background:#fff}55%{transform:rotateX(90deg)}100%{transform:rotateX(0)}}.cell.correct,.mini-cell.correct{background:#6aaa64;border-color:#6aaa64;color:#fff}.cell.present,.mini-cell.present{background:#c9b458;border-color:#c9b458;color:#fff}.cell.absent,.mini-cell.absent{background:#787c7e;border-color:#787c7e;color:#fff}#current-input{display:flex;justify-content:center;gap:6px;margin:14px 0}.current-letter{width:var(--input-size);height:var(--input-size);border:2px solid #d3d6da;display:flex;align-items:center;justify-content:center;font-size:22px;font-weight:700}#keyboard{margin:0 auto}.keyboard-row{display:flex;justify-content:center;gap:var(--key-gap);margin-bottom:var(--key-gap)}.key{width:var(--key-width);height:var(--key-height);border:none;border-radius:4px;background:#d3d6da;font-size:14px;font-weight:700;cursor:pointer;padding:0}.key-wide{width:calc(var(--key-width) * 1.8);background:#aeb0b4}.key.used{background:#b5b7ba}.key.correct{background:#6aaa64;color:#fff}.key.present{background:#c9b458;color:#fff}.key.absent{background:#787c7e;color:#fff}@media (max-width:768px){:root{--cell-size:50px;--cell-font:28px;--input-size:40px;--key-height:48px;--key-width:auto}#keyboard{width:100%}.keyboard-row{gap:4px}.key{flex:1 1 0;min-width:0;font-size:13px}.key-wide{flex:1.5 1 0}.wordle-layout{width:100%}}#modal{position:fixed;inset:0;background:rgba(0,0,0,.5);display:none;align-items:center;justify-content:center;z-index:1000}#modal-content{background:#fff;padding:20px;border-radius:8px;width:260px;text-align:center}.mini-grid{display:grid;row-gap:4px;margin-bottom:15px}.mini-row{display:grid;grid-template-columns:repeat(5,18px);gap:4px;justify-content:center}.mini-cell{width:18px;height:18px;background:#d3d6da}.close-modal{margin:0 auto;padding:8px 20px;border:none;background:#6aaa64;color:#fff;border-radius:4px;cursor:pointer}#modal-rules{position:fixed;top:0;left:0;width:100vw;height:100vh;display:none;align-items:center;justify-content:center;background:rgba(0,0,0,.55);z-index:3000}#modal-rules .modal-content{background:#fff;width:90%;max-width:420px;padding:20px 22px;border-radius:12px;box-shadow:0 10px 40px rgba(0,0,0,.25);animation:modalFadeIn .2s ease-out;max-height:90vh;overflow-y:auto;display:flex;flex-direction:column;position:fixed}@keyframes modalFadeIn{from{transform:translateY(10px);opacity:0}to{transform:translateY(0);opacity:1}}#modal-rules h2{margin-top:0;font-size:24px}.example{margin-top:16px}.rule-row{display:flex;align-items:center;margin-bottom:10px}.rule-cell{width:32px;height:32px;border:2px solid #d3d6da;margin-right:8px;display:flex;justify-content:center;align-items:center;font-weight:700;font-size:18px}.rule-cell.correct{background:#6aaa64;color:#fff;border-color:#6aaa64}.rule-cell.present{background:#c9b458;color:#fff;border-color:#c9b458}.rule-cell.absent{background:#787c7e;color:#fff;border-color:#787c7e}#modal-rules #close-rules{margin-top:16px;background:#6aaa64;color:#fff;border:none;padding:8px 16px;cursor:pointer;border-radius:4px}.wordle-header{display:flex;justify-content:center;align-items:center;gap:1rem;margin-bottom:8px}.rules-btn{top:16px;right:16px;width:36px;height:36px;border-radius:50%;border:none;background:#d3d6da;color:#111;font-size:18px;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:background .15s ease,transform .1s ease}.rules-btn:hover{background:#c0c4c8}.rules-btn:active{transform:scale(.95)}@media (max-width:420px){.rules-btn{top:12px;right:12px}}.share-btn{display:block;width:100%;margin:12px auto 8px;padding:10px 0;border:none;border-radius:6px;background:#6aaa64;color:#fff;font-size:15px;font-weight:700;cursor:pointer;transition:background .15s ease,transform .1s ease}.share-btn:hover{background:#5e9f59}.share-btn:active{transform:scale(.98)}.row{max-width:100%}#final-word{color:#333;font-size:14px;text-align:center}.archive-wrapper{display:flex;flex-direction:column;align-items:center;gap:2rem}.archive-item{display:flex;justify-content:space-between;align-items:flex-start;padding:10px 6px;border-bottom:1px solid #eee;gap:2rem;margin:0 auto}.archive-item a{font-weight:700;text-decoration:none;color:#333}.archive-item span{color:#777;font-size:13px}.pagination{display:flex;justify-content:center;gap:6px;margin:20px 0}.pagination li{list-style:none}