body {
    margin: 0;
    padding: 0;
    background: #000;
    color: #fff;
    font-family:
        system-ui,
        -apple-system,
        sans-serif;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
}

a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.2s ease;
}
a:hover {
    color: #fff;
}

/* Footer */
footer {
    padding: 20px 20px calc(20px + env(safe-area-inset-bottom, 0px));
    text-align: center;
    font-size: 1.1rem;
    width: 100%;
    box-sizing: border-box;
}
footer span {
    color: #acacac;
}

/* Status badges */
.status {
    font-size: 0.75rem;
    text-transform: lowercase;
    letter-spacing: 0.03em;
    display: inline-block;
    padding: 2px 10px;
    border-radius: 3px;
    background: none;
    color: #888;
    vertical-align: 0.16em;
}
.status::before {
    margin-right: 4px;
    font-weight: 400;
}
.status.launched::before {
    content: "\2713"; /* ✓ */
    font-size: 1.5em;
}
.status.incubator::before {
    content: "\25D0"; /* ◐ */
    font-size: 1.55em;
    vertical-align: -0.06em;
}
.status.acquired::before {
    content: "\25CE"; /* ◎ */
    font-size: 1.55em;
    vertical-align: -0.06em;
}
.status.sunset::before {
    content: "\25CB"; /* ○ */
    font-size: 1.55em;
    vertical-align: -0.06em;
}
