/* The wall's page, drawn in Klori's language: one ink at a scale of
   opacities, iOS's grouped grey underneath, cards with a hairline, capsules
   for anything tappable, and a conversation laid out the way Telegram lays
   it out — the only saturated surface in the app is the outgoing bubble. */
:root {
  --ink-rgb: 11, 15, 17;
  --page: #EFEFF4;
  --page2: #F7F7FA;
  --card-top: #FFFFFF;
  --card-bot: #F3F4F8;
  --accent: #0B0F11;
  --on-accent: #FFFFFF;
  --presence: #2AABEE;
  --chat-top: #9AC9EF;
  --chat-bot: #69A8D9;
  --out-top: #D5EBFF;
  --out-bot: #C3E0FE;
  --on-out: #0E1720;
  --in-top: #FFFFFF;
  --in-bot: #F3F4F8;
  --glass: rgba(255,255,255,.9);
  --danger: #E0524D;
  --good: #1E8A43;
  --attention: #B5641C;
  --hair: .07;
  --r: 20px;
  --spring: cubic-bezier(.2,.9,.25,1.05);
  --ease: cubic-bezier(.2,.8,.2,1);
}
[data-theme="dark"] {
  --ink-rgb: 255, 255, 255;
  --page: #101018;
  --page2: #1A1A22;
  --card-top: #2C2C34;
  --card-bot: #232329;
  --accent: #FFFFFF;
  --on-accent: #0B0F11;
  --presence: #4FA9F5;
  --chat-top: #121218;
  --chat-bot: #08080C;
  --out-top: #7C6BE0;
  --out-bot: #5F4FC7;
  --on-out: #FFFFFF;
  --in-top: #2C2C34;
  --in-bot: #232329;
  --glass: rgba(30,30,38,.92);
  --good: #34C759;
  --attention: #E08A3C;
  --hair: .10;
}
* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html, body { margin: 0; padding: 0; background: var(--page); color: rgb(var(--ink-rgb)); font: 16px/1.4 -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, sans-serif; overscroll-behavior: none; -webkit-font-smoothing: antialiased; }
body { background: linear-gradient(180deg, var(--page2), var(--page) 40%); min-height: 100vh; }
#app { display: flex; flex-direction: column; min-height: 100vh; min-height: 100dvh; }

/* ink at a strength */
.ink50 { color: rgba(var(--ink-rgb), .5); }
.cap { font-size: 12px; color: rgba(var(--ink-rgb), .5); font-weight: 500; }
.lead { font-size: 15.5px; color: rgba(var(--ink-rgb), .55); line-height: 1.45; }
.note { font-size: 12px; color: rgba(var(--ink-rgb), .42); text-align: center; line-height: 1.4; }
.strong { font-weight: 600; }
.section-title { font-size: 12px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: rgba(var(--ink-rgb), .5); padding: 6px 4px 0; }
h1 { font: 700 30px/1.15 ui-serif, "New York", Georgia, "Times New Roman", serif; letter-spacing: -.02em; margin: 0; }
.brand { font: 700 19px/1.2 ui-serif, "New York", Georgia, serif; letter-spacing: -.01em; user-select: none; }
p { margin: 0; }
.row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.row.between { justify-content: space-between; }
.gap6 { gap: 6px; }
.grow { flex: 1; min-width: 0; }

/* the bar */
#top { display: flex; align-items: center; gap: 8px; padding: 10px 14px 6px; position: sticky; top: 0; z-index: 6; background: linear-gradient(var(--page2), rgba(247,247,250,0)); }
[data-theme="dark"] #top { background: linear-gradient(var(--page2), rgba(26,26,34,0)); }
body.chat-open #top { background: var(--glass); border-bottom: 1px solid rgba(var(--ink-rgb), var(--hair)); }
#top-title { flex: 1; min-width: 0; }
#top .sub { font-size: 12.5px; color: var(--presence); font-weight: 500; }
#top .sub.quiet { color: rgba(var(--ink-rgb), .5); }
.icon { width: 34px; height: 34px; border-radius: 50%; border: 0; background: transparent; color: rgb(var(--ink-rgb)); font-size: 26px; line-height: 1; display: grid; place-items: center; padding: 0 0 3px; }
.icon.glass { background: var(--glass); border: 1px solid rgba(var(--ink-rgb), var(--hair)); font-size: 20px; padding: 0; }
.logo-img { width: 32px; height: 32px; border-radius: 50%; flex: none; object-fit: cover; border: 1px solid rgba(var(--ink-rgb), .08); }
body.chat-open .logo-img { display: none; }
.spinner { width: 26px; height: 26px; border: 3px solid rgba(var(--ink-rgb), .08); border-top-color: rgb(var(--ink-rgb)); border-radius: 50%; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* the strip asking to let the bot write: only for someone who never pressed Start */
.reach { display: flex; align-items: center; gap: 10px; margin: 4px 14px 2px; padding: 10px 12px 10px 14px; border-radius: 16px; background: linear-gradient(var(--card-top), var(--card-bot)); border: 1px solid rgba(var(--ink-rgb), var(--hair)); border-left: 3px solid var(--presence); font-size: 14px; animation: fadein .2s; }
.reach b { font-weight: 600; }
body.chat-open .reach { display: none; }

/* pages */
#views { flex: 1; display: flex; flex-direction: column; }
.view { padding: 6px 14px 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; animation: fadein .18s ease-out; }
@keyframes fadein { from { opacity: 0; } to { opacity: 1; } }
@keyframes rise { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.view.center { align-items: center; justify-content: center; text-align: center; gap: 12px; }
.hero { text-align: center; padding: 26px 8px 8px; display: flex; flex-direction: column; gap: 10px; align-items: center; }
.hero-mark { width: 84px; height: 84px; border-radius: 23px; display: grid; place-items: center; font-size: 44px; background: linear-gradient(135deg, #5CB2F2, #2AABEE); color: #fff; box-shadow: 0 8px 24px rgba(42,171,238,.28); border: 1px solid rgba(var(--ink-rgb), .1); object-fit: cover; }
.empty { text-align: center; padding: 34px 14px; display: flex; flex-direction: column; gap: 8px; align-items: center; }
.empty.small { padding: 16px; color: rgba(var(--ink-rgb), .5); font-size: 14px; }

/* cards: the incoming bubble's own surface, so pages read as more of the chat */
.card { background: linear-gradient(var(--card-top), var(--card-bot)); border: 1px solid rgba(var(--ink-rgb), var(--hair)); border-radius: var(--r); padding: 14px 16px; }
.card.pad0 { padding: 0; overflow: hidden; }
.card.pad0 .padx { padding: 0 14px 10px; }
.card.from { display: flex; align-items: center; gap: 12px; padding: 12px 14px; }
.card.post { white-space: pre-wrap; word-break: break-word; }
.card.stats { display: flex; justify-content: space-around; text-align: center; padding: 12px; }
.stats b { display: block; font-size: 20px; font-weight: 700; letter-spacing: -.02em; }
.stats span { font-size: 11px; color: rgba(var(--ink-rgb), .5); }
.avatar { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; font-size: 17px; color: #fff; background: linear-gradient(135deg, #5CB2F2, #2AABEE); flex: none; }
.avatar.sm { width: 36px; height: 36px; font-size: 18px; }
.avatar.violet { background: linear-gradient(135deg, #8B72F0, #5B7CF5); }
.avatar.ink { background: rgba(var(--ink-rgb), .12); color: rgb(var(--ink-rgb)); }

/* text fields */
textarea, input[type=text] { width: 100%; padding: 13px 14px; border: 0; background: transparent; color: rgb(var(--ink-rgb)); font: inherit; resize: none; outline: none; line-height: 1.4; display: block; }
textarea::placeholder { color: rgba(var(--ink-rgb), .38); }

/* buttons: everything tappable shrinks under the finger */
button { font: inherit; cursor: pointer; color: rgb(var(--ink-rgb)); transition: transform .24s var(--spring), opacity .2s, background .2s, color .2s; }
button:active { transform: scale(.93); opacity: .82; }
.cta { width: 100%; border: 0; border-radius: 16px; padding: 15px 16px; background: var(--accent); color: var(--on-accent); font-weight: 600; font-size: 17px; box-shadow: 0 8px 22px rgba(var(--ink-rgb), .18); position: relative; overflow: hidden; }
.cta::after { content: ""; position: absolute; inset: 0 0 50%; background: linear-gradient(rgba(255,255,255,.18), transparent); pointer-events: none; }
.cta:disabled { opacity: .45; transform: none; box-shadow: none; }
.pill { border: 1px solid rgba(var(--ink-rgb), var(--hair)); background: linear-gradient(var(--card-top), var(--card-bot)); border-radius: 999px; padding: 9px 14px; font-size: 14px; font-weight: 500; color: rgb(var(--ink-rgb)); display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.pill.on { background: rgba(var(--ink-rgb), .12); font-weight: 600; border-color: transparent; }
.tick { width: 18px; height: 18px; border-radius: 50%; border: 1.5px solid rgba(var(--ink-rgb), .35); display: inline-grid; place-items: center; font-size: 11px; font-weight: 800; color: var(--on-accent); font-style: normal; flex: none; transition: background .2s var(--spring), border-color .2s, transform .24s var(--spring); }
.pill.on .tick { background: var(--accent); border-color: var(--accent); transform: scale(1.05); }
.pill.on .tick::before { content: "✓"; }
.pill.toggle:not(.on) { color: rgba(var(--ink-rgb), .6); }
.pill.fill { background: var(--accent); color: var(--on-accent); border-color: transparent; font-weight: 600; }
.pill.danger { color: var(--danger); }
.pill.file input { display: none; }
.ghost { background: none; border: 0; color: rgba(var(--ink-rgb), .55); padding: 8px 4px; font-size: 14px; font-weight: 500; align-self: center; }
.chip { background: linear-gradient(var(--card-top), var(--card-bot)); border: 1px solid rgba(var(--ink-rgb), var(--hair)); border-radius: 999px; padding: 6px 12px; font-size: 13px; font-weight: 600; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips .pill.wide { width: 100%; justify-content: center; }
/* a photo staged in the field: Calorize's 64-pt thumbnail, filled, with a small ✕ */
.attach { position: relative; width: 64px; height: 64px; margin: 12px 14px 0; animation: pop .28s var(--spring); }
.attach img { width: 64px; height: 64px; object-fit: cover; border-radius: 14px; display: block; border: 1px solid rgba(var(--ink-rgb), .35); cursor: zoom-in; }
.x { position: absolute; top: -6px; right: -6px; width: 20px; height: 20px; border-radius: 50%; border: 0; background: rgba(0,0,0,.7); color: #fff; font-size: 10px; font-weight: 700; display: grid; place-items: center; padding: 0; line-height: 1; }
.x.big { position: fixed; top: calc(14px + env(safe-area-inset-top)); right: 14px; width: 36px; height: 36px; font-size: 15px; background: rgba(255,255,255,.18); }
/* the photo, full screen: tap anywhere to leave */
#viewer { position: fixed; inset: 0; z-index: 40; background: rgba(0,0,0,.94); display: grid; place-items: center; animation: fade .2s; cursor: zoom-out; }
#viewer img { max-width: 100vw; max-height: 100vh; max-height: 100dvh; object-fit: contain; animation: pop .25s var(--spring); }

/* rows: Telegram's chat list */
.rows { display: flex; flex-direction: column; }
.rows:empty { display: none; }
.rowi { display: flex; align-items: center; gap: 12px; padding: 10px 14px; cursor: pointer; position: relative; }
.rowi:active { background: rgba(var(--ink-rgb), .05); }
.rowi + .rowi::before { content: ""; position: absolute; left: 70px; right: 0; top: 0; height: 1px; background: rgba(var(--ink-rgb), .08); }
.rowi .body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.rowi .name { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; }
.rowi .name b { font-weight: 600; font-size: 16px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rowi .name time { font-size: 12px; color: rgba(var(--ink-rgb), .45); flex: none; }
.rowi .snip { font-size: 14px; color: rgba(var(--ink-rgb), .55); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rowi .snip.unread { color: rgb(var(--ink-rgb)); font-weight: 500; }
.rowi .snip .hint { color: rgba(var(--ink-rgb), .4); }
.badge { background: var(--presence); color: #fff; border-radius: 999px; padding: 1px 7px; font-size: 12px; font-weight: 700; min-width: 20px; text-align: center; flex: none; }

/* posts: mine, and the moderator's queue */
.list { display: flex; flex-direction: column; gap: 10px; }
.item { display: flex; flex-direction: column; gap: 8px; }
.item .head { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.item .who { font-weight: 600; font-size: 15px; }
.item .text { white-space: pre-wrap; word-break: break-word; font-size: 15.5px; line-height: 1.45; }
.item img.ph { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 14px; display: block; background: rgba(var(--ink-rgb), .06); cursor: zoom-in; }
.item .foot { display: flex; justify-content: space-between; align-items: center; gap: 8px; font-size: 13px; color: rgba(var(--ink-rgb), .5); }
.item .meta { font-size: 12.5px; color: rgba(var(--ink-rgb), .5); }
.status { font-size: 12px; font-weight: 600; border-radius: 999px; padding: 3px 10px; background: rgba(var(--ink-rgb), .07); white-space: nowrap; }
.status.published { color: var(--good); background: rgba(52,199,89,.14); }
.status.pending { color: var(--attention); background: rgba(224,138,60,.14); }
.status.rejected, .status.withdrawn { color: rgba(var(--ink-rgb), .5); }
.item .kind { font-size: 13px; color: rgba(var(--ink-rgb), .5); }
.counts { display: flex; gap: 10px; font-weight: 600; font-size: 13px; color: rgba(var(--ink-rgb), .6); }
.actions { display: flex; gap: 8px; }
.actions .pill { flex: 1; justify-content: center; padding: 11px 8px; }
.skeleton { height: 72px; border-radius: var(--r); background: rgba(var(--ink-rgb), .07); animation: breathe .9s ease-in-out infinite alternate; }
.rows .skeleton { height: 66px; border-radius: 0; margin: 0 14px; background: none; position: relative; }
.rows .skeleton::before { content: ""; position: absolute; left: 0; top: 11px; width: 44px; height: 44px; border-radius: 50%; background: rgba(var(--ink-rgb), .08); }
.rows .skeleton::after { content: ""; position: absolute; left: 56px; right: 30%; top: 16px; height: 12px; border-radius: 6px; background: rgba(var(--ink-rgb), .08); box-shadow: 0 22px 0 -1px rgba(var(--ink-rgb), .06); }
@keyframes breathe { to { opacity: .55; } }
.arrive > * { animation: arrive .38s var(--spring) both; animation-delay: calc(var(--i, 0) * 45ms); }
@keyframes arrive { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* the conversation */
.view.chat { padding: 0; gap: 0; position: relative; background: linear-gradient(var(--chat-top), var(--chat-bot)); }
.view.chat::before { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5; background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.35) 1.2px, transparent 1.6px); background-size: 26px 26px; }
[data-theme="dark"] .view.chat::before { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5; background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.35) 1.2px, transparent 1.6px); background-size: 26px 26px; }
.pinned { position: sticky; top: 52px; z-index: 4; margin: 8px 10px 0; padding: 8px 12px; border-radius: 14px; background: var(--glass); border: 1px solid rgba(var(--ink-rgb), var(--hair)); border-left: 3px solid var(--presence); cursor: pointer; max-height: 60px; overflow: hidden; transition: max-height .3s var(--ease); }
.pinned.open { max-height: 60vh; overflow: auto; }
.pin-label { font-size: 11.5px; font-weight: 600; color: var(--presence); }
.pin-text { font-size: 13.5px; white-space: pre-wrap; word-break: break-word; line-height: 1.35; }
.msgs { flex: 1; display: flex; flex-direction: column; gap: 4px; padding: 10px 12px 6px; position: relative; }
.msg { max-width: 78%; padding: 7px 11px 6px 12px; border-radius: 17px; white-space: pre-wrap; word-break: break-word; font-size: 16px; line-height: 1.32; position: relative; animation: pop .28s var(--spring); box-shadow: 0 1px 1px rgba(0,0,0,.06); }
@keyframes pop { from { opacity: 0; transform: translateY(8px) scale(.97); } to { opacity: 1; transform: none; } }
.msg.in { align-self: flex-start; background: linear-gradient(var(--in-top), var(--in-bot)); color: rgb(var(--ink-rgb)); border-bottom-left-radius: 5px; }
.msg.mine { align-self: flex-end; background: linear-gradient(135deg, var(--out-top), var(--out-bot)); color: var(--on-out); border-bottom-right-radius: 5px; }
.msg time { float: right; font-size: 10.5px; opacity: .55; margin: 6px -3px -2px 8px; font-variant-numeric: tabular-nums; }
.msg.typing { align-self: flex-start; margin: 0 12px 6px; padding: 10px 14px; display: flex; gap: 4px; }
.msg.typing i { width: 7px; height: 7px; border-radius: 50%; background: rgba(var(--ink-rgb), .45); animation: dots 1.1s ease-in-out infinite; }
.msg.typing i:nth-child(2) { animation-delay: .18s; } .msg.typing i:nth-child(3) { animation-delay: .36s; }
@keyframes dots { 0%, 60%, 100% { transform: translateY(0); opacity: .45; } 30% { transform: translateY(-4px); opacity: 1; } }
.sys, .msg.system { align-self: center; max-width: 90%; text-align: center; font-size: 12.5px; color: #fff; background: rgba(0,0,0,.22); border-radius: 999px; padding: 4px 11px; margin: 4px auto; box-shadow: none; animation: none; }
.compose { position: sticky; bottom: 0; display: flex; gap: 8px; align-items: flex-end; padding: 8px 10px calc(8px + env(safe-area-inset-bottom)); background: linear-gradient(transparent, rgba(0,0,0,.06)); z-index: 4; }
.field { flex: 1; border-radius: 22px; min-height: 40px; display: flex; align-items: center; }
.glass { background: var(--glass); border: 1px solid rgba(var(--ink-rgb), var(--hair)); }
.field textarea { padding: 9px 14px; max-height: 120px; font-size: 16px; }
.compose .icon { width: 40px; height: 40px; flex: none; }
.send { width: 40px; height: 40px; border-radius: 50%; border: 0; flex: none; background: var(--accent); color: var(--on-accent); font-size: 20px; font-weight: 700; display: grid; place-items: center; padding: 0 0 2px; box-shadow: 0 4px 14px rgba(0,0,0,.18); }
.send:disabled { opacity: .5; transform: none; }
.sheet { position: fixed; left: 10px; right: 10px; bottom: calc(10px + env(safe-area-inset-bottom)); z-index: 20; display: flex; flex-direction: column; gap: 6px; animation: rise .3s var(--spring); }
.sheet-row { border: 0; border-radius: 14px; padding: 15px; background: linear-gradient(var(--card-top), var(--card-bot)); font-size: 16px; font-weight: 500; text-align: center; }
.sheet-row.danger { color: var(--danger); }
.sheet-row.cancel { font-weight: 600; margin-top: 4px; }
.scrim { position: fixed; inset: 0; background: rgba(0,0,0,.28); z-index: 19; animation: fade .2s; }
@keyframes fade { from { opacity: 0; } }

/* the tab bar: iOS's, on glass */
#tabs { display: flex; position: sticky; bottom: 0; z-index: 6; background: var(--glass); border-top: 1px solid rgba(var(--ink-rgb), var(--hair)); padding-bottom: env(safe-area-inset-bottom); transition: transform .28s var(--spring), opacity .2s; }
body.no-tabs #tabs { display: none; }
body.typing #tabs, body.chat-open #tabs { transform: translateY(110%); opacity: 0; position: fixed; left: 0; right: 0; pointer-events: none; }
#tabs button { flex: 1; background: none; border: 0; color: rgba(var(--ink-rgb), .45); padding: 7px 0 6px; display: flex; flex-direction: column; align-items: center; gap: 1px; font-size: 10.5px; font-weight: 600; position: relative; }
#tabs button .ico { font-size: 21px; line-height: 1.15; filter: grayscale(1); opacity: .75; transition: filter .2s, opacity .2s, transform .24s var(--spring); }
#tabs button.on { color: rgb(var(--ink-rgb)); }
#tabs button.on .ico { filter: none; opacity: 1; transform: translateY(-1px); }
#tabs i { position: absolute; top: 3px; left: calc(50% + 8px); background: var(--danger); color: #fff; font-style: normal; font-size: 10px; font-weight: 700; border-radius: 999px; padding: 0 5px; min-width: 16px; text-align: center; }
#toast { position: fixed; left: 16px; right: 16px; bottom: 82px; background: rgba(20,20,24,.92); color: #fff; padding: 11px 14px; border-radius: 14px; text-align: center; z-index: 30; font-size: 14px; animation: rise .25s var(--spring); box-shadow: 0 8px 24px rgba(0,0,0,.25); }
.rules { display: flex; flex-direction: column; gap: 14px; }
.rule { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; line-height: 1.4; }
.rule span { font-size: 20px; line-height: 1.2; flex: none; width: 26px; text-align: center; }
.rule b { font-weight: 600; }
/* the alert, iOS's shape: a small centred card, stacked buttons, hairlines */
.modal-scrim { position: fixed; inset: 0; z-index: 50; background: rgba(0,0,0,.32); display: grid; place-items: center; padding: 24px; animation: fade .18s; }
.modal { width: min(300px, 100%); background: linear-gradient(var(--card-top), var(--card-bot)); border-radius: 18px; overflow: hidden; animation: pop .26s var(--spring); box-shadow: 0 20px 60px rgba(0,0,0,.25); text-align: center; }
.modal-title { font-weight: 700; font-size: 17px; padding: 18px 18px 4px; }
.modal-text { font-size: 14px; color: rgba(var(--ink-rgb), .65); padding: 0 18px 16px; line-height: 1.4; }
.modal-title:empty, .modal-text:empty { display: none; }
.modal .chips { padding: 0 14px 12px; justify-content: center; }
.modal .chips .pill { font-size: 13px; padding: 7px 11px; }
.modal input { width: calc(100% - 36px); margin: 0 18px 14px; border: 1px solid rgba(var(--ink-rgb), .15); border-radius: 10px; padding: 10px 12px; background: var(--page); }
.modal-buttons { display: flex; flex-direction: column; border-top: 1px solid rgba(var(--ink-rgb), .1); }
.modal-buttons button { border: 0; background: none; padding: 14px; font-size: 16px; color: var(--presence); font-weight: 500; }
.modal-buttons button + button { border-top: 1px solid rgba(var(--ink-rgb), .1); }
.modal-buttons button.bold { font-weight: 700; }
.modal-buttons button.danger { color: var(--danger); font-weight: 600; }
.modal-buttons button:active { background: rgba(var(--ink-rgb), .06); transform: none; }
/* the capsule switcher: Klori's, the selection slides between its stops */
.seg { display: flex; gap: 3px; padding: 3px; border-radius: 999px; background: linear-gradient(var(--card-top), var(--card-bot)); border: 1px solid rgba(var(--ink-rgb), var(--hair)); }
.seg button { flex: 1; border: 0; background: none; border-radius: 999px; padding: 8px 4px; font-size: 14px; font-weight: 500; color: rgba(var(--ink-rgb), .5); position: relative; white-space: nowrap; }
.seg button.on { background: rgba(var(--ink-rgb), .12); color: rgb(var(--ink-rgb)); font-weight: 600; }
.seg button:active { transform: none; }
.seg i { position: absolute; top: 2px; right: 6px; background: var(--danger); color: #fff; font-style: normal; font-size: 10px; font-weight: 700; border-radius: 999px; padding: 0 5px; min-width: 16px; }
#admin-q { background: linear-gradient(var(--card-top), var(--card-bot)); border: 1px solid rgba(var(--ink-rgb), var(--hair)); border-radius: 14px; }
.rowi .pill { padding: 6px 10px; font-size: 12px; }
.report .line { font-size: 14px; padding: 6px 10px; border-radius: 10px; background: rgba(var(--ink-rgb), .05); }
.report .line.accused { background: rgba(224,82,77,.1); }
.report .line b { font-weight: 600; }
.log { font: 11px/1.4 ui-monospace, Menlo, Consolas, monospace; white-space: pre-wrap; word-break: break-all; max-height: 60vh; overflow: auto; }
[hidden] { display: none !important; }
