/* Stampit Shared Styles — single source of truth for all hosting sites */

:root {
    --foreground-rgb: 17 19 21;
    --background-rgb: 241 245 249;
    --color-primary: 69 104 255;
    --color-secondary: 214 104 83;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg,
        rgb(var(--background-rgb)) 0%,
        rgb(226 232 240) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(var(--foreground-rgb));
}

.container {
    text-align: center;
    padding: 2rem;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg,
        rgb(var(--color-primary)) 0%,
        rgb(var(--color-secondary)) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

p {
    color: rgb(var(--foreground-rgb) / 0.6);
    font-size: 1.1rem;
}

.status {
    margin-top: 2rem;
    padding: 0.75rem 1.5rem;
    background: rgb(var(--color-primary) / 0.08);
    border: 1px solid rgb(var(--color-primary) / 0.25);
    border-radius: 8px;
    display: inline-block;
}

.status::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #48bb78;
    border-radius: 50%;
    margin-right: 8px;
}

/* 404 pages */
h1.error-code {
    font-size: 4rem;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: rgb(var(--color-primary));
    background-clip: unset;
    color: rgb(var(--color-primary));
}
