/* ══ MODERATOR PANEL CSS ══ */
.mod-panel {
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem;
}

.mod-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: 0.15em;
  background: linear-gradient(135deg, #fff 0%, #666 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.mod-subtitle {
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  color: #888;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

.section-label {
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 0.75rem;
}

/* Session fields */
.session-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 8px;
}

.session-field-label {
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  color: #555;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.session-input {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: #ccc;
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  padding: 8px 10px;
  outline: none;
  transition: border-color 0.2s;
}
.session-input:focus { border-color: var(--muted); }

/* Question box */
.question-box {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 1.5rem;
  margin-bottom: 0.75rem;
}

.question-input {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--text);
  font-family: 'DM Mono', monospace;
  font-size: 1rem;
  line-height: 1.6;
  outline: none;
  resize: none;
  min-height: 80px;
}
.question-input::placeholder { color: var(--muted); font-style: italic; }

/* Question bank */
.bank-cat-label {
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  color: #555;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.bank-q {
  padding: 8px 10px;
  background: #0e0e0e;
  border: 1px solid #1e1e1e;
  color: #888;
  font-size: 0.75rem;
  line-height: 1.5;
  cursor: pointer;
  margin-bottom: 3px;
  transition: all 0.15s;
}
.bank-q:hover { background: #181818; color: #ddd; border-color: #333; }

#question-bank { margin-bottom: 16px; }

/* Toggles and fire */
.fire-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.model-toggles { display: flex; gap: 0.5rem; flex-wrap: wrap; }

.toggle-btn {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.9rem;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
}
.toggle-btn:disabled { opacity: 0.2; cursor: not-allowed; }
.toggle-btn.on.claude-btn   { border-color:var(--claude);   color:var(--claude);   background:rgba(242,101,34,0.1); }
.toggle-btn.on.chatgpt-btn  { border-color:var(--chatgpt);  color:var(--chatgpt);  background:rgba(16,163,127,0.1); }
.toggle-btn.on.gemini-btn   { border-color:var(--gemini);   color:var(--gemini);   background:rgba(251,188,4,0.1); }
.toggle-btn.on.mistral-btn  { border-color:var(--mistral);  color:var(--mistral);  background:rgba(237,41,57,0.1); }
.toggle-btn.on.deepseek-btn { border-color:var(--deepseek); color:var(--deepseek); background:rgba(91,110,245,0.1); }

.fire-btn {
  background: var(--text);
  border: none;
  color: var(--bg);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  padding: 0.75rem 2rem;
  cursor: pointer;
  transition: all 0.2s;
}
.fire-btn:hover { background: var(--claude); color: #fff; }
.fire-btn:disabled { opacity: 0.3; cursor: not-allowed; }

.status-line {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: #888;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.status-line span { color: var(--text); }

/* Log */
.log-box { background: var(--surface); border: 1px solid var(--border); }
.log-item { display:flex; gap:1rem; padding:0.85rem 1.25rem; border-bottom:1px solid var(--border); cursor:pointer; transition:background 0.2s; }
.log-item:hover { background: #151515; }
.log-item:last-child { border-bottom: none; }
.log-num { font-family:'Bebas Neue',sans-serif; font-size:1.1rem; color:var(--muted); min-width:1.75rem; line-height:1; }
.log-q { font-size:0.75rem; color:#aaa; line-height:1.5; }
.log-empty { padding:1.5rem; font-size:0.7rem; color:#777; font-style:italic; text-align:center; }

/* Backstage */
.backstage-panel { max-width:600px; margin:0 auto; padding:2rem; }
.backstage-title { font-family:'Bebas Neue',sans-serif; font-size:2.5rem; letter-spacing:0.15em; color:#aaa; margin-bottom:0.5rem; }
.backstage-subtitle { font-size:0.6rem; letter-spacing:0.3em; color:#888; text-transform:uppercase; margin-bottom:2rem; }
.backstage-note { font-size:0.7rem; color:#999; line-height:1.7; margin-bottom:1.5rem; }
.backstage-section { font-size:0.6rem; letter-spacing:0.35em; text-transform:uppercase; color:#777; margin:2rem 0 1rem; border-bottom:1px solid #222; padding-bottom:0.5rem; }
