@font-face {
    font-family: 'JetBrains Mono';
    src: url('/static/fonts/JetBrainsMono-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'JetBrains Mono';
    src: url('/static/fonts/JetBrainsMono-Italic.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'JetBrains Mono';
    src: url('/static/fonts/JetBrainsMono-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'JetBrains Mono';
    src: url('/static/fonts/JetBrainsMono-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
* { font-size: 13px; margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'JetBrains Mono', monospace;
    line-height: 1.75;
    display: flex; 
    align-items: center; 
    justify-content: center;
    flex-direction: column;
    min-height: 100vh; padding: 40px 0;
    background: #fff; color: #171717;
}

.site-logo { 
    display: flex; 
    align-items: center;
    justify-content: center;
    margin-bottom: 24px; 

    img {
        width: 48px;
        height: auto;
    }
}

a {
    color: #ee1435;
    text-decoration: underline;
}
a:hover {
    color: #6f14ee;
}
.card {
    background: #fff; border: 1px solid #e0e0e0; border-radius: 12px;
    padding: 48px; max-width: 420px; text-align: center;
}
.card-wide {
    background: #fff; border: 1px solid #e0e0e0; border-radius: 12px;
    padding: 48px; max-width: 720px; width: 100%;
}
h1, h2, h3, h4, h5 { text-transform: uppercase; }
h1 { margin-bottom: 12px; }
p { color: #555; margin-bottom: 24px; }
.page-wrap {
    display: flex; flex-direction: column; align-items: stretch;
    width: 720px; max-width: 100%;
}
.below-card {
    text-align: center; margin-top: 16px;
}
.top-nav {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 16px;
}
a.btn, form button {
    display: inline-block; background: #111; color: #fff; border: none;
    border-radius: 8px; padding: 14px 32px;
    cursor: pointer; transition: background 0.2s; text-decoration: none;
    font-family: 'JetBrains Mono', monospace;
}
a.btn:hover, form button:hover { background: #333; }
@media (max-width: 720px) {
    body { padding: 40px 20px; }
    .card, .card-wide { padding: 0; border: 0; border-radius: 0; }
}
