:root {
  --bg: #07090f;
  --panel: #0b1020;
  --panel2: #05070e;
  --text: #d7dde7;
  --muted: #95a0b5;
  --line: rgba(255, 255, 255, 0.08);
  --glow: rgba(0, 255, 190, 0.18);
  --accent: #00ff88;
  --accent2: #ff6a00;
  --link: #8cf7ff;
  --shadow: 0 0 0 rgba(0,0,0,0);
}

* { box-sizing: border-box; }

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  background-color: var(--bg);
  background-image:
    radial-gradient(820px 520px at 18% -8%, rgba(0, 255, 136, 0.12), transparent 62%),
    radial-gradient(820px 520px at 82% -8%, rgba(140, 247, 255, 0.10), transparent 62%),
    radial-gradient(980px 760px at 50% 122%, rgba(0, 255, 190, 0.06), transparent 68%),
    linear-gradient(180deg, #05060a 0%, var(--bg) 55%, #05060a 100%);
  background-attachment: fixed;
  color: var(--text);
}

a { color: var(--link); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: 980px;
  padding: 28px 18px 64px;
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0 18px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand .sigil {
  display: none;
}

.brand h1 {
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0;
}

.nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.kicker {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.hero {
  margin-top: 18px;
  padding: 18px 18px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(0,0,0,0.18);
  box-shadow: none;
}

.hero-title {
  margin: 0;
  font-size: 20px;
  letter-spacing: 0.02em;
}

.hero-sub {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.card {
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(0,0,0,0.18);
  overflow: hidden;
}

.card-header {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.card-header strong {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dreams {
  margin: 0;
  padding: 0;
  list-style: none;
}

.dreams li {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 14px;
  padding: 12px 14px;
  border-top: 1px solid var(--line);
}

.dreams li:first-child { border-top: none; }

.dreams .meta {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.dreams .title {
  font-size: 13px;
  line-height: 1.45;
}

.footer {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.terminal {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(0,0,0,0.22);
  box-shadow: none;
  overflow: hidden;
}

.terminal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  background: rgba(0,0,0,0.18);
}

.dots {
  display: flex;
  gap: 7px;
  align-items: center;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.06);
}

.dot.red { background: rgba(255, 90, 90, 0.9); }
.dot.yellow { background: rgba(255, 210, 90, 0.9); }
.dot.green { background: rgba(90, 255, 170, 0.9); }

.terminal-top .label {
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

pre {
  margin: 0;
  padding: 14px 14px 18px;
  color: var(--text);
  font-size: 12.5px;
  line-height: 1.55;
  overflow: auto;
  max-height: 72vh;
  text-shadow: none;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 0;
  color: var(--muted);
  font-size: 12px;
  background: rgba(0,0,0,0.22);
}

.badge .pill {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 16px var(--glow);
}

@media (max-width: 640px) {
  .dreams li {
    grid-template-columns: 1fr;
  }
}
