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

:root {
  --bg-primary: #0f1117; --bg-secondary: #1a1d28; --bg-card: #1e2233;
  --bg-hover: #252a3a; --border: #2d3348;
  --text-primary: #e4e6f0; --text-secondary: #9499b3; --text-muted: #5c6180;
  --accent: #6366f1; --accent-light: #818cf8;
  --success: #10b981; --warning: #f59e0b; --danger: #ef4444; --info: #3b82f6;
}

body { font-family: 'Noto Sans SC', -apple-system, sans-serif; background: var(--bg-primary); color: var(--text-primary); min-height: 100vh; }

/* ===== Header ===== */
.header { display: flex; justify-content: space-between; align-items: center; padding: 12px 24px; background: var(--bg-secondary); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; }
.header-left { display: flex; align-items: center; gap: 12px; }
.header-right { display: flex; align-items: center; gap: 12px; }
.connection-status { font-size: 13px; color: var(--text-muted); display: flex; align-items: center; gap: 6px; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--text-muted); display: inline-block; }
.status-dot.connected { background: var(--success); box-shadow: 0 0 8px var(--success); }
.status-dot.disconnected { background: var(--danger); }
.logo { font-size: 28px; }
.header h1 { font-size: 20px; font-weight: 700; background: linear-gradient(135deg, var(--accent-light), #a78bfa); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.badge-info { padding: 2px 10px; background: rgba(99,102,241,0.15); border: 1px solid rgba(99,102,241,0.3); border-radius: 12px; font-size: 11px; color: var(--accent-light); font-weight: 600; }
.config-status { font-size: 13px; color: var(--text-muted); }
.config-status.status-ok { color: var(--success); }
.config-status.status-err { color: var(--warning); }
.timer { font-size: 18px; font-weight: 700; font-variant-numeric: tabular-nums; color: var(--text-primary); margin-right: 16px; }
.status-badge { padding: 4px 12px; border-radius: 12px; font-size: 12px; font-weight: 600; }
.status-idle { background: rgba(92,97,128,0.2); color: var(--text-muted); }
.status-connecting { background: rgba(245,158,11,0.2); color: var(--warning); animation: pulse 1.5s infinite; }
.status-interviewing { background: rgba(16,185,129,0.2); color: var(--success); }
.status-ended { background: rgba(239,68,68,0.2); color: var(--danger); }
.status-error { background: rgba(239,68,68,0.2); color: var(--danger); }

/* ===== Layout ===== */
.main { display: grid; grid-template-columns: 320px 1fr 300px; gap: 16px; padding: 16px 24px; height: calc(100vh - 57px); }
.panel { overflow-y: auto; padding-right: 4px; }
.panel::-webkit-scrollbar { width: 4px; }
.panel::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

/* ===== Card ===== */
.card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; padding: 20px; margin-bottom: 14px; }
.card-title { font-size: 15px; font-weight: 700; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }

/* ===== Forms ===== */
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text-secondary); margin-bottom: 6px; }
.hint { font-size: 11px; color: var(--text-muted); font-weight: 400; }
input[type="text"], input[type="email"], input[type="password"], textarea, select { width: 100%; padding: 10px 12px; background: var(--bg-primary); border: 1px solid var(--border); border-radius: 10px; color: var(--text-primary); font-size: 14px; font-family: inherit; transition: all 0.2s; }
input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focus, textarea:focus, select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(99,102,241,0.12); }
textarea { resize: vertical; min-height: 80px; }
select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%239499b3' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 32px; }
.upload-row { display: flex; align-items: center; gap: 12px; margin-top: 8px; }
.upload-btn { display: inline-block; padding: 6px 14px; background: var(--bg-hover); border: 1px dashed var(--border); border-radius: 6px; color: var(--text-secondary); font-size: 13px; cursor: pointer; transition: all 0.2s; }
.upload-btn:hover { border-color: var(--accent); color: var(--accent-light); }
.btn-text { background: none; border: none; color: var(--accent-light); font-size: 13px; cursor: pointer; padding: 6px 12px; border-radius: 6px; transition: background 0.2s; }
.btn-text:hover { background: var(--bg-hover); }
.checkbox-group { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.checkbox-group label { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--text-secondary); cursor: pointer; }
.checkbox-group input[type="checkbox"] { accent-color: var(--accent); }

/* ===== Buttons ===== */
.btn { width: 100%; padding: 12px 16px; border: none; border-radius: 10px; font-size: 14px; font-weight: 600; font-family: inherit; cursor: pointer; transition: all 0.25s; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }
.btn-primary { background: linear-gradient(135deg, var(--accent), #8b5cf6); color: white; }
.btn-primary:hover:not(:disabled) { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(99,102,241,0.4); }
.btn-secondary { background: var(--bg-hover); color: var(--text-secondary); border: 1px solid var(--border); }
.btn-secondary:hover { background: var(--border); color: var(--text-primary); }
.btn-danger { background: rgba(239,68,68,0.12); color: var(--danger); border: 1px solid rgba(239,68,68,0.25); }
.btn-danger:hover { background: rgba(239,68,68,0.25); }
.btn-warn { background: rgba(245,158,11,0.12); color: var(--warning); border: 1px solid rgba(245,158,11,0.25); }
.btn-warn:hover { background: rgba(245,158,11,0.25); }
.btn-start { background: rgba(16,185,129,0.12); color: var(--success); border: 1px solid rgba(16,185,129,0.25); }
.btn-start:hover { background: rgba(16,185,129,0.25); }
.btn-mic { background: linear-gradient(135deg, #ef4444, #dc2626); color: white; animation: mic-pulse 2s ease-in-out infinite; }
@keyframes mic-pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(239,68,68,0.3); } 50% { box-shadow: 0 0 0 8px rgba(239,68,68,0); } }
.btn-mic:hover { transform: translateY(-1px); }
.btn-sm { padding: 6px 14px; background: var(--accent); color: white; border: none; border-radius: 8px; font-size: 12px; cursor: pointer; font-weight: 600; transition: all 0.2s; }
.btn-sm:hover { opacity: 0.9; }
.qcount-btn { min-width: 48px; text-align: center; transition: all 0.15s; }
.qcount-btn.active { background: #f97316; color: #fff; box-shadow: 0 0 0 3px #f97316, 0 0 12px rgba(249,115,22,0.4); transform: scale(1.08); }
.qcount-btn:not(.active) { background: #374151; color: #9ca3af; }

/* ===== Config ===== */
.config-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 12px; }
.config-item { display: flex; justify-content: space-between; align-items: center; padding: 8px 12px; background: var(--bg-primary); border-radius: 6px; font-size: 13px; }
.dot { width: 8px; height: 8px; border-radius: 50%; }
.dot-ok { background: var(--success); box-shadow: 0 0 6px var(--success); }
.dot-pending { background: var(--warning); }
.help-link { display: block; text-align: center; color: var(--accent-light); font-size: 13px; text-decoration: none; padding: 10px; border-radius: 8px; transition: background 0.2s; }
.help-link:hover { background: var(--bg-hover); }

/* ===== Flow Steps ===== */
.flow-steps { display: flex; flex-direction: column; gap: 10px; }
.flow-step { display: flex; gap: 12px; align-items: flex-start; }
.step-num { width: 28px; height: 28px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), #8b5cf6); color: white; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; flex-shrink: 0; }
.flow-step strong { font-size: 13px; display: block; margin-bottom: 2px; color: var(--text-primary); }
.flow-step p { font-size: 12px; color: var(--text-muted); line-height: 1.5; }

/* ===== Room Created ===== */
.room-created { text-align: center; }
.room-success { font-size: 20px; font-weight: 700; color: var(--success); margin-bottom: 16px; }
.room-info { background: var(--bg-primary); border-radius: 8px; padding: 16px; margin-bottom: 16px; }
.room-field { display: flex; justify-content: space-between; padding: 6px 0; border-bottom: 1px solid var(--border); font-size: 13px; }
.room-field:last-child { border-bottom: none; }
.mono { font-family: monospace; color: var(--accent-light); font-size: 12px; }
.room-link-group { text-align: left; margin-bottom: 16px; }
.room-link-group label { display: block; font-size: 12px; color: var(--text-muted); margin-bottom: 6px; }
.link-row { display: flex; gap: 8px; }
.link-row input { flex: 1; font-size: 12px; padding: 8px; font-family: monospace; }
.room-actions { display: flex; gap: 8px; justify-content: center; }
.room-actions .btn { width: auto; padding: 10px 24px; }
.room-error { text-align: center; }
.room-error span { display: block; font-size: 18px; color: var(--danger); margin-bottom: 8px; }
.room-error p { font-size: 13px; color: var(--text-secondary); }
.loading { text-align: center; padding: 30px; color: var(--text-muted); font-size: 15px; }
.empty-state { text-align: center; padding: 40px; color: var(--text-muted); }
.empty-icon { font-size: 48px; margin-bottom: 12px; }

/* ===== History ===== */
.history-list { display: flex; flex-direction: column; gap: 8px; }
.history-item { padding: 12px; background: var(--bg-primary); border-radius: 8px; cursor: pointer; transition: background 0.2s; }
.history-item:hover { background: var(--bg-hover); }
.history-name { font-weight: 600; font-size: 14px; margin-bottom: 4px; }
.history-pos { font-size: 12px; color: var(--text-muted); margin-bottom: 6px; }
.history-meta { display: flex; gap: 8px; align-items: center; }
.history-meta span { font-size: 11px; padding: 2px 8px; border-radius: 10px; font-weight: 600; }
.grade-s { background: rgba(99,102,241,0.2); color: var(--accent-light); }
.grade-a { background: rgba(16,185,129,0.2); color: var(--success); }
.grade-b { background: rgba(59,130,246,0.2); color: var(--info); }
.grade-c { background: rgba(245,158,11,0.2); color: var(--warning); }
.grade-d { background: rgba(239,68,68,0.2); color: var(--danger); }
.rec-good { background: rgba(16,185,129,0.2); color: var(--success); }
.rec-warn { background: rgba(245,158,11,0.2); color: var(--warning); }
.rec-bad { background: rgba(239,68,68,0.2); color: var(--danger); }
.history-time { font-size: 11px; color: var(--text-muted); margin-top: 4px; }

/* ===== Interview Room ===== */
.interview-room { display: grid; grid-template-columns: 1fr 320px; height: calc(100vh - 57px); }
.room-main { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 40px; }
.room-center { text-align: center; max-width: 500px; }

/* AI Avatar */
.ai-avatar { margin-bottom: 30px; }
.avatar-wave { width: 120px; height: 120px; border-radius: 50%; margin: 0 auto 16px; background: linear-gradient(135deg, rgba(99,102,241,0.3), rgba(139,92,246,0.3)); display: flex; align-items: center; justify-content: center; position: relative; }
.avatar-wave::before { content: ''; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid rgba(99,102,241,0.3); animation: pulse-ring 2s ease-out infinite; }
.avatar-wave.speaking { background: linear-gradient(135deg, rgba(99,102,241,0.6), rgba(139,92,246,0.6)); }
.avatar-body { font-size: 48px; }
.ai-avatar span { display: block; font-size: 14px; color: var(--text-secondary); margin-top: 4px; }

/* Subtitle */
.subtitle-container { min-height: 60px; margin-bottom: 24px; display: flex; align-items: center; justify-content: center; }
.subtitle-hint { color: var(--text-muted); font-size: 14px; }
.subtitle-text { font-size: 16px; line-height: 1.6; color: var(--text-primary); }

/* Waveform */
.waveform { display: flex; align-items: center; justify-content: center; gap: 3px; height: 40px; opacity: 0.3; transition: opacity 0.3s; }
.waveform.active { opacity: 1; }
.waveform span { width: 3px; height: 8px; background: var(--accent); border-radius: 2px; transition: height 0.2s; }
.waveform.active span { animation: wave 0.6s ease-in-out infinite; }
.waveform.active span:nth-child(1) { animation-delay: 0s; }
.waveform.active span:nth-child(2) { animation-delay: 0.06s; }
.waveform.active span:nth-child(3) { animation-delay: 0.12s; }
.waveform.active span:nth-child(4) { animation-delay: 0.18s; }
.waveform.active span:nth-child(5) { animation-delay: 0.24s; }
.waveform.active span:nth-child(6) { animation-delay: 0.3s; }
.waveform.active span:nth-child(7) { animation-delay: 0.36s; }
.waveform.active span:nth-child(8) { animation-delay: 0.42s; }
.waveform.active span:nth-child(9) { animation-delay: 0.48s; }
.waveform.active span:nth-child(10) { animation-delay: 0.54s; }

@keyframes wave { 0%,100% { height: 8px; } 50% { height: 36px; } }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.5; } }
@keyframes pulse-ring { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(1.3); opacity: 0; } }

/* Controls */
.room-controls { padding: 20px 30px; background: var(--bg-secondary); border-top: 1px solid var(--border); }
.controls-center { display: flex; justify-content: center; gap: 16px; margin-bottom: 16px; }
.btn-call { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 16px 32px; border: none; border-radius: 16px; font-size: 14px; font-weight: 600; font-family: inherit; cursor: pointer; transition: all 0.2s; background: var(--bg-card); color: var(--text-primary); border: 1px solid var(--border); }
.btn-call:hover { background: var(--bg-hover); transform: translateY(-2px); }
.btn-call .call-icon { font-size: 28px; }
.btn-call.btn-muted.active { background: rgba(239,68,68,0.2); border-color: rgba(239,68,68,0.4); color: var(--danger); }
.btn-call.btn-danger { background: rgba(239,68,68,0.15); border-color: rgba(239,68,68,0.3); color: var(--danger); }
.btn-call.btn-danger:hover { background: rgba(239,68,68,0.3); }
.controls-info { display: flex; justify-content: center; gap: 24px; }
.info-item { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.info-item span:first-child { font-size: 11px; color: var(--text-muted); }
.info-item span:last-child { font-size: 13px; font-weight: 600; }
.progress-bar-sm { width: 120px; height: 4px; background: var(--bg-primary); border-radius: 2px; overflow: hidden; }
.progress-bar-sm .progress-fill { height: 100%; background: var(--accent); border-radius: 2px; transition: width 0.5s; }

/* Sidebar */
.room-sidebar { border-left: 1px solid var(--border); background: var(--bg-secondary); padding: 20px; overflow-y: auto; }
.room-sidebar h3 { font-size: 14px; font-weight: 600; margin-bottom: 12px; color: var(--text-secondary); }
.dialog-list { display: flex; flex-direction: column; gap: 8px; }
.dialog-item { padding: 10px 12px; background: var(--bg-card); border-radius: 8px; animation: slideIn 0.3s ease; }
.dialog-item.ai { border-left: 3px solid var(--accent); }
.dialog-item.candidate { border-left: 3px solid var(--success); margin-left: 20px; }
.dialog-item.system { border-left: 3px solid var(--warning); background: rgba(245,158,11,0.05); text-align: center; }
.dialog-role { font-size: 11px; font-weight: 600; color: var(--text-muted); margin-bottom: 4px; }
.dialog-text { font-size: 13px; line-height: 1.6; color: var(--text-primary); }
.dialog-time { font-size: 10px; color: var(--text-muted); margin-top: 4px; text-align: right; }

@keyframes slideIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* Report Prompt */
.report-prompt { margin-top: 24px; padding: 20px; background: var(--bg-card); border-radius: 12px; border: 1px solid var(--border); }
.report-prompt p { font-size: 16px; font-weight: 600; margin-bottom: 12px; }

/* Report Modal */
.report-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.7); backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center; z-index: 1000; }
.report-modal { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; width: 90%; max-width: 600px; max-height: 80vh; overflow-y: auto; }
.report-header { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; border-bottom: 1px solid var(--border); }
.report-header h2 { font-size: 16px; }
.report-header button { background: none; border: none; color: var(--text-secondary); font-size: 20px; cursor: pointer; }
.report-body { padding: 20px; }
.report-score-row { display: flex; align-items: center; justify-content: center; gap: 24px; margin-bottom: 20px; }
.report-grade { font-size: 48px; font-weight: 900; background: linear-gradient(135deg, var(--accent-light), #a78bfa); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.report-score-num { font-size: 36px; font-weight: 700; color: var(--accent-light); }
.report-rec { padding: 6px 16px; border-radius: 16px; font-size: 14px; font-weight: 600; }
.rec-good { background: rgba(16,185,129,0.2); color: var(--success); }
.rec-warn { background: rgba(245,158,11,0.2); color: var(--warning); }
.rec-bad { background: rgba(239,68,68,0.2); color: var(--danger); }
.report-summary { font-size: 14px; line-height: 1.8; color: var(--text-secondary); margin-bottom: 20px; padding: 12px; background: var(--bg-primary); border-radius: 8px; }
.report-section { margin-bottom: 16px; }
.report-section h4 { font-size: 14px; font-weight: 600; color: var(--accent-light); margin-bottom: 8px; }
.report-section ul { padding-left: 20px; }
.report-section li { font-size: 13px; line-height: 1.8; color: var(--text-secondary); }
.report-section p { font-size: 13px; line-height: 1.8; color: var(--text-secondary); }

/* ===== Toast ===== */
.toast-container { position: fixed; top: 70px; right: 24px; z-index: 2000; }
.toast { padding: 12px 20px; border-radius: 8px; font-size: 13px; margin-bottom: 8px; animation: toastIn 0.3s ease, toastOut 0.3s ease 2.7s forwards; box-shadow: 0 4px 12px rgba(0,0,0,0.3); }
.toast.success { background: rgba(16,185,129,0.9); color: white; }
.toast.error { background: rgba(239,68,68,0.9); color: white; }
.toast.info { background: rgba(59,130,246,0.9); color: white; }
@keyframes toastIn { from { opacity: 0; transform: translateX(50px); } to { opacity: 1; transform: translateX(0); } }
@keyframes toastOut { from { opacity: 1; } to { opacity: 0; } }

.hidden { display: none !important; }

/* ===== Interview Page - Chat ===== */
.chat-card { display: flex; flex-direction: column; height: 100%; }
.chat-card .card-title { flex-shrink: 0; }
.chat-container { flex: 1; overflow-y: auto; display: flex; flex-direction: column; gap: 10px; padding: 4px 0; }
.chat-container::-webkit-scrollbar { width: 3px; }
.chat-container::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
.chat-placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; flex: 1; color: var(--text-muted); gap: 6px; }
.chat-placeholder p:first-child { font-size: 20px; }

.chat-message { padding: 10px 14px; border-radius: 12px; animation: msgIn 0.3s ease; max-width: 90%; }
.chat-message.ai { background: linear-gradient(135deg, rgba(99,102,241,0.12), rgba(139,92,246,0.08)); border: 1px solid rgba(99,102,241,0.15); border-left: 3px solid var(--accent); }
.chat-message.candidate { background: rgba(16,185,129,0.08); border: 1px solid rgba(16,185,129,0.15); border-left: 3px solid var(--success); align-self: flex-end; }
.chat-message.system { background: var(--bg-primary); border: 1px solid var(--border); text-align: center; align-self: center; max-width: 100%; font-size: 12px; color: var(--text-muted); }
.msg-role { font-size: 11px; font-weight: 700; margin-bottom: 4px; }
.chat-message.ai .msg-role { color: var(--accent-light); }
.chat-message.candidate .msg-role { color: var(--success); }
.msg-text { font-size: 13px; line-height: 1.7; color: var(--text-primary); word-break: break-word; }
.msg-time { font-size: 10px; color: var(--text-muted); margin-top: 4px; text-align: right; }
@keyframes msgIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

/* ===== Interview Page - Progress Bar ===== */
.interview-progress { margin-bottom: 14px; }
.progress-bar { height: 6px; background: var(--bg-primary); border-radius: 3px; overflow: hidden; margin-bottom: 6px; }
.progress-fill { height: 100%; background: linear-gradient(90deg, var(--accent), #8b5cf6); border-radius: 3px; transition: width 0.5s ease; }
.progress-text { font-size: 12px; color: var(--text-muted); text-align: right; }

/* ===== Interview Page - Current Question ===== */
.current-question { background: var(--bg-primary); border-radius: 10px; padding: 14px; margin-bottom: 12px; border: 1px solid var(--border); }
.question-meta { display: flex; gap: 6px; margin-bottom: 8px; }
.question-meta .badge { font-size: 11px; padding: 2px 10px; border-radius: 8px; font-weight: 600; background: rgba(99,102,241,0.12); color: var(--accent-light); border: 1px solid rgba(99,102,241,0.2); }
.current-question p { font-size: 14px; line-height: 1.7; color: var(--text-primary); }

/* ===== Interview Page - Score Panel ===== */
.eval-placeholder { text-align: center; padding: 30px; color: var(--text-muted); font-size: 14px; }
.eval-scores { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.score-item { display: flex; align-items: center; gap: 10px; font-size: 12px; }
.score-item span:first-child { width: 36px; text-align: right; color: var(--text-secondary); font-weight: 500; }
.score-bar { flex: 1; height: 8px; background: var(--bg-primary); border-radius: 4px; overflow: hidden; }
.score-fill { height: 100%; border-radius: 4px; transition: width 0.6s cubic-bezier(0.25,0.8,0.25,1); }
.score-fill.overall { background: linear-gradient(90deg, var(--accent), #8b5cf6); }
.score-fill.accuracy { background: linear-gradient(90deg, #3b82f6, #60a5fa); }
.score-fill.depth { background: linear-gradient(90deg, #8b5cf6, #a78bfa); }
.score-fill.clarity { background: linear-gradient(90deg, #10b981, #34d399); }
.score-fill.practice { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.score-fill.solving { background: linear-gradient(90deg, #ef4444, #f87171); }
.score-value { width: 28px; text-align: right; font-weight: 700; font-size: 13px; font-variant-numeric: tabular-nums; }

.eval-comment { border-top: 1px solid var(--border); padding-top: 14px; }
.eval-comment h4 { font-size: 13px; font-weight: 700; color: var(--text-secondary); margin-bottom: 8px; }
.eval-comment p { font-size: 13px; line-height: 1.7; color: var(--text-primary); }
.eval-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.eval-tag { font-size: 11px; padding: 3px 10px; border-radius: 8px; font-weight: 600; }
.eval-tag.positive { background: rgba(16,185,129,0.1); color: var(--success); border: 1px solid rgba(16,185,129,0.2); }
.eval-tag.negative { background: rgba(245,158,11,0.1); color: var(--warning); border: 1px solid rgba(245,158,11,0.2); }

/* ===== Interview Page - Question List ===== */
.question-list { display: flex; flex-direction: column; gap: 4px; }
.question-list-item { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: 8px; font-size: 12px; transition: all 0.2s; }
.question-list-item:hover { background: var(--bg-hover); }
.question-list-item.current { background: rgba(99,102,241,0.12); border: 1px solid rgba(99,102,241,0.2); }
.question-list-item.done { opacity: 0.5; }
.q-num { width: 22px; height: 22px; border-radius: 50%; background: var(--bg-hover); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; flex-shrink: 0; }
.question-list-item.current .q-num { background: var(--accent); color: #fff; }
.q-text { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: var(--text-secondary); }
.q-score { font-weight: 700; font-size: 13px; min-width: 24px; text-align: right; }

/* ===== Interview Page - ASR Overlay ===== */
.asr-overlay { position: fixed; bottom: 80px; left: 50%; transform: translateX(-50%); background: rgba(30,34,51,0.95); border: 1px solid var(--border); border-radius: 20px; padding: 16px 32px; z-index: 500; backdrop-filter: blur(8px); box-shadow: 0 12px 40px rgba(0,0,0,0.4); text-align: center; }
.asr-text { font-size: 15px; color: var(--text-primary); margin-bottom: 10px; font-weight: 500; }
.asr-waves { display: flex; align-items: center; justify-content: center; gap: 4px; height: 30px; }
.asr-waves span { width: 4px; height: 10px; background: linear-gradient(180deg, var(--accent-light), var(--accent)); border-radius: 2px; animation: asrWave 0.8s ease-in-out infinite; }
.asr-waves span:nth-child(1) { animation-delay: 0s; }
.asr-waves span:nth-child(2) { animation-delay: 0.1s; }
.asr-waves span:nth-child(3) { animation-delay: 0.2s; }
.asr-waves span:nth-child(4) { animation-delay: 0.3s; }
.asr-waves span:nth-child(5) { animation-delay: 0.4s; }
@keyframes asrWave { 0%,100% { height: 10px; opacity: 0.5; } 50% { height: 28px; opacity: 1; } }

/* ===== Interview Page - Control Buttons ===== */
.control-buttons { display: flex; flex-direction: column; gap: 8px; }
