/* [project]/app/styles.css [app-client] (css) */
:root {
  --lightningcss-light: ;
  --lightningcss-dark: initial;
  color-scheme: dark;
  color: #f8fafc;
  background: #07111f;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

.shell {
  background: radial-gradient(circle at 0 0, #38bdf83d, #0000 32rem), linear-gradient(135deg, #07111f 0%, #111827 55%, #1e1b4b 100%);
  min-height: 100vh;
  padding: 48px;
}

.hero-card, .receipt-card {
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  background: #0f172ac7;
  border: 1px solid #94a3b83d;
  border-radius: 28px;
  max-width: 1100px;
  margin: 0 auto 24px;
  box-shadow: 0 24px 80px #0000004d;
}

.hero-card {
  grid-template-columns: minmax(260px, .8fr) minmax(320px, 1.2fr);
  gap: 32px;
  padding: 32px;
  display: grid;
}

.badge {
  color: #facc15;
  grid-column: 1 / -1;
  margin: 0;
  font-weight: 700;
}

.avatar-panel {
  background: linear-gradient(160deg, #0f172a, #1d4ed8);
  border-radius: 24px;
  place-items: center;
  min-height: 420px;
  display: grid;
  position: relative;
  overflow: hidden;
}

.avatar-face {
  background: #ffffff1f;
  border: 4px solid #ffffff8c;
  border-radius: 999px;
  place-items: center;
  width: 180px;
  height: 180px;
  font-size: 48px;
  font-weight: 900;
  display: grid;
}

.live-dot {
  color: #bae6fd;
  background: #0f172ac2;
  border-radius: 999px;
  padding: 8px 12px;
  position: absolute;
  bottom: 20px;
  left: 20px;
}

.content-panel h1 {
  margin: 20px 0 12px;
  font-size: clamp(42px, 7vw, 72px);
  line-height: .95;
}

.content-panel p, .reply {
  color: #cbd5e1;
  font-size: 18px;
  line-height: 1.65;
}

form {
  gap: 12px;
  margin-top: 28px;
  display: grid;
}

label {
  color: #e0f2fe;
  font-weight: 700;
}

textarea {
  color: #f8fafc;
  background: #020617bd;
  border: 1px solid #94a3b866;
  border-radius: 18px;
  width: 100%;
  padding: 16px;
  font-size: 16px;
}

button {
  color: #082f49;
  cursor: pointer;
  background: #38bdf8;
  border: 0;
  border-radius: 999px;
  justify-self: start;
  padding: 14px 22px;
  font-weight: 900;
}

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

.receipt-card {
  padding: 28px 32px;
}

.video-card img {
  border: 1px solid #94a3b847;
  border-radius: 20px;
  width: 100%;
  max-width: 720px;
  margin-top: 18px;
}

.receipt-card h2 {
  margin-top: 0;
}

dl {
  grid-template-columns: 120px 1fr;
  gap: 10px 16px;
  display: grid;
}

dt {
  color: #93c5fd;
  font-weight: 800;
}

dd {
  margin: 0;
}

@media (max-width: 820px) {
  .shell {
    padding: 20px;
  }

  .hero-card {
    grid-template-columns: 1fr;
  }
}

/*# sourceMappingURL=app_styles_1inruc0.css.map*/