:root {
  --bg: #f4efe5;
  --panel: rgba(255, 252, 245, 0.92);
  --panel-strong: #fffdf8;
  --text: #1f1a16;
  --muted: #6f6256;
  --line: rgba(73, 57, 41, 0.16);
  --accent: #8f3b22;
  --accent-strong: #6f2612;
  --shadow: 0 20px 60px rgba(56, 37, 16, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 40px 20px 56px;
  background:
    radial-gradient(circle at top left, rgba(143, 59, 34, 0.16), transparent 32%),
    radial-gradient(circle at right 20%, rgba(37, 91, 78, 0.14), transparent 28%),
    linear-gradient(180deg, #f7f2e9 0%, #efe7da 100%);
  color: var(--text);
  font-family: "Source Sans 3", "Source Sans Pro", sans-serif;
  line-height: 1.45;
}

body > h1,
body > table,
body > hr,
body > .listing-banner,
body > .listing-footer,
address {
  width: min(980px, calc(100vw - 40px));
  margin-left: auto;
  margin-right: auto;
}

body > h1 {
  margin: 18px auto 18px;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: clamp(2rem, 5vw, 3.1rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

body > h1::before {
  content: "Release Browser";
  display: block;
  margin-bottom: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.listing-banner,
.listing-footer,
body > table {
  background: var(--panel);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.listing-banner {
  padding: 22px 26px;
}

.listing-kicker {
  margin: 0 0 6px;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.listing-summary {
  margin: 0;
  font-size: 1.08rem;
  color: var(--muted);
}

body > table {
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
}

#indexlist .indexcolicon {
  width: 44px;
}

#indexlist tr.odd td {
  background: rgba(255, 255, 255, 0.28);
}

#indexlist tr.even td {
  background: rgba(143, 59, 34, 0.02);
}

th,
 td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  font-size: 1rem;
}

th {
  background: rgba(143, 59, 34, 0.08);
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  text-align: left;
  color: var(--muted);
}

#indexlist .indexbreakrow th {
  padding: 0;
  background: transparent;
}

tr:hover td {
  background: rgba(143, 59, 34, 0.08);
}

tr:last-child td,
tr:last-child th {
  border-bottom: 0;
}

a {
  color: var(--accent-strong);
  text-decoration: none;
  font-weight: 600;
}

a:hover {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

img {
  opacity: 0.86;
}

hr {
  display: none;
}

.listing-footer {
  margin-top: 18px;
  padding: 14px 18px;
  color: var(--muted);
}

.listing-footer p {
  margin: 0;
}

address {
  display: none;
}

@media (max-width: 720px) {
  body {
    padding: 22px 10px 36px;
  }

  body > h1,
  body > table,
  body > .listing-banner,
  body > .listing-footer,
  address {
    width: min(100vw - 20px, 100%);
  }

  th,
  td {
    padding: 12px 10px;
    font-size: 0.94rem;
  }
}