:root { --ink:#111; --mute:#666; --line:#e5e5e5; --accent:#ff6a00; }
* { box-sizing: border-box; }
body { margin:0; font: 15px/1.5 ui-sans-serif, system-ui, sans-serif; color: var(--ink); padding: 1.25rem; }
.header { margin-bottom: 1rem; }
.header__title { font-size: 1.1rem; margin: 0; }
.header__sub { font-size: 0.85rem; color: var(--mute); margin: 0.25rem 0 0; }
.list { list-style: none; counter-reset: rank; padding: 0; margin: 0; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.list li { counter-increment: rank; display: grid; grid-template-columns: 2rem 1fr auto; gap: 0.75rem; align-items: center; padding: 0.65rem 0.85rem; border-bottom: 1px solid var(--line); }
.list li:last-child { border-bottom: 0; }
.list li::before { content: counter(rank); color: var(--accent); font-weight: 700; }
.list a { color: var(--ink); text-decoration: none; font-weight: 500; }
.list a:hover { text-decoration: underline; }
.list .views { font-size: 0.8rem; color: var(--mute); }
.empty, .error { padding: 2rem; text-align: center; color: var(--mute); }
.error { color: #8a1c1c; }
