:root {
    --bg:    #0e0c0a;
    --bg2:   #1a1713;
    --tx:    #f5ede0;
    --dim:   rgba(245, 237, 224, .55);
    --br:    rgba(245, 237, 224, .09);
    --gold:  #d4933a;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; height: 100%; }
body {
    background: var(--bg);
    color: var(--tx);
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 24px;
}
.card {
    max-width: 520px;
    width: 100%;
    background: var(--bg2);
    border: 1px solid var(--br);
    border-radius: 18px;
    padding: 48px 36px;
    text-align: center;
    overflow: hidden;
    position: relative;
}
.accent {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--gold);
}
.eyebrow {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 18px;
}
h1 {
    font-family: "Iowan Old Style", Georgia, serif;
    font-weight: 400;
    font-size: 38px;
    margin: 0 0 16px;
    line-height: 1.15;
}
h1 em { font-style: italic; color: var(--gold); }
p {
    color: var(--dim);
    line-height: 1.55;
    font-size: 15px;
    margin: 0 0 24px;
}
.domain {
    display: inline-block;
    padding: 8px 14px;
    background: rgba(245, 237, 224, .04);
    border: 1px solid var(--br);
    border-radius: 999px;
    font-family: ui-monospace, "SF Mono", Menlo, monospace;
    font-size: 13px;
    color: var(--tx);
}
.footer {
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid var(--br);
    font-size: 12px;
    color: var(--dim);
}
.footer a { color: var(--gold); text-decoration: none; }
.footer a:hover { text-decoration: underline; }
