/* [project]/app/globals.css [app-client] (css) */
:root {
  --lightningcss-light: ;
  --lightningcss-dark: initial;
  color-scheme: dark;
  --bg: #111318;
  --surface: #191d24;
  --surface-2: #222833;
  --line: #343b49;
  --text: #f4f0ea;
  --muted: #aeb5c1;
  --gold: #e3b44d;
  --rose: #d95f76;
  --teal: #3fb7a3;
  --danger: #ff6b6b;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html, body {
  background: var(--bg);
  min-height: 100%;
  color: var(--text);
  letter-spacing: 0;
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
}

button, input, textarea, select {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

.screen {
  min-height: 100svh;
  padding: 24px 18px;
}

.centered {
  align-content: center;
  gap: 18px;
  max-width: 520px;
  margin: 0 auto;
  display: grid;
}

.app-shell {
  max-width: 720px;
  min-height: 100svh;
  margin: 0 auto;
  padding: 16px 16px 86px;
}

.topbar {
  z-index: 5;
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 0 14px;
  display: flex;
  position: sticky;
  top: 0;
}

.brand {
  align-items: center;
  gap: 10px;
  font-weight: 800;
  display: flex;
}

.brand-mark {
  border-radius: var(--radius);
  color: #14110b;
  background: var(--gold);
  place-items: center;
  width: 34px;
  height: 34px;
  display: grid;
}

.headline {
  margin: 0;
  font-size: 34px;
  line-height: 1.05;
}

.title {
  margin: 0;
  font-size: 24px;
  line-height: 1.15;
}

.subtitle {
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  gap: 14px;
  padding: 16px;
  display: grid;
}

.stack {
  gap: 14px;
  display: grid;
}

.grid {
  gap: 12px;
  display: grid;
}

.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field {
  gap: 7px;
  display: grid;
}

.label {
  color: var(--muted);
  font-size: 13px;
}

.input, .textarea, .select {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-2);
  width: 100%;
  color: var(--text);
  outline: none;
  padding: 12px;
}

.textarea {
  resize: vertical;
  min-height: 96px;
}

.button {
  border-radius: var(--radius);
  background: var(--gold);
  color: #17130b;
  cursor: pointer;
  border: 0;
  min-height: 44px;
  font-weight: 750;
}

.button.secondary {
  border: 1px solid var(--line);
  background: var(--surface-2);
  color: var(--text);
}

.button.danger {
  background: var(--danger);
  color: #160707;
}

.button:disabled {
  opacity: .55;
  cursor: not-allowed;
}

.nav {
  z-index: 10;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border-radius: 12px;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  width: min(680px, 100% - 24px);
  padding: 6px;
  display: grid;
  position: fixed;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
}

.nav a {
  border-radius: var(--radius);
  min-height: 44px;
  color: var(--muted);
  place-items: center;
  font-size: 12px;
  display: grid;
  position: relative;
}

.nav a.active {
  background: var(--surface-2);
  color: var(--text);
}

.badge {
  background: var(--rose);
  border-radius: 99px;
  min-width: 9px;
  height: 9px;
  position: absolute;
  top: 6px;
  right: 18%;
}

.profile-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 12px;
  padding: 12px;
  display: grid;
}

.avatar {
  border-radius: var(--radius);
  width: 72px;
  height: 72px;
  color: var(--gold);
  -webkit-user-select: none;
  user-select: none;
  background: linear-gradient(145deg, #2a3140, #161a21);
  place-items: center;
  font-weight: 900;
  display: grid;
}

.meta {
  flex-wrap: wrap;
  gap: 8px;
  display: flex;
}

.pill {
  border: 1px solid var(--line);
  min-height: 28px;
  color: var(--muted);
  border-radius: 999px;
  align-items: center;
  gap: 6px;
  padding: 0 9px;
  font-size: 12px;
  display: inline-flex;
}

.premium {
  color: var(--gold);
}

.message-list {
  gap: 10px;
  display: grid;
}

.message {
  border-radius: var(--radius);
  background: var(--surface-2);
  max-width: 82%;
  padding: 10px 12px;
  line-height: 1.4;
}

.message.mine {
  background: #263a36;
  justify-self: end;
}

.protected-media {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  -webkit-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  width: 100%;
}

.status {
  border-radius: var(--radius);
  background: var(--surface-2);
  color: var(--muted);
  padding: 10px 12px;
}

@media (min-width: 680px) {
  .grid.cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/*# sourceMappingURL=app_globals_0jn8.0u.css.map*/