:root {
    color-scheme: dark;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
        "Liberation Mono", "Courier New", monospace;
    color: #e4e4e7;
    background: #111113;
    font-size: 16px;
    line-height: 1.7;
}

* { box-sizing: border-box; }

body {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 48px) 64px;
}

a { color: inherit; text-underline-offset: 5px; }
a:hover { color: #b8c4ff; }
a:focus-visible, button:focus-visible { outline: 2px solid #b8c4ff; outline-offset: 4px; }

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 30px 0;
    border-bottom: 1px solid #2c2c31;
    margin-bottom: clamp(40px, 8vw, 80px);
}

.wordmark { font-weight: 700; text-decoration: none; }

.snippet {
    overflow: hidden;
    border: 1px solid #303036;
    border-radius: 8px;
    background: #1b1b1f;
    color: #e4e4e7;
}

.snippet-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 18px;
    color: #a1a1aa;
    font-size: 12px;
}

.snippet-body { padding: 8px clamp(18px, 4vw, 28px) 28px; }
button {
    font: inherit;
    color: #d4d4d8;
    background: #25252b;
    border: 1px solid #42424a;
    border-radius: 5px;
    padding: 5px 10px;
    cursor: pointer;
}
button:hover { background: #34343c; color: #fff; }
pre, code { font: inherit; }
pre { margin: 0; white-space: pre-wrap; overflow-wrap: anywhere; }
h1 { font-size: 1.6rem; line-height: 1.3; margin: 0 0 16px; }
.muted { color: #a1a1aa; }
