* { box-sizing: border-box; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  margin: 0;
  min-height: 100vh;
  color: #eee;
  padding: 20px;
  /* Ancient Greek discussion – local background, no external URLs */
  background: linear-gradient(180deg, rgba(10,14,20,0.92) 0%, rgba(22,33,62,0.88) 50%, rgba(15,20,25,0.95) 100%),
              url('/images/antique/bg-ancient-discussion.svg') no-repeat center center fixed;
  background-size: cover;
  background-attachment: fixed;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 40%, transparent 0%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
  z-index: 0;
}
body > #app { position: relative; z-index: 1; }
.hidden { display: none !important; }
.view { min-height: 100vh; display: flex; align-items: center; justify-content: center; }
.view.hidden { display: none !important; }
.card { background: rgba(255,255,255,0.06); border-radius: 16px; padding: 2rem; max-width: 420px; width: 100%; box-shadow: 0 8px 32px rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.08); }
.entry-card { overflow: hidden; }
.optional { font-weight: normal; color: #5a6785; font-size: 0.8em; }
h1 { margin: 0 0 0.5rem; font-size: 1.75rem; font-weight: 600; }
.sub { color: #8892b0; font-size: 0.9rem; margin-bottom: 1.5rem; }
label { display: block; font-size: 0.85rem; color: #a8b2d1; margin-bottom: 0.35rem; }
input[type="text"], textarea { width: 100%; padding: 0.75rem 1rem; border-radius: 8px; border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.05); color: #eee; font-size: 1rem; margin-bottom: 1rem; font-family: inherit; }
input::placeholder, textarea::placeholder { color: #5a6785; }
textarea { resize: vertical; min-height: 60px; }
.form button { margin-top: 0.25rem; }
.divider { text-align: center; color: #5a6785; font-size: 0.8rem; margin: 1.25rem 0; }
.btn { padding: 0.75rem 1.25rem; border-radius: 8px; border: none; font-size: 1rem; font-weight: 600; cursor: pointer; transition: opacity 0.15s; }
.btn:hover { opacity: 0.9; }
.btn-primary { background: linear-gradient(135deg, #4361ee, #3a56d4); color: #fff; width: 100%; }
.btn-secondary { background: rgba(255,255,255,0.1); color: #a8b2d1; width: 100%; margin-top: 0.5rem; }
.btn-ghost { background: rgba(255,255,255,0.08); color: #a8b2d1; }
.btn-restart-danger.btn,
.btn-restart-danger { background: rgba(220, 38, 38, 0.2); color: #f87171; border: 1px solid rgba(220, 38, 38, 0.45); }
.btn-restart-danger:hover { background: rgba(220, 38, 38, 0.35); color: #fca5a5; }
.btn-small { padding: 0.5rem 0.75rem; font-size: 0.85rem; width: auto; }

#session-view.view {
  position: relative;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgba(10, 14, 20, 0.92);
}
#session-view.view::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,14,20,0.75) 0%, rgba(22,33,62,0.6) 50%, rgba(15,20,25,0.8) 100%);
  pointer-events: none;
  z-index: 0;
}
#session-view > * { position: relative; z-index: 1; }
.session-layout { display: flex; flex-direction: column; gap: 1.5rem; max-width: 1000px; margin: 0 auto; align-items: stretch; }
.session-layout > .session-main { flex: 1; min-width: 0; max-width: 720px; }
.session-container { max-width: 100%; }
.session-side { display: flex; flex-direction: column; gap: 1.5rem; flex-shrink: 0; }
@media (min-width: 720px) {
  .session-layout { flex-direction: row; align-items: flex-start; }
  .session-layout > .session-main { flex: 1; min-width: 280px; }
  .session-side { width: 240px; }
}
.topic-sidebar { width: 100%; }
@media (min-width: 720px) {
  .topic-sidebar { width: 240px; }
}
.header { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.5rem; }
#session-view .header { padding: 0.75rem 1rem; background: rgba(14, 20, 32, 0.9); border-radius: 12px; border: 1px solid rgba(255,255,255,0.08); }
.header-session-title { margin: 0; font-size: 1.1rem; font-weight: 600; color: #e2e8f0; }
.header-actions { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.current-user-label { font-size: 0.85rem; color: #8892b0; }
.current-user-label .btn-name-as-link { font-size: inherit; }
.place-modal-session-name { margin-bottom: 1rem; }
.place-modal-label { display: block; font-size: 0.85rem; color: #a8b2d1; margin-bottom: 0.35rem; }
.place-modal-name-row { display: flex; gap: 0.5rem; align-items: center; }
.place-modal-name-row input { flex: 1; min-width: 0; padding: 0.5rem 0.75rem; border-radius: 8px; border: 1px solid rgba(255,255,255,0.15); background: rgba(18, 26, 40, 0.96); color: #e2e8f0; font-size: 1rem; }
.place-modal-divider { height: 1px; background: rgba(255,255,255,0.08); margin: 1rem 0; }
.place-modal-section-label { font-size: 0.85rem; color: #a8b2d1; margin-bottom: 0.5rem; }
.header-icon-btn { display: inline-flex; align-items: center; justify-content: center; padding: 0.4rem; border: none; border-radius: 8px; background: transparent; color: #8892b0; cursor: pointer; }
.header-icon-btn:hover { background: rgba(255,255,255,0.08); color: #a8b2d1; }
.header-icon-btn .icon-compass { display: block; object-fit: contain; }
.header-icon-btn:hover .icon-compass { filter: brightness(1.15); }
.reaction-picker { display: flex; align-items: center; justify-content: center; gap: 0.25rem; margin-top: 0.25rem; flex-wrap: wrap; }
.reaction-btn { padding: 0.35rem 0.4rem; border: none; border-radius: 8px; background: transparent; cursor: pointer; opacity: 0.85; display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.2rem; }
.reaction-btn:hover { background: rgba(255,255,255,0.08); opacity: 1; }
.reaction-btn img { width: 24px; height: 24px; display: block; object-fit: contain; }
.reaction-label { font-size: 0.6rem; color: #8892b0; line-height: 1; white-space: nowrap; }
.reaction-btn:hover .reaction-label { color: #a8b2d1; }
.participant .participant-reaction {
  position: absolute;
  left: 10px;
  top: -8px;
  pointer-events: none;
  font-size: 1.25rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
  animation: participant-reaction-diminish 4s ease-out forwards;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.participant .participant-reaction img { width: 1.25rem; height: 1.25rem; object-fit: contain; display: block; }
@keyframes participant-reaction-diminish {
  from { transform: scale(10); }
  to { transform: scale(1); }
}
.session-timer { font-variant-numeric: tabular-nums; font-size: 0.85rem; color: #5a6785; min-width: 3.5ch; }
.current-user-label #current-user-name { color: #64ffda; font-weight: 600; }
.btn-name-as-link { padding: 0; margin: 0; font: inherit; color: #64ffda; font-weight: 600; background: none; border: none; cursor: pointer; text-decoration: none; }
.btn-name-as-link:hover { color: #8bffea; text-decoration: underline; }
.name-edit-inline { display: flex; gap: 0.5rem; align-items: center; margin-bottom: 1rem; flex-wrap: wrap; }
.name-edit-inline.hidden { display: none; }
.name-edit-inline input { margin-bottom: 0; flex: 1; min-width: 120px; }

.topic-sidebar { width: 240px; flex-shrink: 0; background: rgba(14, 20, 32, 0.94); border-radius: 12px; padding: 1rem; border: 1px solid rgba(255,255,255,0.1); }
.topic-sidebar-header { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; margin-bottom: 0.5rem; }
.topic-sidebar-header .topic-label { margin-bottom: 0; flex: 1; }
.topic-sidebar .topic-action-export { margin-left: auto; }
.topic-list { list-style: none; padding: 0; margin: 0; }
.topic-list li { padding: 0.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 0.85rem; }
.topic-list li:last-child { border-bottom: none; }
.topic-item { display: block; }
.topic-item-text { color: #a8b2d1; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.topic-item-current { border-left: 3px solid #4361ee; padding-left: 0.5rem; margin-left: -0.5rem; }
.topic-item-result { font-weight: 600; color: #64ffda; margin-top: 0.25rem; font-size: 0.9rem; }
.topic-item-observation { font-size: 0.75rem; color: #8892b0; margin-top: 0.2rem; font-style: italic; }
.topic-item-detail { font-size: 0.75rem; color: #5a6785; margin-top: 0.25rem; }
.topic-item-detail summary { cursor: pointer; }
.topic-votes-list { margin-top: 0.25rem; padding-left: 1rem; }
.topic-votes-list span { display: block; font-size: 0.75rem; }
.topic-item-add { display: flex; align-items: center; gap: 0.35rem; padding: 0.4rem 0; }
.topic-item-actions { display: flex; align-items: center; gap: 0.2rem; margin-top: 0.35rem; flex-wrap: wrap; }
.topic-action-btn { display: inline-flex; align-items: center; justify-content: center; width: 26px; height: 26px; padding: 0; border: none; border-radius: 6px; background: rgba(255,255,255,0.08); color: #a8b2d1; cursor: pointer; transition: background 0.15s, color 0.15s; }
.topic-action-btn:hover:not(:disabled) { background: rgba(255,255,255,0.14); color: #e6e9f2; }
.topic-action-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.topic-action-add { width: auto; padding: 0 0.5rem; }
.topic-action-add svg { flex-shrink: 0; }
.topic-action-trash:hover:not(:disabled) { background: rgba(220, 53, 69, 0.25); color: #ff6b7a; }
.topic-votes-list .outlier-badge { color: #f59e0b; }
.avatar {
  width: 32px; height: 32px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.9rem; font-weight: 700; color: #fff; flex-shrink: 0; line-height: 1;
  background-size: cover; background-position: center;
}
.avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; display: block; }
.avatar-wrap.avatar-btn { padding: 0; border: none; background: none; cursor: pointer; border-radius: 50%; display: inline-flex; }
.avatar-wrap.avatar-btn:hover .avatar { box-shadow: 0 0 0 2px #4361ee; }

.avatar-picker-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 100; }
.avatar-picker-backdrop.hidden { display: none !important; }
.avatar-picker-modal {
  position: fixed; left: 50%; top: 50%; transform: translate(-50%, -50%);
  background: rgba(14, 20, 32, 0.98); border-radius: 16px; padding: 1.5rem;
  border: 1px solid rgba(255,255,255,0.12); box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  z-index: 101; max-width: 90vw;
}
#background-picker-modal {
  max-width: 560px; width: 90vw; padding: 1.75rem;
}
#background-picker-modal .background-picker-grid {
  max-height: 340px; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
#background-picker-modal .background-picker-option { aspect-ratio: 16/10; min-height: 80px; }
#background-picker-modal .background-picker-thumb { object-fit: contain; background: rgba(0,0,0,0.2); }
.avatar-picker-modal.hidden { display: none !important; }
.confirm-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 100; }
.confirm-backdrop.hidden { display: none !important; }
.confirm-modal {
  position: fixed; left: 50%; top: 50%; transform: translate(-50%, -50%);
  background: rgba(14, 20, 32, 0.98); border-radius: 16px; padding: 1.5rem;
  border: 1px solid rgba(255,255,255,0.12); box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  z-index: 101; max-width: 90vw; min-width: 280px;
}
.confirm-modal.hidden { display: none !important; }
.confirm-message { margin: 0 0 1.25rem; font-size: 1rem; color: #e2e8f0; line-height: 1.4; }
.confirm-actions { display: flex; gap: 0.75rem; justify-content: flex-end; flex-wrap: wrap; }
.avatar-picker-title { margin: 0 0 1rem; font-size: 1.1rem; color: #e2e8f0; }
.avatar-picker-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.75rem; margin-bottom: 1rem; }
.avatar-picker-option { padding: 0 0 1.25rem; border: 2px solid transparent; border-radius: 12px; background: none; cursor: pointer; width: 64px; display: flex; flex-direction: column; align-items: center; gap: 0.35rem; box-sizing: content-box; }
.avatar-picker-option:hover { border-color: #64ffda; }
.avatar-picker-option .avatar-picker-thumb { width: 64px; height: 64px; object-fit: cover; border-radius: 50%; display: block; flex-shrink: 0; }
.avatar-picker-option-label { font-size: 0.6rem; color: #8892b0; text-align: center; line-height: 1.1; white-space: nowrap; max-width: 64px; overflow: hidden; text-overflow: ellipsis; }
.avatar-picker-option:hover .avatar-picker-option-label { color: #a8b2d1; }
.avatar-picker-thumb { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: block; }
.avatar-picker-upload { margin-bottom: 1rem; }
.avatar-picker-close { width: 100%; }
.background-picker-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; margin-bottom: 1rem; max-height: 240px; overflow-y: auto; }
.background-picker-option { padding: 0; border: 2px solid transparent; border-radius: 8px; background: none; cursor: pointer; overflow: hidden; aspect-ratio: 16/10; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,0.15); }
.background-picker-option:hover { border-color: #64ffda; }
.background-picker-thumb { width: 100%; height: 100%; object-fit: contain; display: block; }
.copy-link { padding: 0.5rem 1rem; border-radius: 8px; border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.06); color: #64ffda; font-size: 0.9rem; cursor: pointer; }
.copy-link:hover { background: rgba(255,255,255,0.1); }
.copy-link.copy-link-done { color: #34d399; border-color: rgba(52,211,153,0.4); background: rgba(52,211,153,0.1); }
.btn-exit { padding: 0.5rem 1rem; font-size: 0.9rem; }
.btn-exit:hover { background: rgba(239,68,68,0.2); color: #f87171; }

.topic-box { background: rgba(14, 20, 32, 0.94); border-radius: 12px; padding: 1rem 1.25rem; margin-bottom: 1.5rem; border-left: 4px solid #4361ee; position: relative; }
.topic-label { font-size: 0.75rem; color: #8892b0; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.25rem; }
.topic-text { font-size: 1rem; min-height: 1.5em; }
.topic-edit { margin-top: 0.5rem; }
.topic-edit textarea { margin-bottom: 0.5rem; }
#session-view .topic-box .topic-edit textarea,
#session-view .name-edit-inline input { background: rgba(18, 26, 40, 0.96); border-color: rgba(255,255,255,0.2); }
.topic-edit.hidden { display: none; }
.topic-box .btn-edit-topic { margin-top: 0.5rem; padding: 0.35rem 0.75rem; font-size: 0.8rem; }
.topic-box .btn-edit-topic.hidden { display: none; }

.admin-actions { display: flex; gap: 0.75rem; margin-bottom: 1.5rem; flex-wrap: wrap; align-items: center; padding: 0.75rem 0; }
.admin-actions.hidden { display: none; }
.admin-option.auto-reveal-option,
.admin-option.guests-add-topics-option { display: inline-flex; align-items: center; gap: 0.5rem; margin-right: 0.5rem; font-size: 0.9rem; color: #a8b2d1; }
.admin-option.auto-reveal-option input[type="checkbox"],
.admin-option.guests-add-topics-option input[type="checkbox"] { cursor: pointer; }
.admin-option.auto-reveal-option:has(input:disabled),
.admin-option.guests-add-topics-option:has(input:disabled) { opacity: 0.7; }
.everyone-voted-msg { margin-bottom: 0.75rem; padding: 0.5rem 0.75rem; background: rgba(14, 20, 32, 0.92); border-radius: 8px; border: 1px solid rgba(64, 224, 208, 0.25); color: #64ffda; font-weight: 600; text-align: center; }
.everyone-voted-msg.hidden { display: none !important; }

.participants-wrap { margin-bottom: 0; padding: 0.75rem 0; }
.participants { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
.participant { background: rgba(14, 20, 32, 0.94); padding: 0.65rem 0.75rem; border-radius: 12px; font-size: 0.85rem; display: flex; flex-direction: column; align-items: center; gap: 0.4rem; border: 1px solid rgba(255,255,255,0.08); width: 100%; position: relative; box-sizing: border-box; }
.participant .participant-avatar { width: 52px; height: 52px; font-size: 1.2rem; flex-shrink: 0; border-radius: 50%; overflow: hidden; display: inline-flex; align-items: center; justify-content: center; background-size: cover; background-position: center; }
.participant .participant-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: block; }
.participant-avatar-btn { padding: 0; border: none; background: none; cursor: pointer; border-radius: 50%; display: inline-flex; line-height: 0; }
.participant-avatar-btn:hover .participant-avatar { box-shadow: 0 0 0 2px #4361ee; }
.participant-name-row { display: flex; align-items: center; justify-content: center; gap: 0.35rem; flex-wrap: wrap; text-align: center; line-height: 1.2; }
.participant-edit-btn { padding: 0.2rem; border: none; border-radius: 6px; background: transparent; color: #8892b0; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; }
.participant-edit-btn:hover { color: #64ffda; background: rgba(255,255,255,0.08); }
.participant-edit-corner { position: absolute; top: 0.35rem; right: 0.35rem; z-index: 1; }
.participant .dot { width: 6px; height: 6px; border-radius: 50%; background: #64ffda; flex-shrink: 0; }
.participant.voted .dot { background: #4361ee; }
.participant.admin-badge { border-color: rgba(67,97,238,0.5); }
.participant-vote-value { display: block; font-size: 0.95rem; font-weight: 700; color: #e2e8f0; margin-top: 0.15rem; }
.participant-vote-value.outlier { color: #f59e0b; }

.cards { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin: 2rem 0; }
.card-btn {
  width: 60px; height: 84px;
  border-radius: 12px;
  border: 2px solid rgba(255,255,255,0.3);
  background: linear-gradient(145deg, rgba(22, 30, 48, 0.96) 0%, rgba(14, 20, 32, 0.98) 100%);
  box-shadow: 0 4px 12px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; font-weight: 700; cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s, box-shadow 0.2s, background 0.2s;
  color: inherit; font-family: inherit;
}
.card-btn:hover {
  border-color: #4361ee;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 20px rgba(67,97,238,0.25), 0 4px 12px rgba(0,0,0,0.25);
}
.card-btn.selected {
  border-color: #64ffda;
  background: linear-gradient(145deg, rgba(100,255,218,0.28) 0%, rgba(100,255,218,0.12) 100%);
  color: #64ffda;
  box-shadow: 0 0 20px rgba(100,255,218,0.35), 0 4px 12px rgba(0,0,0,0.25);
  transform: translateY(-2px);
}
.card-btn.card-pop {
  animation: card-pop 0.35s ease;
}
@keyframes card-pop {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: translateY(-2px) scale(1); }
}
.card-btn.selected.card-pop {
  animation: card-pop-selected 0.4s ease;
}
@keyframes card-pop-selected {
  0% { transform: scale(1); box-shadow: 0 4px 12px rgba(0,0,0,0.25); }
  40% { transform: scale(1.2); box-shadow: 0 0 28px rgba(100,255,218,0.5); }
  100% { transform: translateY(-2px) scale(1); box-shadow: 0 0 20px rgba(100,255,218,0.35), 0 4px 12px rgba(0,0,0,0.25); }
}
.card-btn.card-special {
  border-style: dashed;
  opacity: 0.7;
  font-size: 1.1rem;
}
.card-btn.card-special:hover { opacity: 0.9; }
.card-btn.card-special.selected { opacity: 1; border-style: solid; }
.your-vote { font-size: 0.8rem; color: #8892b0; margin-top: 0.5rem; text-align: center; }

.vote-mood-msg { margin: 0 0 1rem; padding: 0.6rem 1rem; border-radius: 10px; font-size: 1rem; font-style: italic; text-align: center; }
.vote-mood-msg.consensus { background: rgba(52, 211, 153, 0.12); color: #34d399; border: 1px solid rgba(52, 211, 153, 0.3); }
.vote-mood-msg.scattered { background: rgba(245, 158, 11, 0.12); color: #f59e0b; border: 1px solid rgba(245, 158, 11, 0.3); }
.vote-mood-msg.hidden { display: none !important; }
.results-summary { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 1rem; padding: 1rem; background: rgba(14, 20, 32, 0.94); border-radius: 12px; border: 1px solid rgba(255,255,255,0.08); }
.stat { text-align: center; }
.stat-value { font-size: 1.5rem; font-weight: 700; color: #64ffda; }
.stat-label { font-size: 0.75rem; color: #8892b0; text-transform: uppercase; }
.stat-final .stat-value { font-size: 1.75rem; color: #8b5cf6; }
.result-observation-wrap { margin-bottom: 1rem; padding: 0.75rem 1rem; background: rgba(14, 20, 32, 0.8); border-radius: 8px; border-left: 4px solid #64ffda; }
.result-observation-wrap.hidden { display: none !important; }
.result-observation { margin: 0; font-size: 0.9rem; color: #a8b2d1; white-space: pre-wrap; }
.result-admin-edit { margin-bottom: 1rem; padding: 1rem; background: rgba(14, 20, 32, 0.9); border-radius: 12px; border: 1px solid rgba(255,255,255,0.08); }
.result-admin-edit.hidden { display: none !important; }
.result-final-picker { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 0.75rem; }
.result-final-btn { min-width: 44px; }
.result-final-btn.selected { background: rgba(139, 92, 246, 0.3); color: #a78bfa; border-color: #8b5cf6; }
.result-observation-label { display: block; margin-bottom: 0.75rem; }
.result-observation-label textarea { width: 100%; margin-bottom: 0.5rem; }
.revote-area { margin-bottom: 1rem; display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.revote-count-msg { margin: 0; font-size: 0.9rem; color: #f59e0b; }
.revote-count-msg.hidden { display: none !important; }
.votes-revealed { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.votes-revealed.hidden { display: none !important; }
.vote-card { background: rgba(14, 20, 32, 0.94); border-radius: 12px; padding: 1rem 1.25rem; min-width: 100px; text-align: center; border: 2px solid rgba(255,255,255,0.1); display: flex; flex-direction: column; align-items: center; gap: 0.25rem; }
.vote-card .vote-card-avatar { width: 36px; height: 36px; font-size: 0.85rem; }
.vote-card.outlier { border-color: #f59e0b; background: rgba(20, 18, 10, 0.95); }
.vote-card .name { font-size: 0.9rem; color: #a8b2d1; }
.vote-card .value { font-size: 1.5rem; font-weight: 700; }
.vote-card.outlier .value { color: #f59e0b; }
.vote-card .outlier-badge { font-size: 0.7rem; color: #f59e0b; }

#voting-area.hidden { display: none; }
#results-area.hidden { display: none; }

.session-connecting {
  position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.85); color: #a8b2d1; padding: 1rem 1.5rem; border-radius: 12px;
  font-size: 0.95rem; z-index: 10;
}
.session-connecting.hidden { display: none; }

.entry-message { color: #f59e0b; font-size: 0.9rem; margin-top: 1rem; }
.entry-message.hidden { display: none; }
