:root {
  color-scheme: dark;
  --ink: #f8fbff;
  --muted: #afbbc8;
  --panel: rgba(12, 18, 26, 0.76);
  --edge: rgba(255, 255, 255, 0.16);
  --mint: #6ef1b6;
  --gold: #ffd267;
  --rose: #ff6d8c;
  --cyan: #63d8ff;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
}

body {
  overflow: hidden;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 24% 16%, rgba(110, 241, 182, 0.22), transparent 30%),
    radial-gradient(circle at 76% 22%, rgba(255, 210, 103, 0.18), transparent 26%),
    linear-gradient(145deg, #081018 0%, #17151f 48%, #101d20 100%);
  overscroll-behavior: none;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

button {
  border: 0;
  border-radius: 8px;
  color: #081018;
  cursor: pointer;
  font: inherit;
  font-weight: 850;
}

button:focus-visible {
  outline: 3px solid rgba(99, 216, 255, 0.72);
  outline-offset: 2px;
}

.shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 148px;
  gap: 16px;
  width: min(100vw, 1120px);
  height: 100dvh;
  margin: 0 auto;
  padding: 16px;
}

.game-panel {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--edge);
  border-radius: 8px;
  background: #071017;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  overscroll-behavior: none;
  touch-action: none;
}

canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.topbar {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  pointer-events: none;
}

.topbar > div,
.stat,
.league,
.leaderboard,
.streak-path,
.passport,
.missions,
.trail,
.boosts,
.shop,
.settings,
.sound {
  border: 1px solid var(--edge);
  border-radius: 8px;
  background: var(--panel);
  backdrop-filter: blur(18px);
}

.topbar > div {
  min-width: 0;
  padding: 9px 12px;
}

.label,
.stat span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: uppercase;
}

.topbar strong,
.stat strong {
  display: block;
  margin-top: 2px;
  overflow: hidden;
  font-size: clamp(1.05rem, 2.4vw, 1.55rem);
  line-height: 1;
  text-overflow: ellipsis;
}

.overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  padding: 24px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(12, 18, 22, 0.58), rgba(3, 7, 10, 0.82) 68%),
    rgba(3, 7, 10, 0.68);
  backdrop-filter: blur(3px) saturate(0.82);
}

.overlay.is-results {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.overlay[hidden] {
  display: none;
}

.overlay:not([hidden]) ~ .hint {
  display: none;
}

.coach:not([hidden]) ~ .hint {
  bottom: 60px;
}

.mark {
  width: 96px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, #fff 0 8%, transparent 9%),
    conic-gradient(from 30deg, var(--mint), var(--gold), var(--rose), var(--cyan), var(--mint));
  box-shadow: 0 0 52px rgba(110, 241, 182, 0.34);
  mask: radial-gradient(circle, transparent 0 43%, #000 45%);
}

h1 {
  margin: 0;
  font-size: clamp(2.4rem, 7vw, 5rem);
  letter-spacing: 0;
}

p {
  max-width: 520px;
  margin: 0;
  color: #dbe4ec;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  line-height: 1.45;
}

.howto {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  width: min(100%, 560px);
}

.howto div {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 10px 8px;
  background: rgba(255, 255, 255, 0.09);
}

.howto strong {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  margin: 0 auto 6px;
  border-radius: 999px;
  color: #071017;
  background: var(--gold);
  font-size: 0.9rem;
}

.howto span {
  display: block;
  color: #eef6fb;
  font-size: 0.76rem;
  font-weight: 850;
  line-height: 1.2;
}

.results {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(82px, 1fr));
  gap: 8px;
  width: min(100%, 520px);
}

.result {
  border: 1px solid var(--edge);
  border-radius: 8px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.1);
}

.result span {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.result strong {
  display: block;
  margin-top: 3px;
  font-size: 1.2rem;
  line-height: 1;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}

.actions button {
  min-width: 118px;
  padding: 12px 18px;
  background: var(--mint);
}

.actions button + button {
  background: var(--gold);
}

.actions #reward {
  background: var(--cyan);
}

.combo,
.rush {
  position: absolute;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 999px;
  padding: 8px 14px;
  color: #061016;
  background: var(--gold);
  font-weight: 900;
  box-shadow: 0 8px 24px rgba(255, 210, 103, 0.24);
  pointer-events: none;
}

.coach {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: flex;
  gap: 8px;
  pointer-events: none;
}

.coach[hidden] {
  display: none;
}

.coach span {
  min-width: 74px;
  border: 1px solid var(--edge);
  border-radius: 999px;
  padding: 8px 11px;
  color: rgba(248, 251, 255, 0.62);
  background: rgba(8, 14, 20, 0.62);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
  transition:
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.coach span.active {
  color: #071017;
  background: var(--gold);
  transform: translateY(-2px);
}

.rush {
  top: 134px;
  color: #071017;
  background: var(--mint);
  box-shadow: 0 8px 30px rgba(110, 241, 182, 0.36);
}

.pause {
  position: absolute;
  top: 104px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--edge);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(8, 14, 20, 0.7);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
  font-size: 0.82rem;
  letter-spacing: 0;
  backdrop-filter: blur(14px);
}

.pause[hidden] {
  display: none;
}

.pause:hover {
  background: rgba(255, 255, 255, 0.14);
}

.hint {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  border: 1px solid var(--edge);
  border-radius: 999px;
  padding: 8px 12px;
  color: #dfeaf3;
  background: rgba(8, 14, 20, 0.62);
  font-size: 0.9rem;
  font-weight: 850;
  pointer-events: none;
}

.side {
  display: grid;
  align-content: start;
  grid-auto-rows: min-content;
  gap: 9px;
  min-width: 0;
  min-height: 0;
  overflow-y: auto;
  padding-right: 2px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.28) transparent;
  overscroll-behavior: contain;
  touch-action: pan-y;
}

.stat,
.league,
.leaderboard,
.streak-path,
.passport,
.missions,
.trail,
.boosts,
.shop,
.settings,
.sound {
  padding: 11px;
}

.gift {
  width: 100%;
  min-height: 30px;
  margin-top: 9px;
  padding: 7px 8px;
  color: #071017;
  background: var(--gold);
  font-size: 0.76rem;
}

.gift:disabled {
  cursor: default;
  color: rgba(248, 251, 255, 0.52);
  background: rgba(255, 255, 255, 0.1);
}

.league,
.streak-path,
.passport,
.missions,
.trail,
.boosts,
.shop,
.settings {
  align-self: start;
}

#missions,
#league,
#leaderboardList,
#streakPath,
#passport,
#trail,
#boosts,
#shop {
  display: grid;
  gap: 7px;
  margin-top: 8px;
}

#streakPath {
  grid-template-columns: 1fr;
  gap: 8px;
}

.league-top {
  display: grid;
  gap: 3px;
  color: #e9f2f9;
}

.league-top strong {
  font-size: 1rem;
  line-height: 1;
}

.league-top span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.leaderboard-profile { display: grid; gap: 5px; margin-top: 8px; }
.leaderboard-profile label { color: rgba(248, 251, 255, 0.62); font-size: 0.7rem; font-weight: 800; }
.leaderboard-profile > div { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 6px; }
.leaderboard-profile input {
  min-width: 0;
  border: 1px solid var(--edge);
  border-radius: 9px;
  padding: 8px 9px;
  color: var(--ink);
  background: rgba(8, 14, 20, 0.72);
  font: inherit;
  font-size: 0.76rem;
}
.leaderboard-profile button, .leaderboard-tabs button { min-height: 34px; padding: 7px 10px; font-size: 0.72rem; }
.leaderboard-tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-top: 8px; }
.leaderboard-tabs button { color: rgba(248, 251, 255, 0.68); background: rgba(255, 255, 255, 0.07); }
.leaderboard-tabs button[aria-pressed="true"] { color: #071017; background: var(--gold); }
.leaderboard-status { margin: 8px 0 0; color: rgba(248, 251, 255, 0.62); font-size: 0.7rem; line-height: 1.35; }
.leaderboard-status[data-state="error"] { color: #ff9bab; }
.leaderboard-status[data-state="ready"] { color: var(--mint); }
.leaderboard-list { max-height: 220px; overflow-y: auto; padding: 0; list-style: none; }
.leaderboard-list li {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) auto;
  gap: 7px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 6px 1px;
  color: rgba(248, 251, 255, 0.64);
  font-size: 0.73rem;
}
.leaderboard-list li:last-child { border-bottom: 0; }
.leaderboard-list strong { overflow: hidden; color: #edf7ff; text-overflow: ellipsis; white-space: nowrap; }
.leaderboard-list li > span:last-child { color: var(--gold); font-weight: 900; }

.path-top,
.passport-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: #e9f2f9;
  font-size: 0.78rem;
  font-weight: 780;
}

.path-top strong,
.passport-top strong {
  color: var(--gold);
  font-size: 0.72rem;
  white-space: nowrap;
}

.path-dots,
.passport-dots {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 4px;
}

.path-dot,
.passport-dot {
  display: grid;
  place-items: center;
  min-width: 0;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(248, 251, 255, 0.58);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.58rem;
  font-weight: 850;
  line-height: 1;
}

.path-dot.done {
  color: #071017;
  background: var(--mint);
}

.path-dot.chest {
  border-color: rgba(255, 210, 103, 0.48);
  box-shadow: inset 0 0 0 1px rgba(255, 210, 103, 0.12);
}

.path-dot.next {
  color: #071017;
  background: var(--gold);
}

.passport-dot {
  position: relative;
}

.passport-dot.done::before {
  content: "";
  width: 45%;
  height: 45%;
  border-radius: 999px;
  background: currentColor;
}

.passport-dot.today {
  border-color: rgba(255, 210, 103, 0.62);
  box-shadow: 0 0 0 2px rgba(255, 210, 103, 0.1);
}

.passport button {
  width: 100%;
  min-height: 28px;
  padding: 6px 8px;
  color: #071017;
  background: var(--gold);
  font-size: 0.78rem;
}

.passport button:disabled {
  cursor: default;
  color: rgba(248, 251, 255, 0.52);
  background: rgba(255, 255, 255, 0.1);
}

.mission,
.trail-step,
.boost,
.shop-item {
  display: grid;
  gap: 4px;
}

.mission-top,
.trail-top,
.boost-top,
.shop-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: #e9f2f9;
  font-size: 0.78rem;
  font-weight: 780;
}

.mission-top span,
.trail-top span,
.boost-top span,
.shop-top span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.mission-top strong,
.trail-top strong,
.boost-top strong,
.shop-top strong {
  color: var(--gold);
  font-size: 0.72rem;
  white-space: nowrap;
}

.boost button,
.shop button,
.reset {
  width: 100%;
  min-height: 28px;
  padding: 6px 8px;
  color: #071017;
  background: var(--cyan);
  font-size: 0.78rem;
}

.boost button:disabled,
.shop button:disabled {
  cursor: default;
  color: rgba(248, 251, 255, 0.52);
  background: rgba(255, 255, 255, 0.1);
}

.settings-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  margin-top: 8px;
}

.settings-links a {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 7px 6px;
  color: #dfeaf3;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.72rem;
  font-weight: 850;
  text-align: center;
  text-decoration: none;
}

.settings-links a:focus-visible {
  outline: 3px solid rgba(99, 216, 255, 0.72);
  outline-offset: 2px;
}

.reset {
  margin-top: 7px;
  background: var(--rose);
}

.shop-top span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.shop-top i {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
}

.track {
  overflow: hidden;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.fill {
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--mint), var(--gold));
  transition: width 180ms ease;
}

.sound {
  position: sticky;
  bottom: 0;
  align-self: stretch;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.09);
}

.sound[aria-pressed="true"] {
  color: #071017;
  background: var(--cyan);
}

.info-page {
  display: grid;
  min-height: 100dvh;
  place-items: center;
  overflow-y: auto;
  padding: 18px;
  touch-action: auto;
  user-select: text;
}

.info-panel {
  width: min(100%, 680px);
  border: 1px solid var(--edge);
  border-radius: 8px;
  padding: 22px;
  background: var(--panel);
  backdrop-filter: blur(18px);
}

.info-panel a {
  color: var(--gold);
  font-weight: 850;
  text-decoration: none;
}

.info-panel h1 {
  margin-top: 14px;
  font-size: clamp(2rem, 6vw, 3.4rem);
}

.info-panel p {
  max-width: none;
  margin-top: 14px;
}

.developer-support {
  margin-top: 24px;
  border-top: 1px solid var(--edge);
  padding-top: 20px;
}

.developer-support h2 {
  margin: 0;
  color: var(--gold);
  font-size: clamp(1.35rem, 4vw, 2rem);
}

.support-button {
  display: inline-flex;
  margin-top: 16px;
  border-radius: 8px;
  padding: 11px 15px;
  color: #081018 !important;
  background: var(--gold);
  font-weight: 900;
}

.support-button:focus-visible {
  outline: 3px solid rgba(99, 216, 255, 0.72);
  outline-offset: 3px;
}

@media (max-width: 760px) {
  html,
  body {
    height: 100%;
    min-height: 100dvh;
    overflow: hidden;
  }

  .shell {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 64dvh) minmax(0, 1fr);
    gap: 10px;
    min-height: 100svh;
    height: var(--app-height, 100dvh);
    padding:
      max(8px, env(safe-area-inset-top))
      max(8px, env(safe-area-inset-right))
      max(10px, env(safe-area-inset-bottom))
      max(8px, env(safe-area-inset-left));
  }

  .side {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    max-height: none;
    overflow-y: auto;
    padding-bottom: max(8px, env(safe-area-inset-bottom));
  }

  body.has-results .shell {
    grid-template-rows: minmax(0, 1fr);
  }

  body.has-results .side {
    display: none;
  }

  .overlay {
    gap: 10px;
    padding: 18px;
  }

  .overlay.is-results {
    align-content: start;
    place-items: center;
    padding: 14px 16px 18px;
  }

  .overlay.is-results .mark {
    width: 64px;
  }

  .overlay.is-results h1 {
    font-size: clamp(2.35rem, 11vw, 4rem);
  }

  .overlay.is-results p {
    font-size: clamp(0.92rem, 3.6vw, 1.05rem);
    line-height: 1.3;
  }

  .overlay.is-results .results {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: min(100%, 430px);
    gap: 7px;
  }

  .overlay.is-results .result {
    padding: 8px 7px;
  }

  .overlay.is-results .result span {
    font-size: 0.62rem;
  }

  .overlay.is-results .result strong {
    font-size: 1.05rem;
  }

  .overlay.is-results .actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 430px);
    gap: 8px;
    margin-top: 4px;
  }

  .overlay.is-results .actions button {
    min-width: 0;
    min-height: 48px;
    padding: 10px 8px;
    font-size: clamp(0.86rem, 3.8vw, 1rem);
  }

  .overlay.is-results .actions #reward {
    min-height: 42px;
    order: 4;
  }

  .overlay.is-results .actions #share {
    order: 3;
  }

  .stat,
  .league,
  .leaderboard,
  .streak-path,
  .passport,
  .missions,
  .trail,
  .boosts,
  .shop,
  .settings,
  .sound {
    min-height: 58px;
    padding: 9px;
  }

  .league,
  .leaderboard,
  .streak-path,
  .passport,
  .missions,
  .trail,
  .boosts,
  .shop,
  .settings {
    grid-column: 1 / -1;
  }

  #missions,
  #league,
  #leaderboardList,
  #streakPath,
  #passport,
  #trail,
  #boosts,
  #shop {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin-top: 8px;
  }

  #streakPath {
    grid-template-columns: 1fr;
  }

  #league {
    grid-template-columns: 1fr;
  }

  #leaderboardList {
    grid-template-columns: 1fr;
  }

  #passport {
    grid-template-columns: 1fr;
  }

  .mission,
  .trail-step,
  .boost,
  .shop-item {
    min-width: 0;
  }

  .mission-top,
  .trail-top,
  .boost-top,
  .shop-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .sound {
    position: static;
    align-self: stretch;
  }

  .topbar {
    top: 10px;
    left: 10px;
    right: 10px;
  }

  .topbar > div {
    padding: 8px;
  }

  .pause {
    top: 82px;
    right: 10px;
    width: 38px;
    height: 38px;
  }

  .coach {
    right: 10px;
    bottom: 12px;
  }

  .coach span {
    min-width: 64px;
    padding: 7px 9px;
    font-size: 0.72rem;
  }

  .label,
  .stat span {
    font-size: 0.64rem;
  }
}

@media (max-width: 420px) {
  .side {
    gap: 6px;
  }

  .stat strong {
    font-size: 0.98rem;
  }

  .sound {
    font-size: 0.8rem;
  }

  .path-dot {
    font-size: 0.52rem;
  }

  .coach {
    left: 10px;
    right: 10px;
    justify-content: center;
  }

  .gift {
    min-height: 28px;
    font-size: 0.72rem;
  }

  .boost-top,
  .trail-top,
  .mission-top,
  .shop-top {
    font-size: 0.74rem;
  }

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

  .overlay.is-results {
    gap: 8px;
    padding: 10px 12px 14px;
  }

  .overlay.is-results .mark {
    width: 48px;
  }

  .overlay.is-results h1 {
    font-size: clamp(2rem, 10vw, 2.85rem);
  }

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

  .overlay.is-results .result {
    padding: 7px 5px;
  }

  .overlay.is-results .result strong {
    font-size: 0.98rem;
  }

  .howto {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .howto div {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    text-align: left;
  }

  .howto strong {
    flex: 0 0 auto;
    margin: 0;
  }
}

@media (max-width: 760px) and (max-height: 700px) and (orientation: portrait) {
  .shell { grid-template-rows: minmax(0, 68dvh) minmax(0, 1fr); gap: 7px; }
  .overlay { gap: 6px; padding: 10px; }
  .overlay .mark { width: 58px; }
  .overlay h1 { font-size: clamp(2rem, 10vw, 2.8rem); }
  .overlay p { font-size: 0.86rem; line-height: 1.25; }
  .howto { gap: 4px; }
  .howto div { padding: 6px 8px; font-size: 0.75rem; }
  .actions { margin-top: 2px; }
  .actions button { min-height: 44px; padding: 9px 12px; }
}

@media (max-width: 920px) and (max-height: 520px) and (orientation: landscape) {
  html, body { height: 100%; min-height: 100dvh; overflow: hidden; }
  .shell {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 32vw);
    grid-template-rows: minmax(0, 1fr);
    gap: 8px;
    width: 100%;
    height: var(--app-height, 100dvh);
    min-height: 100svh;
    padding:
      max(6px, env(safe-area-inset-top))
      max(8px, env(safe-area-inset-right))
      max(6px, env(safe-area-inset-bottom))
      max(8px, env(safe-area-inset-left));
  }
  .side { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); max-height: none; overflow-y: auto; }
  .league, .leaderboard, .streak-path, .passport, .missions, .trail, .boosts, .shop, .settings { grid-column: 1 / -1; }
  .overlay { gap: 6px; padding: 10px; }
  .overlay .mark { width: 52px; }
  .overlay h1 { font-size: clamp(1.8rem, 6vw, 2.6rem); }
  .overlay p { font-size: 0.78rem; line-height: 1.2; }
  .howto { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 5px; }
  .howto div { padding: 6px; font-size: 0.68rem; }
  .actions { margin-top: 0; }
  .actions button { min-height: 40px; padding: 8px 12px; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
