diff --git a/index.html b/index.html
index e315fb6..9dc8fb1 100644
--- a/index.html
+++ b/index.html
@@ -328,11 +328,17 @@
// Determine emoji based on hour
const hour = now.getHours();
let emoji;
- if (hour >= 6 && hour < 18) { // 6 AM to 5:59 PM
+ if (hour >= 5 && hour < 7) { // Dawn
+ emoji = '🌅';
+ } else if (hour >= 7 && hour < 12) { // Morning
emoji = '☀️';
- } else if (hour >= 18 && hour < 20) { // 6 PM to 7:59 PM (sunset)
+ } else if (hour >= 12 && hour < 17) { // Afternoon
+ emoji = '😎';
+ } else if (hour >= 17 && hour < 19) { // Dusk
emoji = '🌇';
- } else { // 8 PM to 5:59 AM
+ } else if (hour >= 19 && hour < 22) { // Evening
+ emoji = '🌆';
+ } else { // Night
emoji = '🌙';
}