  @import url('https://fonts.googleapis.com/css2?family=Karla:wght@400;500;600;700&family=Fraunces:ital,wght@0,400;0,600;0,700;0,900;1,400&display=swap');

  :root {
    --bg: #FAF9F6;
    --white: #ffffff;
    --surface: #ffffff;
    --border: #e2e0db;
    --border-light: #eeece8;
    --text: #1a1a1a;
    --text-secondary: #5c5c5c;
    --text-muted: #9a9a9a;
    --pro: #1a6fb5;
    --pro-light: #e8f1fa;
    --pro-border: #c4ddf0;
    --con: #b53a1a;
    --con-light: #fae8e4;
    --con-border: #f0c4ba;
    --accent: #2d5f3f;
    --accent-hover: #3a7a50;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.10);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  body {
    font-family: 'Karla', -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    line-height: 1.55;
  }

  /* ── Screen system ─────────────── */
  .screen { display: none; min-height: 100vh; }
  .screen.active { display: flex; }

  /* ── Shared card layout ────────── */
  .centered-screen {
    align-items: center;
    justify-content: center;
    padding: 2rem;
  }

  .card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 600px;
    width: 100%;
    box-shadow: var(--shadow-md);
  }

  .card h1 {
    font-family: 'Fraunces', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
  }

  .card .subtitle {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
  }

  .btn {
    font-family: 'Karla', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.55rem 1.5rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    background: var(--white);
    color: var(--text-secondary);
    transition: all 0.15s;
  }

  .btn:hover {
    background: var(--bg);
    border-color: var(--text-muted);
    color: var(--text);
  }

  .btn:disabled { opacity: 0.4; cursor: not-allowed; }

  .btn-primary {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
  }

  .btn-primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    color: #fff;
  }

  .btn-pill {
    border-radius: 100px;
    padding: 0.5rem 1.2rem;
    font-size: 0.78rem;
  }

  /* ── Welcome screen ─────────────── */
  .welcome-card { max-width: 560px; text-align: center; }
  .welcome-card h1 { font-size: 1.8rem; margin-bottom: 0.5rem; }
  .welcome-card .subtitle { font-size: 0.95rem; margin-bottom: 2rem; }
  .welcome-steps {
    text-align: left;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  .welcome-step {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 0.6rem 0.8rem;
    border-radius: 10px;
    background: var(--bg);
  }
  .step-num {
    width: 26px; height: 26px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .step-text { font-size: 0.85rem; color: var(--text-secondary); padding-top: 2px; }

  /* ── Avatar screen ──────────────── */
  .avatar-screen-inner {
    max-width: 840px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
  }

  .avatar-preview-panel {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: sticky;
    top: 2rem;
  }

  .avatar-svg-wrap {
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 1.25rem;
    width: 180px;
    height: 180px;
  }

  .username-input {
    font-family: 'Karla', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    border: none;
    border-bottom: 2px solid var(--border-light);
    background: transparent;
    padding: 0.4rem 0.8rem;
    width: 80%;
    outline: none;
    color: var(--text);
    transition: border-color 0.2s;
  }
  .username-input:focus { border-bottom-color: var(--accent); }
  .username-hint { font-size: 0.7rem; color: var(--text-muted); margin-top: 4px; }

  .chat-preview {
    margin-top: 1.5rem;
    padding: 0.75rem 1rem;
    background: var(--bg);
    border-radius: 10px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.6rem;
  }
  .chat-preview-text .cp-name { font-size: 0.8rem; font-weight: 700; }
  .chat-preview-text .cp-msg { font-size: 0.7rem; color: var(--text-muted); }

  .avatar-options-panel {
    background: var(--white);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid var(--border);
  }

  .option-section { margin-bottom: 1rem; }
  .option-label {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
  }
  .option-row { display: flex; flex-wrap: wrap; gap: 5px; }

  .opt-btn {
    border: 2px solid transparent;
    border-radius: 8px;
    padding: 4px 11px;
    background: #f0efe9;
    color: #555;
    cursor: pointer;
    font-family: 'Karla', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    transition: all 0.12s;
  }
  .opt-btn:hover { border-color: #ccc; }
  .opt-btn.active { border-color: #444; background: #333; color: #fff; font-weight: 700; }

  .opt-color {
    width: 26px; height: 26px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.12s;
    padding: 0;
  }
  .opt-color:hover { border-color: #ccc; }
  .opt-color.active { border-color: #444; box-shadow: 0 0 0 2px #fff, 0 0 0 4px #444; }

  /* ── Opinions screen ────────────── */
  .opinions-card { max-width: 600px; }
  .opinion-item {
    margin-bottom: 1.25rem;
    padding: 1rem;
    background: var(--bg);
    border-radius: 10px;
  }
  .opinion-item .topic-text {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  .opinion-slider-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .opinion-slider-row .pole {
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-muted);
    width: 60px;
    text-align: center;
    flex-shrink: 0;
  }
  .opinion-slider-row input[type="range"] {
    flex: 1;
    -webkit-appearance: none;
    height: 4px;
    border-radius: 2px;
    background: var(--border);
    outline: none;
  }
  .opinion-slider-row input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--accent);
    cursor: pointer;
    border: 2px solid var(--white);
    box-shadow: var(--shadow-sm);
  }

  /* ── Loading / randomisation screen ── */
  .loading-card {
    max-width: 480px;
    text-align: center;
  }
  .loading-card h1 { margin-bottom: 1rem; }

  .spinner {
    width: 48px; height: 48px;
    border: 4px solid var(--border);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 1.5rem auto;
  }
  @keyframes spin { to { transform: rotate(360deg); } }

  .loading-status {
    font-size: 0.85rem;
    color: var(--text-secondary);
    min-height: 1.5em;
    transition: opacity 0.3s;
  }

  /* ── Group reveal screen ─────────── */
  .reveal-card {
    max-width: 680px;
  }

  .reveal-topic {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border-light);
  }

  .reveal-topic .topic-name {
    font-family: 'Fraunces', serif;
    font-size: 1.2rem;
    font-weight: 700;
  }

  .reveal-topic .topic-q {
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
  }

  .reveal-sides {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .reveal-side h3 {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.6rem;
  }
  .reveal-side.pro h3 { color: var(--pro); }
  .reveal-side.con h3 { color: var(--con); }

  .reveal-participant {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.35rem 0.45rem;
    border-radius: 8px;
    margin-bottom: 0.25rem;
    animation: fadeSlide 0.4s ease both;
  }

  .reveal-participant.is-you {
    background: #e8f5e9;
    border: 1px solid #c8e6c9;
  }

  @keyframes fadeSlide {
    from { opacity: 0; transform: translateX(-8px); }
    to { opacity: 1; transform: translateX(0); }
  }

  .reveal-name {
    font-size: 0.82rem;
    font-weight: 600;
  }

  .you-badge {
    font-size: 0.55rem;
    font-weight: 700;
    background: var(--accent);
    color: #fff;
    padding: 1px 6px;
    border-radius: 4px;
    margin-left: 4px;
  }

  /* ── Discussion screen (Twitter-style thread) ──────────── */
  .thread-screen {
    justify-content: center;
    align-items: stretch;
    background: var(--bg);
  }

  .thread-app {
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
  }

  /* Top bar */
  .thread-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.7rem 1.1rem;
    border-bottom: 1px solid var(--border);
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(6px);
    position: sticky;
    top: 0;
    z-index: 3;
  }
  .thread-brand { display: flex; align-items: center; gap: 0.5rem; }
  .thread-logo { width: 22px; height: 22px; color: var(--text); }
  .thread-title { font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.05rem; }
  .thread-badge {
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.12rem 0.45rem;
    border-radius: 100px;
    border: 1px solid var(--border);
    color: var(--text-muted);
  }
  .thread-badge.pro { color: var(--pro); background: var(--pro-light); border-color: var(--pro-border); }
  .thread-badge.con { color: var(--con); background: var(--con-light); border-color: var(--con-border); }

  .thread-timer {
    font-size: 0.95rem;
    font-weight: 700;
    font-family: 'Karla', monospace;
    color: var(--accent);
    background: #e8f5e9;
    padding: 0.3rem 0.8rem;
    border-radius: 100px;
    min-width: 56px;
    text-align: center;
  }
  .thread-timer.warn { color: #c44; background: #fde8e8; }

  /* Roster chips */
  .thread-roster {
    display: flex;
    gap: 0.4rem;
    overflow-x: auto;
    padding: 0.6rem 1.1rem;
    border-bottom: 1px solid var(--border-light);
    scrollbar-width: none;
  }
  .thread-roster::-webkit-scrollbar { display: none; }
  .roster-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.2rem 0.6rem 0.2rem 0.2rem;
    border-radius: 100px;
    font-size: 0.74rem;
    font-weight: 600;
    white-space: nowrap;
    border: 1px solid var(--border);
    background: var(--bg);
    color: var(--text-secondary);
  }
  .roster-chip.pro { color: var(--pro); background: var(--pro-light); border-color: var(--pro-border); }
  .roster-chip.con { color: var(--con); background: var(--con-light); border-color: var(--con-border); }
  .roster-chip .chip-avatar {
    width: 22px; height: 22px; border-radius: 50%; overflow: hidden; flex-shrink: 0;
  }
  .roster-chip .chip-avatar svg { width: 22px; height: 22px; display: block; }
  .roster-chip.you { box-shadow: 0 0 0 2px rgba(45,95,63,0.25); }

  /* Scroll area */
  .thread-scroll {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
  }
  .thread-scroll::-webkit-scrollbar { width: 6px; }
  .thread-scroll::-webkit-scrollbar-track { background: transparent; }
  .thread-scroll::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

  /* Root post (the topic, by @moderator) */
  .thread-root {
    padding: 1.1rem 1.1rem 0.9rem;
    border-bottom: 1px solid var(--border);
  }
  .root-head { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.7rem; }
  .root-avatar {
    width: 42px; height: 42px; border-radius: 50%;
    background: var(--border-light); color: var(--text-muted);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 1.1rem; flex-shrink: 0;
  }
  .root-name { font-weight: 700; font-size: 0.9rem; }
  .root-handle { font-size: 0.78rem; color: var(--text-muted); }
  .root-question {
    font-family: 'Fraunces', serif;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 0.7rem;
  }
  .root-meta {
    font-size: 0.78rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-top: 0.6rem;
    border-top: 1px solid var(--border-light);
  }
  .root-meta .meta-replies { font-weight: 700; color: var(--text-secondary); }

  /* Thread messages */
  .tw-msg {
    display: flex;
    gap: 0.6rem;
    padding: 0.7rem 1.1rem;
    border-bottom: 1px solid var(--border-light);
    position: relative;
    animation: msgSlide 0.3s ease;
  }
  @keyframes msgSlide {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .tw-msg:hover { background: rgba(0,0,0,0.012); }
  .tw-msg.is-you { background: rgba(45,95,63,0.045); }

  /* Nesting / embedding: indent + a left rail per depth level */
  .tw-msg.nested {
    margin-left: calc(var(--depth) * 22px);
    border-left: 2px solid var(--border);
    background: rgba(0,0,0,0.012);
  }
  .tw-msg.nested.is-you { background: rgba(45,95,63,0.05); }

  .tw-avatar { flex-shrink: 0; width: 38px; height: 38px; border-radius: 50%; overflow: hidden; }
  .tw-avatar svg { width: 38px; height: 38px; display: block; }

  .tw-body { flex: 1; min-width: 0; }
  .tw-head {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
    flex-wrap: wrap;
  }
  .tw-name { font-weight: 700; font-size: 0.85rem; }
  .tw-msg.pro .tw-name { color: var(--pro); }
  .tw-msg.con .tw-name { color: var(--con); }
  .tw-handle { font-size: 0.78rem; color: var(--text-muted); }
  .tw-dot { color: var(--text-muted); font-size: 0.78rem; }
  .tw-time { font-size: 0.74rem; color: var(--text-muted); }
  .tw-badge {
    font-size: 0.52rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.05rem 0.32rem;
    border-radius: 4px;
    margin-left: 0.15rem;
  }
  .tw-msg.pro .tw-badge { color: var(--pro); background: var(--pro-light); }
  .tw-msg.con .tw-badge { color: var(--con); background: var(--con-light); }

  .tw-replying {
    font-size: 0.74rem;
    color: var(--text-muted);
    margin: 0.05rem 0 0.15rem;
  }
  .tw-replying b { font-weight: 600; color: var(--text-secondary); }

  .tw-text { font-size: 0.9rem; line-height: 1.5; margin-top: 0.1rem; white-space: pre-wrap; word-wrap: break-word; }

  .tw-reply-btn {
    margin-top: 0.4rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-family: 'Karla', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
    background: none;
    border: none;
    padding: 0.15rem 0;
    cursor: pointer;
    transition: color 0.12s;
  }
  .tw-reply-btn:hover { color: var(--accent); }

  /* Typing indicator (a bot "composing" before its message lands) */
  .tw-typing {
    display: flex;
    gap: 0.6rem;
    align-items: center;
    padding: 0.6rem 1.1rem;
    animation: msgSlide 0.25s ease;
  }
  .tw-typing .tw-avatar { width: 38px; height: 38px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
  .tw-typing .tw-avatar svg { width: 38px; height: 38px; display: block; }
  .typing-bubble {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg);
    border: 1px solid var(--border-light);
    border-radius: 14px;
    padding: 0.4rem 0.75rem;
  }
  .typing-name { font-size: 0.78rem; font-weight: 600; color: var(--text-muted); }
  .tw-typing.pro .typing-name { color: var(--pro); }
  .tw-typing.con .typing-name { color: var(--con); }
  .typing-dots { display: inline-flex; gap: 3px; }
  .typing-dots span {
    width: 5px; height: 5px; border-radius: 50%;
    background: var(--text-muted);
    animation: dotBounce 1.4s infinite ease-in-out;
  }
  .typing-dots span:nth-child(2) { animation-delay: 0.16s; }
  .typing-dots span:nth-child(3) { animation-delay: 0.32s; }
  @keyframes dotBounce {
    0%, 80%, 100% { opacity: 0.3; transform: translateY(0); }
    40% { opacity: 1; transform: translateY(-3px); }
  }

  /* Composer */
  .thread-composer {
    border-top: 1px solid var(--border);
    background: var(--white);
    padding: 0.6rem 1.1rem 0.5rem;
  }
  .reply-context {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    font-size: 0.76rem;
    color: var(--text-secondary);
    background: var(--bg);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 0.35rem 0.6rem;
    margin-bottom: 0.5rem;
  }
  .reply-context[hidden] { display: none; }
  .reply-context-text b { color: var(--accent); }
  .reply-cancel {
    border: none; background: none; cursor: pointer;
    font-size: 1rem; line-height: 1; color: var(--text-muted);
    padding: 0 0.2rem;
  }
  .reply-cancel:hover { color: var(--text); }

  .composer-row {
    display: flex;
    align-items: center;
    gap: 0.55rem;
  }
  .composer-avatar {
    width: 36px; height: 36px; border-radius: 50%; overflow: hidden; flex-shrink: 0;
    background: var(--border-light);
  }
  .composer-avatar svg { width: 36px; height: 36px; display: block; }
  .composer-input {
    flex: 1;
    font-family: 'Karla', sans-serif;
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
    border: 1px solid var(--border);
    border-radius: 100px;
    outline: none;
    background: var(--bg);
    color: var(--text);
    transition: border-color 0.15s;
  }
  .composer-input:focus { border-color: var(--accent); }
  .composer-input:disabled { opacity: 0.4; }

  .composer-send {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: none;
    background: var(--text);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
    flex-shrink: 0;
  }
  .composer-send:hover { background: #000; }
  .composer-send:disabled { opacity: 0.3; cursor: not-allowed; }

  .chat-footer-info {
    font-size: 0.62rem;
    color: var(--text-muted);
    padding: 0.3rem 0.2rem 0;
    text-align: center;
  }

  /* ── Survey screen ──────────────── */
  .survey-section { margin-bottom: 1.5rem; }

  .survey-q { margin-bottom: 1.25rem; }
  .survey-q-label {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 0.3rem;
  }
  .survey-q-text {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
  }

  .survey-scale {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .scale-pole {
    font-size: 0.62rem;
    font-weight: 600;
    color: var(--text-muted);
    width: 70px;
    text-align: center;
    flex-shrink: 0;
  }
  .scale-options {
    display: flex;
    gap: 0.3rem;
    flex: 1;
    justify-content: center;
  }
  .scale-opt {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
  }
  .scale-opt input { display: none; }
  .scale-opt span {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all 0.15s;
  }
  .scale-opt:hover span {
    border-color: var(--accent);
    color: var(--accent);
  }
  .scale-opt input:checked + span {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
  }

  .survey-placeholder-note {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-style: italic;
    padding: 1rem;
    background: #fffbe6;
    border: 1px dashed #e0d890;
    border-radius: 8px;
    line-height: 1.5;
  }

  .test-banner {
    font-size: 0.68rem;
    font-weight: 700;
    text-align: center;
    padding: 0.3rem;
    background: #fffbe6;
    border-top: 1px solid #e0d890;
    color: #8a7a20;
  }

  .round-countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem;
    margin: 0.6rem 0;
    background: #f0f7ff;
    border: 1px solid #c4ddf0;
    border-radius: 10px;
    font-size: 0.82rem;
    color: var(--pro);
    animation: pulse 1s ease-in-out infinite alternate;
  }

  @keyframes pulse {
    from { opacity: 0.7; }
    to { opacity: 1; }
  }

  /* ── Admin + waiting (multiplayer) ── */
  .admin-field { margin: 0.7rem 0; }
  .admin-field label {
    display: block; font-size: 0.78rem; font-weight: 600;
    color: var(--text-secondary); margin-bottom: 0.3rem;
  }
  .admin-field input, .admin-field select, .admin-field textarea {
    width: 100%; padding: 0.5rem 0.6rem; font-size: 0.85rem;
    border: 1px solid var(--border); border-radius: var(--radius-sm);
    font-family: inherit; background: var(--surface); color: var(--text);
  }
  .admin-field textarea { resize: vertical; }
  .admin-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem 0.9rem;
  }
  .admin-status {
    margin-top: 0.6rem; font-size: 0.78rem; color: var(--pro);
    word-break: break-all;
  }
  .admin-pods {
    margin-top: 1.4rem; padding-top: 1rem; border-top: 1px solid var(--border);
  }
  .admin-pod-row {
    padding: 0.35rem 0; border-bottom: 1px solid var(--border-light);
  }
  .admin-pod-row code { font-size: 0.72rem; }
  .admin-pod-row a { margin-left: 0.5rem; font-size: 0.74rem; color: var(--brand); }

  .waiting-count {
    margin-top: 0.8rem; font-size: 1.1rem; font-weight: 700; color: var(--text);
  }
  .p-you { margin-left: 0.3rem; font-size: 0.68rem; color: var(--text-muted); }
