@charset "UTF-8";:root{--background: #252525;--text: #d4d4d4;--muted: rgba(212, 212, 212, .7);--block: #191919;--highlight: #05aab0;--scrollbar: #37352f;--button-hover: #057ab0}@media(prefers-color-scheme:light){:root{--background: #f1f1ef;--text: #37352f;--muted: rgba(55, 53, 47, .7);--block: hwb(0 100% 0%);--highlight: #05aab0;--scrollbar: #d4d4d4;--button-hover: #057ab0}}.light-mode{--background: #f1f1ef;--text: #37352f;--muted: rgba(55, 53, 47, .7);--block: #ffffff;--highlight: #05aab0;--scrollbar: #d4d4d4;--button-hover: #057ab0}.dark-mode{--background: #252525;--text: #d4d4d4;--muted: rgba(212, 212, 212, .7);--block: #191919;--highlight: #05aab0;--scrollbar: #37352f;--button-hover: #057ab0}*{box-sizing:border-box}html{display:flex;flex-direction:column;width:100%;min-height:100%}#app{margin:auto;width:100%;height:100%;text-align:center}body{flex:1;margin:0;font-family:"ui-sans-serif",sans-serif;background-color:var(--background);color:var(--text);display:flex;flex-direction:column}.container.full{display:grid;grid-template-columns:repeat(auto-fit,min(100%,32rem));justify-content:center;align-items:stretch;gap:1rem;margin:1rem}.container.full .container.pk{margin:0;height:min-content;width:100%}.container.front{padding:1rem;width:100%;height:100%;display:grid;grid-template-columns:repeat(auto-fit,11rem);grid-auto-rows:1fr;justify-content:center;align-items:stretch;gap:1rem}.card.front{width:100%;display:flex;flex-direction:column;background-color:var(--block);border-radius:4px;flex:1}.card.front .avatar{width:100%;height:auto;border-radius:4px 4px 0 0;object-fit:cover}.card.front .desc{flex:1;padding:.75rem .5rem 1rem;text-align:center;overflow-wrap:break-word}.card.front .desc .name{margin:0}.card.front .desc hr{background-color:#a0a0a04d;height:1px;border:none;margin:.5rem 0 .75rem}.front.link{border-radius:4px;color:var(--text);display:flex;flex-direction:column}.front.link:hover,.front.link:focus{outline:none!important;box-shadow:0 0 0 3px #05aab099;transform:scale(102%);transition:transform .1s ease-out}.tinytext{font-size:.8rem;color:rgba(var(--text),.75)}.container.member{padding:1rem;text-align:left;display:flex;flex-direction:column;gap:1rem}.container.member .side{display:flex;flex-direction:column;border-radius:4px 4px 0 0;gap:1rem;height:100%}.container.member .side .top{display:flex;flex-direction:column;flex:1;width:100%;gap:1rem}.container.member .side .top .avatar{width:100%;max-width:none;height:auto;border-radius:4px;object-fit:cover}.container.member .side .top .info{display:flex;gap:.325rem;flex-direction:column;flex:0 0 auto;padding:1rem .5rem 1rem 1rem;border-radius:4px;background-color:var(--block);flex:1}.container.member .side .top .info h3{margin:0}.container.member .side .top .info hr{border:none;height:2px;width:100%;background-color:var(--background)}.container.member .content{display:flex;flex-direction:column;gap:1rem;width:100%;height:100%}.container.member .content .desc{padding:1rem .5rem 1rem 1rem;border-radius:4px;background-color:var(--block)}.container.member .content .desc div{overflow:auto;height:100%;padding-right:.5rem;scrollbar-width:thin;scrollbar-color:var(--scrollbar) transparent}.container.member .content .desc ::-webkit-scrollbar{width:7px;background-color:transparent}.container.member .content .desc ::-webkit-scrollbar-thumb{border-radius:3.5px;background-color:var(--scrollbar)}.container.member .content .banner{width:100%;position:relative;padding-top:30%;border-radius:4px}.container.member .content .banner img{border-radius:4px;position:absolute;inset:0;object-fit:cover;width:100%;height:100%}.container.pk{border-radius:4px;background-color:var(--block);display:flex;padding:1rem;width:100%;flex-direction:row;margin:auto;text-align:left;flex-wrap:wrap}.container.pk .row{margin-left:-.5rem;margin-right:-.5rem}.container.pk .col{padding:0 .5rem;min-width:30%;flex:1}.container.pk .info{flex:1;display:flex;flex-direction:column}.container.pk .info .title{font-weight:700;display:flex;align-items:center;gap:.5rem}.container.pk .info .icon{width:24px;height:24px;object-fit:cover;border-radius:50%}.container.pk .avatar-wrapper .avatar{width:80px;height:auto;object-fit:cover;border-radius:4px}.container.pk img.banner{border-radius:4px;object-fit:cover;width:100%;height:auto}.container.pk .footer{width:100%;font-size:.8rem}.container.info{align-items:center;margin:auto;padding:1rem;text-align:center;display:flex;flex-direction:column;gap:1rem}.container.info .content{width:100%;display:flex;flex-direction:column;gap:1rem;flex:1;padding:1rem;border-radius:4px;background-color:var(--block)}input{padding:.5rem;border:rgba(160,160,160,.3);border-radius:4px;background-color:var(--background);color:var(--text)}input[type=checkbox]{-moz-appearance:initial;border:2px solid rgba(0,0,0,0);position:relative;padding:.625rem;background-color:var(--text);cursor:pointer;font-weight:700}input[type=checkbox]:hover{border:2px solid var(--text)}input[type=checkbox]:checked{background-color:var(--highlight)}input[type=checkbox]:checked:after{position:absolute;text-align:center;inset:0;content:"✕";font-size:1rem}.button{border:none;padding:.75rem;color:#fff;background:var(--highlight);border-radius:4px;text-align:center;cursor:pointer;display:block;font-size:1rem}.button:hover{background-color:var(--button-hover);color:#fff;transition:all .1s ease-out;transform:scale(105%)}.row{display:flex;flex-direction:column;gap:1rem;flex-wrap:wrap;justify-content:center}@media(min-width:400px){.container.member .side .top{flex-direction:row}.container.member .side .top .avatar{max-width:12rem}}@media(min-width:800px){.container.member{flex-direction:row;justify-content:center}.container.member .side{width:30%;max-width:15rem}.container.member .side .top{flex-direction:column}.container.member .side .top .avatar{max-width:100%}.container.member .content{max-width:35rem}.container.member .content .desc div{max-height:18rem}.container.pk{max-width:32rem}.container.info{width:75%;max-width:45rem}.row{flex-direction:row}.button{width:min-content}}.d-spoiler{color:var(--background);background-color:var(--background);border-radius:2px;transition-delay:6000s}.d-spoiler:active{color:var(--text);transition-delay:0s}.emoji,.d-emoji{height:1em;margin:0 .05em 0 .1em;vertical-align:-.1em}blockquote{margin:.75rem 0;padding:0 0 0 1.5rem;border-left:4px solid var(--background)}a{color:var(--highlight);text-decoration:none;transition:color .3s ease}a:hover{color:var(--button-hover)}code{background-color:var(--background);border-radius:2px;padding:.1rem .25rem}pre{white-space:pre-wrap}pre code{display:block;overflow-x:auto;padding:1em}ul,ol{padding-left:1rem}small{color:var(--muted);display:block}.embed-section blockquote{border-left:4px solid var(--divider-color)}.embed-body a{color:#0088fc}.embed-body a:hover{text-decoration:underline}.dark-mode .hljs{color:#c9d1d9}.dark-mode .hljs-doctag,.dark-mode .hljs-keyword,.dark-mode .hljs-meta .hljs-keyword,.dark-mode .hljs-template-tag,.dark-mode .hljs-template-variable,.dark-mode .hljs-type,.dark-mode .hljs-variable.language_{color:#ff7b72}.dark-mode .hljs-title,.dark-mode .hljs-title.class_,.dark-mode .hljs-title.class_.inherited__,.dark-mode .hljs-title.function_{color:#d2a8ff}.dark-mode .hljs-attr,.dark-mode .hljs-attribute,.dark-mode .hljs-literal,.dark-mode .hljs-meta,.dark-mode .hljs-number,.dark-mode .hljs-operator,.dark-mode .hljs-variable,.dark-mode .hljs-selector-attr,.dark-mode .hljs-selector-class,.dark-mode .hljs-selector-id{color:#79c0ff}.dark-mode .hljs-regexp,.dark-mode .hljs-string,.dark-mode .hljs-meta .hljs-string{color:#a5d6ff}.dark-mode .hljs-built_in,.dark-mode .hljs-symbol{color:#ffa657}.dark-mode .hljs-comment,.dark-mode .hljs-code,.dark-mode .hljs-formula{color:#8b949e}.dark-mode .hljs-name,.dark-mode .hljs-quote,.dark-mode .hljs-selector-tag,.dark-mode .hljs-selector-pseudo{color:#7ee787}.dark-mode .hljs-subst{color:#c9d1d9}.dark-mode .hljs-section{color:#1f6feb;font-weight:700}.dark-mode .hljs-bullet{color:#f2cc60}.dark-mode .hljs-emphasis{color:#c9d1d9;font-style:italic}.dark-mode .hljs-strong{color:#c9d1d9;font-weight:700}.dark-mode .hljs-addition{color:#aff5b4;background-color:#033a16}.dark-mode .hljs-deletion{color:#ffdcd7;background-color:#67060c}.light-mode .hljs{color:#24292e}.light-mode .hljs-doctag,.light-mode .hljs-keyword,.light-mode .hljs-meta .hljs-keyword,.light-mode .hljs-template-tag,.light-mode .hljs-template-variable,.light-mode .hljs-type,.light-mode .hljs-variable.language_{color:#d73a49}.light-mode .hljs-title,.light-mode .hljs-title.class_,.light-mode .hljs-title.class_.inherited__,.light-mode .hljs-title.function_{color:#6f42c1}.light-mode .hljs-attr,.light-mode .hljs-attribute,.light-mode .hljs-literal,.light-mode .hljs-meta,.light-mode .hljs-number,.light-mode .hljs-operator,.light-mode .hljs-variable,.light-mode .hljs-selector-attr,.light-mode .hljs-selector-class,.light-mode .hljs-selector-id{color:#005cc5}.light-mode .hljs-regexp,.light-mode .hljs-string,.light-mode .hljs-meta .hljs-string{color:#032f62}.light-mode .hljs-built_in,.light-mode .hljs-symbol{color:#e36209}.light-mode .hljs-comment,.light-mode .hljs-code,.light-mode .hljs-formula{color:#6a737d}.light-mode .hljs-name,.light-mode .hljs-quote,.light-mode .hljs-selector-tag,.light-mode .hljs-selector-pseudo{color:#22863a}.light-mode .hljs-subst{color:#24292e}.light-mode .hljs-section{color:#005cc5;font-weight:700}.light-mode .hljs-bullet{color:#735c0f}.light-mode .hljs-emphasis{color:#24292e;font-style:italic}.light-mode .hljs-strong{color:#24292e;font-weight:700}.light-mode .hljs-addition{color:#22863a;background-color:#f0fff4}.light-mode .hljs-deletion{color:#b31d28;background-color:#ffeef0}#nprogress{pointer-events:none}#nprogress .bar{background:#29d;position:fixed;z-index:1031;top:0;left:0;width:100%;height:2px}#nprogress .peg{display:block;position:absolute;right:0;width:100px;height:100%;box-shadow:0 0 10px #29d,0 0 5px #29d;opacity:1;-webkit-transform:rotate(3deg) translate(0px,-4px);-ms-transform:rotate(3deg) translate(0px,-4px);transform:rotate(3deg) translateY(-4px)}#nprogress .spinner{display:block;position:fixed;z-index:1031;top:15px;right:15px}#nprogress .spinner-icon{width:18px;height:18px;box-sizing:border-box;border:solid 2px transparent;border-top-color:#29d;border-left-color:#29d;border-radius:50%;-webkit-animation:nprogress-spinner .4s linear infinite;animation:nprogress-spinner .4s linear infinite}.nprogress-custom-parent{overflow:hidden;position:relative}.nprogress-custom-parent #nprogress .spinner,.nprogress-custom-parent #nprogress .bar{position:absolute}@-webkit-keyframes nprogress-spinner{0%{-webkit-transform:rotate(0deg)}to{-webkit-transform:rotate(360deg)}}@keyframes nprogress-spinner{0%{transform:rotate(0)}to{transform:rotate(360deg)}}
