:root {
    --fire: #eb6a24;
    --fire-alt: #f05a3e;
    --fire-dim: rgba(240, 90, 62, 0.1);
    --fire-glow: rgba(240, 90, 62, 0.25);
    --brand: #22d6a3;
    --brand-dim: rgba(34, 214, 163, 0.1);
    --surface-0: #08090c;
    --surface-1: #0f1115;
    --surface-2: #353841;
    --border: #252a36;
    --text: #e5e7eb;
    --muted: #9ca3af;
}

body {
    margin: 0;
    font-family: 'DM Sans', sans-serif;
    background: var(--surface-0);
    color: var(--text);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===== HEADER (shared across areas that use <header> + .container) ===== */
header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 2rem;
    width: auto;
}

.status-badge {
    background: var(--brand-dim);
    color: var(--brand);
    padding: 0.375rem 0.875rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

a {
    color: var(--fire);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
}

a:hover {
    text-decoration: underline;
}

.impersonation-banner {
    width: 100%;
    box-sizing: border-box;
    padding: 0.5rem 1rem;
    background: #422006;
    border-bottom: 1px solid #78350f;
    color: #fef3c7;
    font-size: 0.875rem;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.impersonation-banner a {
    color: #fde68a;
    font-weight: 600;
}
