@import"https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Space+Grotesk:wght@400;500;600&family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,400,0,0&display=swap";:root{color-scheme:light;--ink: #1f2328;--muted: #5c6673;--accent: #f45b69;--accent-dark: #b83d49;--paper: #fdf7f0;--card: #ffffff;--border: #e4ddd4;--shadow: rgba(31, 35, 40, .12);--correct: #2f9e44;--wrong: #d9480f;--highlight: #f6c453}*{box-sizing:border-box}body{margin:0;font-family:Space Grotesk,Segoe UI,sans-serif;background:radial-gradient(circle at top,#ffe7d4,#f7f2ec 42%,#f1f4f8);color:var(--ink);min-height:100vh}main{min-height:100vh;display:flex;align-items:center;justify-content:center;padding:32px 20px 56px}h1,h2{margin:0;font-family:Playfair Display,Times New Roman,serif;font-weight:700}h1{font-size:clamp(2rem,3vw,3rem)}h2{font-size:1.1rem;letter-spacing:.01em}p{margin:0}button{font-family:inherit}.app{width:min(1000px,100%);display:flex;flex-direction:column;gap:24px}.status{color:var(--muted);text-align:center;padding:24px;border-radius:16px;border:1px dashed var(--border);background:#ffffffb3}.status--error{color:var(--accent-dark)}.puzzle{display:flex;flex-direction:column;gap:20px}.puzzle__top{display:flex;justify-content:space-between;align-items:flex-end;gap:16px}.puzzle__meta{display:flex;flex-direction:column}.puzzle__eyebrow{font-size:.85rem;text-transform:uppercase;letter-spacing:.18em;color:var(--muted);margin-bottom:6px}.puzzle__details{display:flex;flex-direction:column;gap:6px;text-align:right;font-size:.9rem;color:var(--muted)}.card{background:var(--card);border-radius:22px;padding:clamp(20px,4vw,32px);border:1px solid var(--border);box-shadow:0 20px 40px var(--shadow);display:flex;flex-direction:column;gap:22px;animation:fadeUp .6s ease}.puzzle__toolbar{display:flex;justify-content:space-between;align-items:center;gap:16px}.puzzle__toolbar--sticky{position:sticky;top:16px;z-index:5;background:#fdf7f0f2;-webkit-backdrop-filter:blur(8px);backdrop-filter:blur(8px);padding:12px 16px;border-radius:16px;border:1px solid var(--border)}.stepper{display:flex;align-items:center;gap:12px}.stepper__status{display:flex;flex-direction:column;gap:6px;font-size:.9rem;color:var(--muted)}.stepper__dots{display:flex;gap:6px}.stepper__dot{width:10px;height:10px;border-radius:999px;background:var(--border);border:none;padding:0;cursor:pointer}.stepper__dot--active{background:var(--highlight);box-shadow:0 0 0 3px #f6c45333}.stepper__dot--solved{background:var(--correct)}.chip-button{border:1px solid var(--border);background:var(--paper);color:var(--ink);padding:8px 16px;border-radius:999px;font-size:.9rem;cursor:pointer;transition:transform .2s ease,box-shadow .2s ease}.chip-button:disabled{opacity:.6;cursor:not-allowed}.chip-button:not(:disabled):hover{transform:translateY(-1px);box-shadow:0 6px 16px #00000014}.progress{font-size:.95rem;color:var(--muted)}.hint-message{font-size:.95rem;color:var(--ink);background:var(--paper);padding:12px 14px;border-radius:12px}.word-grid{display:flex;flex-direction:column;gap:12px;outline:none}.word-card{border:1px solid var(--border);background:var(--paper);padding:20px;border-radius:18px;display:flex;flex-direction:column;gap:16px;transition:transform .2s ease}.word-stack{display:flex;flex-direction:column;gap:20px}.submit-all{display:flex;justify-content:center;margin-top:8px}.leaderboard{margin-top:16px;border:1px solid var(--border);border-radius:16px;padding:16px;background:#ffffffb3}.leaderboard__tabs{display:flex;gap:10px;margin-bottom:12px}.leaderboard__tab{border:1px solid var(--border);background:transparent;color:var(--muted);padding:6px 12px;border-radius:999px;font-size:.85rem;cursor:pointer}.leaderboard__tab--active{background:var(--ink);color:#fff;border-color:var(--ink)}.leaderboard__panel{display:flex;flex-direction:column;gap:8px}.leaderboard__row{display:flex;justify-content:space-between;font-size:.95rem;color:var(--ink)}.word-card--solved{border-color:#2f9e4466;background:#2f9e4414}.word-card--error{animation:shake .3s ease;border-color:var(--accent-dark)}.word-card__jumble,.word-card__slots{display:grid;grid-template-columns:repeat(auto-fit,minmax(44px,1fr));gap:10px}.tile{height:48px;border-radius:12px;border:1px solid var(--border);background:#fffdfb;font-size:1rem;font-weight:600;text-transform:uppercase;cursor:pointer;transition:transform .2s ease,box-shadow .2s ease}.tile--used,.tile--solved{opacity:.4;cursor:not-allowed;box-shadow:none}.slot{height:48px;border-radius:12px;border:1px dashed var(--border);background:#fff;font-size:1rem;font-weight:600;text-transform:uppercase;cursor:pointer}.slot--filled{border-style:solid;background:#fff4ef}.slot--solved{border-color:var(--correct);background:#2f9e441f;color:var(--correct)}.slot--wrong{border-color:var(--wrong);color:var(--wrong);background:#d9480f1a}.word-row{display:flex;gap:8px;flex-wrap:wrap}.cell{width:44px;height:44px;border-radius:12px;border:1px solid var(--border);background:#fffdfb;display:grid;place-items:center;font-size:1.1rem;font-weight:600;text-transform:uppercase;color:var(--ink);cursor:pointer;transition:transform .2s ease,border .2s ease,box-shadow .2s ease}.cell--filled{background:#fff4ef;border-color:#f1c1b8}.cell--correct{background:#2f9e441f;border-color:var(--correct);color:var(--correct)}.cell--wrong{background:#d9480f1f;border-color:var(--wrong);color:var(--wrong)}.cell--active{border-color:var(--highlight);box-shadow:0 0 0 3px #f6c4534d}.cell:disabled{cursor:default;opacity:.75}.section{display:flex;flex-direction:column;gap:16px}.section__header{display:flex;justify-content:space-between;align-items:center;gap:12px}.ghost-button{border:1px solid var(--border);background:transparent;color:var(--muted);padding:6px 12px;border-radius:999px;font-size:.85rem;cursor:pointer}.ghost-button:disabled{opacity:.6;cursor:not-allowed}.letter-bank{display:flex;flex-wrap:wrap;gap:10px}.letter-tile{background:var(--accent);color:#fff;font-size:1rem;width:64px;height:64px;border-radius:16px;border:none;display:grid;grid-template-rows:1fr auto;align-items:center;justify-items:center;gap:4px;box-shadow:0 10px 18px #f45b6940;cursor:pointer}.letter-tile:disabled{opacity:.45;cursor:not-allowed;box-shadow:none}.letter-tile__letter{font-size:1.2rem;font-weight:600}.letter-tile__count{background:#fff3;padding:2px 8px;border-radius:999px;font-size:.75rem}.controls-row{display:grid;grid-template-columns:repeat(auto-fit,minmax(140px,1fr));gap:12px}.controls-row--compact{grid-template-columns:repeat(auto-fit,minmax(110px,1fr));gap:8px}.control-button{height:48px;border-radius:12px;border:1px solid var(--border);background:var(--paper);color:var(--ink);font-size:.95rem;cursor:pointer;text-decoration:none;display:inline-flex;align-items:center;justify-content:center;transition:transform .2s ease,box-shadow .2s ease}.controls-row--compact .control-button{height:40px;font-size:.9rem;padding:0 12px}.word-submit{align-self:flex-end;width:52px;height:40px;padding:0;font-size:1.1rem}.word-submit__icon{font-family:Material Symbols Outlined,sans-serif;font-size:1.25rem;line-height:1}.control-button:disabled{opacity:.6;cursor:not-allowed}.control-button:not(:disabled):hover{transform:translateY(-1px);box-shadow:0 10px 18px #1f232826}.control-button--primary{border:none;background:var(--ink);color:#fff}.submit-message{font-size:1rem;color:var(--accent-dark)}.win-panel{border-radius:16px;padding:18px;background:#2f9e4414;border:1px solid rgba(47,158,68,.3);display:flex;flex-direction:column;gap:10px}.win-panel__actions{display:flex;flex-wrap:wrap;gap:12px}.share-message{font-size:.9rem;color:var(--muted)}.puzzle__footer{display:flex;justify-content:space-between;font-size:.85rem;color:var(--muted)}@keyframes fadeUp{0%{opacity:0;transform:translateY(12px)}to{opacity:1;transform:translateY(0)}}@keyframes shake{0%,to{transform:translate(0)}25%{transform:translate(-6px)}75%{transform:translate(6px)}}@media (max-width: 720px){.puzzle__top{flex-direction:column;align-items:flex-start}.puzzle__details{text-align:left}.puzzle__toolbar{flex-direction:column;align-items:flex-start}.cell{width:40px;height:40px}.letter-tile{width:56px;height:56px}.controls-row--compact{grid-template-columns:repeat(2,minmax(0,1fr))}.stepper{width:100%;justify-content:space-between}}@media (prefers-reduced-motion: reduce){*{animation:none!important;transition:none!important}}
