@font-face {
    font-family: "Inter";
    src: url("/static/Inter-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Inter";
    src: url("/static/Inter-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}

* {
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

body {
    max-width: 750px;
    margin: 40px auto;
    padding: 0 20px;
    line-height: 1.6;
    background: #fff;
    color: #111;
}

h1 {
    margin-bottom: 0;
}

.subtitle {
    color: #666;
    margin-top: 0;
}

a {
    color: #0066cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

details {
    margin-top: 10px;
}

pre {
    overflow-x: auto;
    white-space: pre-wrap;
    word-break: break-word;
    background: #f5f5f5;
    padding: 10px;
    border-radius: 4px;
    font-size: 0.9rem;
}

footer {
    margin-top: 50px;
    color: #666;
    font-size: 0.9em;
}