/* Standalone stylesheet for the pre-auth neutral screen (app/join/route.ts
   renders raw HTML, not the app's React tree, so it can't use globals.css).
   Same design tokens as app/globals.css, duplicated deliberately. */

:root {
  color-scheme: dark;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0b0f14;
  color: #e8eef3;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 18px;
  padding: 24px;
  box-sizing: border-box;
}

.join-card {
  max-width: 360px;
  text-align: center;
  background: #141a22;
  border: 1px solid #1b232e;
  border-radius: 16px;
  padding: 32px 24px;
}

.join-card h1 {
  color: #4fc3d0;
  font-size: 1.4rem;
  margin: 0 0 12px;
}

.join-card p {
  margin: 0;
  line-height: 1.5;
}
