I think there is a simple and more effective way to track this that will both align with users' natural intuitions and prevent gaming/misrepresentation. The idea is to simply track the greatest number of consecutive days possible in any single timezone, and reset the count once the user's visits could not be considered consecutive no matter where they are. Because it's equally hard to visit consecutively in any particular timezone, the method leaves no geographic bias and auto-correlates to any kind of daily schedule the person might have.
There's definitely a better way to program this, but going for readability here I'm going to parallel your method and use some vague pseudocode. Here is how it would work out:
Add the date/time field for all users representing the moment at which they start their journey towards Enthusiast/Fanatic, and call it startOfConsecPeriod. Also add a field storing possibleTimezones and a method called impossibleZones(startAbsence, endAbsence) which returns timezones with more than 1 day division in the given range. Whenever a user performs enough activity to trigger an update to the "last seen" field, run something like this:
// If it's been more than 48 hours since the last visit, reset the clock and list
if(currentTime - lastSeenTime > FORTY-EIGHT_HOURS) {
startOfConsecPeriod = currentTime;
possibleTimezones = impossibleZones(currentTime, currentTime + FORTY-EIGHT_HOURS);
}
// If it's been more than 24 hours since the last visit, remove incompatible timezones
if(currentTime - lastSeenTime > TWENTY-FOUR_HOURS) {
possibleTimezones = possibleTimezones - impossibleZones(lastSeenTime, currentTime);
}
// If no compatible timezones left, reset the clock and list
if(possibleTimezones == 0) {
startOfConsecPeriod = currentTime;
possibleTimezones = impossibleZones(currentTime, currentTime + FORTY-EIGHT_HOURS);
}
lastSeenTime = currentTime;
amountOfTimeWithoutMissingADay = currentTime - startOfConsecPeriod;
// Check for badges
if(!userHasFanatic && amountOfTimeWithoutMissingADay > HUNDRED_DAYS)
awardFanatic();
else if(!userHasEnthusiast && amountOfTimeWithoutMissingADay > THIRTY_DAYS)
awardEnthusiast();
No muss, no fuss, no time zone tracking, no increased difficulty to achieve, no reduced difficulty to achieve. Definitely UTC; this method begs for it. Users who travel can pick any one timezone to go by, and as long as they stick with it they'll be fine. Users can log in any time of the day they want, even 12:01 AM one day and 11:59 PM the next (though in so doing they've locked themselves into only one possible timezone so they can now never miss a day in it again).
Most importantly, the typical case where a non-UTC user logs in at one time on one day and a couple hours later the next is fully covered in all timezones. You wouldn't have to explain to users how the method works--it would just automatically follow their intuitions for days in their local timezone. It's also not gameable because the only way of gaming it is to religiously follow some timezone other than your own (whether you realise you are or not).