:root{color-scheme:dark;font-family:ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,sans-serif;line-height:1.5;--lemon: #f7e84d;--lemon-dark: #d4c520;--lime: #8ec63f;--orange: #ff8c42;--bg: #0f1a0a;--card: #1a2a12;--card-border: #2a3a1e;--cell-bg: #1e3014;--cell-hover: #2a4420;--cell-selected: #f7e84d;--text: #f0f5e8;--text-dim: #8a9a78}*{box-sizing:border-box;margin:0;padding:0}html,body,#root{min-height:100vh;background:var(--bg);color:var(--text)}.splash-screen{min-height:100vh;display:flex;align-items:center;justify-content:center;background:linear-gradient(145deg,#0f1a0a,#1a2e10,#0a120a);padding:1rem}.splash-content{text-align:center;max-width:420px}.splash-lemon{font-size:5rem;animation:bounce 2s ease-in-out infinite;filter:drop-shadow(0 0 30px rgba(247,232,77,.4))}@keyframes bounce{0%,to{transform:translateY(0)}50%{transform:translateY(-16px)}}.splash-title{font-size:2.8rem;font-weight:800;background:linear-gradient(135deg,var(--lemon),var(--lime));-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;margin:.5rem 0 .25rem;letter-spacing:-.02em}.splash-subtitle{color:var(--text-dim);font-size:1rem;margin-bottom:2rem;line-height:1.6}.splash-features{display:flex;flex-direction:column;gap:.75rem;margin-bottom:2rem}.splash-feature{display:flex;align-items:center;gap:.75rem;background:var(--card);border:1px solid var(--card-border);border-radius:.75rem;padding:.75rem 1rem;font-size:.95rem}.splash-feature span:first-child{font-size:1.4rem}.btn-play{background:linear-gradient(135deg,var(--lemon),var(--lime));color:#0f1a0a;border:none;padding:.85rem 2.5rem;font-size:1.1rem;font-weight:700;border-radius:2rem;cursor:pointer;transition:transform .15s,box-shadow .15s;letter-spacing:.02em}.btn-play:hover{transform:scale(1.05);box-shadow:0 0 30px #f7e84d4d}.btn-play:active{transform:scale(.97)}.game-container{min-height:100vh;display:flex;flex-direction:column;align-items:center;padding:1rem;max-width:480px;margin:0 auto}.game-header{width:100%;margin-bottom:1rem}.header-top{display:flex;align-items:center;justify-content:space-between;margin-bottom:.25rem}.game-title{font-size:1.4rem;font-weight:800;background:linear-gradient(135deg,var(--lemon),var(--lime));-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}.level-badge{background:var(--card);border:1px solid var(--card-border);padding:.25rem .75rem;border-radius:1rem;font-size:.8rem;font-weight:600;color:var(--lemon)}.level-name{color:var(--text-dim);font-size:.85rem;margin-bottom:.75rem}.stats-bar{display:flex;justify-content:space-between;gap:.5rem;margin-bottom:.5rem}.stat{flex:1;background:var(--card);border:1px solid var(--card-border);border-radius:.5rem;padding:.5rem;text-align:center}.stat-label{display:block;font-size:.65rem;text-transform:uppercase;letter-spacing:.1em;color:var(--text-dim);margin-bottom:.15rem}.stat-value{display:block;font-size:1.2rem;font-weight:700}.stat-value.moves{color:var(--orange)}.progress-bar{width:100%;height:1.25rem;background:var(--card);border:1px solid var(--card-border);border-radius:.75rem;overflow:hidden;position:relative;margin-bottom:.5rem}.progress-fill{height:100%;background:linear-gradient(90deg,var(--lemon-dark),var(--lime));border-radius:.75rem;transition:width .4s ease;min-width:0}.progress-text{position:absolute;top:0;right:0;bottom:0;left:0;display:flex;align-items:center;justify-content:center;font-size:.7rem;font-weight:700;color:var(--bg);mix-blend-mode:difference}.combo-banner{text-align:center;padding:.35rem;background:linear-gradient(90deg,var(--orange),var(--lemon));color:#0f1a0a;font-weight:800;font-size:.9rem;border-radius:.5rem;animation:pulse .6s ease-in-out infinite alternate}@keyframes pulse{0%{transform:scale(1)}to{transform:scale(1.03)}}.board{display:flex;flex-direction:column;gap:4px;padding:.5rem;background:var(--card);border:1px solid var(--card-border);border-radius:.75rem;box-shadow:0 8px 32px #0006}.board-row{display:flex;gap:4px}.cell{width:46px;height:46px;border:2px solid transparent;border-radius:.5rem;background:var(--cell-bg);cursor:pointer;display:flex;align-items:center;justify-content:center;transition:all .15s;padding:0;font-size:1.5rem;position:relative}.cell:hover:not(:disabled){background:var(--cell-hover);transform:scale(1.08)}.cell.selected{border-color:var(--cell-selected);background:#f7e84d26;box-shadow:0 0 12px #f7e84d4d;transform:scale(1.1)}.cell.matched{animation:matchPop .3s ease}.cell.empty{opacity:.3}.cell:disabled{cursor:default}.cell-emoji{font-size:1.5rem;line-height:1;-webkit-user-select:none;user-select:none}@keyframes matchPop{0%{transform:scale(1)}50%{transform:scale(1.3)}to{transform:scale(1)}}.modal-overlay{position:fixed;top:0;right:0;bottom:0;left:0;background:#000000b3;display:flex;align-items:center;justify-content:center;z-index:100;animation:fadeIn .3s ease}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}.modal{background:var(--card);border:1px solid var(--card-border);border-radius:1rem;padding:2rem;text-align:center;max-width:320px;width:90%;animation:slideUp .3s ease}@keyframes slideUp{0%{transform:translateY(30px);opacity:0}to{transform:translateY(0);opacity:1}}.modal-emoji{font-size:3.5rem;margin-bottom:.5rem}.modal h2{font-size:1.5rem;margin-bottom:.5rem}.modal-score{font-size:1.3rem;font-weight:700;color:var(--lemon);margin-bottom:.25rem}.modal-detail{color:var(--text-dim);font-size:.9rem;margin-bottom:1.25rem}.modal .btn-play{width:100%}
