:root {
  --bg: #0f1418; --panel: #182027; --panel2: #1f2a33; --line: #2c3a45;
  --text: #e6edf3; --muted: #8b9aa7; --accent: #f5a623;
  --qb: #e84393; --rb: #00b894; --wr: #e67e22; --te: #2d8cf0;   /* WR orange, TE blue (Craig's scheme) */
  --good: #1f7a4d; --bad: #8a2b2b; --warn: #8a6d1f;
}
* { box-sizing: border-box; }
[hidden] { display: none !important; }
body {
  margin: 0; background: var(--bg); color: var(--text);
  font: 14px/1.4 -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
a { color: var(--accent); text-decoration: none; }
header.topbar {
  display: flex; align-items: center; gap: 14px; padding: 10px 16px;
  background: var(--panel); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 5;
}
header .brand { font-weight: 700; letter-spacing: .5px; }
header .brand span { color: var(--accent); }
.spacer { flex: 1; }
select, input, button {
  background: var(--panel2); color: var(--text); border: 1px solid var(--line);
  border-radius: 6px; padding: 6px 10px; font-size: 14px;
}
button { cursor: pointer; }
button:hover { border-color: var(--accent); }
.pill { padding: 5px 12px; border-radius: 999px; }
.pill.active { background: var(--accent); color: #11181f; border-color: var(--accent); font-weight: 600; }

/* ---- navigator ---- */
.nav-wrap { max-width: 920px; margin: 48px auto; padding: 0 16px; }
.nav-title { font-size: 26px; font-weight: 700; margin-bottom: 4px; }
.nav-title span { color: var(--accent); }
.nav-sub { color: var(--muted); margin-bottom: 28px; }
.nav-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.nav-card {
  display: block; background: var(--panel); border: 1px solid var(--line); border-radius: 10px;
  padding: 20px 18px; transition: .12s; color: var(--text);
}
.nav-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.nav-card .t { font-weight: 600; font-size: 16px; }
.nav-card .d { color: var(--muted); font-size: 12.5px; margin-top: 4px; }
.nav-card.soon { opacity: .55; }
.nav-card.soon .t::after { content: " · soon"; color: var(--muted); font-weight: 400; font-size: 12px; }

/* ---- draft assistant ---- */
.layout { display: grid; grid-template-columns: 1fr 320px; gap: 12px; padding: 12px; align-items: start; }
.board { background: var(--panel); border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
table.board-tbl { border-collapse: collapse; width: 100%; font-size: 13px; }
table.board-tbl th {
  text-align: left; padding: 8px 10px; color: var(--muted); font-weight: 600;
  border-bottom: 1px solid var(--line); position: sticky; top: 52px; background: var(--panel2); cursor: pointer; white-space: nowrap;
}
table.board-tbl td { padding: 6px 10px; border-bottom: 1px solid #20272e; white-space: nowrap; }
table.board-tbl tr:hover td { background: #1c252d; }
.pos { display: inline-block; min-width: 30px; text-align: center; padding: 1px 6px; border-radius: 4px; font-weight: 700; font-size: 11px; color: #0b0f12; }
.pos.QB { background: var(--qb); } .pos.RB { background: var(--rb); }
.pos.WR { background: var(--wr); } .pos.TE { background: var(--te); }
.adp { font-weight: 700; }
.status { font-size: 11px; font-weight: 700; padding: 1px 5px; border-radius: 4px; }
.status.Q { background: var(--warn); } .status.D { background: #7a4a1f; }
.status.O, .status.IR, .status.SUSP, .status.PUP { background: var(--bad); }
.muted { color: var(--muted); }
.side .panel { background: var(--panel); border: 1px solid var(--line); border-radius: 8px; margin-bottom: 12px; }
.side .panel h3 { margin: 0; padding: 10px 12px; font-size: 13px; border-bottom: 1px solid var(--line); color: var(--text); }
.side .panel .body { padding: 12px; color: var(--muted); font-size: 12.5px; }
.count { color: var(--muted); font-weight: 400; font-size: 12px; }
