.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    flex-wrap: wrap;
    gap: 8px;
}
.header h1 {
    color: #d4d4d4;
    font-size: 20px;
    font-family: 'Segoe UI', sans-serif;
}
.header .stats {
    color: #888;
    font-size: 13px;
    font-family: 'Segoe UI', sans-serif;
    display: flex;
    gap: 6px;
    align-items: center;
    flex-wrap: wrap;
}
.header .stats .num { color: #d4d4d4; font-weight: 500; }
.header .stats .divider { color: #3a3a3a; }

/* Скрываем дублирующуюся статистику в шапке */
.header .stats {
    display: none !important;
}
