:root {
  --bg: #090d16;
  --card: rgba(17, 26, 43, 0.75);
  --line: #233353;
  --text: #e9f1ff;
  --muted: #8ba3c7;
  --accent: #1ee3cf;
  --accent2: #5b7fff;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
}
.bg {
  position: fixed; inset: 0;
  background: radial-gradient(circle at 20% 10%, #17325f 0%, transparent 40%),
              radial-gradient(circle at 80% 20%, #1f1d49 0%, transparent 45%);
  pointer-events: none;
}
.container { max-width: 1200px; margin: 0 auto; padding: 20px; position: relative; z-index: 2; }
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  backdrop-filter: blur(8px);
}
.topbar { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.eyebrow { margin: 0; color: var(--accent); font-size: 12px; letter-spacing: .06em; }
h1 { margin: 4px 0 0; }
.grid { display: grid; gap: 14px; margin-top: 14px; }
.status-grid { grid-template-columns: repeat(4, 1fr); }
.two-col { grid-template-columns: 1.2fr .8fr; }
.actions { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 10px; }
button {
  border: 1px solid #35507c;
  background: linear-gradient(135deg, #1b2e51, #24345f);
  color: #fff; border-radius: 10px; padding: 10px 12px; cursor: pointer;
}
button:hover { border-color: var(--accent); }
input, select, textarea {
  width: 100%; border-radius: 10px; border: 1px solid #2f4268; background: #0b1425; color: #dce8ff;
  padding: 10px;
}
.auth-wrap { display: flex; gap: 8px; width: 420px; max-width: 100%; }
pre {
  background: #081224; border: 1px solid #213155; border-radius: 10px; padding: 12px;
  max-height: 180px; overflow: auto; white-space: pre-wrap;
}
.meta-list { font-size: 14px; color: var(--muted); margin-bottom: 10px; }
.editor-bar { display: flex; gap: 8px; margin-bottom: 10px; }
#editor { min-height: 320px; resize: vertical; }
@media (max-width: 900px) {
  .status-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; }
  .topbar { flex-direction: column; align-items: stretch; }
}
@media (max-width: 520px) {
  .status-grid { grid-template-columns: 1fr; }
  .editor-bar { flex-direction: column; }
}
