/* Minimal v2 styles — placeholder until design system is applied */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    background: #0a0a0a;
    color: #e0e0e0;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container { max-width: 960px; margin: 0 auto; padding: 2rem 1rem; }

.site-header {
    padding: 1rem 2rem;
    border-bottom: 1px solid #222;
}
.site-title { color: #e0e0e0; text-decoration: none; font-weight: 600; }

.site-footer {
    margin-top: auto;
    padding: 1rem 2rem;
    border-top: 1px solid #222;
    font-size: 0.875rem;
    color: #666;
}

h1 { font-size: 1.75rem; margin-bottom: 0.5rem; }

.status-box {
    margin-top: 1.5rem;
    padding: 0.75rem 1rem;
    border: 1px solid #333;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.875rem;
}
.status-ok { border-color: #2d6a2d; color: #6fbf6f; }
.status-error { border-color: #6a2d2d; color: #bf6f6f; }
