body {
    margin: 5% auto;
    background: #1e1e1e;
    color: #e4e4e7;
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
        sans-serif;
    font-size: 18px;
    line-height: 1.7;
    max-width: 70%;
}

.wrap {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.site-header {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #2d2d2d;
}

.site-header__inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.site-title {
    font-size: 1.15em;
    font-weight: 600;
    color: #e4e4e7;
    border-bottom: none;
}

.site-nav {
    display: flex;
    gap: 1rem;
    margin-left: auto;
}

.nav-link {
    font-size: 0.95em;
    border-bottom: 1px solid transparent;
}

.nav-link.is-active {
    font-weight: 600;
    border-bottom-color: currentColor;
}

.nav-link:hover,
.nav-link:focus {
    border-bottom-color: currentColor;
}

code {
    background: #2d2d2d;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 0.9em;
    color: #fb923c;
}

a {
    color: #db5461;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.2s ease;
}

pre,
pre code {
    background: #0d1117 !important;
    text-shadow: none;
    color: #c9d1d9;
}

pre {
    padding: 16px;
    border-radius: 8px;
    overflow-x: auto;
    line-height: 1.5;
    border: 1px solid #30363d;
}

pre code {
    background: none !important;
    padding: 0;
    color: inherit;
    font-size: 0.95em;
}
