:root{--bg: #0b1120;--fg: #e2e8f0;--accent: #f97316;--accent-soft: #64d3ff;--cursor: #f97316;--panel: rgba(11, 17, 32, .92);--panel-border: rgba(148, 163, 184, .08)}html,body{height:100%;margin:0;padding:0}body{background:radial-gradient(circle at 20% -10%,rgba(249,115,22,.12),transparent 52%),radial-gradient(circle at 90% 0%,rgba(100,211,255,.1),transparent 45%),var(--bg);color:var(--fg);font-family:IBM Plex Mono,JetBrains Mono,Fira Code,ui-monospace,SFMono-Regular,Menlo,Consolas,Liberation Mono,monospace;font-size:16px;line-height:1.55;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;margin:0}.shell{min-height:100vh;width:100%;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:clamp(20px,6vw,64px);padding:clamp(24px,6vw,72px);box-sizing:border-box}.shell__header{text-align:center;display:flex;flex-direction:column;gap:clamp(8px,1.5vw,16px)}.shell__title{font-family:Bungee Shade,Bungee,system-ui;font-size:clamp(48px,10vw,120px);letter-spacing:.08em;text-transform:uppercase;color:var(--accent);line-height:.9;text-shadow:0 18px 28px rgba(249,115,22,.25)}.shell__subtitle{font-size:clamp(14px,2.2vw,18px);letter-spacing:.18em;text-transform:uppercase;color:var(--accent-soft)}#terminal{width:min(880px,100%);height:min(560px,70vh);position:relative;overflow:visible;background:none;border:none;z-index:0;filter:drop-shadow(0 35px 120px rgba(8,18,38,.55))}#terminal:before{content:"";position:absolute;inset:-38%;background:radial-gradient(circle at 46% 42%,rgba(255,147,61,.6) 0%,rgba(255,147,61,.22) 38%,rgba(14,21,36,.15) 58%,transparent 72%);filter:blur(80px);opacity:.82;pointer-events:none;z-index:-1;mix-blend-mode:screen}#terminal:after{content:"";position:absolute;inset:-5% -12% -12%;background:radial-gradient(ellipse at 50% 0%,rgba(255,173,97,.22),transparent 65%);filter:blur(60px);opacity:.6;pointer-events:none;z-index:-2;mix-blend-mode:screen}#terminal .xterm-screen{overflow:hidden!important}.xterm{font-variant-ligatures:none;background:transparent!important}.xterm .xterm-rows{color:#ffb347;text-shadow:0 0 14px rgba(249,115,22,.42),0 0 34px rgba(249,115,22,.28);mix-blend-mode:lighten}.xterm .xterm-viewport{background-color:transparent!important;overflow-y:auto!important}.xterm .xterm-viewport::-webkit-scrollbar{display:none}.xterm .xterm-viewport{-ms-overflow-style:none;scrollbar-width:none}@media (prefers-reduced-motion: reduce){.xterm .xterm-rows{text-shadow:none}}.xterm .xterm-cursor{background-color:var(--cursor)}.xterm .xterm-selection div{background-color:#f9731659!important}@media (max-width: 768px){body{font-size:14px}.shell{gap:clamp(16px,4vw,32px);padding:clamp(16px,4vw,48px)}.shell__title{font-size:clamp(36px,8vw,72px)}.shell__subtitle{font-size:clamp(12px,2vw,14px)}#terminal{width:100%;height:min(480px,60vh);font-size:14px}#terminal:before{opacity:.5}#terminal:after{opacity:.3}.xterm .xterm-rows{text-shadow:0 0 8px rgba(249,115,22,.3),0 0 16px rgba(249,115,22,.2)}.xterm{-webkit-tap-highlight-color:rgba(249,115,22,.2)}}@media (max-width: 768px){input,select,textarea{font-size:16px!important}}@media (max-width: 768px) and (orientation: landscape){#terminal{height:min(400px,70vh)}.shell{padding:clamp(12px,3vw,24px)}}body.game-active{overflow:hidden;touch-action:none;-webkit-user-select:none;user-select:none}@media (max-width: 480px){.shell__title{font-size:clamp(28px,9vw,48px);letter-spacing:.04em}#terminal{height:min(400px,55vh)}.xterm{font-size:13px}}#terminal,#mobile-dpad{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}#mobile-dpad{padding-bottom:env(safe-area-inset-bottom,0px);padding-right:env(safe-area-inset-right,0px)}#mobile-dpad button{outline:none;-webkit-tap-highlight-color:transparent}#mobile-dpad button:focus{outline:none}@media (max-width: 480px) and (max-height: 700px){#mobile-dpad{bottom:max(80px,env(safe-area-inset-bottom,20px) + 60px)!important;transform:scale(.9)}}@media (max-width: 768px) and (orientation: landscape) and (max-height: 500px){#mobile-dpad{bottom:max(60px,env(safe-area-inset-bottom,20px) + 40px)!important;transform:scale(.85)}}/**
 * Copyright (c) 2014 The xterm.js authors. All rights reserved.
 * Copyright (c) 2012-2013, Christopher Jeffrey (MIT License)
 * https://github.com/chjj/term.js
 * @license MIT
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 *
 * Originally forked from (with the author's permission):
 *   Fabrice Bellard's javascript vt100 for jslinux:
 *   http://bellard.org/jslinux/
 *   Copyright (c) 2011 Fabrice Bellard
 *   The original design remains. The terminal itself
 *   has been extended to include xterm CSI codes, among
 *   other features.
 */.xterm{cursor:text;position:relative;user-select:none;-ms-user-select:none;-webkit-user-select:none}.xterm.focus,.xterm:focus{outline:none}.xterm .xterm-helpers{position:absolute;top:0;z-index:5}.xterm .xterm-helper-textarea{padding:0;border:0;margin:0;position:absolute;opacity:0;left:-9999em;top:0;width:0;height:0;z-index:-5;white-space:nowrap;overflow:hidden;resize:none}.xterm .composition-view{background:#000;color:#fff;display:none;position:absolute;white-space:nowrap;z-index:1}.xterm .composition-view.active{display:block}.xterm .xterm-viewport{background-color:#000;overflow-y:scroll;cursor:default;position:absolute;inset:0}.xterm .xterm-screen{position:relative}.xterm .xterm-screen canvas{position:absolute;left:0;top:0}.xterm .xterm-scroll-area{visibility:hidden}.xterm-char-measure-element{display:inline-block;visibility:hidden;position:absolute;top:0;left:-9999em;line-height:normal}.xterm.enable-mouse-events{cursor:default}.xterm.xterm-cursor-pointer,.xterm .xterm-cursor-pointer{cursor:pointer}.xterm.column-select.focus{cursor:crosshair}.xterm .xterm-accessibility:not(.debug),.xterm .xterm-message{position:absolute;inset:0;z-index:10;color:transparent;pointer-events:none}.xterm .xterm-accessibility-tree:not(.debug) *::selection{color:transparent}.xterm .xterm-accessibility-tree{user-select:text;white-space:pre}.xterm .live-region{position:absolute;left:-9999px;width:1px;height:1px;overflow:hidden}.xterm-dim{opacity:1!important}.xterm-underline-1{text-decoration:underline}.xterm-underline-2{text-decoration:double underline}.xterm-underline-3{text-decoration:wavy underline}.xterm-underline-4{text-decoration:dotted underline}.xterm-underline-5{text-decoration:dashed underline}.xterm-overline{text-decoration:overline}.xterm-overline.xterm-underline-1{text-decoration:overline underline}.xterm-overline.xterm-underline-2{text-decoration:overline double underline}.xterm-overline.xterm-underline-3{text-decoration:overline wavy underline}.xterm-overline.xterm-underline-4{text-decoration:overline dotted underline}.xterm-overline.xterm-underline-5{text-decoration:overline dashed underline}.xterm-strikethrough{text-decoration:line-through}.xterm-screen .xterm-decoration-container .xterm-decoration{z-index:6;position:absolute}.xterm-screen .xterm-decoration-container .xterm-decoration.xterm-decoration-top-layer{z-index:7}.xterm-decoration-overview-ruler{z-index:8;position:absolute;top:0;right:0;pointer-events:none}.xterm-decoration-top{z-index:2;position:relative}
