:root {
  color-scheme: light;
  --ink: #172033;
  --muted: #596176;
  --line: #d9dfeb;
  --paper: #ffffff;
  --wash: #f3f6fb;
  --blue: #2563eb;
  --green: #11885f;
  --amber: #a35a00;
  --red: #b3261e;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--wash);
  line-height: 1.55;
}

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.topbar {
  background: #111827;
  color: #fff;
  border-bottom: 1px solid #000;
}

.topbar-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
}

.nav a {
  color: #dbeafe;
}

.notice {
  background: #fff7ed;
  color: #7c2d12;
  border-bottom: 1px solid #fed7aa;
  font-size: 14px;
}

.notice-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 10px 0;
}

.hero {
  position: relative;
  min-height: 390px;
  color: #fff;
  background-image:
    linear-gradient(90deg, rgba(17, 24, 39, .96), rgba(17, 24, 39, .72), rgba(17, 24, 39, .36)),
    url("https://shared.akamai.steamstatic.com/store_item_assets/steam/apps/4117730/7f159502a95f3a41269de2e20f9e6f5a7c2fe565/capsule_616x353.jpg");
  background-size: cover;
  background-position: center;
}

.hero-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 68px 0 46px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  color: #bfdbfe;
  letter-spacing: .06em;
}

h1 {
  margin: 10px 0 12px;
  max-width: 760px;
  font-size: 48px;
  line-height: 1.05;
  letter-spacing: 0;
}

.hero p {
  max-width: 760px;
  font-size: 18px;
  color: #e5e7eb;
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid #93c5fd;
  background: #eff6ff;
  color: #1d4ed8;
  font-weight: 700;
}

.button.secondary {
  background: rgba(255, 255, 255, .1);
  color: #fff;
  border-color: rgba(255, 255, 255, .48);
}

.wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.band {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 34px 0;
}

.band.alt {
  background: #f8fafc;
}

.page-head {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.page-head .wrap {
  padding: 42px 0 30px;
}

.page-head h1 {
  color: var(--ink);
  font-size: 40px;
  max-width: 900px;
}

.page-head p {
  max-width: 820px;
  color: var(--muted);
  font-size: 17px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tile {
  background: #fff;
  border: 1px solid var(--line);
  padding: 18px;
  min-height: 154px;
}

.tile h2,
.tile h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.2;
}

.tile p {
  margin: 0;
  color: var(--muted);
}

.answer {
  border-left: 5px solid var(--blue);
  background: #eff6ff;
  padding: 18px;
  margin: 0 0 22px;
}

.answer strong {
  color: #1d4ed8;
}

.status-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 22px;
}

.status-card {
  border: 1px solid var(--line);
  background: #fff;
  padding: 16px;
  min-height: 118px;
}

.status-card .label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.status-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 20px;
  line-height: 1.2;
}

.status-card p,
.note {
  margin: 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.panel {
  border: 1px solid var(--line);
  background: #fff;
  padding: 18px;
}

.panel h2,
.panel h3 {
  margin-top: 0;
}

.check-list,
.update-list {
  margin: 0;
  padding-left: 20px;
}

.check-list li,
.update-list li {
  margin: 8px 0;
}

.last-checked {
  display: inline-block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.status-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.status-table th,
.status-table td {
  border: 1px solid var(--line);
  padding: 12px;
  text-align: left;
  vertical-align: top;
}

.status-table th {
  background: #f1f5f9;
}

.tag {
  display: inline-block;
  padding: 3px 8px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.tag.ok {
  color: var(--green);
  border-color: #86efac;
  background: #f0fdf4;
}

.tag.block {
  color: var(--red);
  border-color: #fecaca;
  background: #fef2f2;
}

.source-list {
  padding-left: 20px;
}

.source-list li {
  margin: 8px 0;
}

.footer {
  background: #111827;
  color: #d1d5db;
  padding: 26px 0;
  font-size: 14px;
}

.footer a {
  color: #bfdbfe;
}

@media (max-width: 760px) {
  .topbar-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  h1,
  .page-head h1 {
    font-size: 34px;
  }

  .hero {
    min-height: 430px;
  }

  .grid,
  .grid.two,
  .status-cards,
  .split {
    grid-template-columns: 1fr;
  }

  .status-table {
    font-size: 14px;
  }
}
