/* ===== GeneForge Styles ===== */
:root {
  --bg-primary: #0a0e1a;
  --bg-secondary: #111827;
  --bg-card: rgba(30, 41, 59, 0.6);
  --bg-card-hover: rgba(51, 65, 85, 0.7);
  --border: rgba(99, 102, 241, 0.2);
  --border-hover: rgba(99, 102, 241, 0.4);
  --text-primary: #e2e8f0;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --accent: #6366f1;
  --accent-hover: #818cf8;
  --accent-gradient: linear-gradient(135deg, #6366f1, #8b5cf6);
  --success: #10b981;
  --danger: #ef4444;
  --warning: #f59e0b;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  --sidebar-w: 240px;
}

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

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

.hidden { display: none !important; }

/* ===== Auth Screen ===== */
.auth-screen {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background: radial-gradient(ellipse at top, #1e1b4b, var(--bg-primary));
}

.auth-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  width: 400px;
  max-width: 90vw;
  text-align: center;
  box-shadow: var(--shadow);
}

.auth-logo { font-size: 48px; margin-bottom: 8px; }
.auth-card h1 { font-size: 28px; font-weight: 700; margin-bottom: 4px; }
.auth-subtitle { color: var(--text-secondary); font-size: 14px; margin-bottom: 24px; }

.auth-tabs {
  display: flex;
  gap: 4px;
  background: rgba(0,0,0,0.3);
  border-radius: var(--radius-sm);
  padding: 4px;
  margin-bottom: 20px;
}

.auth-tab {
  flex: 1;
  padding: 10px;
  border: none;
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  border-radius: 6px;
  font-size: 14px;
  transition: all 0.2s;
}

.auth-tab.active { background: var(--accent); color: white; }

.auth-form { display: none; flex-direction: column; gap: 12px; }
.auth-form.active { display: flex; }

.auth-form input {
  padding: 12px 16px;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 14px;
  outline: none;
  transition: border 0.2s;
}

.auth-form input:focus { border-color: var(--accent); }

.auth-hint { color: var(--text-muted); font-size: 12px; margin-top: 8px; }
.auth-error { color: var(--danger); font-size: 13px; margin-top: 8px; min-height: 18px; }

/* ===== Buttons ===== */
.btn-primary {
  padding: 12px 24px;
  background: var(--accent-gradient);
  border: none;
  border-radius: var(--radius-sm);
  color: white;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }
.btn-primary:disabled { opacity: 0.5; cursor: not-allowed; }

.btn-sm {
  padding: 6px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text-primary);
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-sm:hover { background: var(--bg-card-hover); border-color: var(--border-hover); }

.btn-danger { color: var(--danger); border-color: rgba(239,68,68,0.3); }
.btn-danger:hover { background: rgba(239,68,68,0.15); }

/* ===== Main App Layout ===== */
.main-app { display: flex; height: 100vh; }

/* ===== Sidebar ===== */
.sidebar {
  width: var(--sidebar-w);
  background: var(--bg-secondary);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.sidebar-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px;
  border-bottom: 1px solid var(--border);
}

.sidebar-logo { font-size: 24px; }
.sidebar-title { font-size: 18px; font-weight: 700; }

.sidebar-nav { flex: 1; padding: 12px; display: flex; flex-direction: column; gap: 4px; }

.nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  border-radius: var(--radius-sm);
  font-size: 14px;
  text-align: left;
  transition: all 0.2s;
}

.nav-item:hover { background: rgba(99,102,241,0.1); color: var(--text-primary); }
.nav-item.active { background: var(--accent-gradient); color: white; }
.nav-item span { font-size: 18px; }

.sidebar-footer { padding: 12px; border-top: 1px solid var(--border); }

.api-keys-section { margin-bottom: 12px; }

.api-keys-toggle {
  width: 100%;
  padding: 10px;
  background: rgba(99,102,241,0.1);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  cursor: pointer;
  font-size: 13px;
  text-align: left;
  transition: all 0.2s;
}

.api-keys-toggle:hover { background: rgba(99,102,241,0.2); }

.api-keys-panel {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 12px 0;
}

.api-keys-panel.open { display: flex; }

.api-keys-panel input {
  width: 100%;
  padding: 8px 10px;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text-primary);
  font-size: 13px;
  outline: none;
}

.api-keys-panel input:focus { border-color: var(--accent); }
.api-keys-panel .btn-sm { align-self: flex-end; }

.user-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.user-name { font-size: 13px; color: var(--text-secondary); }

/* ===== Content Area ===== */
.content { flex: 1; overflow-y: auto; padding: 24px; }

.view { display: none; height: 100%; }
.view.active { display: flex; flex-direction: column; }

.view-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.view-header h2 { font-size: 22px; font-weight: 700; }
.view-desc { color: var(--text-secondary); font-size: 13px; }

/* ===== Chat View ===== */
.chat-container { display: flex; flex-direction: column; flex: 1; gap: 16px; min-height: 0; }

.chat-messages {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 8px 0;
}

.chat-message {
  display: flex;
  gap: 12px;
  max-width: 85%;
}

.chat-message.user { align-self: flex-end; flex-direction: row-reverse; }

.chat-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  background: var(--accent-gradient);
}

.chat-message.user .chat-avatar { background: var(--success); }

.chat-bubble {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 14px;
  line-height: 1.7;
}

.chat-message.user .chat-bubble { background: rgba(16,185,129,0.1); border-color: rgba(16,185,129,0.3); }

.chat-bubble h1, .chat-bubble h2, .chat-bubble h3 { margin: 12px 0 8px; }
.chat-bubble h1 { font-size: 18px; }
.chat-bubble h2 { font-size: 16px; }
.chat-bubble h3 { font-size: 15px; }
.chat-bubble ul, .chat-bubble ol { margin: 8px 0 8px 20px; }
.chat-bubble p { margin: 8px 0; }
.chat-bubble pre {
  background: rgba(0,0,0,0.4);
  border-radius: 8px;
  padding: 12px;
  overflow-x: auto;
  margin: 8px 0;
}
.chat-bubble code { font-size: 13px; }
.chat-bubble pre code { background: none; padding: 0; }
.chat-bubble :not(pre) > code {
  background: rgba(99,102,241,0.2);
  padding: 2px 6px;
  border-radius: 4px;
}

.chat-all-results {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.chat-all-results summary {
  cursor: pointer;
  color: var(--text-secondary);
  font-size: 13px;
}

.chat-all-results .result-item {
  margin: 8px 0;
  padding: 10px;
  background: rgba(0,0,0,0.2);
  border-radius: 8px;
  font-size: 13px;
}

.chat-all-results .result-item .provider-name { color: var(--accent-hover); font-weight: 600; }

.chat-input-area { display: flex; flex-direction: column; gap: 8px; }

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-secondary);
  cursor: pointer;
}

.chat-input-row { display: flex; gap: 8px; }

.chat-input-row textarea {
  flex: 1;
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 14px;
  resize: none;
  outline: none;
  font-family: inherit;
}

.chat-input-row textarea:focus { border-color: var(--accent); }

/* ===== Knowledge Base View ===== */
.kb-container { display: flex; flex-direction: column; gap: 20px; flex: 1; overflow-y: auto; }

.kb-add-section { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }

.kb-tabs { display: flex; gap: 4px; margin-bottom: 16px; background: rgba(0,0,0,0.3); border-radius: var(--radius-sm); padding: 4px; }

.kb-tab {
  flex: 1;
  padding: 8px;
  border: none;
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  border-radius: 6px;
  font-size: 13px;
  transition: all 0.2s;
}

.kb-tab.active { background: var(--accent); color: white; }

.kb-tab-content { display: none; flex-direction: column; gap: 10px; }
.kb-tab-content.active { display: flex; }

.kb-tab-content input, .kb-tab-content textarea {
  padding: 10px 14px;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 14px;
  outline: none;
  font-family: inherit;
}

.kb-tab-content input:focus, .kb-tab-content textarea:focus { border-color: var(--accent); }
.kb-tab-content textarea { resize: vertical; }

.kb-search-results { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }

.kb-list-section h3 { font-size: 16px; margin-bottom: 12px; }

.kb-list { display: flex; flex-direction: column; gap: 8px; }

.kb-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.kb-item-header { display: flex; justify-content: space-between; align-items: center; }

.kb-item-source { font-size: 12px; color: var(--accent-hover); }
.kb-item-date { font-size: 12px; color: var(--text-muted); }

.kb-item-content {
  font-size: 13px;
  color: var(--text-secondary);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.kb-item-actions { display: flex; gap: 8px; }

/* ===== Tournament View ===== */
.tournament-container { display: flex; flex-direction: column; gap: 20px; flex: 1; overflow-y: auto; }

.tournament-config {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tournament-config textarea {
  padding: 12px 16px;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 14px;
  resize: vertical;
  outline: none;
  font-family: inherit;
}

.tournament-config textarea:focus { border-color: var(--accent); }

.tournament-options { display: flex; align-items: center; justify-content: space-between; gap: 12px; }

.tournament-options label { font-size: 14px; color: var(--text-secondary); }

.tournament-options select {
  padding: 8px 12px;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text-primary);
  font-size: 14px;
  outline: none;
}

.tournament-results { display: flex; flex-direction: column; gap: 16px; }

.tournament-round {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
}

.tournament-round h4 { font-size: 15px; margin-bottom: 10px; color: var(--accent-hover); }

.tournament-round-plans { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }

.tournament-plan-item {
  padding: 10px;
  background: rgba(0,0,0,0.2);
  border-radius: 8px;
  font-size: 13px;
}

.tournament-plan-item .plan-provider { color: var(--accent-hover); font-weight: 600; margin-bottom: 4px; }

.tournament-champion {
  background: linear-gradient(135deg, rgba(99,102,241,0.15), rgba(139,92,246,0.15));
  border: 1px solid rgba(99,102,241,0.4);
  border-radius: var(--radius);
  padding: 20px;
}

.tournament-champion h3 { font-size: 18px; margin-bottom: 12px; }

.tournament-genes { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }

.gene-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  background: rgba(139,92,246,0.2);
  border: 1px solid rgba(139,92,246,0.4);
  border-radius: 20px;
  font-size: 12px;
  color: #c4b5fd;
}

/* ===== History View ===== */
.history-filters { display: flex; gap: 4px; background: rgba(0,0,0,0.3); border-radius: var(--radius-sm); padding: 4px; }

.filter-btn {
  padding: 6px 16px;
  border: none;
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  border-radius: 6px;
  font-size: 13px;
  transition: all 0.2s;
}

.filter-btn.active { background: var(--accent); color: white; }

.history-list { display: flex; flex-direction: column; gap: 8px; overflow-y: auto; }

.history-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px;
  cursor: pointer;
  transition: all 0.2s;
}

.history-item:hover { background: var(--bg-card-hover); border-color: var(--border-hover); }

.history-item-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }

.history-item-type {
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
}

.history-item-type.chat { background: rgba(16,185,129,0.2); color: var(--success); }
.history-item-type.tournament { background: rgba(245,158,11,0.2); color: var(--warning); }

.history-item-date { font-size: 12px; color: var(--text-muted); }
.history-item-question { font-size: 14px; color: var(--text-primary); margin-bottom: 4px; }
.history-item-result { font-size: 13px; color: var(--text-secondary); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

.history-detail {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.history-detail h3 { margin-bottom: 12px; }

/* ===== Memory View ===== */
.memory-list { display: flex; flex-direction: column; gap: 8px; overflow-y: auto; }

.memory-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.memory-item-key { font-size: 14px; font-weight: 600; color: var(--accent-hover); }
.memory-item-value { font-size: 13px; color: var(--text-secondary); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.memory-item-date { font-size: 12px; color: var(--text-muted); }

/* ===== Genes View ===== */
.genes-list { display: flex; flex-direction: column; gap: 8px; overflow-y: auto; }

.gene-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px;
}

.gene-item-feature { font-size: 14px; font-weight: 600; color: #c4b5fd; margin-bottom: 4px; }
.gene-item-scenario { font-size: 13px; color: var(--text-secondary); }
.gene-item-meta { font-size: 12px; color: var(--text-muted); margin-top: 4px; }

/* ===== Toast ===== */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  padding: 12px 24px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 14px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s;
  z-index: 1000;
  pointer-events: none;
}

.toast.show { opacity: 1; transform: translateY(0); }
.toast.success { border-color: var(--success); }
.toast.error { border-color: var(--danger); }

/* ===== Loading Overlay ===== */
.loading-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,14,26,0.8);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.loading-content { text-align: center; }

.loading-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(99,102,241,0.2);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 16px;
}

@keyframes spin { to { transform: rotate(360deg); } }

.loading-content p { color: var(--text-secondary); font-size: 14px; }

/* ===== Scrollbar ===== */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(99,102,241,0.3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(99,102,241,0.5); }

/* ===== Empty State ===== */
.empty-state { text-align: center; padding: 40px; color: var(--text-muted); font-size: 14px; }

/* ===== Settings View ===== */
.settings-container { display: flex; flex-direction: column; gap: 16px; overflow-y: auto; }

.settings-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.settings-card h3 { font-size: 16px; margin-bottom: 12px; color: var(--accent-hover); }
.settings-card p { font-size: 14px; color: var(--text-secondary); margin: 4px 0; }

.api-keys-list { display: flex; flex-direction: column; gap: 12px; }

.api-key-item { display: flex; flex-direction: column; gap: 4px; }

.api-key-item label {
  font-size: 13px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.api-key-item .provider-badge {
  display: inline-block;
  padding: 1px 8px;
  background: rgba(99,102,241,0.2);
  border-radius: 10px;
  font-size: 11px;
  color: var(--accent-hover);
}

.api-key-item input {
  padding: 10px 14px;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 14px;
  outline: none;
  font-family: inherit;
}

.api-key-item input:focus { border-color: var(--accent); }
.api-key-item input.has-key { border-color: var(--success); }

.settings-actions { display: flex; align-items: center; gap: 12px; margin-top: 16px; }

.api-keys-status { font-size: 13px; color: var(--text-secondary); }
.api-keys-status.has-keys { color: var(--success); }

.provider-links { list-style: none; padding: 0; }
.provider-links li { font-size: 13px; color: var(--text-secondary); margin: 8px 0; }
.provider-links a { color: var(--accent-hover); text-decoration: none; }
.provider-links a:hover { text-decoration: underline; }

.nav-settings { margin-top: auto; }

/* ===== API Key Banner ===== */
.api-key-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(239, 68, 68, 0.1));
  border: 1px solid rgba(245, 158, 11, 0.4);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 16px;
  animation: bannerPulse 2s ease-in-out infinite;
}

@keyframes bannerPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.3); }
  50% { box-shadow: 0 0 0 8px rgba(245, 158, 11, 0); }
}

.banner-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.banner-icon { font-size: 24px; flex-shrink: 0; }

.banner-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.banner-text strong { font-size: 15px; color: var(--warning); }
.banner-text span { font-size: 13px; color: var(--text-secondary); }

.banner-btn { white-space: nowrap; flex-shrink: 0; }

/* ===== Nav Pulse Animation ===== */
.nav-item.needs-config {
  position: relative;
  animation: navPulse 1.5s ease-in-out infinite;
}

@keyframes navPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4); }
  50% { box-shadow: 0 0 0 6px rgba(245, 158, 11, 0); }
}

.nav-item.needs-config::after {
  content: '!';
  position: absolute;
  top: 4px;
  right: 4px;
  width: 16px;
  height: 16px;
  background: var(--warning);
  color: #000;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* ===== Mobile Bottom Nav ===== */
.mobile-nav-toggle {
  display: none;
  position: fixed;
  bottom: 16px;
  right: 16px;
  width: 56px;
  height: 56px;
  background: var(--accent-gradient);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.4);
  z-index: 100;
  align-items: center;
  justify-content: center;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .sidebar { width: 56px; }
  .sidebar-title, .nav-label, .user-name { display: none; }
  .nav-item { justify-content: center; padding: 12px; }
  .content { padding: 12px; }
  .view-header h2 { font-size: 18px; }
  .chat-input-row { flex-direction: column; }
  .chat-input-row .btn-primary { width: 100%; }
  .tournament-options { flex-direction: column; align-items: flex-start; }
  .settings-card { padding: 16px; }

  /* 移动端横幅调整 */
  .api-key-banner { flex-direction: column; text-align: center; gap: 12px; padding: 14px; }
  .banner-content { flex-direction: column; text-align: center; }
  .banner-btn { width: 100%; }

  /* 移动端 API 设置导航项特殊样式 - 始终显示文字 */
  .nav-settings .nav-label {
    display: inline !important;
    font-size: 11px;
  }
  .nav-settings {
    flex-direction: column;
    gap: 2px;
    padding: 8px 4px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
  }
  .nav-settings span:first-child { font-size: 16px; }
}

@media (max-width: 480px) {
  .api-key-banner { padding: 12px; }
  .banner-text strong { font-size: 14px; }
  .banner-text span { font-size: 12px; }
  .settings-card { padding: 12px; }
  .api-key-item input { font-size: 13px; }
}
