/* Site-wide colors come from the shared palette - see
 * shared/frontend/theme.css and docs/adr/0001-shared-color-palette.md.
 * core-gateway's Nginx mounts shared/frontend at /shared/ specifically
 * so this import works. */
@import url("/shared/theme.css");

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

body {
    background-color: var(--color-background);
    color: var(--color-foreground);
    font-family: 'Fira Code', 'JetBrains Mono', monospace;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    width: 100%;
    max-width: 600px;
    padding: 2rem;
}

h1 {
    color: var(--color-accent);
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.cursor {
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}

.status-box {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: var(--color-surface);
    border-left: 4px solid var(--color-accent);
    border-radius: 4px;
}

.theme-toggle-btn {
    position: fixed;
    top: 1rem;
    right: 1rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    padding: 0.4rem 0.6rem;
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
}
