*, *::before, *::after {
    box-sizing: border-box;
}

@font-face {
    font-family: "04b30";
    src:
        url("/fonts/04b30.woff2") format("woff2"),
        url("/fonts/04b30.ttf") format("truetype");
    font-display: swap;
}

:root {
    color-scheme: only dark;
    --bg: #0b0f17;
    --panel: #0f1624;
    --border: rgba(255, 255, 255, .08);
    --text: rgba(255, 255, 255, .88);
    --muted: rgba(255, 255, 255, .55);
    --accent: #f62681;
    --accent-2: #8b5cf6;
    --radius: 14px;
    --font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

html {
    height: 100%;
    scrollbar-width: thin;
    scrollbar-color: var(--border) transparent;
}

body {
    /* min-height, not height: a height:100% flex container centers overflowing content
       symmetrically around its middle, clipping the top half above scrollTop 0 with no way to
       scroll up to it. min-height lets the box grow to fit taller-than-viewport content instead. */
    min-height: 100%;
    margin: 0;
    font: 16px/1.5 var(--font);
    color: var(--text);
    background:
        radial-gradient(1200px 800px at 15% 10%, rgba(246, 38, 129, .18), transparent 55%),
        radial-gradient(1000px 700px at 90% 15%, rgba(139, 92, 246, .14), transparent 55%),
        linear-gradient(180deg, rgba(7, 10, 16, .85), rgba(11, 15, 23, .9) 30%, rgba(11, 15, 23, .9)),
        url("/bg.png");
    background-size: auto, auto, auto, cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px 16px;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--panel);
    color: var(--text);
    padding: 8px 16px;
    border-radius: 0 0 8px 0;
    z-index: 10;
}

.skip-link:focus {
    left: 0;
}

.card {
    width: min(480px, 100%);
    margin: 0 auto;
    background: rgba(15, 22, 36, .65);
    border: 1px solid var(--border);
    border-radius: 18px;
    backdrop-filter: blur(10px);
    padding: 32px 28px;
    text-align: center;
}

.avatar {
    width: 128px;
    height: 128px;
    border-radius: 999px;
    border: 1px solid var(--border);
}

h1 {
    margin: 16px 0 4px;
}

.logo {
    font-family: "04b30", var(--font);
    font-size: 28px;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    text-shadow:
        0 0 4px rgba(246, 38, 129, .6),
        0 0 14px rgba(246, 38, 129, .35);
}

.brand-name {
    font-weight: 700;
}

.bio {
    margin: 0 0 28px;
    color: var(--muted);
}

.bio a {
    color: var(--accent);
    text-decoration: underline;
    text-decoration-color: rgba(246, 38, 129, .4);
    text-underline-offset: 2px;
    transition: color 120ms ease, text-decoration-color 120ms ease;
}

.bio a:hover {
    color: var(--text);
    text-decoration-color: var(--accent);
}

.bio a:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px var(--bg), 0 0 0 4px var(--accent);
    border-radius: 2px;
}

section + section {
    margin-top: 28px;
}

section.support {
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

h2 {
    margin: 0 0 14px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted);
}

.link-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.pill {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 46px;
    padding: 0 16px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, .03);
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: transform 120ms ease, background 120ms ease, border-color 120ms ease;
}

.pill:hover {
    background: linear-gradient(135deg, rgba(246, 38, 129, .35), rgba(139, 92, 246, .18));
    border-color: rgba(246, 38, 129, .55);
    transform: translateY(-1px);
}

.pill:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px var(--bg), 0 0 0 4px var(--accent);
}

.brand-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}
