:root {
  --bg: #0b0f14;
  --card: #131a23;
  --border: #223041;
  --text: #e8eef5;
  --muted: #93a3b8;
  --accent: #22c55e;
  --accent-dim: #14532d;
  --warn: #f59e0b;
  --danger: #ef4444;
}
* { box-sizing: border-box; }
body {
  margin: 0; background: var(--bg); color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.55;
}
.wrap { max-width: 860px; margin: 0 auto; padding: 0 16px; }
.site-header {
  border-bottom: 1px solid var(--border);
  background: #0e141c;
  position: sticky; top: 0; z-index: 10;
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 12px; padding-bottom: 12px;
}
.brand { color: var(--text); text-decoration: none; font-weight: 700; font-size: 1.15rem; }
.team { color: var(--muted); font-size: 0.85rem; }
main.wrap { padding-top: 20px; padding-bottom: 32px; }
.site-footer { border-top: 1px solid var(--border); color: var(--muted); font-size: 0.8rem; }
.site-footer .wrap { padding-top: 14px; padding-bottom: 20px; }

.report-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.report-head h1 { margin: 0 0 4px; font-size: 1.6rem; }
.meta { color: var(--muted); font-size: 0.85rem; margin: 0; }
.week-badge {
  background: var(--accent-dim); color: var(--accent);
  border: 1px solid var(--accent);
  font-weight: 700; border-radius: 10px; padding: 8px 14px; white-space: nowrap;
}
.card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 14px; padding: 18px; margin-bottom: 16px;
}
.card h2 { margin: 0 0 10px; font-size: 1.05rem; color: var(--accent); }
.card ul { margin: 8px 0 0; padding-left: 20px; }
.card li { margin-bottom: 6px; }
.score { font-size: 1.5rem; font-weight: 800; letter-spacing: 0.5px; margin: 6px 0; }
.status { color: var(--muted); font-style: italic; margin: 4px 0 0; }
table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
th, td { text-align: left; padding: 8px 6px; border-bottom: 1px solid var(--border); vertical-align: top; }
th { color: var(--muted); font-weight: 600; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.4px; }
tr:last-child td { border-bottom: none; }
.call { font-weight: 700; padding: 2px 10px; border-radius: 999px; font-size: 0.8rem; }
.call.start { background: var(--accent-dim); color: var(--accent); }
.call.sit { background: #3f1d1d; color: var(--danger); }
.call.monitor { background: #3a2c10; color: var(--warn); }
.news { list-style: none; padding-left: 0; }
.news li { margin-bottom: 10px; }
.src {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  background: #1c2735; color: var(--muted);
  border-radius: 6px; padding: 2px 8px; margin-right: 8px;
}
.archive a { color: var(--accent); text-decoration: none; }
.archive a:hover { text-decoration: underline; }
.archive ul { list-style: none; padding-left: 0; }
@media (max-width: 560px) {
  .report-head h1 { font-size: 1.25rem; }
  .score { font-size: 1.2rem; }
  th:nth-child(4), td:nth-child(4) { display: none; }
  .card table th:nth-child(4), .card table td:nth-child(4) { display: none; }
}
