/* Winners page */
.wh { font-family: 'Space Mono', monospace; background: var(--paper); color: var(--ink); border: 2px solid var(--ink); overflow: hidden; }
.wh * { box-sizing: border-box; margin: 0; padding: 0; }

/* Header */
.wh-header { padding: 16px 20px 12px; border-bottom: 2px solid var(--ink); display: flex; align-items: flex-end; justify-content: space-between; }
.wh-title { font-family: 'Unbounded', sans-serif; font-weight: 900; font-size: 22px; letter-spacing: -1px; text-transform: uppercase; }
.wh-sub { font-size: 8px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-top: 4px; }
.wh-count { font-family: 'Unbounded', sans-serif; font-size: 11px; font-weight: 700; background: var(--green); color: #fff; padding: 4px 10px; }

/* Desktop table */
.wh-table-wrap {}
.wh-table { width: 100%; border-collapse: collapse; }
.wh-table thead tr { background: var(--ink); }
.wh-table th { font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--lime); padding: 9px 16px; text-align: left; border-right: 1px solid #333; }
.wh-table th:last-child { border-right: none; }
.wh-table td { padding: 11px 16px; border-bottom: 1px solid var(--mid); border-right: 1px solid var(--mid); font-size: 13px; vertical-align: middle; }
.wh-table td:last-child { border-right: none; }
.wh-table tr:last-child td { border-bottom: none; }
.wh-table tr:hover td { background: var(--hover); }
.wh-date { font-size: 11px; color: var(--muted); letter-spacing: 1px; }
.wh-chip { font-family: 'Unbounded', sans-serif; font-size: 10px; font-weight: 700; padding: 2px 7px; border: 1.5px solid; display: inline-block; }
.wh-chip.pos { color: var(--green); border-color: var(--green); }
.wh-chip.neg { color: var(--red); border-color: var(--red); }
.wh-prize { font-family: 'Unbounded', sans-serif; font-size: 14px; font-weight: 700; }
.wh-det { font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--green); border-bottom: 1px solid var(--green); cursor: pointer; text-decoration: none; }
.wh-det:hover { color: var(--ink); border-color: var(--ink); }

/* Mobile card list */
.wh-card-list { display: none; }
.wh-row { padding: 11px 14px; border-bottom: 1px solid var(--mid); display: flex; align-items: center; gap: 10px; text-decoration: none; color: inherit; }
.wh-row:last-child { border-bottom: none; }
.wh-row:hover { background: var(--hover); }
.wh-row-info { flex: 1; min-width: 0; }
.wh-row-name { font-weight: 700; font-size: 13px; }
.wh-row-game { font-size: 10px; color: var(--muted); margin-top: 1px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wh-row-bet { font-size: 10px; color: var(--muted); }

@media (max-width: 640px) {
    .wh-header { padding: 14px; }
    .wh-title { font-size: 18px; }
    .wh-table-wrap { display: none; }
    .wh-card-list { display: block; }
}