* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: #09090b;
    color: #fafafa;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
}
.wrap { max-width: 400px; }
.icon { width: 80px; height: 80px; margin: 0 auto 1.5rem; opacity: 0.95; }
h1 {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
    color: #fafafa;
}
p {
    color: #a1a1aa;
    margin-bottom: 2rem;
    line-height: 1.5;
}
button {
    padding: 0.85rem 2.2rem;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border: none;
    border-radius: 8px;
    background: #d0a443;
    color: #ffffff;
    cursor: pointer;
    min-height: 48px;
    transition: background 0.15s, transform 0.1s;
}
button:hover { background: #8f6b1b; }
button:active { transform: scale(0.97); }

.back-link {
    display: inline-block;
    margin-top: 1.5rem;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #a1a1aa;
    text-decoration: none;
    min-height: 48px;
    line-height: 48px;
}
.back-link:hover, .back-link:focus-visible { color: #fafafa; }
.back-link:focus-visible {
    outline: 2px solid #d0a443;
    outline-offset: 2px;
    border-radius: 4px;
}
