diff --git a/CSS/styles.css b/CSS/styles.css
index 839ff1f..13775d2 100644
--- a/CSS/styles.css
+++ b/CSS/styles.css
@@ -462,43 +462,52 @@ h2 {
line-height: 1.5;
}
-.history-panel {
+.definition-panel {
display: grid;
gap: 10px;
margin-bottom: 22px;
}
-.history-panel h3 {
+.definition-panel h3 {
margin: 0;
font-family: var(--font-display);
font-size: 1.15rem;
font-weight: 500;
}
-.history-list {
- display: grid;
- gap: 8px;
-}
-
-.history-row {
- display: grid;
- grid-template-columns: 1fr auto;
- gap: 12px;
- padding: 10px 12px;
+.stats-definition {
+ padding: 14px;
border: 1px solid var(--border);
border-radius: 14px;
background: var(--bg);
+ color: var(--muted);
+ line-height: 1.55;
+ text-align: start;
}
-.history-word {
+.stats-definition strong {
+ display: block;
+ margin-bottom: 6px;
+ color: var(--fg);
+ font-family: var(--font-display);
+ font-size: 1.35rem;
+ font-weight: 500;
+ line-height: 1.1;
+}
+
+.stats-definition .word-label {
+ font-family: var(--font-body);
+ font-size: 0.76rem;
font-weight: 900;
letter-spacing: 0.08em;
text-transform: uppercase;
}
-.history-meta {
+.stats-definition em {
+ display: block;
+ margin-top: 10px;
color: var(--muted);
- font-size: 0.84rem;
+ font-style: normal;
}
.leaderboard-card {
diff --git a/README.md b/README.md
index 391880f..654d2f1 100644
--- a/README.md
+++ b/README.md
@@ -19,7 +19,7 @@ The database chooses the word from `public.wordle_words` based on the current UT
The hourly leaderboard uses completed authenticated rounds for the current UTC hour. It ranks wins first, then fewer guesses, then earliest completion time.
-Leaderboard tabs include this hour, today, and all time. Signed-in users are included even if their row falls outside the top 25. Stats also show recent personal history and this hour's average score summary.
+Leaderboard tabs include this hour, today, and all time. Signed-in users are included even if their row falls outside the top 25. Stats also show the current revealed word definition and this hour's average score summary.
`supabase/seed-word-data.sql` is generated from `targetWords.json` and `dictionary.json`:
diff --git a/fancy-wordle-modern.html b/fancy-wordle-modern.html
index 90e8452..b957108 100644
--- a/fancy-wordle-modern.html
+++ b/fancy-wordle-modern.html
@@ -72,9 +72,9 @@