:root {
    --bg: #0f1720;
    --panel: #141d29;
    --text: #e8edf2;
    --muted: #94a3b3;
    --accent: #e9b949;
    --line: rgba(255, 255, 255, 0.10);
}

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

html, body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', 'Segoe UI', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background:
        radial-gradient(800px 500px at 50% -10%, rgba(233, 185, 73, 0.10), transparent 60%),
        var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.card {
    width: 100%;
    max-width: 440px;
    text-align: center;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 3rem 2.5rem;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.logo {
    display: block;
    margin: 0 auto 1.75rem;
    width: 150px;
    height: auto;
    border-radius: 14px;
}

h1 {
    font-size: 1.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin: 0;
}

.divider {
    height: 1px;
    background: var(--line);
    margin: 1.75rem auto;
    width: 60px;
}

.block {
    margin-bottom: 1.5rem;
}

.block:last-child {
    margin-bottom: 0;
}

.label {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 0.4rem;
}

.email {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
}

.email:hover {
    text-decoration: underline;
}

address {
    font-style: normal;
    color: var(--text);
    font-size: 1rem;
}

/* Blazor error UI (from template) */
#blazor-error-ui {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

.blazor-error-boundary {
    background: #b32121;
    padding: 1rem;
    color: white;
}

.blazor-error-boundary::after {
    content: "An error has occurred.";
}
