/* node_modules/normalize.css/normalize.css */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
main {
  display: block;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}
a {
  background-color: transparent;
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}
b,
strong {
  font-weight: bolder;
}
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
img {
  border-style: none;
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}
button,
input {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}
progress {
  vertical-align: baseline;
}
textarea {
  overflow: auto;
}
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}
[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
details {
  display: block;
}
summary {
  display: list-item;
}
template {
  display: none;
}
[hidden] {
  display: none;
}

/* src/styles/prism-theme.css */
:root {
  --tok-comment: #8a94a7;
  --tok-punctuation: #b3bccb;
  --tok-keyword: #e0a04c;
  --tok-string: #7ec9a0;
  --tok-number: #d98a8a;
  --tok-function: #7fb0e6;
  --tok-operator: #c8b6e0;
  --tok-class: #e6c07b;
  --tok-property: #83c4d6;
  --tok-tag: #e0a04c;
  --tok-deleted: #d98a8a;
  --tok-inserted: #7ec9a0;
}
.color-scheme-light {
  --tok-comment: #6a737d;
  --tok-punctuation: #4b5563;
  --tok-keyword: #955a12;
  --tok-string: #0b7a53;
  --tok-number: #b02a37;
  --tok-function: #1f5fa8;
  --tok-operator: #6b4fa0;
  --tok-class: #8a6d1a;
  --tok-property: #0e6b7f;
  --tok-tag: #955a12;
  --tok-deleted: #b02a37;
  --tok-inserted: #0b7a53;
}
code[class*=language-],
pre[class*=language-] {
  color: var(--text-color);
  white-space: pre;
  word-spacing: normal;
  word-break: normal;
  -moz-tab-size: 2;
  tab-size: 2;
  hyphens: none;
}
.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
  color: var(--tok-comment);
  font-style: italic;
}
.token.punctuation {
  color: var(--tok-punctuation);
}
.token.property,
.token.tag,
.token.symbol,
.token.constant,
.token.attr-name {
  color: var(--tok-property);
}
.token.boolean,
.token.number {
  color: var(--tok-number);
}
.token.selector,
.token.string,
.token.char,
.token.attr-value,
.token.builtin,
.token.inserted {
  color: var(--tok-string);
}
.token.operator,
.token.entity,
.token.url {
  color: var(--tok-operator);
}
.token.atrule,
.token.keyword {
  color: var(--tok-keyword);
}
.token.function,
.token.class-name {
  color: var(--tok-function);
}
.token.class-name {
  color: var(--tok-class);
}
.token.regex,
.token.important,
.token.variable {
  color: var(--tok-property);
}
.token.deleted {
  color: var(--tok-deleted);
}
.token.important,
.token.bold {
  font-weight: bold;
}
.token.italic {
  font-style: italic;
}

/* src/styles/client.css */
:root {
  --bg-color: #150f0a;
  --text-color: #f5f9ff;
  --highlight-color: #d68a5c;
}
.color-scheme-light {
  --bg-color: #f5efe8;
  --text-color: #0a0e1f;
  --highlight-color: #d68a5c;
}
.blur-background {
  @supports (backdrop-filter: blur(4px)) {
    backdrop-filter: blur(8px);
    background-color: rgba(21, 15, 10, 0.6) !important;
  }
}
.color-scheme-light .blur-background {
  @supports (backdrop-filter: blur(4px)) {
    backdrop-filter: blur(8px);
    background-color: rgba(245, 239, 232, 0.6) !important;
  }
}
* {
  color: var(--text-color);
  box-sizing: border-box;
}
::selection {
  background: dodgerblue;
  color: #fff;
}
html {
  scroll-behavior: smooth;
}
body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family:
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  line-height: 1.5;
}
p {
  line-height: 1.6;
  margin: 1.2em 0;
}
img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}
a {
  color: var(--highlight-color);
  text-decoration: underline;
  text-underline-offset: 2px;
}
a:hover {
  text-decoration: none;
}
button {
  background-color: transparent;
  border-radius: 4px;
  border: 1px solid currentcolor;
  padding: 0.3em;
  color: var(--text-color);
  font-family: inherit;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 1.6em 0 0.8em;
  line-height: 1.2;
  scroll-margin-top: 70px;
}
h1 {
  font-size: clamp(30px, 5vw, 44px);
}
h1,
h2,
h3 {
  color: var(--highlight-color);
}
:is(h1, h2, h3, h4, h5, h6) a {
  color: inherit;
  text-decoration: none;
}
.heading-anchor {
  opacity: 0;
  font-weight: normal;
  font-size: 0.8em;
  margin-left: 0.2em;
  transition: opacity 0.15s;
}
:is(h1, h2, h3, h4, h5, h6):hover .heading-anchor {
  opacity: 0.5;
}
.heading-anchor:hover {
  opacity: 1;
}
:is(h1, h2, h3, h4, h5, h6) code {
  color: inherit;
  font-size: 0.9em;
  background: rgba(214, 138, 92, 0.12);
}
blockquote {
  border-left: 3px solid var(--highlight-color);
  margin: 1.5em 0;
  padding: 0.2em 0 0.2em 1em;
  opacity: 0.9;
}
blockquote p {
  margin: 0.4em 0;
}
hr {
  border: none;
  border-top: 1px solid rgba(128, 128, 128, 0.3);
  margin: 2.5em 0;
}
ul,
ol {
  line-height: 1.7;
  padding-left: 1.4em;
}
li {
  margin: 0.3em 0;
}
code.inline,
:not(pre) > code {
  font-family:
    ui-monospace,
    SFMono-Regular,
    "SF Mono",
    Menlo,
    Consolas,
    "Liberation Mono",
    monospace;
  font-size: 0.88em;
  background: rgba(128, 128, 128, 0.16);
  border-radius: 4px;
  padding: 0.12em 0.4em;
  word-break: break-word;
}
.code-block-container {
  position: relative;
  margin: 1.5em 0;
  max-width: 100%;
}
.code-block-container pre {
  margin: 0;
  padding: 1em 1.1em;
  overflow-x: auto;
  border: 1px solid rgba(128, 128, 128, 0.35);
  border-radius: 6px;
  background: rgba(128, 128, 128, 0.08);
  font-size: 0.9rem;
  line-height: 1.55;
  tab-size: 2;
}
.color-scheme-light .code-block-container pre {
  background: rgba(10, 14, 31, 0.04);
}
.code-block-container pre code {
  font-family:
    ui-monospace,
    SFMono-Regular,
    "SF Mono",
    Menlo,
    Consolas,
    "Liberation Mono",
    monospace;
  background: none;
  padding: 0;
  font-size: inherit;
}
.copy-button {
  position: absolute;
  top: 0.5em;
  right: 0.5em;
  height: 26px;
  padding: 0 10px;
  border-radius: 4px;
  border: 1px solid rgba(128, 128, 128, 0.5);
  background: var(--bg-color);
  color: var(--text-color);
  font-size: 11px;
  font-family: ui-monospace, monospace;
  cursor: pointer;
  opacity: 0;
  transition:
    opacity 0.15s,
    color 0.15s,
    border-color 0.15s;
}
.code-block-container:hover .copy-button,
.copy-button:focus {
  opacity: 0.8;
}
.copy-button:hover {
  opacity: 1;
  border-color: var(--highlight-color);
  color: var(--highlight-color);
}
.copy-button.copied {
  opacity: 1;
  color: var(--highlight-color);
  border-color: var(--highlight-color);
}
table {
  border-collapse: collapse;
  width: 100%;
  margin: 1.5em 0;
  font-size: 0.92rem;
  display: block;
  overflow-x: auto;
}
th,
td {
  border: 1px solid rgba(128, 128, 128, 0.3);
  padding: 0.5em 0.8em;
  text-align: left;
  vertical-align: top;
}
th {
  background: rgba(214, 138, 92, 0.1);
  color: var(--highlight-color);
  font-weight: 600;
}
tbody tr:nth-child(even) {
  background: rgba(128, 128, 128, 0.05);
}
mark {
  background: var(--highlight-color);
  color: var(--bg-color);
}
/*! Bundled license information:

normalize.css/normalize.css:
  (*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css *)
*/
