:root {
  --bg: #0f172a;
  --surface: #1e293b;
  --ink: #e2e8f0;
  --muted: #94a3b8;
  --accent: #38bdf8;
  --line: #334155;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

.page {
  width: min(94vw, 640px);
  margin: 0 auto;
  padding: 40px 0 64px;
}

.output {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 40px 32px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
  text-align: center;
}

.hint {
  color: var(--muted);
  margin: 0;
}

.icon {
  font-size: 34px;
  margin-bottom: 10px;
}

.status {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px;
}

.detail {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  font-size: 15px;
}

.brand {
  margin: 0 0 18px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 14px;
  border: 2px solid var(--accent);
  background: var(--bg);
  display: block;
}

.avatar-empty {
  display: grid;
  place-items: center;
  font-size: 40px;
  font-weight: 700;
  color: var(--accent);
}

.nick {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.contacto {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  text-align: left;
}

.field {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 7px 0;
  font-size: 14px;
  border-top: 1px solid var(--line);
}

.field-label {
  color: var(--muted);
}

.field-value {
  text-align: right;
  overflow-wrap: anywhere;
}

.edit-hint {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 13px;
}