:root{--cell-size: 70px;--game-size: calc(var(--cell-size) * 6);--circle-size: calc(var(--cell-size) * .8);--primary-color: #E8C9A1;--secondary-color: #D4B08A;--text-color: #2d3436;--bg-color: rgba(0, 0, 0, .7)}*{margin:0;padding:0;box-sizing:border-box;touch-action:manipulation;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-touch-callout:none;-webkit-tap-highlight-color:transparent}html,body{height:100%;width:100%;font-family:Nunito,Arial,sans-serif;font-weight:700;overflow:hidden;overscroll-behavior:none;overscroll-behavior-y:none;-webkit-overscroll-behavior:none;-webkit-overscroll-behavior-y:none;-webkit-user-drag:none;-khtml-user-drag:none;-moz-user-drag:none;-o-user-drag:none;user-drag:none}img,canvas,svg,video,audio{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-user-drag:none;-khtml-user-drag:none;-moz-user-drag:none;-o-user-drag:none;user-drag:none;pointer-events:auto;-webkit-touch-callout:none}*{-webkit-context-menu:none;context-menu:none}.game-container{width:100%;height:100vh;background-image:url(./background_2-DgXYpUkq.webp);background-size:cover;background-position:center center;background-repeat:no-repeat;background-attachment:fixed;display:flex;align-items:center;justify-content:center;position:relative}.mobile-start-overlay{position:fixed;top:0;left:0;width:100%;height:100%;background:#000000b3;display:flex;align-items:center;justify-content:center;z-index:10000}.mobile-start-button{background:linear-gradient(145deg,#e8c9a1,#d4b08a);border:none;border-radius:20px;color:#2d3436;font-size:24px;font-weight:700;padding:20px 40px;cursor:pointer;box-shadow:0 8px 16px #0000004d;transition:all .2s ease;-webkit-user-select:none;user-select:none;touch-action:manipulation}.mobile-start-button:hover,.mobile-start-button:active{transform:translateY(-2px);box-shadow:0 12px 20px #0006}.game-content{display:flex;align-items:flex-start;justify-content:flex-start;width:100%;height:100%;gap:30px;padding:30px;box-sizing:border-box}.left-panel,.right-panel{display:flex;flex-direction:column;gap:20px;min-width:150px}.center-panel{display:flex;align-items:center;justify-content:center}.game-area{width:min(var(--game-size),calc(100vh - 40px));height:min(var(--game-size),calc(100vh - 40px));background:var(--bg-color);border:4px solid #5d4a31c4;border-radius:15px;position:relative;display:flex;align-items:center;justify-content:center;padding:5px;box-sizing:border-box}.game-area canvas{border-radius:12px;max-width:100%;max-height:100%}.grid-cell{background:#ffffff1a;border-radius:8px;position:relative;cursor:pointer;transition:all .3s ease}.grid-cell:hover{background:#fff3}.circle{width:80%;height:80%;max-width:80px;max-height:80px;border-radius:50%;background:url(./tile_glow-D6bnHhHI.webp);background-size:cover;background-repeat:no-repeat;display:flex;align-items:center;justify-content:center;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);cursor:pointer;transition:all .3s cubic-bezier(.68,-.55,.265,1.55);box-shadow:inset 0 2px 2px #ffffff80,inset 0 -4px 6px #0000004d,0 3px 8px #00000040,0 0 12px #ffaa3c40;z-index:10}.circle img{width:100%;height:100%;object-fit:contain;pointer-events:none}.circle.active{animation:bounce 1s ease-in-out infinite;z-index:20}.circle.active:after{content:"";position:absolute;bottom:-8px;left:50%;transform:translate(-50%);width:50%;height:6px;background:#0000004d;border-radius:50%;opacity:0;animation:shadowBounce 1s ease-in-out infinite}.circle.moving{transition:all .6s cubic-bezier(.25,.46,.45,.94);z-index:25}.circle.jumping-move{animation:pathJump .125s cubic-bezier(.25,.46,.45,.94);z-index:30}.circle.removing{animation:removeCircle .5s ease-in-out forwards}.score-info{display:flex;flex-direction:column;gap:15px}.score-item{background:var(--primary-color);color:#fff;padding:12px 15px;border-radius:10px;text-align:center;box-shadow:0 4px 15px #e8c9a14d}.score-label{font-size:1.2em;font-weight:700;margin-bottom:8px;opacity:.9}.score-value{font-size:1.4em;font-weight:700;background:#fff;color:var(--text-color);padding:6px 12px;border-radius:6px;box-shadow:inset 0 2px 4px #0000001a;border:1px solid rgba(0,0,0,.1)}.game-controls{display:flex;flex-direction:column;gap:12px}.mobile-landscape-controls{display:none}.control-btn{background:var(--primary-color);color:#fff;border:none;padding:15px 20px;border-radius:12px;cursor:pointer;font-size:1.1em;font-weight:700;transition:all .3s ease;box-shadow:0 6px 20px #e8c9a14d;touch-action:manipulation}.language-switcher-fixed{position:fixed;bottom:20px;left:20px;z-index:9999}.language-toggle{display:flex;background:#2d3436e6;border-radius:8px;border:2px solid #7e4615;overflow:hidden;box-shadow:0 4px 15px #0006;-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px)}.lang-btn{flex:1;padding:4px 8px;background:transparent;color:#fff8b3;border:none;font-size:.7em;font-weight:700;cursor:pointer;transition:all .2s ease;touch-action:manipulation;min-width:24px}.lang-btn:hover{background:#fff8b31a}.lang-btn.active{background:linear-gradient(145deg,#e8c9a1,#d4b08a);color:#2d3436;box-shadow:inset 0 2px 5px #0003}.control-btn:hover{box-shadow:0 8px 25px #e8c9a166;background:var(--secondary-color);transform:translateY(-2px)}.control-btn:active{transform:translateY(0)}.mobile-top-bar{width:100%;display:flex;align-items:center;justify-content:space-between;z-index:1000;gap:15px}.mobile-score{display:flex;align-items:center;gap:10px;background:url(./wood_background-DaD86Nfe.webp);background-size:cover;background-position:center;padding:8px 15px;border-radius:15px;box-shadow:inset 0 2px 5px #0000004d,0 3px 10px #0006;height:50px}.mobile-label{font-size:14px;font-weight:700;font-family:Arial,sans-serif;text-transform:uppercase;letter-spacing:1px;color:#e8c9bd;text-shadow:1px 1px 2px rgba(255,255,255,.3);white-space:nowrap}.mobile-score-value{font-size:20px;font-weight:700;color:#e8c9bd;font-family:Arial,sans-serif;background:#0003;padding:4px 8px;border-radius:6px;border:1px solid rgba(139,69,19,.4);box-shadow:inset 0 1px 3px #0003,0 1px 2px #ffffff4d;text-shadow:1px 1px 2px rgba(255,255,255,.4);min-width:40px;text-align:center}.settings-btn{background:url(./wood_background-DaD86Nfe.webp);background-size:cover;border:none;width:50px;height:50px;border-radius:15px;cursor:pointer;overflow:hidden;display:flex;align-items:center;justify-content:center;box-shadow:inset 0 2px 5px #0000004d,0 3px 10px #0006}.settings-btn:hover{background:linear-gradient(145deg,sienna,peru);box-shadow:0 0 20px #ff6b3580,0 6px 15px #00000080;border-color:#fff8b399}.settings-btn__icon{width:100%;height:100%}.tablet-top-bar{display:none;width:100%;top:15px;left:15px;right:15px;background:linear-gradient(180deg,#1a0d2be6,#2d1b3dd9);border:3px solid #7e4615;border-radius:15px;align-items:center;justify-content:space-between;padding:20px 25px;z-index:1000;box-shadow:0 4px 15px #00000080}.tablet-score-info{display:flex;gap:30px}.tablet-score-item{display:flex;align-items:center;gap:10px;background:url(./wood_background-DaD86Nfe.webp);background-size:cover;background-position:center;padding:10px 24px;border-radius:15px;box-shadow:inset 0 2px 5px #0000004d,0 3px 10px #0006;height:60px}.tablet-score-label{font-size:1.5em;color:#e8c9a1;text-shadow:1px 1px 2px rgba(0,0,0,.8)}.tablet-score-value{font-size:24px;font-weight:700;color:#e8c9bd;font-family:Arial,sans-serif;background:#0003;padding:4px 8px;border-radius:6px;border:1px solid rgba(139,69,19,.4);box-shadow:inset 0 1px 3px #0003,0 1px 2px #ffffff4d;text-shadow:1px 1px 2px rgba(255,255,255,.4);min-width:40px;text-align:center}.tablet-top-bar-buttons{display:flex;align-items:center;gap:30px}.tablet-menu-btn{background:url(./wood_background-DaD86Nfe.webp);background-size:contain;border:2px solid #7e4615;border-radius:12px;width:60px;height:60px;cursor:pointer;transition:all .3s ease;display:flex;align-items:center;justify-content:center;box-shadow:inset 0 2px 5px #0000004d,0 3px 10px #0006}.tablet-menu-btn:hover{background:linear-gradient(145deg,sienna,peru);box-shadow:0 0 20px #ff6b3580,0 6px 15px #00000080}.tablet-menu-btn__icon{width:100%;height:100%}.tablet-menu-btn__icon--pause{width:70%}.tablet-bottom-bar{display:none;position:fixed;bottom:15px;left:50%;transform:translate(-50%);z-index:1000}.mobile-menu-overlay{position:fixed;top:0;left:0;width:100%;height:100vh;background:#0009;z-index:999;opacity:0;visibility:hidden;transition:all .05s ease;overscroll-behavior:none;-webkit-overscroll-behavior:none;touch-action:manipulation}.mobile-menu-overlay.show{opacity:1;visibility:visible}.tablet-menu-overlay{position:fixed;top:0;left:0;width:100%;height:100vh;background:#0009;z-index:1999;opacity:0;visibility:hidden;transition:all .05s ease;overscroll-behavior:none;-webkit-overscroll-behavior:none;touch-action:manipulation}.tablet-menu-overlay.show{opacity:1;visibility:visible}.mobile-settings-menu{position:fixed;top:0;left:0;width:350px;height:100vh;background:linear-gradient(180deg,#1a0d2bfa,#2d1b3df2,#3d2a4ffa);border-right:4px solid #7e4615;box-shadow:4px 0 30px #000c,inset -4px 0 15px #deb8871a;-webkit-backdrop-filter:blur(15px);backdrop-filter:blur(15px);transform:translate(-100%);transition:all .1s cubic-bezier(.4,0,.2,1);z-index:1000;padding:30px 25px;display:flex;flex-direction:column;gap:25px}.mobile-settings-menu.show{transform:translate(0)}.menu-section{display:flex;flex-direction:column;gap:15px}.mobile-menu-btn{display:block;width:100%;background:url(./wood_background-DaD86Nfe.webp);background-size:contain;border-radius:15px;color:#fff8b3;font-family:Arial,sans-serif;font-size:24px;font-weight:700;padding:16px;cursor:pointer;transition:all .3s cubic-bezier(.4,0,.2,1);text-align:center;text-shadow:2px 2px 4px rgba(0,0,0,.8);box-shadow:inset 0 3px 6px #0006,0 4px 12px #0000004d;border:none}.mobile-menu-btn:hover{background:linear-gradient(145deg,sienna,peru);box-shadow:0 0 20px #ff6b3580,0 6px 15px #00000080;border-color:#fff8b399}.mobile-close-btn{position:absolute;bottom:20px;right:20px;border:none;border-radius:15px;width:50px;height:40px;cursor:pointer;transition:all .3s ease;display:flex;align-items:center;justify-content:center;padding:0;box-shadow:inset 0 2px 5px #0000004d,0 3px 10px #0006;background:transparent;overflow:hidden}.mobile-close-icon{width:70px}.mobile-close-btn:hover{background:linear-gradient(145deg,sienna,peru);box-shadow:0 0 20px #ff6b3580,0 6px 15px #00000080;border-color:#fff8b399}.tablet-settings-menu{position:fixed;top:50%;left:50%;transform:translate(-50%,-50%) scale(.8);width:80%;max-width:600px;height:40%;background:linear-gradient(180deg,#1a0d2bfa,#2d1b3df2,#3d2a4ffa);border:4px solid #7e4615;border-radius:20px;z-index:2000;opacity:0;visibility:hidden;transition:all .3s ease;box-shadow:0 15px 35px #000c,inset -4px -4px 15px #deb8871a;padding:30px 30px 60px}.tablet-settings-menu.show{opacity:1;visibility:visible;transform:translate(-50%,-50%) scale(1)}.tablet-menu-header{display:grid;grid-template-columns:1fr 1fr 1fr;align-items:center;gap:30px;margin-bottom:30px;border-bottom:1px solid rgb(198 161 147 / 30%)}.menu-header{color:#fff8b3;font-family:Nunito,Arial,sans-serif;font-size:40px;text-align:center;text-shadow:3px 3px 6px rgba(0,0,0,.8);padding-bottom:10px;white-space:nowrap;display:none}.tablet-menu-section{display:flex;flex-direction:column;align-items:center;gap:22px}.tablet-menu-option-btn{background:url(./wood_background-DaD86Nfe.webp);background-size:contain;color:#fff8b3;border:2px solid #7e4615;border-radius:15px;padding:15px 25px;cursor:pointer;font-size:1.8em;font-weight:700;transition:all .3s ease;text-shadow:2px 2px 4px rgba(0,0,0,.8);box-shadow:inset 0 2px 5px #0000004d,0 3px 10px #0006;width:80%}.tablet-menu-option-btn:hover{background:linear-gradient(145deg,sienna,peru);box-shadow:0 0 20px #ff6b3580,0 6px 15px #00000080;border-color:#fff8b399}.score-popup{position:absolute;font-size:28px;font-weight:700;color:#eae1be;text-shadow:2px 2px 4px rgba(0,0,0,.8);pointer-events:none;z-index:100;animation:scorePopup 1.5s ease-out forwards}@keyframes scorePopup{0%{opacity:1;transform:translateY(0) scale(1)}50%{transform:translateY(-30px) scale(1.2)}to{opacity:0;transform:translateY(-60px) scale(.8)}}.rules-modal,.game-over,.difficulty-modal{position:fixed;top:0;left:0;width:100%;height:100%;background:#000c;display:none;align-items:center;justify-content:center;z-index:2000;padding:20px;box-sizing:border-box;overscroll-behavior:none;-webkit-overscroll-behavior:none;touch-action:manipulation}.rules-modal.show,.game-over.show,.difficulty-modal.show{display:flex}.rules-content,.game-over-content,.difficulty-content{background:linear-gradient(180deg,#1a0d2bfa,#2d1b3df2,#3d2a4ffa);border:4px solid #7e4615;border-radius:20px;max-width:800px;max-height:90vh;overflow-y:auto;box-shadow:0 15px 35px #000c,inset -4px -4px 15px #deb8871a;-webkit-overflow-scrolling:touch}.rules-content{height:80vh;width:100%;max-width:800px;max-height:80vh}.rules-header{display:flex;justify-content:space-between;align-items:center;padding:20px 30px;border-bottom:2px solid rgba(255,107,53,.5);background:#3d2a4fcc;color:#fff8b3;border-radius:16px 16px 0 0;text-shadow:2px 2px 4px rgba(0,0,0,.8)}.rules-header h2{margin:0;font-size:1.8em}.close-btn{background:transparent;display:flex;justify-content:center;align-items:center;color:#fff8b3;border:none;width:25px;height:25px;border-radius:50%;font-size:3em;cursor:pointer;transition:all .3s ease}.close-btn:hover{transform:rotate(90deg)}.rules-body{padding:30px}.rules-body h3{color:#fff8b3;margin:25px 0 15px;font-size:1.3em;border-bottom:2px solid rgba(255,107,53,.5);padding-bottom:5px;text-shadow:2px 2px 4px rgba(0,0,0,.8)}.rules-body p{margin:10px 0;color:#e8c9a1;line-height:1.6}.rules-body ul{margin:10px 0;padding-left:20px}.rules-body li{margin:8px 0;color:#e8c9a1;line-height:1.5}.characters{display:flex;align-items:center;justify-content:space-between}.characters-image{background:url(./tile_glow-D6bnHhHI.webp);background-repeat:no-repeat;background-size:cover;width:40px;height:40px;border-radius:15px;border:none}.animals-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:15px;margin:15px 0}.animal-group{background:#f8f9fa;padding:15px;border-radius:10px;border:2px solid #ddd}.animal-group .group-title{font-weight:700;color:var(--secondary-color);margin-bottom:8px;font-size:1.1em}.animals{display:flex;gap:8px;align-items:center;justify-content:center;flex-wrap:wrap}.rule-emoji{width:100%;height:100%;object-fit:contain}.game-over-content{padding:40px;text-align:center}.game-over-content h2{color:#fff8b3;margin-bottom:20px;font-size:2em;text-shadow:2px 2px 4px rgba(0,0,0,.8)}.final-score{font-size:1.5em;color:#e8c9a1;margin-bottom:15px;font-weight:700}.record-info{margin-bottom:20px}.high-score-message{font-size:1.2em;color:#e8c9a1;font-weight:700}.new-record-message{font-size:1.4em;background:linear-gradient(45deg,#ff6b35,#ffb366,#f93,#e8c9a1,#cc8052,#b8804a,sienna,peru);background-size:400% 400%;animation:halloweenRainbow 3s ease-in-out infinite;-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;font-weight:700}.game-over-content button{background:url(./wood_background-DaD86Nfe.webp);background-size:cover;background-repeat:no-repeat;color:#fff8b3;border:none;padding:15px 30px;border-radius:15px;font-size:1.2em;font-weight:700;cursor:pointer;transition:all .3s ease;text-shadow:2px 2px 4px rgba(0,0,0,.8);box-shadow:inset 0 2px 5px #0000004d,0 3px 10px #0006}.game-over-content button:hover{background:linear-gradient(145deg,sienna,peru);box-shadow:0 0 20px #ff6b3580,0 6px 15px #00000080;border-color:#fff8b399}.difficulty-content{max-width:500px}.difficulty-header{display:flex;justify-content:space-between;align-items:center;gap:20px;padding:20px 30px;border-bottom:2px solid rgba(255,107,53,.5);background:#3d2a4fcc;color:#fff8b3;border-radius:16px 16px 0 0;text-shadow:2px 2px 4px rgba(0,0,0,.8)}.difficulty-header h2{margin:0;font-size:1.8em}.difficulty-body{padding:30px}.difficulty-options{display:flex;flex-direction:column;gap:15px;margin-bottom:25px}.difficulty-option{background:url(./wood_background-DaD86Nfe.webp);background-size:contain;border:none;font-size:24px;font-weight:700;border-radius:15px;padding:20px;cursor:pointer;transition:all .3s ease;position:relative;display:flex;align-items:center;justify-content:center;color:#e8c9a1;text-shadow:2px 2px 4px rgba(0,0,0,.8);box-shadow:inset 0 3px 6px #0006,0 4px 12px #0000004d}.difficulty-option:hover{background:linear-gradient(145deg,sienna,peru);box-shadow:0 0 20px #ff6b3580,0 6px 15px #00000080;border-color:#fff8b399}.difficulty-option.active{background:linear-gradient(145deg,sienna,peru);box-shadow:0 0 20px #ff6b3580,0 6px 15px #00000080}.difficulty-icon{position:absolute;left:20px;font-size:2em}.difficulty-title{font-size:1.2em;font-weight:700;text-align:center;width:100%}@media (min-width: 320px) and (max-width: 500px) and (orientation: portrait){.mobile-score{height:45px;padding:8px 10px}.mobile-score-label,.mobile-score-value{font-size:12px}.settings-btn{width:45px;height:45px}.menu-header{display:block}.characters-image{width:30px;height:30px}.rules-header h2{font-size:1.4em}.menu-section{gap:10px}.mobile-menu-btn{font-size:20px;padding:14px}.mobile-settings-menu{width:320px}}@media (min-width: 320px) and (max-width: 768px) and (orientation: portrait){.game-container{background:url(./background_2-DgXYpUkq.webp);background-repeat:no-repeat;background-size:cover}.game-content{flex-direction:column;align-items:center;gap:20px;padding:20px}.left-panel,.right-panel{display:none}.mobile-top-bar{display:flex}.game-area{width:100%;height:100%}.circle{width:78%;height:78%;max-width:55px;max-height:55px}.difficulty-header{gap:15px}.difficulty-header h2{margin:0;font-size:1.4em}.close-btn{width:20px;height:20px;font-size:2.4em}.menu-header{font-size:30px;display:block}.tablet-top-bar{display:none!important}}@media (min-width: 520px) and (max-width: 1024px) and (orientation: landscape){.game-container{background:url(./background_desktop-z9ytoX1P.webp);background-size:cover;background-repeat:no-repeat}.game-content{flex-direction:row;align-items:flex-start;padding:min(15px,2vw);gap:min(15px,2vw);justify-content:space-between;height:100vh;box-sizing:border-box}.left-panel{display:flex!important;flex-direction:column;gap:8px;min-width:auto;width:100%;max-width:min(200px,25vw);min-height:100vh;justify-content:flex-start;order:1;padding:10px 5px;box-sizing:border-box}.center-panel{order:2}.right-panel{display:none}.mobile-landscape-controls{display:flex;flex-direction:column;gap:4px;flex:1}.mobile-landscape-controls .control-btn{background:url(./wood_background-DaD86Nfe.webp);background-size:contain;color:#fff8b3;border:2px solid #7e4615;border-radius:8px;padding:8px 6px;cursor:pointer;font-size:clamp(.6em,1.2vw,.8em);font-weight:700;transition:all .3s ease;text-shadow:2px 2px 4px rgba(0,0,0,.8);box-shadow:inset 0 2px 5px #0000004d,0 3px 10px #0006;min-height:auto;line-height:.9;flex:0 0 auto}.mobile-landscape-controls .control-btn:hover{transform:none}.left-panel .score-item{background:url(./wood_background-DaD86Nfe.webp);background-size:cover;background-position:center;color:#e8c9a1;padding:8px 6px;border-radius:10px;text-align:center;box-shadow:inset 0 1px 3px #0000004d,0 2px 6px #0006;border:2px solid #7e4615;margin-bottom:0;flex:0 0 auto}.left-panel .score-label{font-size:clamp(.6em,1.5vw,.9em);color:#e8c9a1;text-shadow:1px 1px 2px rgba(0,0,0,.8);margin-bottom:2px}.left-panel .score-value{font-size:clamp(.8em,1.5vw,1em);font-weight:700;color:#e8c9bd;background:#0003;padding:2px 4px;border-radius:6px;border:1px solid rgba(139,69,19,.4);box-shadow:inset 0 1px 2px #0003,0 1px 2px #ffffff4d;text-shadow:1px 1px 2px rgba(255,255,255,.4)}.mobile-top-bar,.tablet-top-bar,.menu-header{display:none!important}.game-area canvas{width:100%;height:100%}.circle{width:78%;height:78%;max-width:50px;max-height:50px}.rules-content{width:85%;height:75vh;max-width:700px;max-height:75vh}.difficulty-content{width:55%;max-width:500px;padding:10px}.difficulty-header h2{font-size:1.4em}.difficulty-body{padding:20px 30px 0}.rules-header h2{font-size:1.4em}.rules-body h3{font-size:1.1em;margin:15px 0 10px}.rules-body p,.rules-body li{font-size:.9em;line-height:1.4;margin:6px 0}.characters{justify-content:start;gap:20px}.characters-image{width:35px;height:35px}.difficulty-option{font-size:1.2em;padding:12px 20px}.close-btn{font-size:2.2em;width:22px;height:22px}.language-switcher-fixed{bottom:5px}}@media (min-width: 420px) and (max-width: 768px) and (orientation: landscape) and (max-height: 450px){.game-container{background:url(./background_desktop-z9ytoX1P.webp);background-size:cover;background-repeat:no-repeat}.center-panel{order:2}.left-panel{max-width:250px;width:100%;gap:6px;padding:8px 4px;display:flex!important;flex-direction:column;min-width:auto;min-height:100vh;justify-content:flex-start;order:1;box-sizing:border-box}.mobile-top-bar{display:none!important}.mobile-landscape-controls{display:grid;grid-template-columns:1fr 1fr;align-items:start;column-gap:10px;row-gap:6px;flex:0}.mobile-landscape-controls .control-btn{padding:10px 8px;font-size:clamp(.5em,1.8vw,.7em);border-radius:6px}.left-panel .score-item{padding:6px 4px;border-radius:8px}.left-panel .score-label{font-size:clamp(.8em,1vw,.6em);margin-bottom:1px}.left-panel .score-value{font-size:clamp(.7em,1.2vw,.8em);padding:1px 3px}.game-content{padding:min(10px,1.5vw);gap:min(10px,1.5vw);flex-direction:row;align-items:flex-start;justify-content:space-between;height:100vh;box-sizing:border-box}.score-info{display:grid;grid-template-columns:1fr 1fr;gap:10px}.score-item{background:url(./wood_background-DaD86Nfe.webp);background-size:cover;background-position:center;color:#e8c9a1;padding:8px 6px;border-radius:10px;text-align:center;box-shadow:inset 0 1px 3px #0000004d,0 2px 6px #0006;border:2px solid #7e4615;margin-bottom:0}.score-label{color:#e8c9a1;text-shadow:1px 1px 2px rgba(0,0,0,.8)}.score-value{font-size:clamp(.8em,1.5vw,1em);font-weight:700;color:#e8c9bd;background:#0003;padding:2px 4px;border-radius:6px;border:1px solid rgba(139,69,19,.4);box-shadow:inset 0 1px 2px #0003,0 1px 2px #ffffff4d;text-shadow:1px 1px 2px rgba(255,255,255,.4)}.menu-header{display:none!important}.control-btn{background:url(./wood_background-DaD86Nfe.webp);background-size:contain;color:#fff8b3;border:2px solid #7e4615;border-radius:8px;padding:8px 6px;cursor:pointer;font-size:clamp(.6em,1.2vw,.8em);font-weight:700;transition:all .3s ease;text-shadow:2px 2px 4px rgba(0,0,0,.8);box-shadow:inset 0 2px 5px #0000004d,0 3px 10px #0006;min-height:auto;line-height:.9}}@media (min-width: 769px) and (max-width: 850px){.menu-header{display:none!important}}@media (min-width: 769px) and (max-width: 1024px) and (orientation: portrait){.game-container{background:url(./background_2-DgXYpUkq.webp);background-repeat:no-repeat;background-size:cover}.game-content{flex-direction:column;align-items:center;gap:45px}.left-panel,.right-panel{display:none}.tablet-top-bar,.tablet-bottom-bar{display:flex}.mobile-top-bar{display:none}.game-area{width:100%;height:100%;max-width:100%;max-height:max-content}.game-area canvas{width:100%!important;height:100%!important}.circle{width:95%;height:95%}.difficulty-content{width:80%;max-width:600px;padding:30px 30px 40px}.difficulty-header{display:grid;grid-template-columns:1fr 1fr 1fr;align-items:center;gap:30px;padding:0 0 10px;border-bottom:1px solid rgb(198 161 147 / 30%);background:none;color:#fff8b3;border-radius:16px 16px 0 0;text-shadow:2px 2px 4px rgba(0,0,0,.8);position:relative}.difficulty-header .close-btn{top:0;right:0;margin-top:0}.difficulty-header h2{margin:0;font-size:40px;white-space:nowrap}.difficulty-options{display:flex;flex-direction:column;align-items:center;gap:22px;width:100%}.difficulty-option{background:url(./wood_background-DaD86Nfe.webp);background-size:contain;border-radius:15px;padding:15px 25px;cursor:pointer;transition:all .3s ease;position:relative;display:flex;align-items:center;justify-content:center;color:#e8c9a1;text-shadow:2px 2px 4px rgba(0,0,0,.8);box-shadow:inset 0 3px 6px #0006,0 4px 12px #0000004d;width:80%;font-size:1.8em;font-weight:700;border:2px solid #7e4615}.difficulty-icon{position:absolute;left:20px;font-size:2em}.mobile-settings-menu{display:none}.rules-header h2{font-size:40px}.rules-body h3{font-size:34px}.rules-body p,.rules-body li{font-size:24px}.rules-header .close-btn{margin:0}.characters{justify-content:flex-start;gap:30px}.characters-image{width:60px;height:60px}}@media (min-width: 769px) and (max-width: 1024px) and (orientation: landscape){.game-container{background:url(./background_desktop-z9ytoX1P.webp);background-size:cover;background-repeat:no-repeat}.game-content{flex-direction:row;align-items:flex-start;padding:20px;gap:25px}.left-panel,.right-panel{display:flex;min-width:auto;width:100%;max-width:250px}.mobile-top-bar,.tablet-top-bar,.tablet-bottom-bar{display:none}.circle{width:75%;height:75%;max-width:60px;max-height:60px}.characters{justify-content:start;gap:30px}.characters-image{width:50px;height:50px}.menu-header,.tablet-top-bar{display:none!important}.right-panel{display:none}.score-info{display:grid;grid-template-columns:1fr 1fr;gap:10px}.mobile-landscape-controls{display:grid;grid-template-columns:1fr 1fr;align-items:start;column-gap:10px;row-gap:6px;flex:0}.mobile-landscape-controls .control-btn{font-size:clamp(.6em,1.8vw,.8em);padding:10px 8px}}@media (min-width: 1025px){.game-container{background:url(./background_desktop-z9ytoX1P.webp);background-size:cover;background-repeat:no-repeat}.game-content{flex-direction:row;align-items:flex-start;padding:30px;gap:40px;justify-content:space-between}.left-panel,.right-panel{display:flex;width:100%;max-width:250px}.mobile-top-bar,.tablet-top-bar,.tablet-bottom-bar{display:none}.game-area{width:min(calc(100vh - 60px),calc(100vw - 600px),600px);height:min(calc(100vh - 60px),calc(100vw - 600px),600px);max-width:100%;max-height:100%}.game-area canvas{width:100%!important;height:100%!important}.circle{width:75%;height:75%;max-width:70px;max-height:70px}.score-item{background:url(./wood_background-DaD86Nfe.webp);background-size:cover;background-position:center;color:#e8c9a1;padding:15px 20px;border-radius:15px;text-align:center;box-shadow:inset 0 2px 5px #0000004d,0 3px 10px #0006;border:2px solid #7e4615}.score-label{font-size:1.2em;color:#e8c9a1;text-shadow:1px 1px 2px rgba(0,0,0,.8);margin-bottom:8px}.score-value{font-size:1.8em;font-weight:700;color:#e8c9bd;background:#0003;padding:6px 12px;border-radius:8px;border:1px solid rgba(139,69,19,.4);box-shadow:inset 0 1px 3px #0003,0 1px 2px #ffffff4d;text-shadow:1px 1px 2px rgba(255,255,255,.4)}.control-btn{background:url(./wood_background-DaD86Nfe.webp);background-size:contain;color:#fff8b3;border:2px solid #7e4615;border-radius:15px;padding:15px 20px;cursor:pointer;font-size:1.1em;font-weight:700;transition:all .3s ease;text-shadow:2px 2px 4px rgba(0,0,0,.8);box-shadow:inset 0 2px 5px #0000004d,0 3px 10px #0006}.control-btn:hover{background:linear-gradient(145deg,sienna,peru);box-shadow:0 0 20px #ff6b3580,0 6px 15px #00000080;border-color:#fff8b399;transform:none}.characters{justify-content:start;gap:30px}.characters-image{width:50px;height:50px}.menu-header,.tablet-top-bar{display:none!important}}@media (min-width: 1300px){.game-container{background:url(./background_desktop-z9ytoX1P.webp);background-size:cover;background-repeat:no-repeat}.game-content{flex-direction:row;align-items:flex-start;padding:40px;gap:50px;justify-content:center}.left-panel,.right-panel{max-width:320px}.game-area{width:min(calc(100vh - 80px),calc(100vw - 640px),800px);height:min(calc(100vh - 80px),calc(100vw - 640px),800px);max-width:100%;max-height:100%}.game-area canvas{width:100%!important;height:100%!important}.control-btn{padding:16px 32px;font-size:1.3em;background:url(./wood_background-DaD86Nfe.webp);background-size:contain;color:#fff8b3;border:2px solid #7e4615;border-radius:15px;text-shadow:2px 2px 4px rgba(0,0,0,.8);box-shadow:inset 0 2px 5px #0000004d,0 3px 10px #0006}.control-btn:hover{background:linear-gradient(145deg,sienna,peru);box-shadow:0 0 20px #ff6b3580,0 6px 15px #00000080;border-color:#fff8b399;transform:translateY(-2px)}.score-item{background:url(./wood_background-DaD86Nfe.webp);background-size:cover;background-position:center;border:2px solid #7e4615;box-shadow:inset 0 2px 5px #0000004d,0 3px 10px #0006;border-radius:15px}.score-label{font-size:1.3em;margin-bottom:8px;color:#e8c9a1;text-shadow:1px 1px 2px rgba(0,0,0,.8)}.score-value{font-size:2.2em;padding:12px 20px;color:#e8c9bd;background:#0003;border-radius:8px;border:1px solid rgba(139,69,19,.4);box-shadow:inset 0 1px 3px #0003,0 1px 2px #ffffff4d;text-shadow:1px 1px 2px rgba(255,255,255,.4)}.circle{width:75%;height:75%;max-width:85px;max-height:85px}.menu-header,.tablet-top-bar{display:none!important}}@media (min-width: 1600px){.game-container{background:url(./background_desktop-z9ytoX1P.webp);background-size:cover;background-repeat:no-repeat}.game-area{width:min(calc(100vh - 80px),calc(100vw - 800px),1000px);height:min(calc(100vh - 80px),calc(100vw - 800px),1000px);max-width:100%;max-height:100%}.tablet-top-bar,.menu-header{display:none!important}}@keyframes halloweenRainbow{0%,to{background-position:0% 50%}25%{background-position:25% 25%}50%{background-position:100% 50%}75%{background-position:75% 75%}}@keyframes bounce{0%{transform:translate(-50%,-35%) scale(1.2,.85)}15%{transform:translate(-50%,-50%) scale(1.05,.95)}30%{transform:translate(-50%,-60%) scale(1)}70%{transform:translate(-50%,-55%) scale(1)}85%{transform:translate(-50%,-45%) scale(1.1,.95)}to{transform:translate(-50%,-35%) scale(1.2,.85)}}@keyframes shadowBounce{0%{opacity:1;transform:translate(-50%) scaleX(1.3)}15%{opacity:.5;transform:translate(-50%) scale(1)}30%{opacity:0;transform:translate(-50%) scaleX(.8)}70%{opacity:0;transform:translate(-50%) scaleX(.8)}85%{opacity:.7;transform:translate(-50%) scaleX(1.2)}to{opacity:1;transform:translate(-50%) scaleX(1.3)}}@keyframes pathJump{0%{transform:translate(-50%,-50%) scale(1)}25%{transform:translate(-50%,-65%) scale(1)}75%{transform:translate(-50%,-45%) scale(1.1,.9)}to{transform:translate(-50%,-50%) scale(1)}}@keyframes jumpClick{0%{transform:translate(-50%,-50%) scale(1);box-shadow:0 4px 8px #00000026,0 8px 16px #0000001a,inset 0 1px #fffc,inset 0 -1px #0000001a,0 2px 4px #0000004d}30%{transform:translate(-50%,-55%) scale(1);box-shadow:0 4px 8px #00000026,0 8px 16px #0000001a,inset 0 1px #fffc,inset 0 -1px #0000001a,0 8px 12px #0000001f}70%{transform:translate(-50%,-45%) scale(1.08,.95);box-shadow:0 4px 8px #00000026,0 8px 16px #0000001a,inset 0 1px #fffc,inset 0 -1px #0000001a,0 2px 4px #0006}to{transform:translate(-50%,-50%) scale(1);box-shadow:0 4px 8px #00000026,0 8px 16px #0000001a,inset 0 1px #fffc,inset 0 -1px #0000001a,0 2px 4px #0000004d}}@keyframes removeCircle{0%{opacity:1;transform:translate(-50%,-50%) scale(1)}30%{opacity:.9;transform:translate(-50%,-50%) scale(1.1);background:linear-gradient(135deg,#f5e6d3,#e8c9a1);box-shadow:0 0 20px #f5e6d3cc,0 0 30px #e8c9a199,inset 0 2px 8px #fff6}60%{opacity:.7;transform:translate(-50%,-50%) scale(1.3);background:linear-gradient(135deg,#ffb366,#f93);box-shadow:0 0 25px #ffb366cc,0 0 40px #ff9933b3}to{opacity:0;transform:translate(-50%,-50%) scale(.3);background:linear-gradient(135deg,#cc8052,#b8804a)}}
