:root {
  --bg: #15130f;
  --card: #211d17;
  --accent: #e3a008;
  --text: #f2efea;
  --muted: #8a8377;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  padding: 2rem 1.2rem 3rem;
}
h1 {
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: 0 auto 1.5rem;
  max-width: 32rem;
  color: var(--muted);
  text-transform: uppercase;
}
ul { list-style: none; margin: 0 auto; padding: 0; max-width: 32rem; }
li { margin-bottom: 0.8rem; }
li a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 1.4rem;
  background: var(--card);
  border-left: 4px solid var(--accent);
  border-radius: 14px;
  text-decoration: none;
  color: var(--text);
}
li a:active { background: #2b251c; }
.name { font-size: 1.35rem; font-weight: 600; word-break: break-word; }
.count { font-size: 0.85rem; color: var(--muted); white-space: nowrap; }
.empty {
  max-width: 32rem;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.7;
  text-align: center;
  padding: 3rem 1rem;
}
