:root {
  color-scheme: light;
  --ink: #1c1b18;
  --muted: #706b61;
  --line: #ddd6c8;
  --paper: #fbf5e8;
  --panel: #fffdf7;
  --panel-solid: #fffdf7;
  --honey: #f3bd31;
  --honey-soft: #ffe5a1;
  --honey-deep: #bd7b10;
  --sage: #376f63;
  --sage-soft: #e4f0eb;
  --rose: #b34646;
  --rose-soft: #fae9e7;
  --shadow: 0 12px 28px rgba(48, 38, 20, 0.1);
  --soft-shadow: 0 4px 12px rgba(48, 38, 20, 0.06);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  background: #f8f1e4;
  color: var(--ink);
}

button {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-solid);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  touch-action: manipulation;
  transition: transform 120ms ease, border-color 120ms ease, background 120ms ease, box-shadow 120ms ease;
}

button:disabled {
  cursor: not-allowed;
}

button:hover {
  border-color: #c8bdab;
}

button:active {
  transform: translateY(1px) scale(0.99);
}

button:focus-visible {
  outline: 3px solid rgba(55, 111, 99, 0.26);
  outline-offset: 2px;
}

.app {
  width: min(100%, 720px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 18px 16px 28px;
  display: grid;
  grid-template-rows: auto auto minmax(84px, auto) auto auto 1fr;
  gap: 14px;
}

.topbar,
.scoreline,
.found-heading,
.history-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar {
  align-items: start;
}

.topbar-meta {
  display: grid;
  justify-items: end;
  gap: 6px;
  min-width: max-content;
  text-align: right;
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  font-size: 2.1rem;
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  font-size: 1rem;
}

#puzzleMeta {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 650;
  text-align: right;
}

.puzzle-date {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 850;
  white-space: nowrap;
  text-align: right;
}

.icon-button {
  width: 44px;
  border-radius: 50%;
  font-size: 1.15rem;
  box-shadow: var(--soft-shadow);
}

.progress {
  padding: 12px 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--soft-shadow);
}

.scoreline {
  margin-bottom: 10px;
}

#rankLabel {
  color: var(--sage);
  font-weight: 800;
}

.honey-progress {
  position: relative;
  height: 104px;
  padding-top: 29px;
  --rank-node-top: 24px;
  --rank-line-top: 37px;
}

.honey-line {
  position: absolute;
  left: 28px;
  right: 28px;
  top: var(--rank-line-top);
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: #e6dfd3;
}

.honey-line span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--honey), var(--honey-deep));
  transition: width 720ms ease;
}

.rank-track {
  position: absolute;
  inset: 0 28px;
}

.rank-node {
  position: absolute;
  top: var(--rank-node-top);
  display: grid;
  justify-items: center;
  gap: 5px;
  width: 76px;
  transform: translateX(-50%);
  color: var(--muted);
}

.rank-hex {
  display: grid;
  place-items: center;
  width: 38px;
  aspect-ratio: 1 / 0.866;
  clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
  background: #efe6d4;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 900;
  transition: background 520ms ease, color 520ms ease, transform 520ms ease;
}

.rank-node.reached .rank-hex {
  background: var(--honey);
  color: var(--ink);
}

.rank-node.current .rank-hex {
  background: var(--honey-deep);
  color: #fffdf7;
  transform: scale(1.08);
}

.rank-node.milestone-reached .rank-hex {
  animation: milestone-celebration 680ms cubic-bezier(0.2, 0.8, 0.25, 1);
}

@keyframes milestone-celebration {
  0% {
    transform: scale(1.08) rotate(0);
  }
  18% {
    transform: scale(0.9) rotate(-7deg);
  }
  38% {
    transform: scale(1.24) rotate(6deg);
  }
  55% {
    transform: scale(1.12) rotate(-4deg);
  }
  72% {
    transform: scale(1.18) rotate(3deg);
  }
  100% {
    transform: scale(1.08) rotate(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .rank-node.milestone-reached .rank-hex {
    animation: none;
  }
}

.rank-label,
.rank-points {
  max-width: 76px;
  text-align: center;
  line-height: 1.05;
}

.rank-label {
  color: var(--ink);
  font-size: 0.64rem;
  font-weight: 850;
}

.rank-points {
  color: var(--muted);
  font-size: 0.6rem;
  font-weight: 750;
}

.entry {
  position: relative;
  display: grid;
  align-content: center;
  height: 70px;
  min-height: 70px;
  margin-bottom: 58px;
}

.current-word-shell {
  position: relative;
  width: 100%;
  height: 62px;
  min-height: 62px;
  border-bottom: 2px solid rgba(28, 27, 24, 0.18);
  overflow: hidden;
}

.current-word,
.current-word-input {
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 0 10px;
  border: 0;
  background: transparent;
  font-size: clamp(1.8rem, 10vw, 3.4rem);
  font-weight: 800;
  line-height: 1.12;
  text-align: center;
  overflow-wrap: normal;
  outline: none;
}

.current-word {
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.current-word-input {
  position: absolute;
  inset: 0;
  z-index: 1;
  color: transparent;
  caret-color: transparent;
  cursor: default;
  opacity: 0;
}

.current-word-input::selection {
  background: transparent;
}

.board {
  --hex-w: 27%;
  --hex-gap-x: 1.15%;
  --hex-step-x: calc(var(--hex-w) * 0.75 + var(--hex-gap-x));
  --hex-h: calc(var(--hex-w) * 0.866);
  --hex-gap-y: 0.85%;
  --hex-step-y: calc(var(--hex-h) + var(--hex-gap-y));
  position: relative;
  width: min(82vw, 340px);
  aspect-ratio: 1;
  margin: 2px auto;
}

.hex {
  position: absolute;
  width: var(--hex-w);
  aspect-ratio: 1 / 0.866;
  min-height: 0;
  border: 0;
  border-radius: 0;
  background: #fffdf8;
  clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
  box-shadow: none;
  font-size: clamp(1.35rem, 7vw, 2.2rem);
  font-weight: 900;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.hex:hover {
  background: #fff6dd;
}

.hex:active {
  transform: translate(-50%, calc(-50% + 2px)) scale(0.985);
}

.hex-center {
  top: 50%;
  left: 50%;
  background: var(--honey);
}

.hex-0 {
  top: calc(50% - var(--hex-step-y));
  left: 50%;
}

.hex-1 {
  top: calc(50% - var(--hex-step-y) / 2);
  left: calc(50% - var(--hex-step-x));
}

.hex-2 {
  top: calc(50% - var(--hex-step-y) / 2);
  left: calc(50% + var(--hex-step-x));
}

.hex-3 {
  top: calc(50% + var(--hex-step-y) / 2);
  left: calc(50% - var(--hex-step-x));
}

.hex-4 {
  top: calc(50% + var(--hex-step-y) / 2);
  left: calc(50% + var(--hex-step-x));
}

.hex-5 {
  top: calc(50% + var(--hex-step-y));
  left: 50%;
}

.actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.actions button {
  padding: 0 8px;
  font-size: 0.9rem;
  box-shadow: var(--soft-shadow);
}

.actions .primary {
  border-color: var(--honey-deep);
  background: var(--honey);
  color: #241b0a;
}

.side-panel {
  min-height: 280px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--soft-shadow);
}

.panel-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  margin-bottom: 14px;
}

.panel-tabs button {
  min-height: 38px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 850;
}

.panel-tabs button.active {
  border-color: var(--sage);
  color: var(--ink);
  background: var(--sage-soft);
}

.panel-view[hidden] {
  display: none;
}

.found-heading {
  margin-bottom: 12px;
}

.found-column-header,
.found-row {
  --found-grid-columns: minmax(0, 1fr) 64px 74px;
  display: grid;
  grid-template-columns: var(--found-grid-columns);
  gap: 8px;
}

.found-column-header {
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.found-sort-header {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 7px;
  padding: 0 8px;
  border: 0;
  border-radius: 6px;
  background: #f7f1e7;
  box-shadow: none;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 850;
  text-align: left;
}

.found-sort-header.active {
  color: var(--ink);
}

.history-heading {
  margin-bottom: 10px;
}

#guessCount {
  color: var(--muted);
  font-weight: 800;
}

.guess-history {
  max-height: 260px;
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-right: 4px;
}

.word-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: baseline;
  padding: 7px 8px;
  border-radius: 6px;
  font-size: 0.92rem;
  line-height: 1.25;
  will-change: transform, opacity;
}

.word-row span {
  overflow-wrap: anywhere;
}

.word-row strong {
  color: inherit;
  font-size: 0.82rem;
  font-weight: 850;
  white-space: nowrap;
}

.word-row.correct {
  color: var(--ink);
  background: #f3f0ea;
  font-style: normal;
  font-weight: 500;
}

.word-row.pangram {
  color: var(--honey-deep);
  background: var(--honey-soft);
  font-style: normal;
  font-weight: 900;
}

.word-row.wrong {
  color: var(--rose);
  background: var(--rose-soft);
  font-style: normal;
  font-weight: 500;
}

.word-row.neutral {
  color: var(--ink);
  font-style: normal;
  font-weight: 500;
}

.modal-column-header {
  --modal-grid-columns: minmax(0, 1fr) 72px 168px;
  display: grid;
  grid-template-columns: var(--modal-grid-columns);
  gap: 8px;
  align-items: stretch;
  margin-bottom: 8px;
  padding: 0 8px 8px;
  border-bottom: 1px solid var(--line);
}

.modal-column-header.with-found {
  --modal-grid-columns: minmax(0, 1fr) 72px 74px 126px;
}

.modal-column-header.with-reason {
  --modal-grid-columns: minmax(0, 1fr) 72px 74px 126px;
}

.modal-sort-header,
.modal-static-header,
.modal-found-filter {
  min-height: 34px;
  border: 0;
  border-radius: 6px;
  background: #f7f1e7;
  box-shadow: none;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 850;
}

.modal-sort-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 0 8px;
  text-align: left;
}

.modal-sort-header.active {
  color: var(--ink);
}

.sort-icons {
  display: inline-grid;
  grid-template-rows: repeat(2, 1fr);
  gap: 2px;
  flex: 0 0 auto;
  color: #c7c0b4;
  font-size: 0.62rem;
  line-height: 0.7;
}

.sort-icons span.active {
  color: var(--ink);
  font-weight: 950;
}

.modal-static-header {
  display: grid;
  place-items: center end;
  padding: 0 8px;
}

.modal-static-header.centered {
  place-items: center;
}

.modal-found-filter {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  padding: 3px;
  overflow: hidden;
}

.modal-found-filter::before {
  content: "";
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: 3px;
  width: calc((100% - 8px) / 2);
  border-radius: 5px;
  background: var(--honey);
  transition: transform 180ms ease;
}

.modal-found-filter.show-unfound::before {
  transform: translateX(calc(100% + 2px));
}

.modal-found-filter span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  border-radius: 5px;
  transition: color 140ms ease, font-weight 140ms ease;
}

.modal-found-filter span.active {
  color: var(--ink);
  font-weight: 950;
}

#foundCount {
  color: var(--muted);
  font-weight: 800;
}

.found-words {
  max-height: 420px;
  overflow: auto;
  display: grid;
  gap: 5px;
  padding-right: 4px;
}

.found-row {
  align-items: baseline;
  padding: 7px 8px;
  border-radius: 6px;
  font-size: 0.92rem;
  line-height: 1.25;
  will-change: transform, opacity;
}

.found-row span {
  overflow-wrap: anywhere;
}

.found-row strong,
.found-row b {
  color: inherit;
  font-size: 0.82rem;
  font-weight: 850;
  white-space: nowrap;
  text-align: center;
}

.found-row.correct {
  color: var(--ink);
  background: #f3f0ea;
  font-style: normal;
  font-weight: 500;
}

.found-row.pangram {
  color: var(--honey-deep);
  background: var(--honey-soft);
  font-style: normal;
  font-weight: 900;
}

.accent-menu {
  position: fixed;
  z-index: 10;
  display: flex;
  gap: 6px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-solid);
  box-shadow: var(--shadow);
}

.toast {
  position: absolute;
  left: 50%;
  top: calc(100% + 10px);
  z-index: 30;
  width: max-content;
  max-width: min(92vw, 440px);
  min-width: min(280px, 88vw);
  transform: translate(-50%, -8px);
  opacity: 0;
  padding: 13px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-solid);
  box-shadow: var(--shadow);
  color: var(--ink);
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.25;
  text-align: center;
  pointer-events: none;
  transition: opacity 150ms ease, transform 150ms ease;
}

.toast.show {
  transform: translate(-50%, 0);
  opacity: 1;
}

.toast-headline,
.toast-detail {
  display: block;
}

.toast-headline {
  font-size: 1.12rem;
}

.toast-detail {
  margin-top: 4px;
  font-size: 0.9rem;
  font-weight: 750;
}

.toast.good {
  border-color: rgba(55, 111, 99, 0.26);
  background: var(--sage-soft);
  color: var(--sage);
}

.toast.bad {
  border-color: rgba(179, 70, 70, 0.24);
  background: var(--rose-soft);
  color: var(--rose);
}

.toast[hidden] {
  display: none;
}

.accent-menu[hidden] {
  display: none;
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  padding: 18px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(25, 24, 22, 0.32);
}

.modal-card {
  position: relative;
  width: min(100%, 620px);
  max-height: min(78vh, 720px);
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-solid);
  box-shadow: var(--shadow);
}

.modal-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}

.modal-body {
  overflow: auto;
  padding: 14px 16px 18px;
}

.modal-list {
  display: grid;
  gap: 5px;
}

.modal-table-row {
  display: grid;
  grid-template-columns: var(--modal-grid-columns, minmax(0, 1fr) 72px 168px);
  gap: 8px;
  align-items: baseline;
  padding: 7px 8px;
  border-radius: 6px;
  font-size: 0.92rem;
  line-height: 1.25;
}

.modal-table-row.with-found {
  --modal-grid-columns: minmax(0, 1fr) 72px 74px 126px;
}

.modal-table-row.with-reason {
  --modal-grid-columns: minmax(0, 1fr) 72px 74px 126px;
}

.modal-table-row span {
  overflow-wrap: anywhere;
}

.modal-table-row strong,
.modal-table-row b,
.modal-table-row em,
.modal-table-row i {
  color: inherit;
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 850;
  white-space: nowrap;
}

.modal-table-row strong {
  text-align: center;
}

.modal-table-row b {
  text-align: right;
}

.modal-table-row.with-found b {
  text-align: center;
}

.modal-table-row.with-reason b {
  text-align: center;
}

.modal-table-row em {
  text-align: center;
}

.modal-table-row i {
  text-align: right;
}

.modal-table-row.neutral {
  color: var(--ink);
}

.modal-table-row.correct {
  color: var(--ink);
  background: #f3f0ea;
}

.modal-table-row.pangram {
  color: var(--honey-deep);
  background: var(--honey-soft);
  font-weight: 900;
}

.accent-menu button {
  width: 48px;
  border-color: transparent;
  background: #f4efe6;
  font-size: 1.25rem;
}

.dev-tools {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.dev-tools button {
  min-height: 34px;
  padding: 0 10px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
  background: transparent;
  box-shadow: none;
}

@media (min-width: 760px) {
  .app {
    width: min(100%, 1180px);
    grid-template-columns: minmax(360px, 520px) minmax(360px, 1fr);
    grid-template-rows: auto auto minmax(70px, auto) auto auto;
    align-items: start;
    column-gap: 54px;
    row-gap: 14px;
    padding-top: 28px;
  }

  .topbar,
  .progress,
  .entry,
  .actions,
  .dev-tools {
    grid-column: 1;
  }

  .board {
    grid-column: 1;
  }

  .side-panel {
    grid-column: 2;
    grid-row: 1 / span 6;
    position: sticky;
    top: 28px;
    min-height: calc(100vh - 36px);
  }

  .found-words,
  .guess-history {
    max-height: calc(100vh - 190px);
  }

}

@media (max-width: 520px) {
  .modal-column-header {
    --modal-grid-columns: minmax(0, 1fr) 58px 120px;
  }

  .modal-column-header.with-found {
    --modal-grid-columns: minmax(0, 1fr) 54px 58px 104px;
  }

  .modal-column-header.with-reason {
    --modal-grid-columns: minmax(0, 1fr) 54px 58px 104px;
  }

  .modal-table-row {
    --modal-grid-columns: minmax(0, 1fr) 58px 120px;
  }

  .modal-table-row.with-found {
    --modal-grid-columns: minmax(0, 1fr) 54px 58px 104px;
  }

  .modal-table-row.with-reason {
    --modal-grid-columns: minmax(0, 1fr) 54px 58px 104px;
  }

  .modal-sort-header,
  .modal-static-header,
  .modal-found-filter {
    font-size: 0.68rem;
  }
}

@media (max-width: 390px) {
  .app {
    padding-inline: 12px;
  }

  .actions {
    grid-template-columns: repeat(2, 1fr);
  }

  .toast {
    left: 50%;
    top: calc(100% + 10px);
    max-width: min(88vw, 320px);
    min-width: 0;
  }
}

/* Restrained Greek puzzle-paper visual system */
:root {
  --ink: #171714;
  --muted: #77736c;
  --line: #d8d4cc;
  --paper: #f6f4ef;
  --panel: #fbfaf7;
  --panel-solid: #fbfaf7;
  --honey: #e9ad19;
  --honey-soft: #f8e8b8;
  --honey-deep: #a96e06;
  --sage: #2f695c;
  --sage-soft: #e8f0ed;
  --rose: #a94842;
  --rose-soft: #f7e9e7;
  --shadow: 0 10px 28px rgb(41 35 24 / 8%);
  --soft-shadow: 0 2px 8px rgb(41 35 24 / 5%);
  font-family: Georgia, "Times New Roman", serif;
}

body {
  background:
    linear-gradient(rgb(255 255 255 / 42%), rgb(255 255 255 / 42%)),
    var(--paper);
}

button,
input {
  font-family: inherit;
}

button {
  border-color: var(--line);
  border-radius: 5px;
  font-weight: 600;
}

button:hover {
  border-color: #aaa59c;
  background-color: #fff;
}

button:focus-visible {
  outline: 2px solid var(--honey);
  outline-offset: 3px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.app {
  width: min(100%, 1460px);
  min-height: 100vh;
  padding: 24px 28px 0;
  gap: 18px;
}

.topbar {
  min-height: 94px;
  align-items: center;
  border-bottom: 0;
}

.brand {
  display: grid;
  gap: 7px;
}

h1 {
  font-size: clamp(3rem, 5vw, 4.4rem);
  font-weight: 700;
  line-height: 0.82;
}

.brand-crowned {
  position: relative;
}

.brand-crowned::before {
  content: "♛";
  position: absolute;
  left: 50%;
  bottom: 84%;
  color: var(--honey-deep);
  font-family: Georgia, serif;
  font-size: 0.25em;
  line-height: 1;
  transform: translateX(-50%);
}

.brand-kicker,
.meta-label,
.progress-title {
  color: #56524b;
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.topbar-meta {
  position: relative;
  min-height: 66px;
  grid-template-columns: auto 1px auto;
  grid-template-rows: auto auto;
  column-gap: 24px;
  align-items: center;
}

.meta-label {
  grid-column: 1;
  justify-self: end;
  align-self: end;
}

.puzzle-date {
  grid-column: 1;
  grid-row: 2;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 500;
}

.meta-divider {
  grid-column: 2;
  grid-row: 1 / 3;
  width: 1px;
  height: 58px;
  background: var(--line);
}

#puzzleMeta {
  grid-column: 3;
  grid-row: 1 / 3;
  max-width: 190px;
  color: var(--honey-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.45;
}

.progress {
  padding: 22px 28px 25px;
  border-radius: 7px;
  background: rgb(255 255 255 / 34%);
  box-shadow: none;
}

.scoreline {
  align-items: baseline;
  margin-bottom: 5px;
}

.scoreline strong {
  font-size: 1.25rem;
  font-weight: 500;
}

.honey-progress {
  height: 115px;
  padding-top: 32px;
  --rank-node-top: 27px;
  --rank-line-top: 44px;
}

.honey-line {
  left: 34px;
  right: 34px;
  height: 2px;
  border-radius: 0;
  background: #d7d4cd;
}

.honey-line span {
  border-radius: 0;
  background: var(--honey);
}

.rank-track {
  inset-inline: 34px;
}

.rank-node {
  gap: 7px;
  width: 92px;
}

.rank-hex {
  width: 46px;
  border: 1px solid #cbc7bf;
  background: #f7f5f0;
  color: #494640;
  font-size: 0.78rem;
  font-weight: 600;
  filter: drop-shadow(0 1px 1px rgb(0 0 0 / 6%));
}

.rank-node.reached .rank-hex {
  border-color: var(--honey);
  background: var(--honey);
}

.rank-node.current .rank-hex {
  background: var(--honey-deep);
  color: #fff;
}

.rank-label {
  max-width: 92px;
  font-size: 0.75rem;
  font-weight: 600;
}

.rank-points {
  max-width: 92px;
  font-size: 0.67rem;
  font-weight: 400;
}

.entry {
  height: 74px;
  min-height: 74px;
  margin: 0 0 18px;
}

.play-prompt {
  position: absolute;
  top: 0;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
  color: #3d3933;
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.play-prompt::before,
.play-prompt::after {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--honey);
}

.play-prompt span {
  text-align: center;
}

.current-word-shell {
  height: 60px;
  min-height: 60px;
  margin-top: 26px;
  border: 0;
}

.current-word,
.current-word-input {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.board {
  width: min(74vw, 390px);
  margin: -2px auto 4px;
}

.hex {
  isolation: isolate;
  border: 0;
  background: #cbc8c1;
  color: #111;
  filter: drop-shadow(0 2px 2px rgb(38 31 19 / 5%));
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 7vw, 3.2rem);
  font-weight: 700;
}

.hex::before {
  content: "";
  position: absolute;
  inset: 1.5px;
  z-index: -1;
  clip-path: inherit;
  background: #fbfaf7;
}

.hex:hover {
  background: #a7a197;
  filter: drop-shadow(0 3px 4px rgb(38 31 19 / 9%));
}

.hex:hover::before {
  background: #fff;
}

.hex-center,
.hex-center:hover {
  background: #c48c09;
}

.hex-center::before,
.hex-center:hover::before {
  background: var(--honey);
}

.actions {
  gap: 18px;
}

.actions button {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding-inline: 12px;
  background: rgb(255 255 255 / 42%);
  font-size: 0.93rem;
  font-weight: 500;
  box-shadow: var(--soft-shadow);
}

.action-icon {
  min-width: 19px;
  display: inline-grid;
  place-items: center;
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 1.2rem;
}

.accent-mark {
  height: 23px;
  font-family: Georgia, serif;
  font-size: 1.05rem;
  line-height: 21px;
}

.actions .primary {
  border-color: #c28a08;
  background: var(--honey);
  color: #17120a;
}

.dev-tools {
  padding-top: 2px;
  border-top: 1px dashed #d5d1c8;
}

.dev-tools::before {
  content: "DEV";
  align-self: center;
  color: #9b968d;
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.dev-tools button {
  border: 0;
  border-bottom: 1px solid transparent;
  border-radius: 0;
  font-weight: 400;
}

.dev-tools button:hover {
  border-bottom-color: var(--honey-deep);
  background: transparent;
  color: var(--ink);
}

.side-panel {
  padding: 0;
  overflow: hidden;
  border-radius: 7px;
  background: rgb(255 255 255 / 42%);
  box-shadow: var(--soft-shadow);
}

.panel-tabs {
  gap: 0;
  margin: 0;
  border-bottom: 1px solid var(--line);
}

.panel-tabs button {
  position: relative;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.panel-tabs button + button {
  border-left: 1px solid var(--line);
}

.panel-tabs button::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: -1px;
  left: 18px;
  height: 2px;
  background: transparent;
}

.panel-tabs button.active {
  border-color: var(--line);
  background: transparent;
}

.panel-tabs button.active::after {
  background: var(--honey);
}

.panel-view {
  padding: 27px 26px 90px;
}

.found-heading,
.history-heading {
  margin-bottom: 22px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--line);
}

.found-heading h2,
.history-heading h2 {
  font-size: 1.15rem;
  font-weight: 500;
}

.found-column-header,
.found-row {
  --found-grid-columns: minmax(0, 1fr) 76px 84px;
}

.found-sort-header,
.modal-sort-header,
.modal-static-header,
.modal-found-filter {
  background: #eeebe4;
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-weight: 650;
}

.found-sort-header {
  border-radius: 3px;
}

.found-sort-header:active,
.found-sort-header:hover,
.found-sort-header:focus-visible,
.modal-sort-header:active,
.modal-sort-header:hover,
.modal-sort-header:focus-visible,
.modal-found-filter:hover,
.modal-found-filter:focus-visible,
.modal-found-filter:active {
  background: #ded8ce;
}

.found-row,
.word-row {
  border-bottom: 1px solid #e6e2da;
  border-radius: 0;
  background: transparent;
}

.found-row.correct,
.word-row.correct {
  background: transparent;
}

.found-row.pangram,
.word-row.pangram {
  background: linear-gradient(90deg, var(--honey-soft), transparent 76%);
}

.word-row.wrong {
  background: linear-gradient(90deg, var(--rose-soft), transparent 76%);
}

.app-footer {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 22px;
  border-top: 1px solid var(--line);
  color: #5d5952;
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.toast {
  border-color: #bbb6ad;
  border-radius: 5px;
  background: #fcfbf8;
  font-family: Georgia, "Times New Roman", serif;
  box-shadow: 0 10px 30px rgb(30 25 18 / 12%);
}

.toast.good {
  border-color: var(--honey);
  background: #fcf7e8;
  color: var(--ink);
}

.toast.bad {
  background: #faf0ee;
}

.modal-card,
.accent-menu {
  border-radius: 5px;
}

@media (min-width: 760px) {
  .app {
    grid-template-columns: minmax(520px, 1.65fr) minmax(400px, 0.9fr);
    grid-template-rows: auto auto minmax(74px, auto) auto auto auto auto;
    column-gap: 22px;
    row-gap: 18px;
    padding-top: 24px;
  }

  .topbar,
  .progress,
  .entry,
  .board,
  .actions,
  .dev-tools {
    grid-column: 1;
  }

  .side-panel {
    grid-row: 1 / span 6;
    top: 24px;
    min-height: calc(100vh - 92px);
  }

  .app-footer {
    grid-column: 1 / -1;
    width: 100%;
    margin-inline: 0;
  }
}

@media (max-width: 759px) {
  .app {
    padding: 18px 14px 0;
  }

  .topbar {
    min-height: 78px;
  }

  h1 {
    font-size: 3rem;
  }

  .brand-kicker {
    font-size: 0.56rem;
  }

  .topbar-meta {
    min-height: 54px;
    grid-template-columns: auto;
    grid-template-rows: auto auto auto;
    gap: 3px;
  }

  .meta-label {
    grid-column: 1;
    grid-row: 1;
  }

  .puzzle-date {
    grid-column: 1;
    grid-row: 2;
  }

  .meta-divider {
    display: none;
  }

  #puzzleMeta {
    grid-column: 1;
    grid-row: 3;
    max-width: 160px;
    font-size: 0.72rem;
  }

  .progress {
    padding-inline: 16px;
  }

  .honey-progress {
    height: 104px;
  }

  .rank-track {
    inset-inline: 24px;
  }

  .honey-line {
    left: 24px;
    right: 24px;
  }

  .rank-node {
    width: 64px;
  }

  .rank-hex {
    width: 38px;
    font-size: 0.64rem;
  }

  .rank-label {
    max-width: 64px;
    font-size: 0.61rem;
  }

  .rank-points {
    max-width: 64px;
    font-size: 0.55rem;
  }

  .actions {
    gap: 7px;
  }

  .actions button {
    min-height: 52px;
    gap: 5px;
    padding-inline: 4px;
    font-size: 0.75rem;
  }

  .action-icon {
    font-size: 1rem;
  }

  .side-panel {
    position: relative;
    min-height: 420px;
  }

  .app-footer {
    width: 100%;
    margin-inline: 0;
  }
}

@media (max-width: 480px) {
  .play-prompt {
    font-size: 0.55rem;
    letter-spacing: 0.1em;
  }

  .actions {
    grid-template-columns: repeat(2, 1fr);
  }

  .panel-tabs button {
    min-height: 58px;
    font-size: 0.76rem;
  }

  .app-footer {
    justify-content: center;
    text-align: center;
  }

}

/* Progress, icon, and footer refinements */
.title-crown {
  bottom: 64%;
}

.date-meta {
  justify-items: end;
  text-align: right;
}

.date-meta .meta-label,
.date-meta .puzzle-date {
  justify-self: end;
  text-align: right;
}

.puzzle-stats .meta-item,
.puzzle-stats .meta-label {
  width: 100%;
  text-align: center;
}

.progress-title {
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.progress {
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: center;
}

.honey-progress {
  align-self: center;
}

.rank-node {
  width: 86px;
}

.rank-hex svg {
  width: 19px;
  height: 19px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.rank-label,
.rank-points {
  max-width: 86px;
}

.current-word,
.current-word-input {
  line-height: 1.12;
}

.side-panel {
  grid-template-rows: auto minmax(0, 1fr) auto;
}

.panel-view {
  min-height: 0;
  display: grid;
  padding-bottom: 24px;
}

#foundView {
  grid-template-rows: auto auto minmax(0, 1fr);
}

#historyView {
  grid-template-rows: auto minmax(0, 1fr);
}

.found-words,
.guess-history {
  height: auto;
  min-height: 0;
  max-height: none;
  padding-top: 10px;
  padding-bottom: 18px;
  scroll-padding-bottom: 18px;
  mask-image: linear-gradient(
    to bottom,
    transparent 0,
    black 10px,
    black calc(100% - 20px),
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0,
    black 10px,
    black calc(100% - 20px),
    transparent 100%
  );
}

.daily-quote {
  display: grid;
  grid-template-rows: auto auto auto;
  overflow: visible;
  padding: 14px 24px 16px;
  border-top: 1px solid var(--line);
  background: #f8f6f1;
}

.daily-quote > span {
  display: block;
  margin-bottom: 7px;
  color: var(--honey-deep);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.daily-quote blockquote {
  margin: 0;
  color: var(--ink);
  font-size: 0.88rem;
  line-height: 1.28;
}

.daily-quote cite {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.72rem;
  font-style: normal;
  line-height: 1.2;
}

.daily-quote-copy {
  overflow: visible;
}

.daily-quote-controls {
  display: flex;
  justify-content: flex-end;
  gap: 6px;
  margin-top: 8px;
}

.daily-quote-controls[hidden] {
  display: none;
}

.daily-quote-controls button {
  width: 30px;
  min-height: 28px;
  padding: 0;
  border-radius: 4px;
  background: transparent;
  box-shadow: none;
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

.footer-temple,
.share-button svg {
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.footer-temple {
  width: 24px;
  height: 24px;
  margin-right: 12px;
  color: var(--ink);
  vertical-align: middle;
}

.share-button {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border-color: #c9c4ba;
  background: transparent;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.share-button svg {
  width: 17px;
  height: 17px;
}

@media (min-width: 760px) {
  .app {
    grid-template-rows: 70px 148px 70px minmax(210px, 1fr) 48px 28px;
  }

  .progress {
    height: 148px;
    padding-block: 14px 16px;
  }

  .honey-progress {
    height: 98px;
    --rank-node-top: 18px;
    --rank-line-top: 36px;
  }

  .entry {
    height: 42px;
    min-height: 42px;
  }

  .current-word-shell {
    height: 40px;
    min-height: 40px;
  }

  .side-panel {
    grid-template-rows: auto minmax(0, 1fr);
  }
}

@media (max-width: 759px) {
  body {
    padding-bottom: 0;
  }

  .app {
    padding-bottom: 18px;
  }

  .honey-progress {
    --rank-node-top: 18px;
    --rank-line-top: 30px;
  }

  .rank-track {
    inset-inline: 18px;
  }

  .honey-line {
    left: 18px;
    right: 18px;
  }

  .rank-node {
    width: 46px;
  }

  .rank-hex {
    width: 32px;
  }

  .rank-hex svg {
    width: 14px;
    height: 14px;
  }

  .rank-label,
  .rank-points {
    max-width: 46px;
    line-height: 0.95;
  }

  .rank-label {
    font-size: 0.52rem;
  }

  .rank-points {
    font-size: 0.48rem;
  }

  .app-footer {
    position: static;
    width: auto;
    margin-top: 18px;
    margin-inline: -12px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom));
  }
}

/* End-of-file mobile footer alignment override */
@media (max-width: 759px) {
  body .app-footer {
    position: static;
    width: auto;
    min-height: 76px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto 48px;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
    margin-inline: -12px;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    text-align: left;
  }

  body .app-footer .footer-tagline {
    min-width: 0;
    max-width: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    color: #5d5952;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
  }

  body .app-footer .footer-tagline::after {
    content: none;
  }

  body .app-footer .footer-extra {
    display: none;
  }

  body .app-footer .footer-temple {
    width: 26px;
    height: 26px;
    margin: 0;
    flex: 0 0 26px;
    display: block;
    transform: translateY(-1px);
  }

  body .app-footer .footer-primary {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    font-size: 0.58rem;
    line-height: 1;
  }

  body .app-footer .footer-credit {
    align-self: center;
    max-width: none;
    margin: 0;
    color: #77736c;
    font-size: 0.58rem;
    line-height: 1;
    text-align: right;
    white-space: nowrap;
  }

  body .app-footer .share-button {
    align-self: center;
    justify-self: end;
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 0;
    line-height: 0;
  }

  body .app-footer .share-button svg {
    width: 20px;
    height: 20px;
    margin: 0;
    display: block;
    flex: 0 0 auto;
    transform: translateX(-1px);
  }
}

/* True final mobile share icon centering */
@media (max-width: 759px) {
  body .app-footer .share-button {
    position: relative;
    display: block;
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    padding: 0;
    font-size: 0;
    line-height: 0;
    gap: 0;
  }

  body .app-footer .share-label {
    display: none;
  }

  body .app-footer .share-button svg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: 0;
    display: block;
    transform: translate(-50%, -50%);
  }
}

/* True final mobile modal sort header spacing */
@media (max-width: 520px) {
  body .modal-column-header {
    --modal-grid-columns: minmax(0, 1fr) 66px 112px;
  }

  body .modal-column-header.with-found,
  body .modal-column-header.with-reason {
    --modal-grid-columns: minmax(0, 1fr) 62px 58px 98px;
  }

  body .modal-table-row {
    --modal-grid-columns: minmax(0, 1fr) 66px 112px;
  }

  body .modal-table-row.with-found,
  body .modal-table-row.with-reason {
    --modal-grid-columns: minmax(0, 1fr) 62px 58px 98px;
  }

  body .modal-sort-header {
    box-sizing: border-box;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 10px;
    align-items: center;
    column-gap: 5px;
    justify-content: initial;
    padding: 0 12px 0 8px;
  }

  body .modal-sort-header > span:first-child {
    min-width: 0;
    overflow: hidden;
    text-overflow: clip;
    white-space: nowrap;
  }

  body .modal-sort-header .sort-icons {
    width: 10px;
    justify-items: center;
  }
}

/* Final mobile footer alignment */
@media (max-width: 759px) {
  .app-footer {
    position: static;
    width: auto;
    min-height: 76px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto 48px;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
    margin-inline: -12px;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    text-align: left;
  }

  .app-footer .footer-tagline {
    min-width: 0;
    max-width: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    color: #5d5952;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .app-footer .footer-extra {
    display: none;
  }

  .app-footer .footer-tagline::after {
    content: none;
  }

  .app-footer .footer-temple {
    width: 26px;
    height: 26px;
    margin: 0;
    flex: 0 0 26px;
    display: block;
    transform: translateY(-1px);
  }

  .app-footer .footer-primary {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    line-height: 1;
  }

  .app-footer .footer-credit {
    align-self: center;
    max-width: none;
    margin: 0;
    color: #77736c;
    font-size: 0.58rem;
    line-height: 1;
    text-align: right;
    white-space: nowrap;
  }

  .app-footer .share-button {
    align-self: center;
    justify-self: end;
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 0;
    line-height: 0;
  }

  .app-footer .share-button svg {
    width: 20px;
    height: 20px;
    margin: 0;
    display: block;
    flex: 0 0 auto;
    transform: translateX(-1px);
  }
}

/* Final mobile footer layout */
@media (max-width: 759px) {
  .app-footer {
    position: static;
    width: auto;
    min-height: 78px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(96px, auto) 48px;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
    margin-inline: -12px;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    text-align: left;
  }

  .app-footer > p:first-child {
    min-width: 0;
    max-width: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    overflow: hidden;
    color: #5d5952;
    font-size: 0;
    line-height: 1;
  }

  .app-footer > p:first-child .footer-temple {
    width: 26px;
    height: 26px;
    margin: 0;
    flex: 0 0 26px;
  }

  .app-footer > p:first-child::after {
    content: "Καθημερινή πρόκληση";
    min-width: 0;
    color: #5d5952;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1.1;
    text-transform: uppercase;
  }

  .footer-credit {
    align-self: center;
    max-width: none;
    margin: 0;
    color: #77736c;
    font-size: 0.58rem;
    line-height: 1.1;
    text-align: right;
    white-space: normal;
  }

  .share-button {
    align-self: center;
    justify-self: end;
    width: 46px;
    height: 46px;
    min-height: 46px;
    display: grid;
    place-items: center;
    padding: 0;
    font-size: 0;
    line-height: 0;
  }

  .share-button svg {
    width: 20px;
    height: 20px;
    margin: 0;
    display: block;
    justify-self: center;
    align-self: center;
  }
}

/* Mobile footer organization */
@media (max-width: 759px) {
  .app-footer {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(92px, auto) 48px;
    align-items: center;
    gap: 10px;
    min-height: 72px;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  }

  .app-footer > p:first-child {
    min-width: 0;
    max-width: none;
    display: grid;
    grid-template-columns: 26px minmax(0, 1fr);
    column-gap: 8px;
    align-items: center;
    font-size: 0;
    line-height: 1;
  }

  .app-footer > p:first-child .footer-temple {
    grid-row: 1 / span 2;
    width: 24px;
    height: 24px;
    margin: 0;
  }

  .app-footer > p:first-child::after {
    content: "Καθημερινή πρόκληση";
    color: #5d5952;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1.2;
    text-transform: uppercase;
  }

  .footer-credit {
    max-width: none;
    font-size: 0.6rem;
    line-height: 1.1;
    text-align: right;
    white-space: normal;
  }

  .share-button {
    width: 44px;
    min-height: 44px;
    display: grid;
    place-items: center;
    padding: 0;
    font-size: 0;
  }

  .share-button svg {
    width: 20px;
    height: 20px;
    margin: 0;
    justify-self: center;
    align-self: center;
  }
}

/* Share button should press without filling in. */
.share-button:hover,
.share-button:focus,
.share-button:active,
.share-button.touch-pressing {
  background: transparent;
  background-color: transparent;
}

.share-button:active,
.share-button.touch-pressing {
  border-color: #8f877b;
}

@media (max-width: 480px) {
  .app-footer {
    justify-content: space-between;
    padding-inline: 14px;
    text-align: left;
  }

  .app-footer > p {
    max-width: 225px;
    font-size: 0.56rem;
    line-height: 1.2;
  }

  .footer-temple {
    width: 21px;
    height: 21px;
    margin-right: 7px;
  }

  .share-button {
    width: 38px;
    min-height: 38px;
    padding: 0;
    justify-content: center;
    font-size: 0;
  }

  .share-button svg {
    width: 18px;
    height: 18px;
  }
}

/* Final mobile viewport fit */
@media (max-width: 759px) {
  body {
    padding-bottom: 0;
  }

  .app {
    gap: 8px;
    padding-bottom: 18px;
  }

  .progress {
    padding: 10px 14px 8px;
  }

  .scoreline {
    margin-bottom: 4px;
  }

  .honey-progress {
    height: 82px;
    --rank-node-top: 14px;
    --rank-line-top: 26px;
  }

  .entry {
    height: 64px;
    min-height: 64px;
    margin-bottom: -28px;
  }

  .current-word-shell {
    height: 42px;
    min-height: 42px;
    margin-top: 22px;
  }

  .board {
    margin-top: -72px;
    margin-bottom: -34px;
  }

  .actions {
    margin-top: -24px;
  }

  .dev-tools {
    margin-top: -10px;
  }

  .app-footer {
    position: static;
    width: auto;
    margin-top: 18px;
    margin-inline: -12px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom));
  }
}

/* Interaction and optical-alignment refinements */
.rank-node.queen-reached .rank-hex {
  animation: queen-hex-glow 1.45s ease-in-out infinite alternate;
}

.rank-node.milestone-reached.queen-reached .rank-hex {
  animation: milestone-celebration 1.2s cubic-bezier(0.2, 0.8, 0.25, 1);
}

.hex {
  display: grid;
  place-items: center;
  padding: 0 0 0.16em;
  line-height: 1;
}

.found-words {
  align-content: start;
  grid-auto-rows: min-content;
}

.found-row {
  min-height: 38px;
}

.app-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
}

.footer-credit {
  color: #77736c;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: none;
  white-space: nowrap;
}

@media (min-width: 760px) {
  .app {
    grid-template-rows: 70px 148px 70px minmax(210px, 1fr) 48px 28px;
  }

  .entry {
    height: 70px;
    min-height: 70px;
  }

  .play-prompt {
    top: 0;
  }

  .current-word-shell {
    height: 46px;
    min-height: 46px;
    margin-top: 28px;
  }
}

@media (max-width: 480px) {
  .app-footer {
    grid-template-columns: minmax(0, 1fr) auto 38px;
    gap: 7px;
  }

  .app-footer > p:first-child {
    max-width: none;
  }

  .footer-credit {
    max-width: 94px;
    font-size: 0.53rem;
    line-height: 1.1;
    white-space: normal;
  }
}

/* Neohellenic refinement */
:root {
  font-family: "GFS Neohellenic", Georgia, serif;
}

body {
  padding-bottom: 60px;
  font-family: "GFS Neohellenic", Georgia, serif;
}

button,
input,
.brand-kicker,
.meta-label,
.progress-title,
.play-prompt,
.found-sort-header,
.modal-sort-header,
.modal-static-header,
.modal-found-filter,
.app-footer {
  font-family: "GFS Neohellenic", Georgia, serif;
}

h1,
.current-word,
.current-word-input,
.hex,
#puzzleMeta {
  font-family: "GFS Neohellenic", Georgia, serif;
}

.brand-crowned::before {
  content: none;
}

.title-crown {
  position: absolute;
  left: 51%;
  bottom: 76%;
  width: 0.25em;
  height: 0.25em;
  overflow: visible;
  fill: none;
  stroke: var(--honey-deep);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transform: translateX(-50%);
}

.topbar-meta {
  min-height: 68px;
  display: grid;
  grid-template-columns: auto 1px auto;
  grid-template-rows: 1fr;
  column-gap: 25px;
}

.meta-item {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 7px;
}

.date-meta {
  grid-column: 1;
  grid-row: 1;
  min-width: 116px;
}

.meta-label {
  align-self: auto;
  color: #595650;
  font-size: 0.67rem;
  font-weight: 400;
  letter-spacing: 0.18em;
}

.puzzle-date {
  grid-column: auto;
  grid-row: auto;
  justify-self: center;
  color: var(--ink);
  font-size: 1.05rem;
}

.meta-divider {
  grid-column: 2;
  grid-row: 1;
  height: 64px;
}

#puzzleMeta.puzzle-stats {
  grid-column: 3;
  grid-row: 1;
  max-width: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(92px, auto));
  gap: 22px;
  color: var(--ink);
  line-height: 1;
}

.puzzle-stats strong {
  color: var(--honey-deep);
  font-size: 1.42rem;
  font-weight: 400;
}

.honey-line {
  height: 4px;
}

.rank-hex {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 0;
  background: #c9c5bd;
  color: #514e48;
  font-size: 1.05rem;
  filter: none;
}

.rank-hex::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  clip-path: inherit;
  background: #f7f5f0;
}

.rank-node.reached .rank-hex {
  background: #c18a0d;
  color: var(--ink);
}

.rank-node.reached .rank-hex::before {
  background: var(--honey);
}

.rank-node.current .rank-hex {
  background: #9f6807;
  color: #fff;
}

.rank-node.current .rank-hex::before {
  background: var(--honey-deep);
}

.rank-node.queen-reached .rank-hex {
  animation: queen-hex-glow 1.45s ease-in-out infinite alternate;
}

@keyframes queen-hex-glow {
  from {
    filter: drop-shadow(0 0 2px rgb(169 110 6 / 24%));
  }
  to {
    filter:
      drop-shadow(0 0 6px rgb(233 173 25 / 78%))
      drop-shadow(0 0 11px rgb(233 173 25 / 34%));
  }
}

.tab-icon {
  font-size: 1.22rem;
  line-height: 1;
}

.side-panel {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
}

.panel-view {
  min-height: 0;
  overflow: hidden;
}

.found-words,
.guess-history {
  height: calc(100% - 62px);
  max-height: none;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.found-row.pangram,
.word-row.pangram {
  background: var(--honey-soft);
}

.word-row.wrong {
  background: var(--rose-soft);
}

.app-footer {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 40;
  width: 100%;
  min-height: 60px;
  padding-inline: max(28px, calc((100vw - 1404px) / 2));
  border-top: 1px solid var(--line);
  background: rgb(248 246 241 / 96%);
  box-shadow: 0 -3px 12px rgb(38 31 19 / 4%);
  backdrop-filter: blur(8px);
}

@media (min-width: 760px) {
  .app {
    height: calc(100vh - 60px);
    min-height: 640px;
    padding-top: 12px;
    grid-template-rows: 70px 136px 40px minmax(250px, 1fr) 48px 28px;
    column-gap: 22px;
    row-gap: 8px;
  }

  .topbar {
    min-height: 0;
  }

  h1 {
    font-size: clamp(3rem, 4.6vw, 4.15rem);
  }

  .progress {
    height: 136px;
    padding: 12px 28px 8px;
  }

  .honey-progress {
    height: 90px;
    --rank-node-top: 17px;
    --rank-line-top: 35px;
  }

  .entry {
    height: 40px;
    min-height: 40px;
    margin: 0;
  }

  .play-prompt {
    top: -2px;
  }

  .current-word-shell {
    height: 34px;
    min-height: 34px;
    margin-top: 14px;
  }

  .board {
    width: min(39vh, 330px);
    max-width: 100%;
    max-height: 100%;
    align-self: center;
    margin: 0 auto;
  }

  .actions button {
    min-height: 48px;
  }

  .dev-tools {
    align-self: stretch;
    overflow: hidden;
  }

  .dev-tools button {
    min-height: 28px;
  }

  .side-panel {
    top: 12px;
    height: calc(100vh - 84px);
    min-height: 0;
    max-height: calc(100vh - 84px);
  }

  .panel-view {
    padding-bottom: 18px;
  }
}

@media (max-width: 759px) {
  .topbar-meta {
    min-height: 58px;
    grid-template-columns: auto;
    grid-template-rows: auto auto;
    gap: 5px;
  }

  .date-meta {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
    justify-items: end;
    gap: 2px;
  }

  .meta-divider {
    display: none;
  }

  #puzzleMeta.puzzle-stats {
    grid-column: 1;
    grid-row: 2;
    grid-template-columns: repeat(2, auto);
    gap: 13px;
  }

  .puzzle-stats .meta-item {
    gap: 1px;
  }

  .meta-label {
    font-size: 0.52rem;
  }

  .puzzle-date {
    font-size: 0.8rem;
  }

  .puzzle-stats strong {
    font-size: 0.9rem;
  }

  .side-panel {
    height: 540px;
    max-height: 70vh;
  }

}

@media (prefers-reduced-motion: reduce) {
  .rank-node.queen-reached .rank-hex {
    animation: none;
  }
}

@media (max-width: 480px) {
  .actions {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 4px;
  }

  .actions button {
    min-width: 0;
    min-height: 52px;
    flex-direction: column;
    gap: 1px;
    padding-inline: 2px;
    font-size: 0.67rem;
  }

  .action-icon {
    min-width: 0;
    height: 18px;
    font-size: 0.95rem;
  }
}

/* Final visual consolidation */
.rank-node.milestone-reached .rank-hex {
  animation-duration: 1.2s;
}

.title-crown {
  bottom: 60%;
}

.puzzle-stats .meta-item:last-child .meta-label,
.puzzle-stats .meta-item:last-child strong {
  justify-self: center;
  text-align: center;
}

.rank-node:nth-child(4) .rank-hex svg {
  width: 23px;
  height: 23px;
}

.rank-node:nth-child(5) .rank-hex svg {
  width: 22px;
  height: 22px;
}

.rank-node:nth-child(7) .rank-hex svg {
  width: 21px;
  height: 21px;
}

.date-meta,
.date-meta .meta-label,
.date-meta .puzzle-date {
  justify-items: end;
  justify-self: end;
  text-align: right;
}

.puzzle-stats .meta-item,
.puzzle-stats .meta-label {
  width: 100%;
  text-align: center;
}

.progress {
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: center;
}

.honey-progress {
  align-self: center;
}

.rank-node {
  width: 86px;
}

.rank-hex svg {
  width: 19px;
  height: 19px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.rank-label,
.rank-points {
  max-width: 86px;
}

.current-word,
.current-word-input {
  line-height: 1.12;
}

.side-panel {
  grid-template-rows: auto minmax(0, 1fr) auto;
}

.panel-view {
  min-height: 0;
  display: grid;
  padding-bottom: 24px;
}

#foundView {
  grid-template-rows: auto auto minmax(0, 1fr);
}

#historyView {
  grid-template-rows: auto minmax(0, 1fr);
}

.found-words,
.guess-history {
  height: auto;
  min-height: 0;
  max-height: none;
  padding-bottom: 18px;
  scroll-padding-bottom: 18px;
}

.footer-temple,
.share-button svg {
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.footer-temple {
  width: 24px;
  height: 24px;
  margin-right: 12px;
  color: var(--ink);
  vertical-align: middle;
}

.share-button {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border-color: #c9c4ba;
  background: transparent;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.share-button svg {
  width: 17px;
  height: 17px;
}

@media (min-width: 760px) {
  .app {
    grid-template-rows: 70px 148px 70px minmax(210px, 1fr) 48px 28px;
  }

  .progress {
    height: 148px;
    padding: 14px 28px 16px;
  }

  .honey-progress {
    height: 98px;
    --rank-node-top: 18px;
    --rank-line-top: 36px;
  }

  .entry {
    height: 70px;
    min-height: 70px;
  }

  .current-word-shell {
    height: 46px;
    min-height: 46px;
    margin-top: 28px;
  }

  .actions,
  .dev-tools {
    transform: translateY(-14px);
  }
}

@media (hover: none), (pointer: coarse) {
  .current-word-input {
    pointer-events: none;
  }

  button,
  .hex {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }

  button:focus,
  button:focus-visible,
  .hex:focus,
  .hex:focus-visible {
    outline: none;
  }

  .hex:active {
    transform: translate(-50%, -50%) scale(0.965);
  }

  .hex:hover {
    background: #cbc8c1;
    filter: drop-shadow(0 2px 2px rgb(38 31 19 / 5%));
  }

  .hex:hover::before {
    background: #fbfaf7;
  }

  .hex.touch-pressing {
    background: #a7a197;
  }

  .hex.touch-pressing::before {
    background: #fff;
  }

  .hex-center:hover {
    background: #c48c09;
  }

  .hex-center:hover::before {
    background: var(--honey);
  }

  .hex-center.touch-pressing {
    background: #c48c09;
  }

  .hex-center.touch-pressing::before {
    background: var(--honey);
  }

  .actions button:hover {
    border-color: var(--line);
    background: rgb(255 255 255 / 42%);
    box-shadow: var(--soft-shadow);
  }

  .actions .primary:hover {
    border-color: #c28a08;
    background: var(--honey);
  }

  .actions button:active {
    transform: scale(0.965);
  }

  .actions button.touch-pressing,
  .dev-tools button.touch-pressing {
    transform: scale(0.965);
  }

  .actions button.touch-pressing {
    border-color: #aaa59c;
  }

  .actions .primary.touch-pressing {
    border-color: #c28a08;
  }

  .actions button:focus:not(:focus-visible) {
    border-color: var(--line);
    outline: none;
  }

  .actions .primary:focus:not(:focus-visible) {
    border-color: #c28a08;
  }

  .dev-tools button:hover,
  .dev-tools button:focus:not(:focus-visible) {
    border-bottom-color: transparent;
    background: transparent;
    color: var(--muted);
    outline: none;
  }

  .dev-tools button.touch-pressing,
  .dev-tools button.touch-pressing:hover,
  .dev-tools button.touch-pressing:focus {
    color: var(--ink);
  }

  .share-button:focus,
  .share-button:hover {
    border-color: #c9c4ba;
  }

  .daily-quote-controls button:focus,
  .daily-quote-controls button:hover {
    border-color: var(--line);
    background: transparent;
    box-shadow: none;
  }

  .share-button,
  .daily-quote-controls button {
    transition: color 140ms ease, border-color 140ms ease, transform 120ms ease;
  }

  .share-button.touch-pressing,
  .daily-quote-controls button.touch-pressing {
    border-color: #8f877b;
    color: var(--ink);
    transform: scale(0.965);
  }

  .found-sort-header:focus,
  .found-sort-header:hover,
  .modal-sort-header:focus,
  .modal-sort-header:hover,
  .modal-found-filter:focus,
  .modal-found-filter:hover {
    background: #eeebe4;
    outline: none;
    box-shadow: none;
  }

  .found-sort-header.touch-pressing,
  .found-sort-header.touch-pressing:hover,
  .found-sort-header.touch-pressing:focus,
  .modal-sort-header.touch-pressing,
  .modal-sort-header.touch-pressing:hover,
  .modal-sort-header.touch-pressing:focus,
  .modal-found-filter.touch-pressing,
  .modal-found-filter.touch-pressing:hover,
  .modal-found-filter.touch-pressing:focus {
    background: #ded8ce;
  }
}

@media (max-width: 759px) {
  .rank-track {
    inset-inline: 18px;
  }

  .honey-line {
    left: 18px;
    right: 18px;
  }

  .rank-node {
    width: 46px;
  }

  .rank-hex {
    width: 32px;
  }

  .rank-hex svg {
    width: 14px;
    height: 14px;
  }

  .rank-node:nth-child(4) .rank-hex svg,
  .rank-node:nth-child(5) .rank-hex svg {
    width: 17px;
    height: 17px;
  }

  .rank-node:nth-child(7) .rank-hex svg {
    width: 16px;
    height: 16px;
  }

  .rank-label,
  .rank-points {
    max-width: 46px;
    line-height: 0.95;
  }

  .rank-label {
    font-size: 0.52rem;
  }

  .rank-points {
    font-size: 0.48rem;
  }
}

@media (max-width: 480px) {
  .app-footer {
    justify-content: space-between;
    padding-inline: 14px;
    text-align: left;
  }

  .app-footer > p {
    max-width: 225px;
    font-size: 0.56rem;
    line-height: 1.2;
  }

  .footer-temple {
    width: 21px;
    height: 21px;
    margin-right: 7px;
  }

  .share-button {
    width: 38px;
    min-height: 38px;
    padding: 0;
    justify-content: center;
    font-size: 0;
  }

  .share-button svg {
    width: 18px;
    height: 18px;
  }
}

/* Final mobile viewport fit */
@media (max-width: 759px) {
  body {
    padding-bottom: 0;
  }

  .app {
    gap: 8px;
    padding-bottom: 18px;
  }

  .progress {
    padding: 10px 14px 8px;
  }

  .scoreline {
    margin-bottom: 4px;
  }

  .honey-progress {
    height: 82px;
    --rank-node-top: 14px;
    --rank-line-top: 26px;
  }

  .entry {
    height: 62px;
    min-height: 62px;
    margin-bottom: -10px;
  }

  .current-word-shell {
    height: 38px;
    min-height: 38px;
    margin-top: 26px;
  }

  .board {
    margin-top: -22px;
    margin-bottom: -16px;
  }

  .actions {
    margin-top: -10px;
  }

  .dev-tools {
    margin-top: -10px;
  }

  .app-footer {
    position: static;
    width: auto;
    margin-top: 18px;
    margin-inline: -12px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom));
  }
}

/* True final mobile footer alignment override */
@media (max-width: 759px) {
  body .app-footer {
    position: static;
    width: auto;
    min-height: 76px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto 48px;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
    margin-inline: -12px;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    text-align: left;
  }

  body .app-footer .footer-tagline {
    min-width: 0;
    max-width: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    color: #5d5952;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
  }

  body .app-footer .footer-tagline::after {
    content: none;
  }

  body .app-footer .footer-extra {
    display: none;
  }

  body .app-footer .footer-temple {
    width: 26px;
    height: 26px;
    margin: 0;
    flex: 0 0 26px;
    display: block;
    transform: translateY(-1px);
  }

  body .app-footer .footer-primary {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    font-size: 0.58rem;
    line-height: 1;
  }

  body .app-footer .footer-credit {
    align-self: center;
    max-width: none;
    margin: 0;
    color: #77736c;
    font-size: 0.58rem;
    line-height: 1;
    text-align: right;
    white-space: nowrap;
  }

  body .app-footer .share-button {
    align-self: center;
    justify-self: end;
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 0;
    line-height: 0;
  }

  body .app-footer .share-button svg {
    width: 20px;
    height: 20px;
    margin: 0;
    display: block;
    flex: 0 0 auto;
    transform: translateX(-1px);
  }
}

/* True final mobile share icon centering */
@media (max-width: 759px) {
  body .app-footer .share-button {
    position: relative;
    display: block;
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    padding: 0;
    font-size: 0;
    line-height: 0;
    gap: 0;
  }

  body .app-footer .share-label {
    display: none;
  }

  body .app-footer .share-button svg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: 0;
    display: block;
    transform: translate(-50%, -50%);
  }
}

/* True final mobile modal sort header spacing */
@media (max-width: 520px) {
  body .modal-column-header {
    --modal-grid-columns: minmax(0, 1fr) 66px 112px;
  }

  body .modal-column-header.with-found,
  body .modal-column-header.with-reason {
    --modal-grid-columns: minmax(0, 1fr) 62px 58px 98px;
  }

  body .modal-table-row {
    --modal-grid-columns: minmax(0, 1fr) 66px 112px;
  }

  body .modal-table-row.with-found,
  body .modal-table-row.with-reason {
    --modal-grid-columns: minmax(0, 1fr) 62px 58px 98px;
  }

  body .modal-sort-header {
    box-sizing: border-box;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 10px;
    align-items: center;
    column-gap: 5px;
    justify-content: initial;
    padding: 0 12px 0 8px;
  }

  body .modal-sort-header > span:first-child {
    min-width: 0;
    overflow: hidden;
    text-overflow: clip;
    white-space: nowrap;
  }

  body .modal-sort-header .sort-icons {
    width: 10px;
    justify-items: center;
  }
}

/* True final mobile modal sort arrow overlay */
@media (max-width: 520px) {
  body .modal-column-header {
    --modal-grid-columns: minmax(0, 1fr) 64px 112px;
  }

  body .modal-column-header.with-found,
  body .modal-column-header.with-reason {
    --modal-grid-columns: minmax(0, 1fr) 64px 60px 96px;
  }

  body .modal-table-row {
    --modal-grid-columns: minmax(0, 1fr) 64px 112px;
  }

  body .modal-table-row.with-found,
  body .modal-table-row.with-reason {
    --modal-grid-columns: minmax(0, 1fr) 64px 60px 96px;
  }

  body .modal-sort-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    padding: 0 14px 0 7px;
    overflow: hidden;
  }

  body .modal-sort-header > span:first-child {
    min-width: 0;
    max-width: 100%;
    overflow: visible;
    text-overflow: clip;
    white-space: nowrap;
  }

  body .modal-sort-header .sort-icons {
    position: absolute;
    top: 50%;
    right: 5px;
    z-index: 1;
    width: 7px;
    display: inline-grid;
    justify-items: center;
    gap: 2px;
    background: transparent;
    pointer-events: none;
    transform: translateY(-50%);
  }
}

/* Cross-platform typography and native-control baseline */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  font-synthesis: none;
}

body {
  line-height: 1.2;
}

button,
input {
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  line-height: inherit;
}

.action-icon,
.accent-mark {
  font-family: "GFS Neohellenic", Georgia, serif;
}

/* True final current guess fitting */
.current-word-shell {
  max-width: 100%;
  /* The GFS Neohellenic descenders extend below the shell's line box. */
  overflow: visible;
}

/* Keep the guess paint layer above the nearby honeycomb without changing layout. */
.entry {
  z-index: 1;
}

.board {
  z-index: 0;
}

#currentWordDisplay.current-word {
  box-sizing: border-box;
  max-width: 100%;
  white-space: nowrap;
  overflow: visible;
  overflow-wrap: normal;
  word-break: keep-all;
  text-overflow: clip;
}

#currentWordDisplay.current-word.current-word-limit-shake {
  animation: currentGuessLimitShake 160ms ease-in-out;
}

@keyframes currentGuessLimitShake {
  0%, 100% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-4px);
  }

  75% {
    transform: translateX(4px);
  }
}

@media (prefers-reduced-motion: reduce) {
  #currentWordDisplay.current-word.current-word-limit-shake {
    animation: none;
  }
}
