* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #101018;
    color: #eeeef5;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.card {
    width: min(90%, 560px);
    padding: 48px 40px;
    text-align: center;
    background: #191923;
    border: 1px solid #30303d;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.fox {
    font-size: 64px;
    margin-bottom: 10px;
}

h1 {
    margin: 0;
    font-size: 42px;
    letter-spacing: 1px;
}

.host {
    margin-top: 8px;
    color: #aaaabb;
    font-family: monospace;
    font-size: 16px;
}

.intro {
    margin-top: 32px;
    font-size: 18px;
}

.status {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 24px 0;
    padding: 10px 16px;
    border-radius: 999px;
    background: #24242f;
    color: #c8c8d5;
    font-size: 14px;
}

.dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #777;
}

.note {
    color: #aaaabb;
    line-height: 1.7;
}

footer {
    margin-top: 28px;
    color: #777785;
    font-size: 13px;
}
