@font-face {
    font-family: 'Victor Mono';
    src: url('../fonts/VictorMono/VictorMono-Regular.woff2') format('woff2');
    font-style: normal;
}

/* outfit-regular - latin */
@font-face {
    font-display: swap;
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/Outfit/outfit-v15-latin-regular.woff2') format('woff2');
}

/* outfit-700 - latin */
@font-face {
    font-display: swap;
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/Outfit/outfit-v15-latin-700.woff2') format('woff2');
}

/* jetbrainsmono-regul */
@font-face {
    font-display: swap;
    font-family: 'JetBrainsMono';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/JetBrainsMono/JetBrainsMono-Regular.woff2') format('woff2');
}


:root {
    --bg: #3a4568;
    --card: #111522;
    --text: #e1e6ff;
    --logo-text: pink;
    --muted: #aab4d6;
    --line: pink;
    --accent: #7aa2ff;
    --accent2: #7dffb2;
    --shadow: 0 10px 50px 10px rgba(0, 0, 0, .35);
    --radius: 16px;
    --max: 1100px;
    --header-h: 80px;
    --color-note: rgba(100, 160, 255, 0.9);
    --color-warn: rgba(255, 140, 90, 0.95);
}

* {
    box-sizing: border-box;
    font-family: 'Outfit', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
}

html,
body {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    padding-top: var(--header-h);
    margin: 0;
    background: var(--bg);
    color: var(--text);
    line-height: 1.55;
}

a {
    color: inherit
}

.wrap {
    max-width: var(--max);
    margin: 0 auto;
    padding: 24px
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-h);
    background: rgba(11, 13, 18, 0.85);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    padding: 2px 15px 2px 15px;
    z-index: 1000;
}

.logo-text {
    font-weight: 700;
    font-size: 40px;
    color: var(--logo-text);
    letter-spacing: .3px;
}

.logo-text a {
    text-decoration: none;
}

.stretcher {
    flex-grow: 1
}

.banner {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    letter-spacing: .2px;
}

.navlinks {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
    align-items: center
}

.navlinks a {
    text-decoration: none;
    color: var(--muted);
    padding: 8px 10px;
    border-radius: 12px;
}

.navlinks a:hover {
    color: var(--text);
    background: rgba(36, 48, 77, .35)
}

.navlinks a.active,
.navlinks a[aria-current="page"] {
    color: var(--text);
    background: rgba(36, 48, 77, .55);
}


.container {
    padding: 14px;
}

.headline {
    font-size: clamp(32px, 4.5vw, 40px);
    line-height: 1.08;
    letter-spacing: -.6px;
    padding: 0 0 30px 0;
    text-align: center;
}

.sub {
    color: var(--muted);
    font-size: clamp(16px, 1.35vw, 19px);
    margin: 0 0 18px;
    max-width: 60ch;
}

.section {
    padding: 40px 0;
}

.section-title {
    font-size: 40px;
    letter-spacing: -.2px;
}

.section-sub {
    display: block;
    margin: -6px 0 16px;
    color: var(--muted);
    max-width: 80ch;
}

.button {
    display: inline-block;
    background: var(--accent);
    color: #111522;
    font-weight: 700;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: background .3s ease;
}

.image-block {
    margin: 0 auto 24px;
    padding: 0 20px 0 20px;
}

.image {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
}

.caption {
    font-size: 20px;
    color: var(--muted);
    text-align: center;
    display: block;
    padding: 0;
    margin-top: 20px;
}

[id] {
    scroll-margin-top: calc(var(--header-h) + 12px);
}

.container {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 18px;
}

.muted {
    opacity: 0.8;
}

.callout {
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 5px 14px;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: var(--shadow);
    margin: 24px 0;
    border-radius: 12px;

}

.callout.note {
    border-left: 4px solid var(--color-note);
}

.callout.warn {
    border-left: 4px solid var(--color-warn);
}

.callout.warn strong {
    color: var(--color-warn);
    font-weight: 700;
    font-size: 1.4em;
}

.callout.note strong {
    color: var(--color-note);
    font-weight: 700;
    font-size: 1.4em;
}

.bullets {
    font-size: 24px;
    padding: 0 0 0 18px;
}

.bullets li {
    margin-bottom: 6px;
}

code.inline {
    font-family: 'JetBrainsMono', monospace;
    background: rgba(200, 200, 200, 0.4);
    padding: 2px 6px;
    border-radius: 6px;
    font-size: 95%;
}

pre,
pre code,
code.hljs,
pre code.hljs,
.hljs,
.hljs * {
    font-family: 'JetBrainsMono', monospace;
}

.tabs {
    margin-top: 8px;
}

.tab-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.tab {
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
    color: inherit;
    padding: 10px 12px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 17px;
}

.tab img {
    width: 20px;
    height: 20px;
    display: block;
}

.tab.active {
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.22);
}

.panel {
    display: none;
}

.panel.active {
    display: block;
}

.steps {
    font-size: 20px;
}

pre code.language-shell,
pre code.language-bash {
    display: block;
    font-family: 'JetBrainsMono', monospace;
    white-space: pre;
}

p {
    font-size: 20px;
}

.github-logo {
    width: 30px;
    height: 30px;
    vertical-align: middle;
    fill: var(--muted);
}

.question {
    margin: 20px 0 10px 0;
    font-size: 22px;
}

.answer {
    margin: 0 0 20px 0;
    font-size: 22px;
    color: var(--muted);
}
