/* 01 进入实训 */
#view-enter { justify-content: space-between; }
.hero-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px 32px 0;
  width: 100%;
}
.glow-card {
  width: 100%;
  background: var(--panel);
  border: 1px solid var(--brass);
  border-radius: var(--r-card);
  padding: 16px;
  text-align: center;
  box-shadow: var(--shadow);
}
.glow-card strong { display: block; font-size: 28px; font-weight: 700; color: var(--on-ink); }
.glow-card span { display: block; margin-top: 8px; font-size: 14px; color: var(--brass); font-weight: 500; }
.tally-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 8px;
  font-size: 11px;
  color: var(--on-ink);
}
.tally-strip span { display: flex; align-items: center; gap: 4px; }
.tally-strip img { width: 8px; height: 8px; flex-shrink: 0; }
.tally-div {
  width: 12px;
  height: 12px;
  transform: rotate(90deg);
  opacity: 0.7;
}
.input-panel {
  background: var(--panel);
  border-top: 1px solid var(--ink);
  border-radius: 16px 16px 0 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.input-panel .field label { color: var(--muted); }
.role-lab { font-size: 12px; font-weight: 500; color: var(--on-ink); margin-bottom: 8px; }
.enter-spacer { height: 10px; }
.foot-hint { font-size: 11px; color: var(--muted); text-align: center; line-height: 1.5; }
.chip { color: var(--muted); }
.chip.is-on { color: var(--on-ink); }
.ico {
  width: 16px;
  height: 16px;
  background: currentColor;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  flex-shrink: 0;
}
.ico-mic { -webkit-mask-image: url("../img/icons/mic.svg"); mask-image: url("../img/icons/mic.svg"); }
.ico-news { -webkit-mask-image: url("../img/icons/newspaper.svg"); mask-image: url("../img/icons/newspaper.svg"); }
.ico-user { width: 20px; height: 20px; background: #fff; -webkit-mask-image: url("../img/icons/user-on.svg"); mask-image: url("../img/icons/user-on.svg"); }
.ico-msg { width: 20px; height: 20px; background: #fff; -webkit-mask-image: url("../img/icons/message-square.svg"); mask-image: url("../img/icons/message-square.svg"); }
.ico-vol { width: 14px; height: 14px; -webkit-mask-image: url("../img/icons/volume-on.svg"); mask-image: url("../img/icons/volume-on.svg"); }

/* 02 场次大厅 */
#view-hall { background: var(--paper); }
.hall-pad { padding: 16px; display: flex; flex-direction: column; gap: 16px; }
.session-main {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.session-badge-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.id-badge {
  background: var(--ink);
  color: var(--on-ink);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
}
.online-n {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--muted);
}
.online-n img { width: 6px; height: 6px; }
.session-main h2 { margin: 0; font-size: 18px; font-weight: 700; color: var(--text); }
.teacher-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
}
.teacher-row img { width: 16px; height: 16px; }
.teacher-row b { color: var(--text); font-weight: 500; }

.config-brief {
  width: 100%;
  background: var(--panel);
  border: 0;
  border-radius: var(--r-card);
  padding: 12px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.config-brief strong { font-size: 12px; font-weight: 700; color: var(--brass); }
.config-brief p { font-size: 12px; color: var(--on-ink); line-height: 1.5; }
.config-brief .kb-line { text-decoration: underline; text-underline-offset: 2px; }

.member-lab { font-size: 13px; font-weight: 700; color: var(--muted); margin: 0 0 8px; }
.members-grid {
  background: var(--line);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.member-row {
  background: #fff;
  height: 44px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.member-row .who { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text); }
.member-row .who img { width: 8px; height: 8px; }
.member-row .who.is-me { font-weight: 700; }
.role-pill {
  font-size: 11px;
  color: var(--on-ink);
  padding: 2px 6px;
  border-radius: 4px;
  background: var(--ink);
}
.role-pill.teal { background: var(--teal); }

/* 03 会场背景 */
.venue-lead { font-size: 14px; color: var(--muted); line-height: 1.5; margin: 0; }
.venue-list { display: flex; flex-direction: column; gap: 12px; }
.venue-card {
  width: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 12px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 2px 4px rgba(27, 36, 48, 0.03);
}
.venue-card.is-on { border: 2px solid var(--teal); }
.venue-preview {
  position: relative;
  height: 100px;
  border-radius: 4px;
  overflow: hidden;
  background: var(--ink);
}
.venue-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.venue-preview.is-west img { object-position: center 8%; }
.venue-plate {
  position: absolute;
  left: 50%;
  bottom: 6px;
  transform: translateX(-50%);
  background: var(--brass);
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 16px;
  border-radius: 2px;
  white-space: nowrap;
}
.venue-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.venue-title-row strong { font-size: 15px; font-weight: 700; color: var(--text); }
.venue-title-row img { width: 18px; height: 18px; }
.venue-card small { font-size: 12px; line-height: 1.4; color: var(--muted); }

/* 04 角色与音色 */
.sec-title { font-size: 15px; font-weight: 700; color: var(--text); margin: 0; }
.role-assign { display: flex; flex-direction: column; gap: 12px; }
.role-pick {
  width: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}
.role-pick.is-on { border-color: var(--teal); }
.role-ico {
  width: 40px;
  height: 40px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.role-ico.teal { background: var(--teal); }
.role-ico.ink { background: var(--ink); }
.role-ico img { width: 20px; height: 20px; }
.role-pick .meta { flex: 1; min-width: 0; }
.role-pick .meta span { display: block; font-size: 13px; color: var(--muted); }
.role-pick .meta b { display: block; margin-top: 2px; font-size: 15px; color: var(--text); }
.tag-soft {
  background: var(--paper);
  color: var(--muted);
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 4px;
  flex-shrink: 0;
}
.tag-soft.teal { color: var(--teal); }
.voice-head { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.voice-head .warn { font-size: 12px; color: var(--warn); }
.voice-chips { display: flex; flex-wrap: wrap; gap: 10px 8px; }
.voice-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 4px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 12px;
  color: var(--text);
}
.voice-chip img { width: 14px; height: 14px; }
.voice-chip.is-on {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
  font-weight: 700;
}
.notice-block {
  background: var(--panel);
  border-radius: var(--r-card);
  padding: 12px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.notice-block img { width: 16px; height: 16px; flex-shrink: 0; margin-top: 1px; }
.notice-block p { font-size: 11px; line-height: 1.4; color: var(--on-ink); }
.btn-save { background: var(--ink); border-color: var(--ink); color: var(--on-ink); }
.btn-teal-solid { background: var(--teal); border-color: var(--teal); color: #fff; }

/* shared lists leftover for later screens */
.pad { padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.pill {
  background: #eef2f5;
  border-radius: var(--r-chip);
  padding: 4px 8px;
  font-size: 12px;
}
.pill.teal { background: #e4eef3; color: var(--teal); }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 14px;
}
.note {
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted);
  background: #eef1f4;
  border-radius: 6px;
  padding: 10px 12px;
}
.note.warn { background: #f8efe0; color: #7a5716; }
.doc-card { display: flex; justify-content: space-between; gap: 10px; align-items: flex-start; }
.doc-card h3 { font-size: 14px; margin: 0 0 4px; }
.doc-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.btn-preview {
  height: 28px;
  padding: 0 10px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 4px;
  font-size: 12px;
  color: var(--teal);
}
.switch {
  width: 40px;
  height: 22px;
  border-radius: 11px;
  border: 0;
  background: #c5cad1;
  position: relative;
  flex-shrink: 0;
}
.switch.is-on { background: var(--ok); }
.switch i {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
}
.switch.is-on i { left: 21px; }
.hit { font-size: 13px; line-height: 1.5; }
.section-item {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.section-item p { margin: 4px 0 0; color: var(--text); line-height: 1.55; }
.section-item.is-on { color: var(--teal); }
.score-hero { text-align: center; padding: 8px 0 4px; }
.score-hero strong { font-size: 56px; font-weight: 700; letter-spacing: -2px; }
.bar { height: 8px; background: #e6e9ee; border-radius: 4px; overflow: hidden; margin-top: 6px; }
.bar i { display: block; height: 100%; background: var(--teal); }
.bar.acc i { background: var(--ok); }
.quote { font-size: 13px; padding: 8px 0; border-bottom: 1px solid var(--line); }
.quote time { color: var(--muted); font-size: 11px; margin-right: 8px; }
.range-row { display: flex; align-items: center; gap: 10px; font-size: 13px; }
.range-row input { flex: 1; }
.bg-card {
  display: flex;
  gap: 12px;
  padding: 12px;
  border-radius: var(--r-card);
  border: 1px solid var(--line);
  background: var(--ink);
  color: var(--on-ink);
  text-align: left;
  width: 100%;
}
.bg-card.is-on { border-color: var(--brass); }
.bg-thumb { width: 72px; height: 56px; border-radius: 4px; object-fit: cover; flex-shrink: 0; }
.voice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.voice-card {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 6px;
  padding: 10px;
  text-align: left;
}
.voice-card.is-on { border-color: var(--teal); background: #eef5f8; }
