:root {
  color-scheme: dark;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: #000;
  color: #d5d7da;
  font-family: "Inter Tight", system-ui, -apple-system, sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #e5e7ea;
  text-decoration: none;
}

a:hover {
  color: #fff;
}

.mono {
  font-family: "Reddit Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.page {
  width: min(1120px, 92vw);
  margin: 0 auto;
  padding: 20px 0 80px;
}

.top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 54px;
}

.site-title {
  color: #f0f2f4;
  font-size: 11px;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #c5c9cc;
  font-size: 11px;
}

.top-nav a,
.top-nav span {
  color: inherit;
  text-decoration: none;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: 1;
  letter-spacing: inherit;
}

.top-nav a:hover {
  color: #fff;
}

.title {
  margin: 0 0 8px;
  font-size: clamp(20px, 4.3vw, 24px);
  line-height: 1.15;
  color: #f3f5f6;
}

.meta {
  color: #aab0b6;
  margin-bottom: 22px;
}

.content p {
  margin: 0 0 16px;
  max-width: 78ch;
  overflow-wrap: anywhere;
}

.content h2 {
  margin: 30px 0 12px;
  font-size: 18px;
  color: #eceff1;
}

.content ul {
  margin: 0 0 18px;
  padding-left: 20px;
}

.table-wrap {
  overflow-x: auto;
  margin: 18px 0;
}

table {
  border-collapse: collapse;
  min-width: 540px;
  width: 100%;
}

th,
td {
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 8px 10px;
  text-align: left;
  vertical-align: top;
}

th {
  color: #f4f6f7;
  background: rgba(255, 255, 255, 0.04);
}

.back {
  margin-top: 28px;
  display: inline-block;
}

@media (max-width: 980px) {
  .page {
    width: 100%;
    padding: 14px 18px 42px;
  }

  .top {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 34px;
  }

  .top-nav {
    gap: 8px;
    flex-wrap: wrap;
  }

  table {
    min-width: 460px;
  }
}

@media (max-width: 640px) {
  .page {
    padding: 12px 12px 28px;
  }

  .top-nav {
    font-size: 10px;
  }

  .title {
    font-size: clamp(18px, 6vw, 24px);
  }

  .content h2 {
    font-size: 16px;
  }

  table {
    min-width: 380px;
  }
}
