body{--button-bg: #bbd4ff;--button-border: 2px solid #86a2d2;--button-color: white;--button--color: black}body[data-theme=green]{--button-bg: #83d7d3;--button-border: 2px solid #5b9693;--button-color: white;--button--color: black}button{--spinner-color: black;position:relative;cursor:pointer;background:var(--button-bg);color:var(--button-color);width:100%;font-family:inherit;font-size:inherit;border-radius:10px;font-weight:500;height:40px;padding:0 14px;display:flex;flex-direction:row;align-items:center;justify-content:center;margin:10px 0;outline:none;border:var(--button-border);color:var(--button--color);box-sizing:border-box;transition:all .2s}button:active{transform:translateY(2px)}.button-loading{position:absolute;top:0;left:0;width:100%;height:100%;border-radius:11px;background:inherit;display:flex;align-items:center;justify-content:center}.button-text{border:none;background:transparent}.button-tertiary{background:transparent;border:var(--button-cancel-border)}.button-next{background:#fff;border:none;color:#000;width:auto;margin:10px auto}body{--spinner-color: white}body[data-theme=light]{--spinner-color: #181818}body[data-theme=dark]{--spinner-color: white}.spinner{width:48px;height:48px;border-radius:50%;display:inline-block;box-sizing:border-box;animation:rotation 1s linear infinite}.spinner-size-medium{width:20px;height:20px}.spinner-size-small{width:14px;height:14px}.spinner{border:3px solid var(--spinner-color);border-bottom-color:transparent}.spinner-size-medium,.spinner-size-small{border:2px solid var(--spinner-color);border-bottom-color:transparent}.layout-spinner{position:fixed;top:0;left:0;width:100%;height:100%;display:flex;align-items:center;justify-content:center;background:inherit}@keyframes rotation{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.panels-view{position:relative;overflow:hidden}.next-panel-view{position:absolute;top:0;left:0;width:100%;height:100%;opacity:0;animation:.35s next-view-anim forwards;z-index:1}@keyframes next-view-anim{0%{opacity:0;transform:scale(.5)}to{opacity:1;transform:scale(1)}}body{--panel-content-padding: 20px 30px}.panel{display:flex;flex-direction:column;height:100svh;width:100vw}.panel-header{position:relative;width:100%}.panel-content{display:flex;flex-direction:column;align-items:center;justify-content:flex-start;height:100%;width:100%;max-width:var(--max-width);margin:0 auto;overflow-y:auto}.panel-content-center{display:flex;flex-direction:column;justify-content:center;align-items:center;max-width:var(--max-width);margin:0 auto;width:100%;height:100%}.panel-content{display:flex;flex-direction:column;padding:var(--panel-content-padding);overflow-y:auto;box-sizing:border-box}.panel-content-box{display:flex;flex-direction:column;width:100%;min-width:200px;height:100%;margin:0 auto}.panel-center{display:flex;justify-content:center;align-items:center}@media (max-width: 620px){body{--panel-content-padding: 10px 15px}}body{--panel-header-bg: #1e3a5c1c;--panel-header-border: none}body[data-theme=green]{--panel-header-bg: #37898340;--panel-header-border: none}body{--panel-header-height: 70px}.panel-header{width:100%;background:var(--panel-header-bg);border-bottom:var(--panel-header-border);box-sizing:border-box}.panel-header-in{display:flex;flex-direction:row;align-items:center;justify-content:center;height:var(--panel-header-height);width:100%;max-width:var(--max-width);font-weight:500;font-size:110%;margin:0 auto;box-sizing:border-box}.panel-header-back{cursor:pointer;padding:8px;box-sizing:border-box}.panel-header-content,.panel-header-before,.panel-header-after{display:flex;flex-direction:row;align-items:center;min-width:40px}.panel-header-before{justify-content:flex-end}.panel-header-content{width:100%;text-align:center;justify-content:center;padding-bottom:1px}.panel-header-before{margin-left:"auto"}.panel-header-after{margin-right:"auto"}@media (max-width: 1300px),(max-height: 720px){body{--panel-header-height: 60px}}@media (max-width: 430px),(max-height: 640px){body{--panel-header-height: 58px}}@media (max-width: 380px),(max-height: 560px){body{--panel-header-height: 56px}}@media (max-width: 320px),(max-height: 500px){body{--panel-header-height: 45px}}body{--alert-bg: #372c64;--alert-border: 2px solid #7163af}body[data-theme=light]{--alert-bg: white;--alert-border: 1px solid #c9d0d8}.alert-container{position:fixed;bottom:0;left:0;width:100%;z-index:3}.alert-wrapper{padding:15px;width:100%;max-width:var(--max-width);margin:0 auto;box-sizing:border-box}.alert{border:var(--alert-border);border-radius:10px;padding:15px 20px;margin-bottom:15px;background:var(--alert-bg);box-sizing:border-box;animation:alert-anim 3s linear forwards}.alert-header{font-weight:500;padding-bottom:5px;font-size:90%}.alert-text{font-size:85%;color:var(--text-secondary-color)}@keyframes alert-anim{0%{opacity:0;transform:translateY(70px)}5%{opacity:1;transform:translate(0)}90%{opacity:1;transform:translate(0)}to{opacity:0;transform:translateY(70px)}}body{--modal-shadow-bg: #000000ab;--modal-bg: #ffffff;--modal-border: none;--modal-header-bg: #ffffff;--modal-header-border: 1px solid #cacaca;--modal-color: black}body{--modal-padding: 15px 30px}.modal{--icon-color: black;position:fixed;top:0;left:0;width:100vw;height:100svh;display:flex;flex-direction:column;justify-content:center;align-items:center;z-index:3}.modal-shadow{cursor:pointer;position:absolute;top:0;left:0;width:100vw;height:100svh;background:var(--modal-shadow-bg)}.modal-container{position:relative;overflow-y:auto;width:calc(100% - 20px);max-width:500px;max-height:min(300px,80svh);background:var(--modal-bg);border:var(--modal-border);color:var(--modal-color);margin:0 10px;border-radius:10px;box-sizing:border-box;z-index:3}.modal-content{width:100%;padding:var(--modal-padding);box-sizing:border-box}.modal-sticky{justify-content:flex-end}.modal-header{position:sticky;top:0;text-align:center;padding:15px 0;background:var(--modal-header-bg);border-bottom:var(--modal-header-border);font-weight:500}.modal-text{text-align:center;padding:15px 10px 20px}.modal-subtitle{padding-top:4px;margin-bottom:25px}.modal-close{cursor:pointer;position:absolute;padding:4px;top:18px;right:35px}@keyframes modal-show{0%{transform:translateY(100%);opacity:0}to{transform:translate(0);opacity:1}}@keyframes modal-hide{0%{transform:translate(0);opacity:1}to{transform:translateY(150px);opacity:0}}@media (max-width: 700px){body{--modal-padding: 15px 28px}}@media (max-width: 500px){body{--modal-padding: 15px 25px}}@media (orientation: landscape) and (max-height: 500px){body{--modal-padding: 15px 20px}}body{--modal-shop-item-bg: #bbd4ff;--modal-shop-item-border: 2px solid #86a2d2;--modal-shop-selected-item-bg: #8cbaff;--modal-shop-selected-item-border: 2px solid #5b6a84}body[data-theme=green]{--modal-shop-item-bg: #83d7d3;--modal-shop-item-border: 2px solid #5b9693;--modal-shop-selected-item-bg: #7cf1eb;--modal-shop-selected-item-border: 2px solid #135552}.shop-wrap{display:flex;flex-wrap:wrap}.shop-item{position:relative;cursor:pointer;border:var(--modal-shop-item-border);background:var(--modal-shop-item-bg);border-radius:10px;color:#06061c;padding:12px 16px;width:calc(33% - 10px);margin:5px;font-size:92%;box-sizing:border-box}.shop-item-selected{border:var(--modal-shop-selected-item-border);background:var(--modal-shop-selected-item-bg)}.shop-item-count{font-weight:500;font-size:110%}.shop-item-price{font-size:95%;color:#000}.shop-header{text-align:center;padding-bottom:20px}.shop-button-box{padding:5px;box-sizing:border-box}.shop-item-sale{position:absolute;top:-5px;right:-5px;padding:2px 6px;border-radius:3px;background:#f55353;color:#fff;font-size:80%;transform:rotate(-4deg)}body{--leaderboard-item-bg: #241e41;--leaderboard-item-sticky-bg: #32295f;--leaderboard-item-border: 1px solid #3a3161;--leaderboard-item-sticky-border: 1px solid #6453b0;--leaderboard-shadow: 0 0 60px #2a2254;--leaderboard-place-color: #f0eff4}body[data-theme=light]{--leaderboard-item-bg: white;--leaderboard-item-sticky-bg: white;--leaderboard-item-border: 1px solid #c9d0d8;--leaderboard-item-sticky-border: 1px solid #c9d0d8;--leaderboard-shadow: none;--leaderboard-place-color: #4b4b4b}.top-players ul{list-style:none}.top-players li{padding:12px 0;border-bottom:1px solid #eee;display:flex;justify-content:space-between}.top-players li:last-child{border-bottom:none}body{--tabs-default-border-bottom: 2px solid #5b576b;--tabs-default-active-border-bottom: 2px solid #9287cd;--tabs-global-color: #827d98;--tabs-global-active-color: white}body[data-theme=light]{--tabs-default-border-bottom: 2px solid #d5d5d5;--tabs-default-active-border-bottom: 2px solid #1a1a1a;--tabs-global-color: #878787;--tabs-global-active-color: #191919}.tabs{display:flex;flex-direction:row;align-items:center;justify-content:space-between}.tab-item{cursor:pointer;padding-bottom:12px;margin:5px;text-align:center;box-sizing:border-box}.tabs-default .tab-item{border-bottom:var(--tabs-default-border-bottom);width:100%}.tabs-default .tab-item-active{border-bottom:var(--tabs-default-active-border-bottom)}.tabs-global{justify-content:center;margin-bottom:10px}.tabs-global .tab-item{padding:8px;font-size:16px;font-weight:500;color:var(--tabs-global-color)}.tabs-global .tab-item-active{color:var(--tabs-global-active-color)}.cell{cursor:pointer;display:flex;flex-direction:row;align-items:center;justify-content:space-between;min-height:42px;box-sizing:border-box}.cell .avatar{padding-right:20px}.cell-before{display:flex;align-items:center;min-width:30px;padding-right:10px}.cell-after{width:100px;text-align:right;color:var(--secondary-color);font-weight:400;display:flex;align-items:center;justify-content:flex-end}.cell-subtitle{font-size:85%;color:#918ea0;padding-top:3px;font-weight:400}.cell-content{width:100%;line-height:var(--vkui--font_headline1--line_height--regular);padding:12px 10px 12px 0;font-weight:400;box-sizing:border-box}.cell .vkuiIcon{color:var(--vkui--color_icon_accent)}.checkbox{position:relative}.checkbox .Icon{color:var(--color)}.checkbox_particle{position:absolute;width:50px;height:50px;top:-15px;left:-15px;background:rgba(255,255,255,.576);animation:anim_checkbox_particle .5s forwards;border-radius:100%}@keyframes anim_checkbox_particle{0%{transform:scale(0);opacity:1}to{transform:scale(1);opacity:0}}@keyframes anim_checkbox{0%{transform:rotate(0)}to{transform:rotate(360deg)}}body{--switch-bg: #4c4558;--switch-active-bg: #6c509a}body[data-theme=light]{--switch-bg: #b6b9c1;--switch-active-bg: #67718c}.switch-box{position:relative}.switch{position:relative;display:inline-block;width:45px;height:20px}.switch input{opacity:0;width:0;height:0}.swith-slider{position:absolute;cursor:pointer;top:0;left:0;right:0;bottom:0;background-color:var(--switch-bg);-webkit-transition:.4s;transition:.4s}.swith-slider:before{position:absolute;content:"";height:15px;width:15px;left:3px;bottom:2.5px;background-color:#fff;-webkit-transition:.4s;transition:.4s}input:checked+.swith-slider{background-color:var(--switch-active-bg)}input:focus+.swith-slider{box-shadow:0 0 1px var(--switch-active-bg)}input:checked+.swith-slider:before{-webkit-transform:translateX(23.5px);-ms-transform:translateX(23.5px);transform:translate(23.5px)}.swith-slider.round{border-radius:34px}.swith-slider.round:before{border-radius:50%}@supports (-webkit-touch-callout: none){.switch-box{margin-top:10px;margin-bottom:-10px}}body{--paper-bg: #1d4a81;--paper-border: 2px solid #356aab;--paper-header-color: #7c798e}.paper{position:relative;background:var(--paper-bg);border-radius:12px;padding:18px 24px;margin:10px 0;width:100%;border:var(--paper-border);box-sizing:border-box}.paper-header{padding:5px 0 8px;text-transform:uppercase;font-weight:500;font-size:80%;color:var(--paper-header-color)}.paper-fill{height:100%;max-height:720px}@media (max-width: 640px){.paper{padding:15px 20px}}@media (max-width: 500px){.paper-header{font-size:11px}}body{--input-bg: transparent;--input-border: 2px solid #e6d5ff;--input-placeholder: #c8c8c8;--form-top-color: #a89cb9}body[data-theme=light]{--input-bg: white;--input-border: 1px solid #c1c1c1;--input-placeholder: #484848;--form-top-color: #3e3e3e}input[type=text],textarea{font-weight:600;font-size:inherit;font-family:inherit;color:inherit;outline:none;background:var(--input-bg);border:var(--input-border);padding:12px 15px;margin:8px 0;border-radius:8px;width:100%;box-sizing:border-box}textarea{min-height:120px}input::placeholder,textarea::placeholder{color:var(--input-placeholder)}.form-item{padding:15px 0}.form-top,.form-bottom{color:var(--form-top-color);font-size:13px;font-weight:500}body{--range-bg: #767676;--range-thumb-bg: white;--range-thumb-border: 3px solid #67718c}.range-container{display:flex;flex-direction:column;align-items:center}.range{-webkit-appearance:none;width:120px;height:4px;background:var(--range-bg);border-radius:5px;outline:none;transition:opacity .2s}.range::-webkit-slider-thumb{-webkit-appearance:none;appearance:none;width:16px;height:16px;background:var(--range-thumb-bg);border:var(--range-thumb-border);border-radius:50%;cursor:pointer}.range::-moz-range-thumb{width:16px;height:16px;background:var(--range-thumb-bg);border:var(--range-thumb-border);border-radius:50%;cursor:pointer}.range-value{margin-top:10px;font-size:16px;color:#333}@media (max-width: 640px){.range{width:80px}}.placeholder{display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;padding:10px 0;box-sizing:border-box}.placeholder-header{font-weight:500;font-size:16px;padding-top:12px}.placeholder-text{color:#818c99;padding:6px 0;font-size:14px;max-width:340px;margin:0 auto}.placeholder-action{padding-top:4px}.placeholder button{padding:8px 20px}body{--avatar-bg: #1a1532}body[data-theme=light]{--avatar-bg: #c1c1c1}.avatar{position:relative;padding:8px 8px 8px 0}.avatar img{border-radius:100%;background:var(--avatar-bg);width:100%;height:100%}:root{--virtual-keyboard-padding: 12px;--virtual-keyboard-gap: 6px;--virtual-keyboard-key-gap: 6px;--virtual-keyboard-key-height: 75px;--virtual-keyboard-key-padding: 2px;--virtual-keyboard-key-border-radius: 4px;--virtual-keyboard-bg: #f1f1f1}.virtual-keyboard{--spinner-color: black;display:block;color:#000;width:100%;background:transparent}.virtual-keyboard-content{gap:var(--virtual-keyboard-gap);padding:var(--virtual-keyboard-padding);width:100%;max-width:640px;margin:0 auto;box-sizing:border-box}.virtual-keyboard-bottom{position:fixed;bottom:0;left:0;right:0;z-index:3;width:100%;padding-bottom:16px;padding-top:16px;border-top:1px solid #c1c1c1;border-radius:0}.virtual-keyboard-row{display:flex;gap:var(--virtual-keyboard-key-gap);height:var(--virtual-keyboard-key-height);width:100%;padding-bottom:var(--virtual-keyboard-key-gap);justify-content:center;flex-wrap:nowrap}.virtual-keyboard-key{width:calc(100% / var(--max-keys) - 4px);height:var(--key-height);border:none;border-radius:var(--virtual-keyboard-key-border-radius);background-color:#fff;box-shadow:0 2px 4px rgba(0,0,0,.1);cursor:pointer;text-transform:uppercase;font-weight:500;color:#333;transition:all .2s ease;display:flex;align-items:center;justify-content:center;padding:var(--key-padding);margin:1px 0;white-space:nowrap;overflow:hidden;box-sizing:border-box;flex-shrink:0}.virtual-keyboard-key:active{background-color:#f0f0f0;box-shadow:0 1px 2px rgba(0,0,0,.1)}.virtual-keyboard-check{width:100%;box-sizing:border-box}.virtual-keyboard-key svg{width:min(22px,var(--key-height) * .5);height:min(22px,var(--key-height) * .5)}@keyframes keyboard-bottom-open{0%{transform:translateY(100%)}to{transform:translateY(0)}}@keyframes keyboard-bottom-close{0%{transform:translateY(0)}to{transform:translateY(100%)}}@media (max-width: 1300px){:root{--virtual-keyboard-key-height: 58px}}@media (max-width: 768px){:root{--virtual-keyboard-key-height: 58px;--virtual-keyboard-key-padding: 2px}}@media (max-width: 480px){:root{--virtual-keyboard-padding: 4px;--virtual-keyboard-gap: 4px;--virtual-keyboard-key-gap: 4px;--virtual-keyboard-key-height: 52px;--virtual-keyboard-key-padding: 2px}}@media (max-width: 340px){:root{--virtual-keyboard-padding: 0;--virtual-keyboard-gap: 4px;--virtual-keyboard-key-gap: 4px;--virtual-keyboard-key-height: 44px;--virtual-keyboard-key-padding: 2px}}body{--cell-selected-bg: #102643;--cell-selected-color: white;--cell-bg: #204370;--cell-border: 2px solid #628ec5}body[data-theme=green]{--cell-selected-bg: #072926;--cell-selected-color: white;--cell-bg: #124c47;--cell-border: 2px solid #5b9691}#crossword{display:flex;align-items:center;justify-content:center;width:100%;padding:15px;box-sizing:border-box;flex-grow:1}#crossword table,#crossword tr,#crossword td{border-collapse:collapse}#crossword td{width:var(--cell-size);min-width:var(--cell-size);height:var(--cell-size);min-height:var(--cell-size);box-sizing:border-box;text-transform:uppercase}#crossword td span{display:flex;align-items:center;justify-content:center}.word-guessed{text-align:center;width:100%;padding:0 15px;max-width:600px;box-sizing:border-box}.word-guessed-answer{font-weight:500;padding-top:5px}.keyboard{width:100%;box-sizing:border-box}.keyboard-question{padding:20px 10px 0;font-weight:400;text-align:center;box-sizing:border-box}.keyboard-answer{padding:5px 10px 15px;min-height:20px;text-align:center;box-sizing:border-box}.keyboard-answer-placeholder{color:#515151}@media (max-width: 640px){.keyboard{padding-bottom:40px}.keyboard-question{padding:0 10px}}body{--bottom-content-bg: linear-gradient(180deg, #d8e9ff, #e1eeffad);--bottom-content-color: #042421}body[data-theme=green]{--bottom-content-bg: linear-gradient(180deg, #98d3c5, #afcfca);--bottom-content-color: #042421}.crossword-bottom-content{position:sticky;bottom:0;min-height:400px;height:400px;width:100%;display:flex;flex-direction:column;align-items:center;justify-content:center;background:var(--bottom-content-bg);color:var(--bottom-content-color);box-sizing:border-box;--spinner-color: black}@media (max-width: 1300px){.crossword-bottom-content{min-height:300px;height:300px}}@media (max-width: 768px){.crossword-bottom-content{min-height:300px;height:300px}}@media (max-width: 480px){.crossword-bottom-content{min-height:280px;height:280px}}@media (max-width: 340px){.crossword-bottom-content{min-height:220px;height:220px}}body{--menu-item-bg: #1d3f6b;--menu-item-border: 2px solid #8ab1e3}body[data-theme=green]{--menu-item-bg: #124c47;--menu-item-border: 2px solid #d2fffb}body{--game-menu-item-height: 42px;--game-menu-item-margin: 6px;--game-menu-text-min-width: 100px;--game-menu-item-before-padding: 4px}.menu-item{cursor:pointer;display:flex;align-items:center;height:var(--game-menu-item-height);border-radius:30px;font-size:15px;font-weight:400;margin:var(--game-menu-item-margin);box-sizing:border-box}.menu-item-before{display:flex;align-items:center;justify-content:center;margin-left:auto;padding:var(--game-menu-item-before-padding);box-sizing:border-box}.menu-item-round{background:var(--menu-item-bg);border:var(--menu-item-border);color:#fff}.menu-left{display:flex;flex-direction:row}.menu-item-text{padding-right:16px;min-width:var(--game-menu-text-min-width);text-align:center;font-weight:500}@media (max-width: 680px){body{--game-menu-item-height: 40px;--game-menu-text-min-width: 80px;--game-menu-item-before-padding: 4px;--game-menu-item-margin: 4px}}@media (max-width: 460px){body{--game-menu-item-height: 35px;--game-menu-text-min-width: 60px;--game-menu-item-before-padding: 2px;--game-menu-item-margin: 3px}}.home-menu{background:linear-gradient(0deg,#d8e9ff,rgba(225,238,255,.68));padding:2rem;border-radius:12px;width:100%;max-width:640px;position:relative;border:3px solid white;transform-style:preserve-3d;box-sizing:border-box}.home-menu:before{content:"";position:absolute;top:-2px;left:-2px;right:-2px;bottom:-2px;background:linear-gradient(45deg,#d8e9ff,rgba(225,238,255,.68));z-index:-1;border-radius:11px;animation:glow 3s linear infinite}.home-menu-items{display:flex;flex-direction:column;gap:1.5rem}.home-menu-btn{background:#f2f8ff;padding:1.8rem;color:#000;font-size:1.1rem;border-radius:12px;cursor:pointer;display:flex;align-items:center;justify-content:flex-start;gap:1.5rem;transition:all .3s;position:relative;overflow:hidden;margin:0;border:2px solid #ffffff}.home-menu-btn svg{fill:#000}.home-menu-btn:before{content:"";position:absolute;top:0;left:-100%;width:100%;height:100%;background:linear-gradient(90deg,transparent,rgba(255,255,255,.2),transparent);transition:.5s}.home-menu-btn:hover{transform:translateY(-3px)}.home-menu-btn:hover:before{left:100%}.play-btn{background:#fff;border:2px solid #ffffff;color:#202432;font-weight:700}.play-btn svg{fill:#202432}@keyframes glow{0%{opacity:.5}50%{opacity:1}to{opacity:.5}}*{margin:0;padding:0;-moz-user-select:none;-khtml-user-select:none;user-select:none;-ms-user-select:none;-webkit-tap-highlight-color:rgba(0,0,0,0);-webkit-touch-callout:none;-webkit-user-select:none}::-webkit-scrollbar{width:0px}::-webkit-scrollbar-track{background-color:rgba(128,128,128,.055)}::-webkit-scrollbar-thumb{cursor:pointer;background-color:rgba(128,128,128,.37);border-radius:2px}textarea,input{-webkit-user-select:text;-khtml-user-select:text;-moz-user-select:text;-o-user-select:text;user-select:text}body{--page-bg: #09274e;--color: white;--secondary-color: #3c3c3c;--icon-color: white;--max-width: 720px}html,body{padding:0;margin:0}body{font-size:16px;background:var(--page-bg);font-family:Roboto;color:var(--color)}a,a:active,a:visited{color:inherit;font-weight:inherit;text-decoration:none}.overlay{position:absolute;top:0;left:0;width:100%;height:100%;background:transparent;z-index:999}@media (max-width: 630px){::-webkit-scrollbar{width:2px}}@media (max-width: 640px){body{font-size:15px}}
