:root{color-scheme:dark;--bg: #0f1216;--surface: #161a20;--surface-2: #1c2129;--text: #e6e8eb;--text-muted: #9aa3ad;--border: #2a313b;--accent: #3b82f6;--accent-strong: #2563eb;--accent-soft: rgba(59, 130, 246, .12);--on-accent: #ffffff;--ok: #22c55e;--warn: #f59e0b;--danger: #ef4444;--font-sans: "Inter", "Noto Sans JP", system-ui, sans-serif;--font-mono: "JetBrains Mono", "SFMono-Regular", Menlo, monospace;--radius: 6px;--shadow: 0 1px 2px rgba(0, 0, 0, .2);--header-h: 52px;--nav-w: 240px;--toc-w: 220px;--content-max: 760px}:root[data-theme=light]{color-scheme:light;--bg: #f7f8fa;--surface: #ffffff;--surface-2: #f0f2f5;--text: #1a1d21;--text-muted: #4b5563;--border: #d0d7e0;--accent: #1d4ed8;--accent-strong: #1e3a8a;--accent-soft: rgba(29, 78, 216, .12);--ok: #15803d;--warn: #b45309;--danger: #b91c1c;--shadow: 0 1px 2px rgba(0, 0, 0, .06)}:root[data-theme=dark]{color-scheme:dark;--bg: #0f1216;--surface: #161a20;--surface-2: #1c2129;--text: #e6e8eb;--text-muted: #9aa3ad;--border: #2a313b;--accent: #3b82f6;--accent-strong: #2563eb;--accent-soft: rgba(59, 130, 246, .12);--ok: #22c55e;--warn: #f59e0b;--danger: #ef4444;--shadow: 0 1px 2px rgba(0, 0, 0, .2)}*,*:before,*:after{box-sizing:border-box}html{font-family:var(--font-sans);background:var(--bg);color:var(--text);line-height:1.75;font-size:16px;-webkit-text-size-adjust:100%}body{margin:0;min-height:100vh;background:var(--bg);color:var(--text)}a{color:var(--accent);text-decoration-thickness:1px;text-underline-offset:2px}a:hover{color:var(--accent-strong)}img,video{max-width:100%;height:auto;display:block}code,kbd,pre,samp{font-family:var(--font-mono);font-size:.875rem}pre{background:var(--surface-2);border:1px solid var(--border);border-radius:var(--radius);padding:.875rem 1rem;overflow-x:auto}:not(pre)>code{background:var(--accent-soft);border-radius:4px;padding:.1em .35em}h1,h2,h3,h4{font-weight:600;line-height:1.3;letter-spacing:-.01em}h1{font-size:1.75rem}h2{font-size:1.35rem;margin-top:2rem}h3{font-size:1.1rem}p{margin:.85rem 0}ul,ol{padding-left:1.25rem}hr{border:0;border-top:1px solid var(--border);margin:2rem 0}button,input,select,textarea{font:inherit;color:inherit}.btn{display:inline-flex;align-items:center;justify-content:center;gap:.4rem;min-height:2.25rem;padding:.4rem .9rem;border-radius:var(--radius);border:1px solid var(--border);background:var(--surface);color:var(--text);cursor:pointer;text-decoration:none}.btn:hover{border-color:var(--accent);color:var(--text)}.btn-primary{background:var(--accent);border-color:var(--accent);color:var(--on-accent)}.btn-primary:hover{background:var(--accent-strong);border-color:var(--accent-strong);color:var(--on-accent)}.btn:disabled,.btn[aria-disabled=true]{opacity:.45;cursor:not-allowed}.muted{color:var(--text-muted)}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}.site-shell{min-height:100vh}.site-main{width:min(1120px,calc(100% - 2rem));margin:0 auto;padding:1.5rem 0 4rem}.prose :where(h2,h3,h4){scroll-margin-top:calc(var(--header-h) + 1rem)}.prose :where(pre,table,.cm-editor,.xterm){max-width:100%}.prose{min-width:0;overflow-wrap:anywhere}/**
 * 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}.site-header[data-astro-cid-ctg3m53h]{position:sticky;top:0;z-index:50;min-height:var(--header-h);border-bottom:1px solid var(--border);background:color-mix(in srgb,var(--bg) 92%,transparent);backdrop-filter:blur(8px)}.inner[data-astro-cid-ctg3m53h]{min-height:var(--header-h);width:min(1280px,calc(100% - 1.5rem));margin:0 auto;display:flex;align-items:center;gap:.75rem;position:relative;flex-wrap:nowrap}.brand[data-astro-cid-ctg3m53h]{font-weight:600;color:var(--text);text-decoration:none;letter-spacing:-.02em;flex-shrink:0;white-space:nowrap}.nav[data-astro-cid-ctg3m53h]{display:flex;gap:.9rem;flex:1;font-size:.9rem;align-items:center;min-width:0}.nav[data-astro-cid-ctg3m53h] a[data-astro-cid-ctg3m53h]{color:var(--text-muted);text-decoration:none;white-space:nowrap}.nav[data-astro-cid-ctg3m53h] a[data-astro-cid-ctg3m53h]:hover{color:var(--text)}.right[data-astro-cid-ctg3m53h]{display:flex;align-items:center;gap:.5rem;margin-left:auto;flex-shrink:0}.theme-toggle[data-astro-cid-ctg3m53h]{display:inline-flex;gap:.25rem;flex-shrink:0}.theme-btn[data-astro-cid-ctg3m53h]{font-size:.75rem;padding:.2rem .45rem;white-space:nowrap}.theme-btn[data-astro-cid-ctg3m53h][aria-pressed=true]{border-color:var(--accent);color:var(--accent)}.menu-toggle[data-astro-cid-ctg3m53h]{display:none;flex-shrink:0;white-space:nowrap}.menu-extras[data-astro-cid-ctg3m53h]{display:none}.menu-toc[data-astro-cid-ctg3m53h]{white-space:nowrap}@media(max-width:1023px){.right[data-astro-cid-ctg3m53h]{flex-shrink:1;min-width:0;max-width:min(42vw,11rem)}.right[data-astro-cid-ctg3m53h] .connection-badge{max-width:100%}.desk-theme[data-astro-cid-ctg3m53h]{display:none}.menu-toggle[data-astro-cid-ctg3m53h]{display:inline-flex}.nav[data-astro-cid-ctg3m53h]{display:none;position:absolute;top:100%;left:0;right:0;flex:none;flex-direction:column;align-items:stretch;gap:0;background:var(--surface);border-bottom:1px solid var(--border);padding:.5rem .75rem .75rem;z-index:60}.nav[data-astro-cid-ctg3m53h].open{display:flex}.nav[data-astro-cid-ctg3m53h] a[data-astro-cid-ctg3m53h]{padding:.65rem .25rem;border-bottom:1px solid var(--border);white-space:normal}.menu-extras[data-astro-cid-ctg3m53h]{display:grid;gap:.65rem;padding-top:.75rem}.menu-theme[data-astro-cid-ctg3m53h]{display:inline-flex}}
