/* baseLINE — Live Config surface (Twitch Live module, streamer dashboard)
   Branded form on Diagnostic Blue -> Cyber Purple. */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; min-height: 100%; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: #05070B;
  color: #E6EDF7;
}
.live-surface {
  max-width: 520px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.live-header { display: flex; align-items: baseline; gap: 10px; }
.live-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 18px;
  background: linear-gradient(135deg, #00CFFF, #7A5CFF);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.live-sub { font-size: 13px; color: #AABAC3; }
.live-field { display: flex; flex-direction: column; gap: 6px; font-size: 13px; color: #AABAC3; }
.live-field input[type="text"], .live-field input:not([type]) {
  background: #0A0F17; border: 1px solid #2A3A4A; border-radius: 6px;
  padding: 10px 12px; color: #E6EDF7; font-family: 'JetBrains Mono', monospace; font-size: 13px;
}
.live-field input:focus { outline: none; border-color: #00CFFF; box-shadow: 0 0 0 3px rgba(0,207,255,0.18); }
.live-check { flex-direction: row; align-items: center; gap: 8px; }
.live-save {
  align-self: flex-start; margin-top: 4px; padding: 11px 22px;
  font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 14px;
  color: #05070B; border: none; border-radius: 6px; cursor: pointer;
  background: linear-gradient(135deg, #00CFFF, #7A5CFF);
  box-shadow: 0 6px 24px -6px rgba(0,207,255,0.5);
}

/* === baseLINE Hero banner header === */
.baseline-hero {
  position: relative; width: 100%; margin-bottom: 14px;
  border-radius: 8px; overflow: hidden; border: 1px solid #2A3A4A;
  box-shadow: 0 0 24px rgba(0,207,255,0.12);
}
.baseline-hero-img { display: block; width: 100%; height: auto; object-fit: cover; max-height: 260px; }
.baseline-hero-caption {
  position: absolute; left: 14px; bottom: 10px;
  font-family: 'Space Grotesk', sans-serif; font-size: 14px; color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}

/* === Layer B Fee Disclosure === */
.fee-disclosure {
  margin-top: 16px; background: #0C121B; border: 1px solid #2A3A4A;
  border-radius: 8px; padding: 16px;
}
.fee-disclosure-title {
  font-family: 'Space Grotesk', sans-serif; color: #E6EDF7;
  font-size: 15px; margin-bottom: 10px; font-weight: 600;
}
.fee-split-bar {
  display: flex; width: 100%; height: 26px; border-radius: 999px;
  overflow: hidden; margin-bottom: 12px; border: 1px solid #2A3A4A;
}
.fee-seg { display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.78rem; color: #06121a; }
.fee-seg.creator { background: linear-gradient(90deg, #00CFFF, #38bdf8); }
.fee-seg.platform { background: linear-gradient(90deg, #9146FF, #b06bff); color: #fff; }
.fee-disclosure-rows { display: flex; flex-direction: column; gap: 8px; margin-bottom: 12px; }
.fee-row { display: flex; align-items: center; gap: 10px; font-size: 13px; color: #B8C4D4; }
.fee-dot { width: 12px; height: 12px; border-radius: 50%; }
.fee-dot.creator { background: #00CFFF; }
.fee-dot.platform { background: #9146FF; }
.fee-label { flex: 1; }
.fee-value { font-family: 'JetBrains Mono', monospace; font-weight: 700; color: #E6EDF7; }
.fee-disclosure-note { font-size: 12px; color: #8090A4; line-height: 1.5; margin: 0; }
.fee-disclosure-note code {
  font-family: 'JetBrains Mono', monospace; color: #b06bff;
  background: rgba(145,70,255,0.12); padding: 1px 6px; border-radius: 4px;
}
.live-save:hover { box-shadow: 0 0 16px rgba(122,92,255,0.5); }

