@font-face {
  font-family: "Andika";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/Andika-400.ttf") format("truetype");
}

@font-face {
  font-family: "Andika";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/Andika-700.ttf") format("truetype");
}

@font-face {
  font-family: "Baloo 2";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/Baloo2-500.ttf") format("truetype");
}

@font-face {
  font-family: "Baloo 2";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/Baloo2-700.ttf") format("truetype");
}

@font-face {
  font-family: "Baloo 2";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("assets/fonts/Baloo2-800.ttf") format("truetype");
}

@font-face {
  font-family: "Diwan Naskh";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src:
    url("assets/fonts/DecoTypeNaskh.ttc") format("truetype-collection"),
    local("Diwan Naskh"),
    local("Diwan Naskh Bold"),
    local("Diwan Kufi");
}

@font-face {
  font-family: "Jameel Noori Nastaleeq";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src:
    url("assets/fonts/NotoNastaliq.ttc") format("truetype-collection"),
    local("Jameel Noori Nastaleeq"),
    local("Jameel Noori Nastaleeq Regular"),
    local("Noto Nastaliq Urdu");
}

:root {
  --ink: #2f3156;
  --ink-soft: #5c5e78;
  --panel: rgba(255, 255, 255, 0.94);
  --panel-border: rgba(198, 198, 214, 0.78);
  --shadow: 0 14px 28px rgba(47, 49, 86, 0.12);
  --soft-shadow: 0 8px 18px rgba(47, 49, 86, 0.12);
  --accent: #f0bc36;
  --brand-purple: #4f4b6f;
  --brand-purple-dark: #3e3a5a;
  --brand-gold: #f0bc36;
  --choice-h: clamp(110px, 18vw, 145px);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Andika", "Baloo 2", "Trebuchet MS", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(760px 420px at -8% -8%, rgba(240, 188, 54, 0.16), transparent 64%),
    radial-gradient(880px 520px at 110% 110%, rgba(79, 75, 111, 0.1), transparent 62%),
    linear-gradient(145deg, #f4f4f8 0%, #efeff5 48%, #ececf3 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(79, 75, 111, 0.05) 0.55px, transparent 0.55px);
  background-size: 10px 10px;
  opacity: 0.3;
}

body.fusha-start-mode {
  background:
    radial-gradient(760px 420px at -8% -8%, rgba(240, 188, 54, 0.16), transparent 64%),
    radial-gradient(880px 520px at 110% 110%, rgba(79, 75, 111, 0.1), transparent 62%),
    linear-gradient(145deg, #f4f4f8 0%, #efeff5 48%, #ececf3 100%);
}

body.fusha-start-mode::before {
  opacity: 0.3;
}

body.fusha-start-mode .menu-btn {
  top: 56px;
  right: calc((100vw - min(900px, 100vw - 10px)) / 2 + 12px);
  left: auto;
  width: 54px;
  height: 54px;
  z-index: 45;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  color: #f3f6ff;
  font-size: 2rem;
  padding: 0;
}

.menu-btn {
  position: fixed;
  top: 10px;
  left: 10px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 18px;
  font-size: 1.7rem;
  font-weight: 800;
  color: #fff9f2;
  background: linear-gradient(165deg, #ff8d56, #ff5f8f);
  backdrop-filter: blur(8px);
  box-shadow: 0 6px 0 rgba(47, 49, 86, 0.3), 0 10px 18px rgba(47, 49, 86, 0.24);
  z-index: 30;
  cursor: pointer;
  transition: transform 120ms ease, filter 140ms ease, box-shadow 140ms ease;
}

.menu-btn:hover {
  filter: saturate(1.06);
  box-shadow: 0 6px 0 rgba(47, 49, 86, 0.3), 0 12px 22px rgba(47, 49, 86, 0.28);
}

.menu-btn:active {
  transform: translateY(2px);
  filter: brightness(0.97);
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 20, 34, 0.34);
  z-index: 25;
}

.hamburger-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: min(320px, 90vw);
  height: 100vh;
  padding: 70px 16px 20px;
  background:
    radial-gradient(circle at 100% 0%, rgba(240, 188, 54, 0.2), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 246, 251, 0.94));
  border-right: 1px solid rgba(191, 191, 209, 0.56);
  box-shadow: 12px 0 32px rgba(47, 49, 86, 0.2);
  backdrop-filter: blur(10px);
  transform: translateX(-104%);
  transition: transform 260ms ease;
  z-index: 35;
  display: grid;
  align-content: start;
  gap: 12px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.hamburger-menu.open {
  transform: translateX(0);
}

.hamburger-menu h2 {
  margin: 0 0 4px;
  font-size: 1.3rem;
  letter-spacing: 0.01em;
  color: #1b4a6e;
}

.menu-action {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 12px 18px;
  font-family: inherit;
  font-size: 1.08rem;
  font-weight: 800;
  text-align: center;
  color: #fffdf6;
  min-height: 52px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 7px 0 rgba(47, 49, 86, 0.24),
    0 10px 20px rgba(47, 49, 86, 0.22);
  transition: transform 120ms ease, filter 120ms ease, box-shadow 140ms ease;
  cursor: pointer;
}

.menu-action:hover {
  filter: saturate(1.08) brightness(1.02);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 7px 0 rgba(47, 49, 86, 0.24),
    0 12px 24px rgba(47, 49, 86, 0.28);
}

.menu-action:active {
  transform: translateY(2px);
  filter: brightness(0.96);
}

#homeBtn {
  background: linear-gradient(165deg, #ff8d56, #ff5f8f);
}

#newUserBtn {
  background: linear-gradient(165deg, #48d6a9, #35b3d8);
}

#renameUserBtn {
  background: linear-gradient(165deg, #8e7bff, #d86ee7);
}

#unlockLessonBtn {
  color: #fffdf6;
  text-shadow: 0 1px 0 rgba(27, 43, 99, 0.36);
  background: linear-gradient(165deg, #5f9bff, #4e69df);
}

#checkProgressBtn {
  background: linear-gradient(165deg, #2fd1c4, #36a0ff);
}

#uploadProgressBtn {
  background: linear-gradient(165deg, #ffb347, #ff8a4d);
}

#downloadProgressBtn {
  background: linear-gradient(165deg, #3bc7ff, #4f7fff);
}

#resetProgressBtn {
  background: linear-gradient(165deg, #ff9b57, #ff6f61);
}

.menu-action-danger {
  min-height: 42px;
  font-size: 0.92rem;
  background: linear-gradient(165deg, #ff7474, #e04e7a);
  box-shadow: 0 6px 0 rgba(109, 30, 30, 0.22), 0 8px 14px rgba(131, 35, 35, 0.2);
}

.audio-check-controls {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 10px 0 12px;
}

.audio-check-controls .menu-action {
  color: #123852;
  border-color: rgba(255, 255, 255, 0.35);
  background: linear-gradient(165deg, #97e7ff, #69b2ff);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 7px 0 rgba(47, 49, 86, 0.24),
    0 10px 20px rgba(47, 49, 86, 0.2);
}

.audio-check-controls .menu-action:nth-child(2) {
  color: #4b1730;
  background: linear-gradient(165deg, #ffb4c8, #ff7aa2);
}

.audio-check-apps {
  display: grid;
  gap: 10px;
}

.audio-check-table-wrap {
  overflow-x: auto;
}

.audio-check-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}

.audio-check-table th,
.audio-check-table td {
  border: 1px solid #c7deef;
  padding: 8px 10px;
  text-align: left;
  vertical-align: middle;
}

.audio-check-table th {
  background: linear-gradient(165deg, #eef7ff, #e4f1fd);
  color: #1b4968;
  font-size: 0.9rem;
}

.audio-check-path {
  font-family: "Andika", monospace;
  font-size: 0.82rem;
  color: #1d3b54;
  word-break: break-all;
}

.audio-check-item-cell {
  min-width: 150px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #163d59;
}

.audio-row-status {
  font-size: 0.82rem;
  font-weight: 700;
  color: #355a76;
}

.audio-check-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.audio-check-item {
  border: 2px solid #9dc6e4;
  border-radius: 14px;
  background: linear-gradient(165deg, #ffffff, #eef7ff);
  color: #15354d;
  min-height: 92px;
  padding: 8px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 4px;
  cursor: pointer;
  box-shadow: 0 6px 0 rgba(129, 174, 210, 0.35);
  transition: transform 120ms ease, filter 120ms ease, box-shadow 130ms ease;
}

.audio-check-item:hover {
  filter: saturate(1.06);
  box-shadow: 0 8px 0 rgba(129, 174, 210, 0.4);
}

.audio-check-item:active {
  transform: translateY(1px);
}

.audio-check-item.audio-check-active {
  border-color: #4f8fd8;
  background: linear-gradient(165deg, #e9f6ff, #d8ebff);
  box-shadow: 0 0 0 3px rgba(79, 143, 216, 0.25), 0 8px 0 rgba(102, 151, 198, 0.36);
}

.audio-check-symbol {
  font-family: "Jameel Noori Nastaleeq", "Noto Nastaliq Urdu", "Noto Naskh Arabic", serif;
  font-size: clamp(1.9rem, 4.4vw, 2.5rem);
  line-height: 1;
}

.audio-check-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
}

.accuracy-badge {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 28;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #10324b;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(148, 197, 230, 0.75);
  backdrop-filter: blur(8px);
  box-shadow: var(--soft-shadow);
  animation: accuracyReminder 8.2s ease-in-out infinite;
}

.current-user-display {
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 27;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #123852;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(159, 205, 231, 0.68);
  backdrop-filter: blur(8px);
  box-shadow: var(--soft-shadow);
  pointer-events: none;
  max-width: 52vw;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.app {
  width: min(760px, 100vw - 12px);
  margin: 0 auto;
  padding: 64px 8px 10px;
  display: grid;
  gap: 10px;
}

.app.progress-view > :not(.progress-page) {
  display: none;
}

.panel {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 16px;
  padding: clamp(12px, 2.4vw, 18px);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.panel:hover {
  box-shadow: 0 16px 30px rgba(16, 42, 67, 0.14);
}

.header {
  text-align: center;
}

h1 {
  margin: 0;
  font-family: "Baloo 2", "Andika", sans-serif;
  letter-spacing: 0.01em;
  font-size: clamp(1.8rem, 5vw, 2.7rem);
}

.header p {
  margin: 4px 0 0;
  font-size: 1.05rem;
  color: var(--ink-soft);
}

.app.start-screen .header {
  position: relative;
  background:
    radial-gradient(circle at 85% 18%, rgba(240, 188, 54, 0.18), transparent 44%),
    linear-gradient(155deg, rgba(255, 255, 255, 0.98), rgba(245, 245, 251, 0.96));
  border: 1px solid rgba(198, 198, 214, 0.72);
  box-shadow: 0 16px 30px rgba(47, 49, 86, 0.12);
}

.app.start-screen .header::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: -1px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-gold), #dba51f);
}

.app.start-screen h1 {
  font-size: clamp(2rem, 5.6vw, 3rem);
  text-shadow: 0 5px 14px rgba(87, 131, 173, 0.2);
}

.app.start-screen .header p {
  font-size: 1.08rem;
}

.profile {
  display: grid;
  gap: 8px;
}

.profile label {
  font-size: 1.04rem;
  font-weight: 700;
  color: #1e4f74;
}

.name-input {
  width: 100%;
  border: 1px solid #a8cfe9;
  border-radius: 14px;
  padding: 11px 12px;
  font-family: inherit;
  font-size: 1.12rem;
  color: var(--ink);
  background: rgba(250, 254, 255, 0.95);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.name-input:focus {
  outline: none;
  border-color: #69afe0;
  box-shadow: 0 0 0 3px rgba(93, 164, 220, 0.2);
}

.profile-select {
  font-size: 1.05rem;
  cursor: pointer;
}

.profile-hint {
  margin: 0;
  font-size: 0.92rem;
  color: #48627a;
}


.top-trail h2 {
  margin: 0 0 8px;
  text-align: center;
}

.insights h2 {
  margin: 0 0 8px;
  text-align: center;
}

.insight-accuracy {
  margin: 0 0 4px;
  font-size: 0.98rem;
  font-weight: 700;
  color: #15486b;
  text-align: center;
}

.progress-page {
  display: grid;
  gap: 14px;
  background:
    radial-gradient(circle at 96% -18%, rgba(155, 230, 255, 0.28), transparent 44%),
    linear-gradient(165deg, #ffffff, #f2f9ff 72%, #ebf5ff);
  border: 1px solid #c7def1;
  border-radius: 24px;
  box-shadow: 0 20px 36px rgba(17, 64, 102, 0.14);
}

.progress-page h2 {
  margin: 0;
  text-align: left;
  font-size: clamp(1.3rem, 3.8vw, 1.7rem);
  color: #143b59;
  letter-spacing: 0.01em;
}

.progress-summary {
  margin: 0;
  text-align: left;
  color: #2f5773;
  font-size: 1.03rem;
  font-weight: 700;
}

.progress-details {
  min-height: 138px;
  border: 1px solid #bdd9ec;
  border-radius: 18px;
  background: linear-gradient(165deg, #ffffff, #f6fbff);
  padding: 12px;
  box-shadow: inset 0 0 0 1px #e9f5fe;
}

.progress-cards {
  display: grid;
  gap: 12px;
}

.progress-card {
  border-radius: 18px;
  border: 1px solid #b0d1ea;
  background:
    radial-gradient(circle at -12% -24%, rgba(214, 241, 255, 0.55), transparent 45%),
    linear-gradient(165deg, #ffffff, #f7fcff);
  padding: 14px;
  box-shadow: 0 10px 22px rgba(18, 71, 109, 0.11);
  display: grid;
  gap: 12px;
}

.progress-card.active {
  border-color: #5da8dd;
  box-shadow: 0 12px 24px rgba(22, 89, 138, 0.18);
}

.progress-card-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.progress-profile-name {
  margin: 0;
  font-size: clamp(1.28rem, 3.8vw, 1.7rem);
  color: #163d5a;
  letter-spacing: 0.01em;
}

.progress-stage-badge {
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.94rem;
  font-weight: 700;
  color: #1a4f71;
  background: linear-gradient(165deg, #eaf6ff, #d6ecfb);
  border: 1px solid #a5cdea;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  max-width: 100%;
  word-break: break-word;
}

.progress-stage-bar {
  --bar-pct: 0%;
  position: relative;
  height: 12px;
  border-radius: 999px;
  background: #deecf8;
  border: 1px solid #c4def0;
  overflow: hidden;
}

.progress-stage-bar::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: var(--bar-pct);
  background: linear-gradient(90deg, #72bff1, #2e8fdf, #36b6f1);
  box-shadow: 0 0 10px rgba(46, 143, 223, 0.42);
}

.progress-stat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.progress-stat {
  border-radius: 12px;
  background: linear-gradient(165deg, #ffffff, #f0f8ff);
  border: 1px solid #c9e1f1;
  padding: 10px 11px;
  display: grid;
  gap: 5px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.stat-label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #4e6c82;
}

.stat-value {
  font-size: clamp(1.28rem, 3.6vw, 1.8rem);
  font-weight: 800;
  color: #153c59;
  line-height: 1.05;
}

.progress-focus {
  margin: 0;
  border-radius: 12px;
  background: linear-gradient(165deg, #f9fdff, #edf7ff);
  border: 1px solid #cadeef;
  padding: 11px 12px;
  font-size: 1.03rem;
  font-weight: 700;
  color: #224c6b;
}

.progress-back-btn {
  justify-self: stretch;
  width: 100%;
  min-width: 0;
  margin-top: 4px;
  height: 80px;
  font-size: clamp(1.35rem, 3.8vw, 1.8rem);
}

.progress-page .main-btn {
  width: 100%;
  margin: 0;
}

.insight-status {
  margin: 0;
  font-size: 0.98rem;
  color: #21415a;
  text-align: center;
}

.insight-hint {
  margin: 6px 0 8px;
  font-size: 0.9rem;
  color: #3b596f;
  text-align: center;
}

.insight-list {
  min-height: 38px;
  border: 2px solid #c4deef;
  border-radius: 12px;
  background: #f5fbff;
  padding: 8px 10px;
  font-size: 0.98rem;
  color: #1d3750;
  line-height: 1.35;
}

.app.start-screen .insights {
  position: relative;
  background: linear-gradient(155deg, #ffffff, #f3f9ff 70%, #eef7ff);
  border: 1px solid #cfe4f4;
  box-shadow: 0 14px 28px rgba(22, 58, 90, 0.13);
  display: grid;
  gap: 8px;
}

.app.start-screen .insights::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(90deg, #1f87d8, #6cb8ee);
}

.app.start-screen .insights h2 {
  margin: 2px 0 2px;
  padding-bottom: 8px;
  text-align: left;
  font-size: 1.1rem;
  border-bottom: 1px solid #d7e7f3;
}

.app.start-screen .insight-accuracy {
  margin: 0;
  padding: 8px 10px;
  text-align: left;
  font-size: 1rem;
  font-weight: 800;
  color: #113d5d;
}

.app.start-screen .insight-status,
.app.start-screen .insight-hint {
  margin: 0;
  text-align: left;
}

.app.start-screen .insight-hint {
  color: #406179;
  font-size: 0.88rem;
}

.app.start-screen .insight-list {
  margin-top: 2px;
  padding: 10px 12px;
}

.app.start-screen .insight-accuracy,
.app.start-screen .insight-status,
.app.start-screen .insight-hint {
  --bar-pct: 0%;
  position: relative;
  overflow: hidden;
  border-radius: 11px;
  border: 1px solid #bdd9ee;
  background: #f8fcff;
  padding: 10px 12px;
  z-index: 0;
}

.app.start-screen .insight-accuracy::before,
.app.start-screen .insight-status::before,
.app.start-screen .insight-hint::before {
  content: "";
  position: absolute;
  inset: 0;
  width: var(--bar-pct);
  z-index: -1;
  background: linear-gradient(90deg, #d8ecfb, #e8f5ff);
  transition: width 380ms ease;
}

.app.start-screen .insight-accuracy::before {
  background: linear-gradient(90deg, #cce9ff, #ddf2ff);
}

.app.start-screen .insight-list {
  position: relative;
  border-radius: 11px;
  border: 1px solid #bdd9ee;
  background: linear-gradient(165deg, #ffffff, #f7fbff);
  box-shadow: inset 0 0 0 1px #edf6fd;
  color: #123f61;
  font-weight: 700;
  padding: 10px 12px;
}

.task {
  text-align: center;
}

.prompt {
  margin: 0 auto 12px;
  width: min(92vw, 360px);
  min-height: clamp(180px, 35vw, 260px);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  font-weight: 800;
  line-height: 1;
  color: #172635;
  background: linear-gradient(165deg, #ffffff, #eef7ff);
  border: 4px solid #6ea8e7;
  border-radius: 26px;
  box-shadow: 0 12px 0 #d8ecff;
  font-family: inherit;
}

.prompt::before {
  content: none;
}

.prompt-idle {
  font-size: clamp(3rem, 11vw, 4.8rem);
}

.prompt.letter-animate {
  animation: letterBounce 2.2s ease-in-out infinite, glowPulse 2.8s ease-in-out infinite;
}

.prompt.flash-slide-in {
  animation: flashSlideIn 860ms ease-out;
}

.prompt-letter-wrap {
  position: relative;
  display: inline-block;
  padding: 0 20px;
  line-height: 1;
}

.prompt-letter-wrap::before,
.prompt-letter-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(126, 185, 181, 0.95);
}

.prompt-letter-wrap::before {
  top: -3px;
}

.prompt-letter-wrap::after {
  bottom: -3px;
}

.prompt-letter {
  display: block;
  position: relative;
  z-index: 1;
  font-size: clamp(5.2rem, 17.2vw, 7rem);
  line-height: 1;
}

.prompt.letter-symbol .prompt-letter-wrap {
  padding: 0;
}

.prompt.letter-symbol .prompt-letter-wrap::before,
.prompt.letter-symbol .prompt-letter-wrap::after {
  content: none;
}

.prompt.letter-upper .prompt-letter {
  font-size: clamp(5.2rem, 17.2vw, 7rem);
}

.prompt.letter-lower .prompt-letter {
  font-size: clamp(4rem, 13.2vw, 5.3rem);
}

.app.numbers-app .prompt.prompt-number .prompt-letter {
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
  font-size: clamp(4.7rem, 15.4vw, 6.4rem);
}

.app.numbers-app .prompt.prompt-number-double .prompt-letter {
  font-size: clamp(4rem, 12.8vw, 5.5rem);
}

.app.numbers-app .prompt.prompt-number .prompt-letter-wrap {
  padding: 0;
}

.app.numbers-app .prompt.prompt-number .prompt-letter-wrap::before,
.app.numbers-app .prompt.prompt-number .prompt-letter-wrap::after {
  content: none;
}

.app.numbers-app .prompt-number-visual {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transform: translateY(-12px);
}

.app.numbers-app .prompt-quantity-grid {
  display: grid;
  grid-template-columns: repeat(var(--quantity-cols, 5), clamp(14px, 2.8vw, 20px));
  gap: 6px;
  width: fit-content;
  justify-items: stretch;
}

.app.numbers-app .prompt-quantity-square {
  aspect-ratio: 1 / 1;
  border-radius: 5px;
  border: 2px solid rgba(50, 108, 150, 0.42);
  background: linear-gradient(165deg, rgba(214, 242, 255, 0.95), rgba(168, 226, 255, 0.95));
  box-shadow: 0 2px 0 rgba(93, 158, 198, 0.32);
  opacity: 0;
  transform: scale(0.55) translateY(5px);
  animation:
    quantitySquareIn 460ms cubic-bezier(0.16, 0.85, 0.22, 1) forwards,
    quantitySquareWave 1200ms ease-in-out infinite;
  animation-delay:
    var(--sq-delay, 0ms),
    calc(var(--sq-delay, 0ms) + 460ms);
}

.test-prompt-text {
  display: inline-block;
  font-size: clamp(1.15rem, 3.8vw, 1.9rem);
  font-weight: 800;
  line-height: 1.35;
  color: #0f3654;
  text-align: center;
  padding: 0 12px;
}

.prompt-pair-wrap {
  position: relative;
  display: inline-flex;
  align-items: flex-end;
  gap: clamp(18px, 4vw, 30px);
  padding: 0 24px;
  line-height: 1;
}

.prompt-pair-wrap::before,
.prompt-pair-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(126, 185, 181, 0.95);
}

.prompt-pair-wrap::before {
  top: -3px;
}

.prompt-pair-wrap::after {
  bottom: -3px;
}

.pair-letter {
  display: inline-block;
  line-height: 1;
  transform-origin: center 70%;
  transition: filter 180ms ease-out;
}

.pair-upper {
  font-size: clamp(5.1rem, 16.8vw, 6.8rem);
}

.pair-lower {
  font-size: clamp(3.9rem, 12.9vw, 5.1rem);
}

.pair-letter.pair-active {
  animation: pairSpeakPulse 1180ms cubic-bezier(0.22, 0.7, 0.2, 1);
  filter: drop-shadow(0 0 10px rgba(37, 123, 197, 0.45));
}

.prompt.flash-slide-in .prompt-letter {
  opacity: 0;
  transform: rotateX(90deg);
  animation: flashFlipIn 760ms ease-out 180ms forwards;
}

.pill,
.main-btn {
  border: 0;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 120ms ease, filter 140ms ease, box-shadow 140ms ease;
}

.pill {
  font-size: 1.05rem;
  padding: 10px 16px;
  color: var(--brand-purple);
  background: linear-gradient(165deg, #ffffff, #f1eff8);
  border: 1px solid #cfcde0;
  box-shadow: var(--soft-shadow);
  border-radius: 12px;
}

.icon-btn {
  margin-top: 8px;
  min-width: 60px;
  font-size: 1.35rem;
  line-height: 1;
}

.app.start-screen .play-area {
  order: 7;
  grid-template-columns: 1fr;
}

.app.start-screen .profile {
  order: 2;
  display: none;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.92), rgba(245, 251, 255, 0.88));
  border-color: rgba(173, 211, 236, 0.56);
  box-shadow: 0 18px 34px rgba(26, 78, 120, 0.14);
}

.app.start-screen .header {
  margin-top: 14px;
}

.app.start-screen .top-trail {
  order: 3;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.92), rgba(246, 252, 255, 0.88));
  border-color: rgba(178, 214, 239, 0.55);
  box-shadow: 0 18px 34px rgba(26, 78, 120, 0.14);
}

.app.start-screen .insights {
  order: 4;
}

.app.start-screen .task {
  display: none;
}

.app.start-screen .choices {
  display: none;
}

.app.start-screen .controls {
  min-height: unset;
  display: block;
  text-align: center;
}

.app.start-screen .main-btn {
  width: min(300px, 86vw);
  height: auto;
}

.app.game-started .header,
.app.game-started .profile {
  display: none;
}

.app.game-started .insights {
  display: none;
}

.app.game-started .icon-btn {
  margin-top: 12px;
  min-width: 90px;
  min-height: 64px;
  font-size: 2rem;
  padding: 12px 22px;
}

.app.test-mode .controls,
.app.test-mode .prompt {
  display: none;
}

.app.test-mode .task {
  display: flex;
  flex-direction: column;
  gap: 8px;
  order: 2;
  justify-content: center;
  align-items: center;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.app.test-mode .icon-btn {
  margin: 6px 0 0;
  order: 2;
}

.app.test-mode .play-area {
  order: 1;
  grid-template-columns: 1fr;
}

.app.test-mode .side-stack {
  display: none;
}

.app.test-mode .choices {
  width: min(90vw, 420px);
  margin: 0 auto;
  order: 1;
}

.app.test-mode .top-trail {
  order: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0 0 6px;
}

.app.test-mode #trail {
  display: block;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.app.test-mode #trailTitle {
  margin: 0;
  text-align: center;
  font-size: clamp(1.35rem, 3.4vw, 1.9rem);
  font-weight: 900;
  color: #1d4968;
  letter-spacing: 0.01em;
}

.quiz-progress {
  width: min(90vw, 420px);
  margin: 6px auto 0;
}

.quiz-progress-bar {
  height: 10px;
  border-radius: 999px;
  background: rgba(171, 202, 226, 0.5);
  border: 1px solid rgba(125, 166, 197, 0.55);
  overflow: hidden;
}

.quiz-progress-fill {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #35b7f0, #38d7a4);
  transition: width 260ms ease;
}

.choices {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.choices.test-grid {
  grid-template-columns: repeat(3, minmax(72px, 1fr));
  gap: 8px;
  align-items: stretch;
  justify-items: stretch;
}

.choices.test-grid.test-grid-four {
  grid-template-columns: repeat(2, minmax(72px, 1fr));
}

.play-area {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: stretch;
}

.side-stack {
  display: block;
}

.choice {
  min-height: var(--choice-h);
  border-radius: 18px;
  border: 2px solid #325273;
  font-size: clamp(2.6rem, 8vw, 4.4rem);
  font-weight: 800;
  color: #10202e;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  font-family: inherit;
}

.choice.test-choice {
  min-height: 0;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  font-size: clamp(1.7rem, 4.8vw, 2.4rem);
}

.choices.test-grid.test-feedback .choice-letter {
  opacity: 1;
  transform: rotateX(0deg);
}

.choices.test-grid.test-feedback .choice {
  opacity: 1;
}

.choice:hover {
  filter: saturate(1.08);
  box-shadow: 0 10px 20px rgba(28, 82, 127, 0.2);
}

.choice:active {
  transform: scale(0.98);
}

.choice.slide-in {
  opacity: 0;
  transform: translateX(-26px);
  animation: choiceSlideIn 820ms ease-out forwards;
}

.choice-letter {
  display: inline-block;
  opacity: 0;
  transform: rotateX(90deg);
  transform-origin: center 60%;
  backface-visibility: hidden;
  font-family: inherit;
}

.choice.letter-reveal .choice-letter {
  animation: letterFlipIn 760ms ease-out forwards;
}

.app.arabic-app .prompt-letter,
.app.arabic-app .choice-letter {
  font-family: "Diwan Naskh", "Amiri", "Noto Naskh Arabic", serif;
  font-weight: 700;
}

.app.fusha-app .prompt {
  width: min(96vw, 620px);
  min-height: clamp(170px, 30vw, 230px);
}

.app.fusha-app {
  width: min(900px, 100vw - 10px);
  padding-top: 56px;
  gap: 12px;
  font-family: "Nunito Sans", "Andika", "Baloo 2", sans-serif;
  position: relative;
}

.app.fusha-app.start-screen {
  width: 100vw;
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
  gap: 0;
  margin: 0;
}

.app.fusha-app.game-started .header {
  display: block;
  margin-top: 0;
}

.app.fusha-app.game-started .top-trail {
  display: block;
}

.app.fusha-app .header {
  position: relative;
  display: grid;
  gap: 8px;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
  padding: 2px 0 0;
}

.app.fusha-app .header h1 {
  color: #184b71;
  font-size: clamp(1.4rem, 4.6vw, 2rem);
  margin: 0;
  line-height: 1.1;
}

.app.fusha-app .header p {
  color: #385d79;
  font-size: clamp(0.82rem, 2.5vw, 1rem);
  margin: 2px 0 0;
}

.app.fusha-app .fusha-header-row {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 10px;
}

.app.fusha-app .fusha-announce-bar {
  display: none;
}

.app.fusha-app .fusha-brand-strip {
  display: none;
}

.app.fusha-app .fusha-menu-spacer {
  width: 48px;
  height: 48px;
}

.app.fusha-app .fusha-brand-inline {
  min-width: 0;
  text-align: center;
}

.app.fusha-app .fusha-header-logo {
  display: block;
  width: clamp(86px, 18vw, 130px);
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  justify-self: end;
}

.app.fusha-app .fusha-ref-chip {
  position: static;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.82rem;
  font-weight: 800;
  color: #1e4a6d;
  background: linear-gradient(165deg, #f6fcff, #dff0ff);
  border: 1px solid rgba(127, 174, 209, 0.56);
  box-shadow: 0 4px 10px rgba(22, 81, 126, 0.16);
  justify-self: end;
  margin-top: 6px;
}

.app.fusha-app .fusha-goto-menu {
  justify-self: end;
  width: min(290px, 90vw);
  border: 1px solid rgba(161, 204, 234, 0.75);
  border-radius: 14px;
  padding: 8px;
  background: linear-gradient(165deg, rgba(245, 252, 255, 0.98), rgba(227, 242, 255, 0.98));
  box-shadow: 0 10px 24px rgba(8, 40, 67, 0.2);
}

.app.fusha-app.start-screen .fusha-header-logo,
.app.fusha-app.start-screen .fusha-ref-chip,
.app.fusha-app.start-screen .fusha-goto-menu {
  display: none !important;
}

.app.fusha-app.start-screen .header {
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  padding: 0;
  border-radius: 0;
  margin: 0;
  gap: 0;
}

.app.fusha-app.start-screen .header::after {
  content: none;
}

.app.fusha-app.start-screen .fusha-announce-bar {
  display: grid;
  place-items: center;
  min-height: 34px;
  padding: 4px 10px;
  border-radius: 0;
  background: linear-gradient(165deg, #f4c341, #e8ab2a);
  color: #2e355f;
  font-weight: 800;
  font-size: clamp(0.86rem, 2.2vw, 0.98rem);
  letter-spacing: 0.01em;
  width: 100%;
  box-shadow: none;
  margin: 0;
}

.app.fusha-app.start-screen .fusha-header-row {
  grid-template-columns: 56px 1fr 56px;
  min-height: 72px;
  margin-top: 0;
  padding: 10px 10px;
  border-radius: 0;
  background: linear-gradient(160deg, rgba(44, 58, 102, 0.96), rgba(55, 70, 116, 0.95));
  box-shadow: none;
  width: 100%;
}

.app.fusha-app.start-screen .header h1 {
  color: #f7f9ff;
  font-size: clamp(1.55rem, 4.9vw, 2rem);
  line-height: 1;
}

.app.fusha-app .fusha-goto-menu details {
  margin: 0;
}

.app.fusha-app .fusha-goto-menu summary {
  cursor: pointer;
  color: #194a6e;
  font-weight: 800;
  list-style: none;
  margin-bottom: 8px;
}

.app.fusha-app .fusha-goto-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.app.fusha-app .fusha-goto-card-btn {
  border: 1px solid rgba(121, 168, 205, 0.66);
  border-radius: 10px;
  padding: 8px 6px;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  color: #1a496c;
  background: linear-gradient(165deg, #ffffff, #edf7ff);
  cursor: pointer;
}

.app.fusha-app .fusha-goto-card-btn.active {
  border-color: rgba(74, 136, 185, 0.9);
  background: linear-gradient(165deg, #d6efff, #c4e8ff);
  color: #113f63;
}

.app.fusha-app .fusha-top-panel {
  display: grid;
  gap: 8px;
}

.app.fusha-app .fusha-splash {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 18px 12px 14px;
}

.app.fusha-app .fusha-brought-line {
  margin: 0;
  font-size: clamp(2.1rem, 6.2vw, 2.9rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #315a79;
  text-align: center;
  animation: fushaBroughtDropIn 820ms ease-out both;
}

.app.fusha-app .fusha-splash-logo {
  width: min(330px, 90vw);
  height: auto;
  display: block;
  margin-top: -18px;
  filter: drop-shadow(0 12px 18px rgba(27, 40, 68, 0.18));
  transform-origin: center center;
  animation: fushaLogoKenBurns 1800ms cubic-bezier(0.18, 0.72, 0.2, 1) 80ms both;
}

.app.fusha-app .fusha-splash #startBtn {
  width: min(320px, 84vw);
  min-height: 56px;
  font-size: clamp(1.28rem, 4.2vw, 1.65rem);
  letter-spacing: 0.01em;
  animation: fushaSplashCtaIn 900ms ease-out 220ms both;
  margin-top: 38px;
}

.app.fusha-app .fusha-lesson-bar {
  padding: 4px 0;
  display: grid;
  justify-items: center;
  gap: 3px;
}

.app.fusha-app .fusha-lesson-bar h2 {
  margin: 0;
  text-align: center;
  color: #1a4d71;
  font-size: clamp(1.35rem, 3.8vw, 1.9rem);
}

.app.fusha-app .fusha-lesson-bar p {
  margin: 0;
  text-align: center;
  color: #356180;
  font-size: clamp(1rem, 2.8vw, 1.24rem);
  font-weight: 800;
}

.app.fusha-app .top-trail {
  background: linear-gradient(160deg, rgba(227, 241, 252, 0.95), rgba(204, 225, 244, 0.94));
  border-color: rgba(144, 183, 212, 0.72);
  margin-top: 8px;
  position: relative;
}

.app.fusha-app .fusha-top-panel::before {
  content: none;
}

.app.fusha-app.game-started .fusha-top-panel::before {
  display: none;
}

.app.fusha-app.game-started .header h1 {
  color: #1d5074;
}

.app.fusha-app.game-started .header p {
  color: #355d79;
}

.app.fusha-app .trail {
  background: linear-gradient(165deg, #f9fdff, #ecf7ff);
  border-color: #afd3eb;
  color: #1f4f73;
  font-weight: 800;
}

.app.fusha-app .task {
  padding-top: clamp(14px, 3.4vw, 18px);
  padding-bottom: clamp(10px, 2.8vw, 14px);
}

.app.fusha-app.start-screen .task {
  display: none;
}

.app.fusha-app.start-screen .fusha-top-panel {
  min-height: calc(100svh - 106px);
  display: grid;
  align-items: center;
  border-radius: 0;
  margin: 0;
  margin-top: 0;
  border-left: 0;
  border-right: 0;
}

.app.fusha-app.start-screen .fusha-splash {
  min-height: min(74svh, 680px);
  align-content: start;
  gap: 0;
  padding-top: 30px;
}

.app.fusha-app.start-screen .fusha-brought-line {
  margin-bottom: 25px;
}

.app.fusha-app.start-screen #startBtn {
  background: linear-gradient(165deg, #f4c341, #e8ab2a);
  color: #2e355f;
  text-shadow: 0 1px 0 rgba(255, 248, 215, 0.55);
  box-shadow: 0 8px 0 rgba(167, 121, 20, 0.33), 0 12px 22px rgba(123, 90, 16, 0.25);
}

.app.fusha-app.start-screen #lessonBar {
  display: none !important;
}

.app.fusha-app .madinah-nav-row {
  width: min(96vw, 660px);
  margin: 22px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.app.fusha-app .prompt-lesson-text {
  display: block;
  width: 100%;
  padding: 0 16px;
  text-align: center;
  font-weight: 700;
}

.app.fusha-app .prompt.madinah-card {
  background: linear-gradient(165deg, var(--madinah-bg-start, #d4edff), var(--madinah-bg-end, #b4dbff));
  border-color: var(--madinah-border, #5d9ddd);
  box-shadow: 0 12px 0 var(--madinah-shadow, #b9dcfb);
  animation: madinahCardIn 1200ms cubic-bezier(0.18, 0.72, 0.2, 1);
}

.app.fusha-app .madinah-lesson-wrap {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(14px, 2.8vw, 24px);
  padding: 24px 28px;
}

.app.fusha-app .madinah-text-stack {
  flex: 1;
  min-width: 0;
  display: grid;
  grid-template-rows: auto auto;
  align-items: center;
  justify-items: center;
  gap: 8px;
}

.app.fusha-app .madinah-lesson-icon {
  flex: 0 0 auto;
  width: clamp(78px, 16vw, 118px);
  height: clamp(78px, 16vw, 118px);
  display: grid;
  place-items: center;
  border-radius: 18px;
  border: 2px solid rgba(46, 90, 120, 0.28);
  background:
    radial-gradient(circle at 24% 24%, rgba(255, 255, 255, 0.88), transparent 48%),
    linear-gradient(155deg, rgba(255, 248, 229, 0.98), rgba(255, 233, 189, 0.96));
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.7),
    0 7px 0 rgba(57, 115, 150, 0.2),
    0 11px 18px rgba(29, 79, 114, 0.22);
  font-size: clamp(3.1rem, 7.2vw, 4.6rem);
  line-height: 1;
  filter: saturate(1.12) contrast(1.06);
  animation: madinahIconBob 3.4s ease-in-out infinite;
}

.app.fusha-app .madinah-ar-text {
  direction: rtl;
  font-family: "Diwan Naskh", "Amiri", "Noto Naskh Arabic", serif;
  font-size: clamp(2.4rem, 6.8vw, 3.9rem);
  line-height: 1.12;
  color: #0d2f4a;
  text-align: center;
  padding-right: 0;
  animation: madinahArabicIn 1100ms cubic-bezier(0.18, 0.72, 0.2, 1);
}

.app.fusha-app .madinah-ar-text.madinah-ar-multiline {
  line-height: 1.36 !important;
}

.app.fusha-app .madinah-en-text {
  direction: ltr;
  font-family: "Andika", "Baloo 2", sans-serif;
  font-size: clamp(1.24rem, 2.9vw, 1.8rem);
  line-height: 1.3;
  color: #123a58;
  transition: opacity 260ms ease, transform 260ms ease;
  text-align: center;
}

.app.fusha-app .madinah-en-hide .madinah-en-text {
  opacity: 0;
  transform: translateY(10px);
}

.app.fusha-app .madinah-en-show .madinah-en-text {
  opacity: 1;
  transform: translateY(0);
  animation: madinahEnglishIn 1000ms cubic-bezier(0.18, 0.72, 0.2, 1);
}

.app.fusha-app .play-area {
  gap: 10px;
}

.app.fusha-app .side-stack {
  width: 100%;
}

.app.fusha-app .controls {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: stretch;
  justify-items: center;
}

.app.fusha-app .controls .main-btn {
  width: min(94vw, 540px);
  min-height: 56px;
  font-size: clamp(1.08rem, 3.8vw, 1.32rem);
}

.app.fusha-app #startBtn {
  width: min(94vw, 560px);
}

.app.fusha-app #prevBtn,
.app.fusha-app #nextBtn {
  width: 100%;
  max-width: 220px;
  min-height: 56px;
  justify-self: stretch;
  margin: 0;
}

.app.fusha-app #sayBtn {
  min-width: clamp(84px, 12vw, 98px);
  min-height: 56px;
  padding: 0;
  font-size: clamp(1.85rem, 4.2vw, 2.2rem);
  border-radius: 999px;
  justify-self: center;
  margin: 0;
  color: #2e72b2;
  text-shadow: none;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.app.fusha-app #sayBtn:hover {
  transform: translateY(-1px);
  filter: saturate(1.06);
}

.app.fusha-app #sayBtn:disabled {
  color: #8da3b8;
  cursor: not-allowed;
  transform: none;
  filter: none;
}

.app.fusha-app #prevBtn:disabled,
.app.fusha-app #nextBtn:disabled {
  background: linear-gradient(165deg, #d9dee8, #c8ceda) !important;
  color: #7a8697 !important;
  text-shadow: none;
  box-shadow: 0 4px 0 rgba(115, 125, 142, 0.25), 0 7px 12px rgba(94, 103, 120, 0.2);
  cursor: not-allowed;
  filter: none;
  transform: none;
}

@media (min-width: 640px) {
  .app.fusha-app .controls {
    grid-template-columns: 1fr;
  }

  .app.fusha-app .controls #startBtn {
    grid-column: auto;
  }
}

@media (max-width: 540px) {
  .app.fusha-app {
    width: 100vw;
    padding-top: 70px;
    gap: 8px;
  }

  .app.fusha-app.start-screen {
    padding-top: 0;
    margin: 0;
  }

  .app.fusha-app .panel {
    border-radius: 14px;
    padding: 10px;
  }

  .app.fusha-app .header {
    padding-top: 0;
  }

  .app.fusha-app .header h1 {
    font-size: clamp(1.28rem, 5.8vw, 1.66rem);
  }

  .app.fusha-app .header p {
    font-size: clamp(0.76rem, 3.4vw, 0.92rem);
  }

  .app.fusha-app .fusha-header-row {
    grid-template-columns: 52px 1fr auto;
    gap: 8px;
  }

  .app.fusha-app.start-screen .fusha-header-row {
    grid-template-columns: 52px 1fr 52px;
    min-height: 66px;
    padding: 8px 8px;
    margin-top: 0;
  }

  .app.fusha-app .fusha-menu-spacer {
    width: 44px;
    height: 44px;
  }

  .app.fusha-app .fusha-ref-chip {
    font-size: 0.72rem;
    padding: 6px 8px;
    margin-top: 4px;
  }

  .app.fusha-app .fusha-goto-menu {
    width: min(270px, 90vw);
    padding: 7px;
  }

  .app.fusha-app .fusha-goto-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  .app.fusha-app .fusha-header-logo {
    width: clamp(74px, 19vw, 98px);
  }

  .app.fusha-app .fusha-splash {
    gap: 8px;
    padding: 10px 4px 8px;
  }

  .app.fusha-app.start-screen .fusha-announce-bar {
    min-height: 32px;
    font-size: clamp(0.82rem, 3.6vw, 0.92rem);
  }

  .app.fusha-app.start-screen .header h1 {
    font-size: clamp(1.42rem, 6vw, 1.74rem);
  }

  .app.fusha-app .fusha-brought-line {
    font-size: clamp(1.86rem, 8vw, 2.26rem);
    line-height: 1.2;
  }

  .app.fusha-app.start-screen .fusha-brought-line {
    margin-bottom: 25px;
  }

  .app.fusha-app .fusha-splash-logo {
    width: min(348px, 94vw);
    margin-top: -12px;
  }

  .app.fusha-app.start-screen .fusha-top-panel {
    min-height: calc(100svh - 98px);
    margin-top: 0;
  }

  .app.fusha-app.start-screen .fusha-splash #startBtn {
    margin-top: 30px;
    font-size: clamp(1.34rem, 5.8vw, 1.66rem);
  }

  body.fusha-start-mode .menu-btn {
    top: 46px;
    right: calc((100vw - min(900px, 100vw - 10px)) / 2 + 10px);
    left: auto;
    width: 52px;
    height: 52px;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    font-size: 1.9rem;
    color: #f3f6ff;
  }

  .app.fusha-app .top-trail {
    padding: 10px;
  }

  .app.fusha-app .trail {
    min-height: 66px;
    padding: 10px 12px;
    font-size: clamp(1.08rem, 5vw, 1.4rem);
    text-align: left;
    line-height: 1.28;
  }

  .app.fusha-app .task {
    min-height: calc(100svh - 232px);
    padding-top: 12px;
    padding-bottom: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .app.fusha-app.start-screen .task {
    display: none;
    min-height: 0;
    padding: 0;
  }

  .app.fusha-app .prompt {
    width: min(86vw, 360px);
    min-height: clamp(340px, 70vh, 520px);
    border-width: 3px;
    border-radius: 22px;
    box-shadow: 0 8px 0 var(--madinah-shadow, #b9dcfb);
  }

  .app.fusha-app .madinah-lesson-wrap {
    flex-direction: column;
    justify-content: center;
    gap: 31px;
    padding: 14px 10px 16px;
  }

  .app.fusha-app .madinah-lesson-icon {
    width: clamp(136px, 34vw, 172px);
    height: clamp(136px, 34vw, 172px);
    border-radius: 20px;
    font-size: clamp(4.8rem, 14vw, 6.2rem);
    transform: translateY(-8px);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.72),
      0 5px 0 rgba(57, 115, 150, 0.18),
      0 8px 12px rgba(29, 79, 114, 0.2);
  }

  .app.fusha-app .madinah-text-stack {
    width: 100%;
    justify-items: center;
    gap: 13px;
  }

  .app.fusha-app .madinah-ar-text {
    font-size: clamp(2.5rem, 10.4vw, 3.4rem);
    line-height: 1.1;
    text-align: center;
    padding-right: 0;
  }

  .app.fusha-app .madinah-en-text {
    font-size: clamp(1.42rem, 5.9vw, 1.86rem);
    line-height: 1.24;
    text-align: center;
  }

  .app.fusha-app .madinah-nav-row {
    width: 100%;
    margin-top: 22px;
    gap: 8px;
  }

  .app.fusha-app #prevBtn,
  .app.fusha-app #nextBtn {
    min-height: 52px;
    max-width: none;
    width: 100%;
    padding: 10px 10px;
    font-size: clamp(1.05rem, 5vw, 1.25rem);
  }

  .app.fusha-app #sayBtn {
    min-width: 64px;
    min-height: 52px;
    font-size: clamp(2rem, 8vw, 2.55rem);
    background: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
  }

  .app.fusha-app #sayBtn::before {
    content: none !important;
  }

}

@keyframes madinahIconBob {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg) scale(1);
  }
  50% {
    transform: translateY(-3px) rotate(2deg) scale(1.03);
  }
}

@keyframes madinahCardIn {
  0% {
    opacity: 0;
    transform: translateY(12px) scale(0.985);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes madinahArabicIn {
  0% {
    opacity: 0;
    transform: translateX(28px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes madinahEnglishIn {
  0% {
    opacity: 0;
    transform: translateX(-28px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fushaSplashTextIn {
  0% {
    opacity: 0;
    transform: translateY(8px);
    filter: blur(2px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes fushaSplashLogoIn {
  0% {
    opacity: 0;
    transform: scale(0.96) translateY(10px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes fushaSplashCtaIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fushaBroughtDropIn {
  0% {
    opacity: 0;
    transform: translateY(-20px);
    filter: blur(2px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes fushaLogoKenBurns {
  0% {
    opacity: 0;
    transform: scale(0.15);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fushaDropInTop {
  0% {
    opacity: 0;
    transform: translateY(-20px);
    filter: blur(2px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.app.urdu-app .prompt-letter,
.app.urdu-app .choice-letter {
  font-family: "Jameel Noori Nastaleeq", "Noto Nastaliq Urdu", "Noto Naskh Arabic", serif;
  font-weight: 700;
}

.app.urdu-app .prompt-letter-wrap {
  line-height: 1.2;
  padding: 16px 22px 34px;
}

.app.urdu-app .prompt-letter {
  display: inline-block;
  font-size: clamp(3.8rem, 12.6vw, 5.2rem);
  line-height: 1.28;
  padding-bottom: 0.18em;
}

.app.urdu-app .prompt-letter-wrap::before,
.app.urdu-app .prompt-letter-wrap::after {
  content: none;
}

.app.urdu-app .choices {
  grid-template-columns: repeat(3, minmax(72px, 1fr));
  gap: 6px;
  justify-items: center;
}

.app.urdu-app .choice {
  min-height: 0;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  width: min(100%, 170px);
  font-size: clamp(2.05rem, 6.7vw, 3.1rem);
  display: grid;
  place-items: center;
  text-align: center;
}

.app.urdu-app .choice-letter {
  line-height: 1;
  transform-origin: center center;
}

.app.arabic-app .prompt {
  direction: rtl;
}

.app.arabic-app .choices {
  direction: rtl;
}

.app.numbers-app .choice.choice-number .choice-letter {
  font-variant-numeric: tabular-nums;
}

.app.numbers-app .choice.choice-number-double {
  font-size: clamp(2.1rem, 6.7vw, 3.4rem);
}

.app.numbers-app .choice.test-choice.choice-number-double {
  font-size: clamp(1.45rem, 4.1vw, 2rem);
}

.choice-theme-sun {
  background: #ffe38e;
}

.choice-theme-sky {
  background: #c8f2ff;
}

.choice-theme-mint {
  background: #d2ffd1;
}

.choice-theme-rose {
  background: #ffd2ea;
}

.choice-theme-lilac {
  background: #e3dcff;
}

.choice-theme-peach {
  background: #ffdcbf;
}

.choice-theme-aqua {
  background: #c9fff6;
}

.choice-theme-lemon {
  background: #fff8b8;
}

.choice.good {
  border-color: #1f7c3f;
  background: #c7ffd5;
}

.choice.bad {
  border-color: #9c4d14;
  background: #ffd8b8;
}

.choice.wrong-shake {
  animation: wrongShake 620ms ease;
}

.choice.right-pop {
  animation: rightPop 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.choice.test-correct {
  box-shadow: 0 0 0 4px rgba(31, 124, 63, 0.44), 0 0 30px rgba(31, 124, 63, 0.34);
}

.choice.test-correct::after {
  content: "✓";
  position: absolute;
  top: 50%;
  right: clamp(10px, 3vw, 20px);
  font-size: clamp(2.8rem, 8.8vw, 4rem);
  font-weight: 900;
  color: #16703b;
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.6);
  opacity: 0;
  transform: translateY(-50%) scale(0.7);
  animation: testCorrectMark 300ms cubic-bezier(0.22, 0.8, 0.22, 1) forwards;
  animation-delay: 120ms;
  pointer-events: none;
}

.choice.test-wrong {
  border-color: #b91c1c;
  box-shadow: 0 0 0 4px rgba(185, 28, 28, 0.44), 0 0 28px rgba(185, 28, 28, 0.36);
  animation: testWrongGlow 720ms ease;
}

.choice.test-wrong::after {
  content: "✕";
  position: absolute;
  top: 50%;
  right: clamp(10px, 3vw, 20px);
  font-size: clamp(2.8rem, 8.8vw, 4rem);
  font-weight: 900;
  color: #b91c1c;
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.55);
  opacity: 0;
  transform: translateY(-50%) scale(0.7);
  animation: testWrongMark 420ms ease forwards;
  animation-delay: 120ms;
  pointer-events: none;
}

.controls {
  width: 100%;
  min-height: unset;
  display: block;
  margin-top: 2px;
  text-align: center;
}

#nextBtn {
  margin-left: auto;
  margin-right: auto;
}

#nextBtn:not(.hidden) {
  display: block;
}

.main-btn {
  font-size: 1.35rem;
  padding: 10px 18px;
  color: #fffaf0;
  text-shadow: 0 1px 0 rgba(91, 26, 56, 0.28);
  background: linear-gradient(165deg, #ff8d56, #ff5f8f);
  width: min(300px, 86vw);
  height: auto;
  margin: 0 auto;
  border-radius: 14px;
  box-shadow: 0 6px 0 rgba(150, 63, 92, 0.34), 0 12px 20px rgba(115, 43, 87, 0.24);
}

#startBtn {
  background: linear-gradient(165deg, #45d4a8, #35b3d8);
  text-shadow: 0 1px 0 rgba(20, 77, 103, 0.26);
}

#backToGameBtn {
  background: linear-gradient(165deg, #8e7bff, #d86ee7);
  text-shadow: 0 1px 0 rgba(62, 41, 125, 0.26);
}

#nextBtn {
  background: linear-gradient(165deg, #3bc7ff, #4f7fff);
  text-shadow: 0 1px 0 rgba(24, 53, 130, 0.28);
}

#nextBtn.next-theme-coral {
  background: linear-gradient(165deg, #ff8d56, #ff5f8f);
}

#nextBtn.next-theme-ocean {
  background: linear-gradient(165deg, #3bc7ff, #4f7fff);
}

#nextBtn.next-theme-grape {
  background: linear-gradient(165deg, #8e7bff, #d86ee7);
}

#nextBtn.next-theme-lime {
  background: linear-gradient(165deg, #63d66a, #2fc783);
}

#nextBtn.next-theme-sun {
  background: linear-gradient(165deg, #ffcf52, #ff9b2f);
  color: #4a2f00;
  text-shadow: 0 1px 0 rgba(255, 248, 220, 0.45);
}

#nextBtn.next-theme-berry {
  background: linear-gradient(165deg, #ff6fb1, #f05575);
}

#nextBtn.next-theme-teal {
  background: linear-gradient(165deg, #2fd1c4, #36a0ff);
}

#nextBtn.next-theme-orange {
  background: linear-gradient(165deg, #ffb347, #ff7f50);
}

#sayBtn {
  position: relative;
  overflow: hidden;
  min-width: 78px;
  min-height: 64px;
  color: #1f4d7a;
  background: linear-gradient(165deg, #d8f2ff, #bde9ff);
  border-color: rgba(121, 189, 232, 0.84);
  box-shadow: 0 5px 0 rgba(74, 132, 166, 0.22), 0 10px 16px rgba(71, 131, 166, 0.2);
  animation: sayBtnFloat 3s ease-in-out infinite;
}

#sayBtn::before {
  content: "";
  position: absolute;
  inset: -6px;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.5), transparent 54%);
  opacity: 0.72;
  pointer-events: none;
  animation: sayBtnGlow 2.6s ease-in-out infinite;
}

#sayBtn .say-icon {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-size: 1.7rem;
  transform-origin: 55% 62%;
  animation: sayIconWiggle 1.45s ease-in-out infinite;
}

#sayBtn.say-theme-cloud {
  color: #1f4d7a;
  background: linear-gradient(165deg, #d8f2ff, #bde9ff);
  border-color: rgba(121, 189, 232, 0.84);
}

#sayBtn.say-theme-blossom {
  color: #8c3b71;
  background: linear-gradient(165deg, #ffe2f2, #ffd0e8);
  border-color: rgba(226, 156, 199, 0.78);
}

#sayBtn.say-theme-minty {
  color: #23685f;
  background: linear-gradient(165deg, #ddffef, #c7f8e3);
  border-color: rgba(133, 208, 181, 0.78);
}

#sayBtn.say-theme-lemonade {
  color: #7a5a17;
  background: linear-gradient(165deg, #fff7d7, #ffefbb);
  border-color: rgba(222, 198, 122, 0.78);
}

#sayBtn.say-theme-lavender {
  color: #5a4388;
  background: linear-gradient(165deg, #ece4ff, #ddd0ff);
  border-color: rgba(171, 149, 224, 0.78);
}

#sayBtn.say-theme-peach {
  color: #7f4f33;
  background: linear-gradient(165deg, #ffe8db, #ffd9c4);
  border-color: rgba(221, 167, 132, 0.78);
}

#sayBtn.say-theme-sherbet {
  color: #184d76;
  background: linear-gradient(165deg, #d9fff9, #c7f6f7);
  border-color: rgba(122, 203, 207, 0.78);
}

#sayBtn.say-theme-cotton {
  color: #81405f;
  background: linear-gradient(165deg, #ffe9fb, #f6dffd);
  border-color: rgba(216, 164, 224, 0.78);
}

.main-btn:active,
.pill:active {
  transform: translateY(2px);
  filter: brightness(0.97);
}

.main-btn.next-slide-in {
  animation: nextSlideIn 820ms ease-out both;
}

.main-btn.next-attention {
  animation: nextAttention 2.4s ease-in-out infinite;
}

.trail {
  min-height: 54px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 1.7rem;
  border-radius: 16px;
  background: rgba(248, 252, 255, 0.92);
  border: 1px solid #a8cfe9;
  padding: 10px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.trail-star {
  display: inline-block;
  animation: starTrailTwinkle 1.8s ease-in-out infinite;
  will-change: transform, filter;
}

.trail-summary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 12px;
  border: 1px solid #bfdaf0;
  background: linear-gradient(165deg, #fffef8, #f2f9ff);
  transform-origin: center center;
  animation: trailHeartbeat 3.2s ease-in-out infinite;
}

.trail-summary-star {
  font-size: 2rem;
  line-height: 1;
  filter: drop-shadow(0 3px 5px rgba(246, 185, 56, 0.42));
}

.trail-summary-label {
  font-size: 1rem;
  font-weight: 800;
  color: #1d4968;
  letter-spacing: 0.01em;
}

.hidden {
  display: none !important;
}

.app.pair-mode .choices {
  display: none;
}

.app.pair-mode .play-area {
  grid-template-columns: 1fr;
}

.app.pair-mode .side-stack {
  justify-content: center;
}

.app.pair-mode .controls {
  min-height: unset;
  display: block;
  text-align: center;
}

.app.pair-mode .main-btn {
  width: min(320px, 76vw);
  height: auto;
}

.app.pair-mode #startBtn {
  display: none;
}

@keyframes wrongShake {
  0% { transform: translateX(0); }
  20% { transform: translateX(-5px); }
  40% { transform: translateX(5px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
  100% { transform: translateX(0); }
}

@keyframes rightPop {
  0% { transform: scale(1); }
  40% { transform: scale(1.08); box-shadow: 0 0 0 0 rgba(31, 124, 63, 0.45); }
  100% { transform: scale(1); box-shadow: 0 0 0 22px rgba(31, 124, 63, 0); }
}

@keyframes testWrongGlow {
  0% { box-shadow: 0 0 0 0 rgba(185, 28, 28, 0.15); }
  50% { box-shadow: 0 0 0 4px rgba(185, 28, 28, 0.42), 0 0 26px rgba(185, 28, 28, 0.34); }
  100% { box-shadow: 0 0 0 3px rgba(185, 28, 28, 0.35), 0 0 24px rgba(185, 28, 28, 0.3); }
}

@keyframes testWrongMark {
  0% { opacity: 0; transform: translateY(-50%) scale(0.7); }
  100% { opacity: 1; transform: translateY(-50%) scale(1); }
}

@keyframes testCorrectMark {
  0% { opacity: 0; transform: translateY(-50%) scale(0.7); }
  100% { opacity: 1; transform: translateY(-50%) scale(1); }
}

@keyframes choiceSlideIn {
  0% {
    opacity: 0;
    transform: translateX(-26px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes letterFlipIn {
  0% {
    opacity: 0;
    transform: rotateX(90deg);
  }
  65% {
    opacity: 1;
    transform: rotateX(-14deg);
  }
  100% {
    opacity: 1;
    transform: rotateX(0deg);
  }
}

@keyframes quantitySquareIn {
  0% {
    opacity: 0;
    transform: scale(0.55) translateY(5px);
    filter: saturate(0.7);
  }
  70% {
    opacity: 1;
    transform: scale(1.12) translateY(0);
    filter: saturate(1.08);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: saturate(1);
  }
}

@keyframes quantitySquareWave {
  0%, 100% {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: saturate(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.14) translateY(-2px);
    filter: saturate(1.12);
  }
}

@keyframes flashSlideIn {
  0% {
    opacity: 0;
    transform: translateX(-26px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes flashFlipIn {
  0% {
    opacity: 0;
    transform: rotateX(90deg);
  }
  70% {
    opacity: 1;
    transform: rotateX(-12deg);
  }
  100% {
    opacity: 1;
    transform: rotateX(0deg);
  }
}

@keyframes pairSpeakPulse {
  0% { transform: scale(1) rotate(0deg); }
  22% { transform: scale(1.2) rotate(-5deg); }
  46% { transform: scale(1.08) rotate(4deg); }
  70% { transform: scale(1.15) rotate(-3deg); }
  100% { transform: scale(1) rotate(0deg); }
}

@keyframes starTrailTwinkle {
  0%, 100% {
    transform: translateY(0) scale(1);
    filter: drop-shadow(0 0 0 rgba(255, 200, 70, 0));
  }
  50% {
    transform: translateY(-4px) scale(1.08);
    filter: drop-shadow(0 3px 6px rgba(255, 200, 70, 0.45));
  }
}

@keyframes trailHeartbeat {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

@keyframes nextSlideIn {
  0% {
    opacity: 0;
    transform: translateX(36px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes nextAttention {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 0 rgba(28, 135, 225, 0.4);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 18px rgba(28, 135, 225, 0);
  }
}

@keyframes sayBtnFloat {
  0% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-2px) scale(1.02); }
  100% { transform: translateY(0) scale(1); }
}

@keyframes sayBtnGlow {
  0% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.86; transform: scale(1.04); }
  100% { opacity: 0.5; transform: scale(1); }
}

@keyframes sayIconWiggle {
  0% { transform: rotate(0deg) scale(1); }
  20% { transform: rotate(-10deg) scale(1.05); }
  40% { transform: rotate(8deg) scale(1.06); }
  60% { transform: rotate(-6deg) scale(1.04); }
  80% { transform: rotate(4deg) scale(1.02); }
  100% { transform: rotate(0deg) scale(1); }
}

@keyframes letterBounce {
  0% {
    transform: translateY(0) scale(1);
  }
  25% {
    transform: translateY(-6px) scale(1.03);
  }
  50% {
    transform: translateY(0) scale(1);
  }
  75% {
    transform: translateY(4px) scale(0.99);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

@keyframes glowPulse {
  0% {
    box-shadow: 0 12px 0 #d8ecff, 0 0 0 rgba(110, 168, 231, 0.15);
  }
  50% {
    box-shadow: 0 12px 0 #d8ecff, 0 0 18px rgba(110, 168, 231, 0.45);
  }
  100% {
    box-shadow: 0 12px 0 #d8ecff, 0 0 0 rgba(110, 168, 231, 0.15);
  }
}

@keyframes accuracyReminder {
  0%, 78%, 100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 8px 18px rgba(16, 46, 74, 0.2);
  }
  84% {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 10px 22px rgba(24, 86, 130, 0.35);
  }
  90% {
    transform: translateY(0) scale(1);
    box-shadow: 0 8px 18px rgba(16, 46, 74, 0.2);
  }
}

@media (min-width: 481px) {
  .audio-check-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .choices {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .progress-stat-grid {
    grid-template-columns: repeat(3, minmax(90px, 1fr));
  }

  .progress-card-head {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .main-btn {
    width: min(320px, 82vw);
  }
}

@media (max-width: 380px) {
  .audio-check-controls {
    grid-template-columns: 1fr;
  }

  .audio-check-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .choices {
    grid-template-columns: 1fr;
  }

  .choice {
    min-height: 92px;
    font-size: clamp(2.3rem, 13vw, 3.2rem);
  }
}

@media (min-width: 701px) {
  .menu-btn {
    top: 14px;
    left: 14px;
    width: 52px;
    height: 52px;
    font-size: 1.72rem;
  }

  .hamburger-menu {
    width: min(320px, 86vw);
    padding: 84px 16px 20px;
    gap: 12px;
  }

  .menu-action {
    min-height: 56px;
  }

  .accuracy-badge {
    top: 16px;
    right: 14px;
    padding: 8px 12px;
    font-size: 0.95rem;
  }

  .current-user-display {
    top: 16px;
    padding: 8px 14px;
    font-size: 0.98rem;
    max-width: min(62vw, 420px);
  }

  .app {
    width: min(760px, 100vw - 20px);
    padding: clamp(70px, 9vw, 78px) clamp(10px, 2.2vw, 16px) clamp(10px, 2.2vw, 16px);
    gap: clamp(10px, 2vw, 14px);
  }

  .pill {
    width: auto;
  }

  .play-area {
    grid-template-columns: minmax(0, 1fr) 240px;
  }

  .side-stack {
    display: flex;
  }

  .controls {
    min-height: var(--choice-h);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
  }

  .main-btn {
    width: 100%;
    height: 78px;
    margin: 0;
    font-size: 1.6rem;
    padding: 11px 24px;
  }

  .app.start-screen .main-btn {
    width: min(320px, 76vw);
    height: auto;
  }

  .choices {
    gap: 12px;
  }

  .choice {
    min-height: var(--choice-h);
    font-size: clamp(2.6rem, 8vw, 4.4rem);
  }

  .prompt {
    width: min(92vw, 360px);
  }

  .app.game-started .icon-btn {
    min-width: 90px;
    min-height: 64px;
    font-size: 2rem;
  }
}

@media (max-height: 760px) {
  .hamburger-menu {
    padding-top: 64px;
    gap: 8px;
  }

  .menu-action {
    min-height: 48px;
    font-size: 0.96rem;
    padding: 10px 14px;
  }

  .menu-action-danger {
    min-height: 38px;
    font-size: 0.86rem;
  }
}

@media (max-height: 760px) {
  .app {
    gap: 8px;
  }

  .panel {
    padding: 10px 12px;
  }

  .prompt {
    min-height: 150px;
    margin-bottom: 6px;
  }

  .play-area,
  .side-stack {
    gap: 8px;
  }
}

/* My Fūṣḥā Journey: final layout overrides */
.fusha-page {
  --fusha-shell-width: min(900px, 100vw);
  --fusha-shell-gutter: calc((100vw - var(--fusha-shell-width)) / 2);
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100svh;
  overflow: hidden;
  overscroll-behavior: none;
  touch-action: pan-x;
}

.fusha-page .menu-btn {
  right: calc(var(--fusha-shell-gutter) + 10px);
  left: auto;
  top: 44px;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none !important;
  color: #f2f5ff;
  font-size: 2rem;
  z-index: 48;
}

.fusha-page .menu-btn:hover,
.fusha-page .menu-btn:active {
  transform: none;
  filter: none;
}

.app.fusha-app {
  width: var(--fusha-shell-width);
  margin: 0 auto;
  padding: 0;
  gap: 0;
  height: 100svh;
  overflow: hidden;
}

.app.fusha-app .header {
  margin: 0;
  padding: 0;
  gap: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.app.fusha-app .fusha-announce-bar {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 34px;
  padding: 4px 10px;
  margin: 0;
  border-radius: 0;
  background: linear-gradient(165deg, #f4c341, #e8ab2a);
  color: #2e355f;
  font-size: clamp(0.86rem, 2.2vw, 0.98rem);
  font-weight: 800;
  letter-spacing: 0.01em;
}

.app.fusha-app .fusha-header-row {
  grid-template-columns: 56px 1fr 56px;
  min-height: 72px;
  margin: 0;
  padding: 10px 10px;
  border-radius: 0;
  background: linear-gradient(160deg, rgba(44, 58, 102, 0.96), rgba(55, 70, 116, 0.95));
  box-shadow: none;
}

.app.fusha-app .fusha-menu-spacer,
.app.fusha-app .fusha-header-right {
  width: 52px;
  height: 52px;
}

.app.fusha-app .fusha-menu-spacer {
  display: grid;
  place-items: center;
}

.app.fusha-app .fusha-user-initials {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(227, 236, 253, 0.5);
  background: linear-gradient(165deg, rgba(97, 122, 183, 0.96), rgba(65, 87, 146, 0.96));
  color: #f7fbff;
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.03em;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 4px 10px rgba(20, 33, 66, 0.25);
}

.app.fusha-app .header h1 {
  color: #f5f8ff;
  font-size: clamp(1.34rem, 4.2vw, 1.86rem);
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  letter-spacing: 0.028em;
}

.app.fusha-app .fusha-header-logo {
  display: none !important;
}

.app.fusha-app .fusha-ref-chip {
  display: none !important;
}

.app.fusha-app .fusha-goto-menu {
  display: none !important;
}

.fusha-profile-modal-overlay {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(12, 22, 40, 0.52);
  backdrop-filter: blur(4px);
  z-index: 80;
  padding: 16px;
}

.fusha-profile-modal {
  width: min(460px, 94vw);
  border-radius: 20px;
  border: 1px solid rgba(180, 203, 232, 0.9);
  background: linear-gradient(160deg, rgba(249, 253, 255, 0.98), rgba(237, 246, 255, 0.96));
  box-shadow: 0 20px 36px rgba(16, 41, 70, 0.28);
  padding: 20px 18px 16px;
  display: grid;
  gap: 10px;
}

.fusha-profile-modal-title {
  margin: 0;
  color: #204d74;
  font-size: clamp(1.32rem, 4.8vw, 1.64rem);
}

.fusha-profile-modal-subtitle {
  margin: 0;
  color: #476783;
  font-size: 1rem;
}

.fusha-profile-modal-fields {
  display: grid;
  gap: 8px;
}

.fusha-profile-modal-input {
  width: 100%;
  border: 1px solid rgba(126, 173, 214, 0.82);
  border-radius: 14px;
  padding: 11px 12px;
  font-family: inherit;
  font-size: 1.05rem;
  color: #244864;
  background: rgba(251, 254, 255, 0.98);
}

.fusha-profile-modal-input:focus-visible {
  outline: 0;
  border-color: #5ea8e3;
  box-shadow: 0 0 0 3px rgba(86, 161, 221, 0.2);
}

.fusha-profile-modal-error {
  min-height: 1.2em;
  margin: 0;
  color: #c34d6a;
  font-weight: 700;
  font-size: 0.93rem;
}

.fusha-profile-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.fusha-profile-modal-btn {
  border: 1px solid rgba(184, 200, 224, 0.9);
  border-radius: 999px;
  min-height: 44px;
  padding: 0 18px;
  font-family: inherit;
  font-weight: 800;
  font-size: 1rem;
  color: #35536f;
  background: linear-gradient(165deg, #f8fcff, #eaf2fa);
  cursor: pointer;
}

.fusha-profile-modal-btn.primary {
  border-color: rgba(94, 151, 206, 0.9);
  background: linear-gradient(165deg, #46caad, #35a8dd);
  color: #f8fffe;
}

.fusha-profile-modal-btn.danger {
  border-color: rgba(209, 112, 136, 0.9);
  background: linear-gradient(165deg, #ff7f9b, #ec4f7d);
  color: #fff9fb;
}

.app.fusha-app.start-screen .fusha-ref-chip,
.app.fusha-app.start-screen .fusha-goto-menu {
  display: none !important;
}

.app.fusha-app .top-trail {
  margin: 0;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
}

.app.fusha-app .fusha-lesson-bar h2,
.app.fusha-app .fusha-lesson-bar p {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.25;
  color: #1d4f73;
}

.app.fusha-app .fusha-lesson-bar p {
  display: none;
}

.app.fusha-app.start-screen .fusha-top-panel {
  min-height: calc(100svh - 106px);
}

.app.fusha-app.start-screen .fusha-splash {
  min-height: calc(100svh - 136px);
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: start;
  gap: 0;
  padding-top: 45px;
}

.app.fusha-app .fusha-brought-line {
  margin: 0 0 25px;
  font-size: clamp(2.1rem, 6.2vw, 2.9rem);
  animation: fushaBroughtDropIn 820ms ease-out both;
}

.app.fusha-app .fusha-slogan-line {
  margin: 0 0 52px;
  width: min(520px, 92vw);
  font-size: clamp(1.33rem, 4.22vw, 1.64rem);
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.015em;
  text-align: center;
  color: #315a79;
  animation: fushaSplashTextIn 820ms ease-out both;
}

.app.fusha-app .fusha-splash-logo {
  margin: 0 0 50px;
  width: min(330px, 90vw);
  animation: fushaLogoKenBurns 1800ms cubic-bezier(0.18, 0.72, 0.2, 1) 80ms both;
}

.app.fusha-app .madinah-lesson-icon {
  width: clamp(148px, 30vw, 222px);
  height: clamp(148px, 30vw, 222px);
}

.app.fusha-app #startBtn {
  font-size: clamp(1.28rem, 4.2vw, 1.65rem);
}

.app.fusha-app .donate-btn {
  width: min(220px, 62vw);
  min-height: 42px;
  margin-top: auto;
  margin-bottom: 15px;
  border-radius: 14px;
  border: 2px solid rgba(202, 221, 248, 0.4);
  background: linear-gradient(160deg, rgba(44, 58, 102, 0.98), rgba(55, 70, 116, 0.98));
  color: #f4c341;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: clamp(1.08rem, 3.8vw, 1.22rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  text-decoration: none;
  box-shadow: 0 6px 0 rgba(35, 46, 82, 0.32), 0 10px 18px rgba(27, 36, 66, 0.24);
}

.app.fusha-app .donate-btn:hover,
.app.fusha-app .donate-btn:focus-visible {
  filter: brightness(1.05);
}

.app.fusha-app .madinah-nav-row {
  grid-template-columns: minmax(0, 1fr) 96px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.app.fusha-app #sayBtn {
  width: 96px !important;
  height: 96px !important;
  min-width: 96px !important;
  min-height: 96px !important;
  padding: 0;
  border-radius: 999px;
  border: 2px solid rgba(116, 189, 228, 0.88) !important;
  background: linear-gradient(165deg, #ddf5ff, #b8e9ff) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 6px 0 rgba(97, 157, 198, 0.3),
    0 10px 18px rgba(47, 98, 136, 0.22) !important;
  color: #1e5f8e;
  display: grid;
  place-items: center;
  justify-self: center;
}

.app.fusha-app #sayBtn::before {
  content: none !important;
}

.app.fusha-app .prompt.madinah-static,
.app.fusha-app .prompt.madinah-static .madinah-lesson-icon,
.app.fusha-app .prompt.madinah-static .madinah-ar-text,
.app.fusha-app .prompt.madinah-static .madinah-en-text {
  animation: none !important;
  transition: none !important;
}

.app.fusha-app.start-screen .fusha-splash #startBtn {
  margin-top: 0;
}

.app.fusha-app.start-screen .fusha-splash .fusha-slogan-line {
  margin-bottom: 64px;
}

.app.fusha-app.start-screen .fusha-splash .fusha-brought-line {
  margin-bottom: 40px;
}

.app.fusha-app.start-screen .fusha-splash .fusha-splash-logo {
  margin-bottom: 72px;
}

.app.fusha-app.start-screen .fusha-splash .fusha-slogan-line,
.app.fusha-app.start-screen .fusha-splash .fusha-brought-line,
.app.fusha-app.start-screen .fusha-splash .fusha-splash-logo,
.app.fusha-app.start-screen .fusha-splash #startBtn,
.app.fusha-app.start-screen .fusha-splash .donate-btn {
  opacity: 0;
}

.app.fusha-app.start-screen .fusha-splash .fusha-slogan-line {
  animation: fushaDropInTop 700ms ease-out 380ms both !important;
}

.app.fusha-app.start-screen .fusha-splash .fusha-brought-line {
  animation: fushaDropInTop 700ms ease-out 1260ms both !important;
}

.app.fusha-app.start-screen .fusha-splash .fusha-splash-logo {
  animation: fushaLogoKenBurns 2200ms cubic-bezier(0.18, 0.72, 0.2, 1) 2140ms both !important;
}

.app.fusha-app.start-screen .fusha-splash #startBtn {
  animation: fushaDropInTop 760ms ease-out 3680ms both !important;
}

.app.fusha-app.start-screen .fusha-splash .donate-btn {
  animation: fushaDropInTop 760ms ease-out 4580ms both !important;
}

.app.fusha-app.game-started .fusha-top-panel {
  min-height: auto;
}

.app.fusha-app.game-started #startSplash {
  display: none !important;
}

.app.fusha-app.game-started .header {
  padding-bottom: 0;
}

.app.fusha-app.game-started .header h1 {
  color: #f5f8ff !important;
}

.app.fusha-app.game-started .top-trail {
  margin-top: 0;
}

.app.fusha-app .say-icon {
  display: inline-block;
  transform: none;
  font-size: 2.65rem !important;
  line-height: 1;
}

.app.fusha-app .madinah-lesson-icon-image {
  width: 96%;
  height: 96%;
  object-fit: contain;
  display: block;
}

.app.fusha-app #sayBtn .say-icon {
  animation: none;
}

.app.fusha-app #sayBtn:disabled {
  border-color: rgba(188, 208, 222, 0.9);
  background: linear-gradient(165deg, #e7f0f6, #d8e4ee);
  box-shadow: 0 4px 0 rgba(147, 166, 181, 0.28), 0 8px 14px rgba(130, 151, 167, 0.18);
  color: #8da3b8;
}

@media (max-width: 540px) {
  .fusha-page .menu-btn {
    top: 42px;
    right: calc(var(--fusha-shell-gutter) + 8px);
    width: 48px;
    height: 48px;
    font-size: 1.85rem;
  }

  .app.fusha-app {
    width: 100vw;
  }

  .app.fusha-app .fusha-announce-bar {
    min-height: 32px;
    font-size: clamp(0.82rem, 3.6vw, 0.92rem);
  }

  .app.fusha-app .fusha-header-row {
    grid-template-columns: 52px 1fr 52px;
    min-height: 66px;
    padding: 8px 8px;
  }

  .app.fusha-app .header h1 {
    font-size: clamp(1.2rem, 5.1vw, 1.5rem);
    letter-spacing: 0.02em;
  }

  .app.fusha-app .fusha-brought-line {
    font-size: clamp(1.86rem, 8vw, 2.26rem);
  }

  .app.fusha-app .fusha-slogan-line {
    width: min(370px, 94vw);
    margin-bottom: 42px;
    font-size: clamp(1.24rem, 5.33vw, 1.46rem);
    line-height: 1.5;
  }

  .app.fusha-app .fusha-splash-logo {
    width: min(348px, 94vw);
  }

  .app.fusha-app .madinah-lesson-icon {
    width: clamp(224px, 56vw, 308px);
    height: clamp(224px, 56vw, 308px);
  }

  .app.fusha-app.start-screen .fusha-top-panel {
    min-height: calc(100svh - 98px);
  }

  .app.fusha-app.start-screen .fusha-splash {
    min-height: calc(100svh - 128px);
  }

  .app.fusha-app .madinah-nav-row {
    grid-template-columns: minmax(0, 1fr) 86px minmax(0, 1fr);
    gap: 10px;
  }

  .app.fusha-app #sayBtn {
    width: 84px !important;
    height: 84px !important;
    min-width: 84px !important;
    min-height: 84px !important;
    display: grid !important;
    place-items: center !important;
    border: 2px solid rgba(116, 189, 228, 0.88) !important;
    background: linear-gradient(165deg, #ddf5ff, #b8e9ff) !important;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.85),
      0 5px 0 rgba(97, 157, 198, 0.28),
      0 8px 14px rgba(47, 98, 136, 0.2) !important;
    border-radius: 999px !important;
  }

  .app.fusha-app .say-icon {
    font-size: 2.3rem !important;
  }

  .app.fusha-app .fusha-ref-chip {
    display: none !important;
  }

  .app.fusha-app .fusha-goto-menu {
    display: none !important;
  }

  .app.fusha-app.game-started .header {
    padding-bottom: 0;
  }
}

@media (min-width: 901px) {
  .fusha-page {
    --fusha-shell-width: min(1320px, calc(100vw - 56px));
    --fusha-shell-gutter: calc((100vw - var(--fusha-shell-width)) / 2);
    background:
      radial-gradient(circle at 8% 12%, rgba(170, 214, 246, 0.28), transparent 38%),
      radial-gradient(circle at 94% 90%, rgba(163, 220, 255, 0.24), transparent 42%),
      linear-gradient(160deg, #f4f8ff, #e9f1fb);
  }

  .app.fusha-app {
    height: calc(100svh - 24px);
    margin: 12px auto;
    border-radius: 22px;
    border: 1px solid rgba(174, 202, 228, 0.85);
    box-shadow:
      0 20px 42px rgba(22, 52, 84, 0.18),
      0 1px 0 rgba(255, 255, 255, 0.8) inset;
    overflow: hidden;
    background: linear-gradient(160deg, rgba(242, 248, 255, 0.98), rgba(234, 243, 252, 0.97));
  }

  .fusha-page .menu-btn {
    right: calc(var(--fusha-shell-gutter) + 18px);
    top: 52px;
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: linear-gradient(165deg, rgba(99, 122, 182, 0.35), rgba(67, 88, 146, 0.34)) !important;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.3),
      0 10px 18px rgba(24, 41, 74, 0.22) !important;
    backdrop-filter: blur(6px);
    color: #f4f8ff;
  }

  .app.fusha-app .fusha-announce-bar {
    min-height: 40px;
    font-size: clamp(1rem, 1.15vw, 1.14rem);
    letter-spacing: 0.015em;
  }

  .app.fusha-app .fusha-header-row {
    min-height: 84px;
    padding: 12px 18px;
    grid-template-columns: 64px 1fr 64px;
  }

  .app.fusha-app .fusha-menu-spacer,
  .app.fusha-app .fusha-header-right {
    width: 56px;
    height: 56px;
  }

  .app.fusha-app .fusha-user-initials {
    width: 50px;
    height: 50px;
    font-size: 1.12rem;
  }

  .app.fusha-app .header h1 {
    font-size: clamp(1.92rem, 2.85vw, 2.58rem);
    letter-spacing: 0.034em;
    font-weight: 700;
  }

  .app.fusha-app.start-screen .fusha-top-panel {
    min-height: calc(100% - 124px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 42px 34px;
  }

  .app.fusha-app.start-screen .fusha-splash {
    width: min(980px, 100%);
    min-height: auto;
    padding: 74px 16px 28px;
    align-items: center;
  }

  .app.fusha-app.start-screen .fusha-splash .fusha-slogan-line {
    width: min(860px, 94%);
    font-size: clamp(1.58rem, 2.25vw, 2.08rem);
    line-height: 1.45;
    margin-bottom: 58px;
    text-wrap: balance;
  }

  .app.fusha-app.start-screen .fusha-splash .fusha-brought-line {
    font-size: clamp(2.5rem, 3.8vw, 3.5rem);
    margin-bottom: 36px;
  }

  .app.fusha-app.start-screen .fusha-splash .fusha-splash-logo {
    width: min(540px, 54vw);
    margin-bottom: 60px;
  }

  .app.fusha-app.start-screen .fusha-splash #startBtn {
    width: min(500px, 56vw);
    min-height: 74px;
    font-size: clamp(1.54rem, 2.05vw, 2.04rem);
    white-space: nowrap;
    margin-top: 0;
  }

  .app.fusha-app.start-screen .fusha-splash .donate-btn {
    width: min(230px, 26vw);
    min-height: 54px;
    margin-top: 34px;
    margin-bottom: 6px;
    font-size: clamp(1.16rem, 1.45vw, 1.32rem);
  }

  .app.fusha-app.game-started .fusha-top-panel {
    padding: 10px 26px 12px;
  }

  .app.fusha-app .fusha-lesson-bar {
    padding: 10px 0 12px;
  }

  .app.fusha-app .fusha-lesson-bar h2 {
    font-size: clamp(1.36rem, 1.82vw, 1.9rem);
    letter-spacing: 0.012em;
  }

  .app.fusha-app .task {
    min-height: 0;
    display: grid;
    grid-template-rows: 1fr auto;
    align-content: stretch;
    gap: 16px;
    padding: 16px 28px 24px;
  }

  .app.fusha-app .prompt {
    width: min(1120px, 86vw);
    min-height: clamp(360px, 58vh, 640px);
    margin: 0 auto;
    border-width: 4px;
    border-radius: 34px;
  }

  .app.fusha-app .madinah-lesson-wrap {
    gap: clamp(28px, 3.4vw, 48px);
    padding: clamp(28px, 3.6vw, 46px);
  }

  .app.fusha-app .madinah-lesson-icon {
    width: clamp(180px, 18vw, 246px);
    height: clamp(180px, 18vw, 246px);
    border-radius: 24px;
  }

  .app.fusha-app .madinah-text-stack {
    gap: 14px;
  }

  .app.fusha-app .madinah-ar-text {
    font-size: clamp(2.45rem, 3.55vw, 4.25rem);
    line-height: 1.22;
  }

  .app.fusha-app .madinah-ar-text.madinah-ar-multiline {
    line-height: 1.42 !important;
  }

  .app.fusha-app .madinah-en-text {
    font-size: clamp(1.75rem, 2.15vw, 2.3rem);
    line-height: 1.24;
  }

  .app.fusha-app .madinah-nav-row {
    width: min(920px, 78vw);
    grid-template-columns: minmax(0, 260px) 112px minmax(0, 260px);
    gap: 24px;
    margin-top: 20px;
  }

  .app.fusha-app #prevBtn,
  .app.fusha-app #nextBtn {
    min-height: 68px;
    font-size: clamp(1.45rem, 1.55vw, 1.72rem);
    white-space: nowrap;
  }

  .app.fusha-app #sayBtn {
    width: 112px !important;
    height: 112px !important;
    min-width: 112px !important;
    min-height: 112px !important;
  }

  .app.fusha-app .say-icon {
    font-size: 3rem !important;
  }
}

/* Desktop/Laptop polish pass (keep mobile untouched) */
@media (min-width: 901px) {
  .fusha-page {
    --fusha-shell-width: min(1400px, calc(100vw - 88px));
    --fusha-shell-gutter: calc((100vw - var(--fusha-shell-width)) / 2);
    background:
      radial-gradient(circle at 12% 8%, rgba(187, 224, 252, 0.42), transparent 38%),
      radial-gradient(circle at 88% 92%, rgba(160, 210, 246, 0.33), transparent 44%),
      linear-gradient(158deg, #f4f8ff, #e8f0fb);
  }

  .app.fusha-app {
    width: var(--fusha-shell-width);
    margin: 12px auto;
    height: calc(100svh - 24px);
    border-radius: 22px;
    border: 1px solid rgba(171, 198, 226, 0.82);
    box-shadow:
      0 20px 44px rgba(16, 43, 76, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.72);
    overflow: hidden;
    background: linear-gradient(160deg, rgba(243, 248, 255, 0.98), rgba(234, 243, 253, 0.98));
  }

  .fusha-page .menu-btn {
    top: 60px;
    right: calc(var(--fusha-shell-gutter) + 22px);
    width: 46px;
    height: 46px;
    border-radius: 0;
    border: 0;
    background: transparent !important;
    box-shadow: none !important;
    color: #f3f7ff;
    font-size: 2.35rem;
    line-height: 1;
    display: grid;
    place-items: center;
  }

  .app.fusha-app .fusha-announce-bar {
    min-height: 44px;
    padding: 7px 20px;
    font-size: clamp(1.06rem, 1.2vw, 1.18rem);
    letter-spacing: 0.016em;
    font-weight: 800;
  }

  .app.fusha-app .fusha-header-row {
    min-height: 90px;
    padding: 14px 22px;
    grid-template-columns: 64px 1fr 64px;
  }

  .app.fusha-app .fusha-menu-spacer,
  .app.fusha-app .fusha-header-right {
    width: 58px;
    height: 58px;
  }

  .app.fusha-app .fusha-user-initials {
    width: 52px;
    height: 52px;
    font-size: 1.16rem;
    border-width: 2px;
  }

  .app.fusha-app .header h1 {
    font-size: clamp(2.12rem, 2.45vw, 2.72rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.03em;
  }

  .app.fusha-app.start-screen .fusha-top-panel {
    min-height: calc(100% - 134px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 56px 30px;
  }

  .app.fusha-app.start-screen .fusha-splash {
    width: min(1020px, 100%);
    min-height: calc(100% - 10px);
    padding: 34px 30px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }

  .app.fusha-app.start-screen .fusha-splash .fusha-slogan-line {
    width: min(940px, 95%);
    margin: 28px 0 82px;
    font-size: clamp(2.02rem, 2.5vw, 2.72rem);
    line-height: 1.34;
    color: #2f5a7b;
    text-wrap: balance;
  }

  .app.fusha-app.start-screen .fusha-splash .fusha-brought-line {
    margin: 0 0 40px;
    font-size: clamp(3rem, 4.05vw, 4.25rem);
    line-height: 1.05;
    color: #2b5678;
    text-wrap: balance;
  }

  .app.fusha-app.start-screen .fusha-splash .fusha-splash-logo {
    width: min(560px, 56vw);
    margin: 0 0 72px;
  }

  .app.fusha-app.start-screen .fusha-splash #startBtn {
    width: min(560px, 58vw);
    min-height: 78px;
    padding-inline: 34px;
    font-size: clamp(1.66rem, 2.1vw, 2.14rem);
    white-space: nowrap;
    margin-top: 0;
  }

  .app.fusha-app.start-screen .fusha-splash .donate-btn {
    width: min(248px, 24vw);
    min-height: 56px;
    margin-top: 42px;
    margin-bottom: 8px;
    font-size: clamp(1.2rem, 1.36vw, 1.34rem);
  }

  .app.fusha-app.game-started .fusha-top-panel {
    padding: 10px 36px 12px;
  }

  .app.fusha-app .fusha-lesson-bar {
    padding: 10px 0 12px;
  }

  .app.fusha-app .fusha-lesson-bar h2 {
    font-size: clamp(1.34rem, 1.62vw, 1.84rem);
    line-height: 1.18;
    font-weight: 800;
    letter-spacing: 0.012em;
  }

  .app.fusha-app .task {
    min-height: 0;
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    align-content: stretch;
    gap: 20px;
    padding: 18px 38px 24px;
  }

  .app.fusha-app .prompt {
    width: min(1120px, calc(var(--fusha-shell-width) - 140px));
    height: min(58vh, 600px);
    min-height: 410px;
    margin: 0 auto;
    border-width: 4px;
    border-radius: 34px;
    box-shadow: 0 10px 0 var(--madinah-shadow, #b9dcfb);
  }

  .app.fusha-app .madinah-lesson-wrap {
    gap: clamp(34px, 3.3vw, 54px);
    padding: clamp(28px, 3.5vw, 48px);
  }

  .app.fusha-app .madinah-lesson-icon {
    width: clamp(210px, 18vw, 272px);
    height: clamp(210px, 18vw, 272px);
    border-radius: 26px;
    align-self: center;
  }

  .app.fusha-app .madinah-text-stack {
    gap: 14px;
    align-self: center;
  }

  .app.fusha-app .madinah-ar-text {
    font-size: clamp(2.88rem, 3.42vw, 4.18rem);
    line-height: 1.2;
    max-width: min(620px, 100%);
  }

  .app.fusha-app .madinah-ar-text.madinah-ar-multiline {
    font-size: clamp(2.36rem, 2.86vw, 3.46rem);
    line-height: 1.46 !important;
  }

  .app.fusha-app .madinah-en-text {
    font-size: clamp(1.88rem, 2.05vw, 2.36rem);
    line-height: 1.23;
    max-width: min(620px, 100%);
    text-wrap: balance;
  }

  .app.fusha-app .madinah-nav-row {
    width: min(920px, calc(var(--fusha-shell-width) - 280px));
    margin-top: 10px;
    grid-template-columns: minmax(0, 280px) 120px minmax(0, 280px);
    gap: 30px;
  }

  .app.fusha-app #prevBtn,
  .app.fusha-app #nextBtn {
    min-height: 70px;
    font-size: clamp(1.46rem, 1.5vw, 1.74rem);
    white-space: nowrap;
  }

  .app.fusha-app #sayBtn {
    width: 120px !important;
    height: 120px !important;
    min-width: 120px !important;
    min-height: 120px !important;
  }

  .app.fusha-app .say-icon {
    font-size: 3.1rem !important;
  }
}

/* Desktop stabilization override: start + lesson screens (mobile unchanged) */
@media (min-width: 901px) {
  .fusha-page {
    --fusha-shell-width: min(1360px, calc(100vw - 120px));
    --fusha-shell-gutter: calc((100vw - var(--fusha-shell-width)) / 2);
  }

  .app.fusha-app {
    width: var(--fusha-shell-width) !important;
    height: calc(100svh - 40px) !important;
    margin: 20px auto !important;
    border-radius: 24px !important;
    overflow: hidden !important;
  }

  .app.fusha-app .fusha-announce-bar {
    min-height: 42px !important;
    font-size: clamp(1rem, 1.08vw, 1.14rem) !important;
  }

  .app.fusha-app .fusha-header-row {
    min-height: 80px !important;
    padding: 10px 18px !important;
    grid-template-columns: 60px 1fr 60px !important;
  }

  .app.fusha-app .header h1 {
    font-size: clamp(1.9rem, 2.2vw, 2.4rem) !important;
    letter-spacing: 0.04em !important;
    font-weight: 650 !important;
  }

  .fusha-page .menu-btn {
    top: 62px !important;
    right: calc(var(--fusha-shell-gutter) + 18px) !important;
    width: 48px !important;
    height: 48px !important;
    font-size: 2.05rem !important;
  }

  .app.fusha-app.start-screen .fusha-top-panel {
    min-height: calc(100% - 122px) !important;
    padding: 24px 48px 34px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
  }

  .app.fusha-app.start-screen .fusha-splash {
    width: min(920px, 100%) !important;
    min-height: calc(100% - 8px) !important;
    padding: 90px 54px 32px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: center !important;
    gap: 0 !important;
    overflow: hidden !important;
  }

  .app.fusha-app.start-screen .fusha-splash .fusha-slogan-line {
    width: min(780px, 100%) !important;
    margin: 0 0 44px !important;
    font-size: clamp(1.58rem, 1.92vw, 2.02rem) !important;
    line-height: 1.42 !important;
    color: #315f7f !important;
    text-wrap: balance !important;
  }

  .app.fusha-app.start-screen .fusha-splash .fusha-brought-line {
    margin: 0 0 24px !important;
    font-size: clamp(2.34rem, 3vw, 3.08rem) !important;
    line-height: 1.08 !important;
  }

  .app.fusha-app.start-screen .fusha-splash .fusha-splash-logo {
    width: min(470px, 72%) !important;
    margin: 0 0 56px !important;
  }

  .app.fusha-app.start-screen .fusha-splash #startBtn {
    width: min(500px, 82%) !important;
    min-height: 74px !important;
    font-size: clamp(1.55rem, 1.95vw, 1.98rem) !important;
    white-space: nowrap !important;
    margin-top: 0 !important;
  }

  .app.fusha-app.start-screen .fusha-splash .donate-btn {
    width: min(230px, 26vw) !important;
    min-height: 50px !important;
    margin-top: auto !important;
    margin-bottom: 8px !important;
    font-size: clamp(1.15rem, 1.22vw, 1.28rem) !important;
  }

  .app.fusha-app.game-started .fusha-top-panel {
    padding: 8px 24px 10px !important;
    min-height: auto !important;
  }

  .app.fusha-app .fusha-lesson-bar {
    padding: 10px 0 12px !important;
  }

  .app.fusha-app .fusha-lesson-bar h2 {
    font-size: clamp(1.34rem, 1.5vw, 1.72rem) !important;
    letter-spacing: 0.014em !important;
  }

  .app.fusha-app .task {
    padding: 14px 30px 20px !important;
    gap: 14px !important;
    grid-template-rows: minmax(0, 1fr) auto !important;
  }

  .app.fusha-app .prompt {
    width: min(1000px, calc(var(--fusha-shell-width) - 220px)) !important;
    min-height: 340px !important;
    height: min(52vh, 500px) !important;
    margin: 0 auto !important;
    border-radius: 30px !important;
  }

  .app.fusha-app .madinah-lesson-wrap {
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr) !important;
    gap: clamp(24px, 2.6vw, 42px) !important;
    padding: clamp(26px, 3vw, 40px) clamp(34px, 3.4vw, 52px) !important;
    align-items: center !important;
  }

  .app.fusha-app .madinah-lesson-icon {
    width: clamp(190px, 15vw, 250px) !important;
    height: clamp(190px, 15vw, 250px) !important;
    border-radius: 24px !important;
  }

  .app.fusha-app .madinah-text-stack {
    max-width: 560px !important;
    gap: 12px !important;
    align-items: center !important;
    justify-items: center !important;
  }

  .app.fusha-app .madinah-ar-text {
    font-size: clamp(2.34rem, 2.78vw, 3.48rem) !important;
    line-height: 1.2 !important;
    text-align: center !important;
  }

  .app.fusha-app .madinah-ar-text.madinah-ar-multiline {
    font-size: clamp(2.04rem, 2.36vw, 3.02rem) !important;
    line-height: 1.34 !important;
  }

  .app.fusha-app .madinah-en-text {
    max-width: 24ch !important;
    font-size: clamp(1.48rem, 1.74vw, 2rem) !important;
    line-height: 1.24 !important;
    text-align: center !important;
    text-wrap: balance !important;
  }

  .app.fusha-app .madinah-nav-row {
    width: min(780px, calc(var(--fusha-shell-width) - 360px)) !important;
    grid-template-columns: minmax(0, 250px) 112px minmax(0, 250px) !important;
    gap: 24px !important;
    margin-top: 8px !important;
  }

  .app.fusha-app #prevBtn,
  .app.fusha-app #nextBtn {
    min-height: 66px !important;
    font-size: clamp(1.34rem, 1.42vw, 1.62rem) !important;
  }

  .app.fusha-app #sayBtn {
    width: 112px !important;
    height: 112px !important;
    min-width: 112px !important;
    min-height: 112px !important;
  }

  .app.fusha-app .say-icon {
    font-size: 3.05rem !important;
  }
}

/* Final desktop fit guarantee: keep full UI visible without scrolling */
@media (min-width: 901px) {
  .fusha-page {
    --fusha-shell-width: min(1380px, calc(100vw - 96px)) !important;
    --fusha-shell-gutter: calc((100vw - var(--fusha-shell-width)) / 2) !important;
  }

  .app.fusha-app {
    width: var(--fusha-shell-width) !important;
    height: calc(100vh - 18px) !important;
    margin: 9px auto !important;
    display: grid !important;
    grid-template-rows: auto auto minmax(0, 1fr) !important;
    overflow: hidden !important;
  }

  .app.fusha-app.start-screen {
    grid-template-rows: auto minmax(0, 1fr) !important;
  }

  .app.fusha-app.start-screen .task {
    display: none !important;
  }

  .app.fusha-app .header {
    padding: 0 !important;
    border-radius: 0 !important;
  }

  .app.fusha-app .fusha-announce-bar {
    min-height: 36px !important;
    padding: 4px 18px !important;
    font-size: clamp(0.95rem, 1vw, 1.08rem) !important;
  }

  .app.fusha-app .fusha-header-row {
    min-height: 70px !important;
    padding: 8px 16px !important;
    grid-template-columns: 56px 1fr 56px !important;
  }

  .app.fusha-app .fusha-menu-spacer,
  .app.fusha-app .fusha-header-right {
    width: 52px !important;
    height: 52px !important;
  }

  .app.fusha-app .header h1 {
    font-size: clamp(1.72rem, 2.02vw, 2.22rem) !important;
    letter-spacing: 0.032em !important;
    font-weight: 650 !important;
  }

  .fusha-page .menu-btn {
    top: 52px !important;
    right: calc(var(--fusha-shell-gutter) + 16px) !important;
    width: 44px !important;
    height: 44px !important;
    font-size: 1.95rem !important;
  }

  .app.fusha-app.start-screen .fusha-top-panel {
    min-height: 0 !important;
    padding: 14px 34px 20px !important;
    display: flex !important;
    align-items: stretch !important;
    justify-content: center !important;
    overflow: hidden !important;
  }

  .app.fusha-app.start-screen .fusha-splash {
    width: min(980px, 100%) !important;
    min-height: 100% !important;
    padding: clamp(24px, 3.8vh, 40px) 28px clamp(14px, 2.2vh, 22px) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 0 !important;
    overflow: hidden !important;
  }

  .app.fusha-app.start-screen .fusha-splash .fusha-slogan-line {
    width: min(820px, 96%) !important;
    margin: 0 0 clamp(28px, 4.4vh, 46px) !important;
    font-size: clamp(1.3rem, 1.6vw, 1.82rem) !important;
    line-height: 1.44 !important;
  }

  .app.fusha-app.start-screen .fusha-splash .fusha-brought-line {
    margin: 0 0 clamp(16px, 2.8vh, 28px) !important;
    font-size: clamp(1.9rem, 2.26vw, 2.58rem) !important;
    line-height: 1.08 !important;
  }

  .app.fusha-app.start-screen .fusha-splash .fusha-splash-logo {
    width: min(620px, 84%) !important;
    margin: 0 0 clamp(30px, 4.8vh, 52px) !important;
  }

  .app.fusha-app.start-screen .fusha-splash #startBtn {
    width: min(670px, 80%) !important;
    min-height: 60px !important;
    font-size: clamp(1.26rem, 1.58vw, 1.64rem) !important;
    line-height: 1.08 !important;
    white-space: nowrap !important;
  }

  .app.fusha-app.start-screen .fusha-splash .donate-btn {
    width: min(240px, 28vw) !important;
    min-height: 42px !important;
    margin-top: auto !important;
    margin-bottom: clamp(10px, 2.4vh, 24px) !important;
    font-size: clamp(1rem, 1.02vw, 1.16rem) !important;
  }

  .app.fusha-app.game-started .fusha-top-panel {
    min-height: auto !important;
    padding: 8px 22px 10px !important;
  }

  .app.fusha-app .fusha-lesson-bar {
    padding: 8px 0 10px !important;
  }

  .app.fusha-app .fusha-lesson-bar h2 {
    font-size: clamp(1.22rem, 1.35vw, 1.54rem) !important;
    line-height: 1.15 !important;
  }

  .app.fusha-app .task {
    min-height: 0 !important;
    padding: 12px 24px 16px !important;
    gap: 14px !important;
    grid-template-rows: minmax(0, 1fr) auto !important;
  }

  .app.fusha-app .prompt {
    width: min(920px, calc(var(--fusha-shell-width) - 260px)) !important;
    height: min(47vh, 430px) !important;
    min-height: 280px !important;
    margin: 0 auto !important;
    border-radius: 28px !important;
  }

  .app.fusha-app .madinah-lesson-wrap {
    height: 100% !important;
    grid-template-columns: minmax(170px, 220px) minmax(0, 1fr) !important;
    gap: clamp(24px, 2.6vw, 40px) !important;
    padding: clamp(20px, 2.8vh, 34px) clamp(28px, 3vw, 46px) !important;
    align-items: center !important;
  }

  .app.fusha-app .madinah-lesson-icon {
    width: clamp(148px, 11.6vw, 196px) !important;
    height: clamp(148px, 11.6vw, 196px) !important;
  }

  .app.fusha-app .madinah-text-stack {
    max-width: 560px !important;
    gap: 12px !important;
    align-items: center !important;
  }

  .app.fusha-app .madinah-ar-text {
    font-size: clamp(1.82rem, 2.22vw, 2.82rem) !important;
    line-height: 1.26 !important;
    text-align: center !important;
  }

  .app.fusha-app .madinah-ar-text.madinah-ar-multiline {
    font-size: clamp(1.62rem, 1.94vw, 2.36rem) !important;
    line-height: 1.38 !important;
  }

  .app.fusha-app .madinah-en-text {
    max-width: 24ch !important;
    font-size: clamp(1.16rem, 1.28vw, 1.56rem) !important;
    line-height: 1.24 !important;
  }

  .app.fusha-app .madinah-nav-row {
    width: min(700px, calc(var(--fusha-shell-width) - 460px)) !important;
    margin-top: 6px !important;
    grid-template-columns: minmax(0, 210px) 90px minmax(0, 210px) !important;
    gap: 14px !important;
  }

  .app.fusha-app #prevBtn,
  .app.fusha-app #nextBtn {
    min-height: 52px !important;
    font-size: clamp(1.14rem, 1.16vw, 1.34rem) !important;
  }

  .app.fusha-app #sayBtn {
    width: 90px !important;
    height: 90px !important;
    min-width: 90px !important;
    min-height: 90px !important;
  }

  .app.fusha-app .say-icon {
    font-size: 2.3rem !important;
  }
}

/* Extra compact desktop heights (e.g., laptop with browser/chrome bars) */
@media (min-width: 901px) and (max-height: 820px) {
  .app.fusha-app.start-screen {
    grid-template-rows: auto minmax(0, 1fr) !important;
  }

  .app.fusha-app.start-screen .task {
    display: none !important;
  }

  .app.fusha-app {
    height: calc(100vh - 12px) !important;
    margin: 6px auto !important;
  }

  .app.fusha-app .fusha-announce-bar {
    min-height: 32px !important;
    font-size: 0.95rem !important;
  }

  .app.fusha-app .fusha-header-row {
    min-height: 62px !important;
  }

  .app.fusha-app .header h1 {
    font-size: clamp(1.56rem, 1.8vw, 1.92rem) !important;
  }

  .fusha-page .menu-btn {
    top: 45px !important;
  }

  .app.fusha-app.start-screen .fusha-splash {
    padding-top: 12px !important;
  }

  .app.fusha-app.start-screen .fusha-splash .fusha-slogan-line {
    margin-bottom: 14px !important;
    font-size: clamp(1.12rem, 1.3vw, 1.44rem) !important;
  }

  .app.fusha-app.start-screen .fusha-splash .fusha-brought-line {
    font-size: clamp(1.52rem, 1.84vw, 2.02rem) !important;
  }

  .app.fusha-app.start-screen .fusha-splash .fusha-splash-logo {
    width: min(470px, 76%) !important;
    margin-bottom: 16px !important;
  }

  .app.fusha-app.start-screen .fusha-splash #startBtn {
    min-height: 52px !important;
    font-size: clamp(1.08rem, 1.26vw, 1.34rem) !important;
    width: min(560px, 80%) !important;
  }

  .app.fusha-app .prompt {
    height: min(44vh, 390px) !important;
    min-height: 246px !important;
  }

  .app.fusha-app .madinah-lesson-icon {
    width: clamp(126px, 10.2vw, 170px) !important;
    height: clamp(126px, 10.2vw, 170px) !important;
  }

  .app.fusha-app .madinah-ar-text {
    font-size: clamp(1.5rem, 1.86vw, 2.24rem) !important;
  }

  .app.fusha-app .madinah-en-text {
    font-size: clamp(1rem, 1.14vw, 1.34rem) !important;
  }

  .app.fusha-app #prevBtn,
  .app.fusha-app #nextBtn {
    min-height: 48px !important;
  }

  .app.fusha-app #sayBtn {
    width: 82px !important;
    height: 82px !important;
    min-width: 82px !important;
    min-height: 82px !important;
  }
}

/* Mobile landscape: allow vertical scrolling so all controls remain reachable */
@media (max-width: 1100px) and (max-height: 600px) and (orientation: landscape) {
  html,
  body {
    height: auto !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
  }

  .fusha-page {
    position: static !important;
    inset: auto !important;
    width: 100% !important;
    height: auto !important;
    min-height: 100svh !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    touch-action: auto !important;
    overscroll-behavior: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .app.fusha-app {
    display: block !important;
    width: 100vw !important;
    height: auto !important;
    min-height: 0 !important;
    overflow: visible !important;
    margin: 0 auto !important;
    border-radius: 0 !important;
  }

  .menu-btn {
    position: absolute !important;
    top: calc(env(safe-area-inset-top, 0px) + 34px) !important;
    right: 14px !important;
    left: auto !important;
    width: 44px !important;
    height: 44px !important;
    font-size: 1.9rem !important;
    color: #f4f8ff !important;
    z-index: 70 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .app.fusha-app.start-screen {
    display: block !important;
    grid-template-rows: none !important;
  }

  .app.fusha-app.start-screen .fusha-top-panel,
  .app.fusha-app.start-screen .fusha-splash,
  .app.fusha-app .task {
    min-height: auto !important;
    height: auto !important;
    overflow: visible !important;
  }

  .app.fusha-app.start-screen .fusha-splash {
    width: min(760px, 100%) !important;
    padding: 14px 16px 18px !important;
    justify-content: flex-start !important;
    padding-bottom: 34px !important;
  }

  .app.fusha-app.start-screen .fusha-splash .fusha-slogan-line {
    margin: 0 0 12px !important;
    font-size: clamp(1.02rem, 2.5vw, 1.2rem) !important;
    line-height: 1.34 !important;
  }

  .app.fusha-app.start-screen .fusha-splash .fusha-brought-line {
    margin: 0 0 10px !important;
    font-size: clamp(1.36rem, 3.2vw, 1.72rem) !important;
    line-height: 1.1 !important;
  }

  .app.fusha-app.start-screen .fusha-splash .fusha-splash-logo {
    width: min(500px, 68vw) !important;
    margin: 0 0 14px !important;
  }

  .app.fusha-app.start-screen .fusha-splash #startBtn {
    width: min(560px, 72vw) !important;
    min-height: 48px !important;
    font-size: clamp(1.06rem, 2.4vw, 1.24rem) !important;
  }

  .app.fusha-app.start-screen .fusha-splash .donate-btn {
    width: min(210px, 32vw) !important;
    min-height: 40px !important;
    margin-top: 24px !important;
    margin-bottom: 16px !important;
    font-size: clamp(0.94rem, 2vw, 1.06rem) !important;
  }

  .app.fusha-app .fusha-lesson-bar {
    padding: 6px 0 8px !important;
  }

  .app.fusha-app .fusha-lesson-bar h2 {
    font-size: clamp(1rem, 2.2vw, 1.22rem) !important;
  }

  .app.fusha-app .task {
    padding: 8px 12px 12px !important;
    gap: 8px !important;
  }

  .app.fusha-app .prompt {
    width: min(760px, 94vw) !important;
    min-height: 220px !important;
    height: auto !important;
  }

  .app.fusha-app .madinah-nav-row {
    width: min(600px, 92vw) !important;
    margin-top: 4px !important;
    gap: 10px !important;
    grid-template-columns: minmax(0, 190px) 82px minmax(0, 190px) !important;
  }

  .app.fusha-app #prevBtn,
  .app.fusha-app #nextBtn {
    min-height: 44px !important;
    font-size: clamp(1rem, 2.2vw, 1.16rem) !important;
  }

  .app.fusha-app #sayBtn {
    width: 78px !important;
    height: 78px !important;
    min-width: 78px !important;
    min-height: 78px !important;
  }

  .app.fusha-app .say-icon {
    font-size: 2rem !important;
  }
}
