cat > style.css << 'EOF'
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: system-ui, -apple-system, sans-serif;
    background: #0f172a;
    color: #e2e8f0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

main {
    text-align: center;
    padding: 2rem;
}

.logo {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

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

p {
    color: #94a3b8;
    margin-bottom: 0.25rem;
}

.meta {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: #475569;
}
EOF
