/* Minimal base */
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: #111827;
  background: #ffffff;
  line-height: 1.5;
}

.minimal {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2;
  max-width: 720px;
  margin: 0 auto;
  padding: 8px 16px;
  text-align: center;
}

.logo { display: block; border-radius: 8px; margin: 0 auto; width: 20px; height: 20px; }
h1 { margin: 0; font-size: 18px; font-weight: 600; line-height: 1.2; }
.message { margin: 0; color: #374151; line-height: 1.2; }


