:root { color-scheme: dark; font-family: Inter, system-ui, sans-serif; }
* { box-sizing: border-box; }
body { margin: 0; min-height: 100vh; background: #0e0e10; color: #efeff1; }
.stats-page { width: min(1000px, calc(100% - 32px)); margin: 0 auto; padding: 32px 0; }
header { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 24px; }
h1 { margin: 0 0 7px; font-size: clamp(24px, 5vw, 38px); }
p { margin: 0; color: #adadb8; }
header a { color: #53fc18; text-decoration: none; font-weight: 700; white-space: nowrap; }
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 12px; }
article { min-height: 130px; display: flex; flex-direction: column; justify-content: space-between; padding: 18px; border: 1px solid #2a2a2e; border-radius: 10px; background: #18181b; }
article span { color: #adadb8; }
article strong { font-size: 38px; color: #fff; }
article:nth-child(2) strong { color: #53fc18; }
article:nth-child(3) strong { color: #78a9ff; }
@media (max-width: 520px) { header { align-items: flex-start; flex-direction: column; } }
