:root {
  color-scheme: dark;
  --bg: #0f1020;
  --panel: #1a1b28;
  --panel-2: #212233;
  --accent: #6842ff;
  --accent-2: #8b6dff;
  --secondary: #2a2b3d;
  --text: #fff;
  --muted: #aaadbe;
  --gold: #ffc934;
  --xp: #43d9ff;
  --hp: #ff4f6d;
  --font:
    "Nunito", ui-rounded, "SF Pro Rounded", system-ui, -apple-system, "Segoe UI", sans-serif;
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  min-width: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-weight: 700;
}
body {
  padding: 8px;
  overflow-x: hidden;
}
button {
  font: inherit;
  color: inherit;
}
:focus-visible {
  outline: 3px solid #ffd84d;
  outline-offset: 2px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
[hidden] {
  display: none !important;
}

.hh-shell {
  max-width: 1000px;
  margin: 0 auto;
}

/* ---------- HUD ---------- */
.hh-hud {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  min-width: 0;
}
.hh-logo {
  margin: 0;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.02em;
  white-space: nowrap;
  color: #ffe36e;
  text-shadow:
    0 2px 0 #c2621c,
    0 4px 10px rgba(255, 140, 40, 0.35);
}
.hh-logo span {
  color: #ff7a59;
  text-shadow:
    0 2px 0 #8d2a2a,
    0 4px 10px rgba(255, 80, 80, 0.35);
}
.hh-chips {
  display: flex;
  gap: 6px;
  flex: 1;
  justify-content: flex-end;
  min-width: 0;
}
.hh-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, #262739, #1d1e2d);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 2px 6px rgba(0, 0, 0, 0.3);
  font-size: 15px;
  white-space: nowrap;
}
.hh-chip-label {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hh-chip strong {
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}
.hh-chip-gold strong {
  color: var(--gold);
}
.hh-coin {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff6b0, #ffc934 45%, #d48a0c 100%);
  box-shadow:
    inset 0 -2px 0 rgba(150, 80, 0, 0.5),
    0 1px 2px rgba(0, 0, 0, 0.4);
  flex: none;
}
.hh-icon-btn {
  width: 42px;
  height: 42px;
  flex: none;
  border: 0;
  border-radius: 50%;
  background: var(--secondary);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 3px 0 #15151f;
}
.hh-icon-btn:disabled {
  opacity: 0.4;
  cursor: default;
}

/* ---------- Stage ---------- */
.hh-stage {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  background: #1d3b22;
  box-shadow:
    0 0 0 3px #2a2b3d,
    0 14px 40px rgba(0, 0, 0, 0.5);
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
}
#game {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  outline: none;
}
#game:focus-visible {
  outline: 3px solid #ffd84d;
  outline-offset: -3px;
}

.hh-top {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  padding: 8px 10px 0;
  pointer-events: none;
}
.hh-xp {
  position: relative;
  height: 18px;
  border-radius: 999px;
  background: rgba(10, 12, 30, 0.72);
  box-shadow:
    inset 0 2px 4px rgba(0, 0, 0, 0.5),
    0 0 0 2px rgba(255, 255, 255, 0.12);
  overflow: hidden;
}
.hh-xp-fill {
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(180deg, #9af0ff, #2fb8ff 55%, #1f7fe0);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition: width 0.18s ease-out;
}
.hh-xp-level {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  font-weight: 900;
  text-shadow: 0 1px 2px #000;
}
.hh-top-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-top: 6px;
}
.hh-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  flex: 1;
  min-width: 0;
}
.hh-slots-right {
  justify-content: flex-end;
}
.hh-slot {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: rgba(15, 16, 32, 0.7);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.14);
  display: grid;
  place-items: center;
}
.hh-slot canvas {
  width: 26px;
  height: 26px;
}
.hh-slot b {
  position: absolute;
  right: -3px;
  bottom: -4px;
  min-width: 15px;
  height: 15px;
  padding: 0 3px;
  border-radius: 8px;
  background: var(--accent);
  font-size: 10px;
  line-height: 15px;
  text-align: center;
  font-weight: 900;
}
.hh-slot.is-evolved {
  box-shadow:
    inset 0 0 0 2px #ffd84d,
    0 0 10px rgba(255, 216, 77, 0.6);
}
.hh-slot.is-evolved b {
  background: #e79a00;
}
.hh-clock {
  flex: none;
  font-size: 26px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  color: #fff;
  text-shadow:
    0 2px 0 rgba(0, 0, 0, 0.55),
    0 0 12px rgba(0, 0, 0, 0.5);
}
.hh-clock.is-boss {
  color: #ff8a6a;
}

.hh-boss {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  width: min(420px, 80%);
  text-align: center;
  pointer-events: none;
}
.hh-boss span {
  display: block;
  font-size: 13px;
  font-weight: 900;
  color: #ffd2c2;
  text-shadow: 0 1px 3px #000;
  margin-bottom: 3px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hh-boss-track {
  height: 12px;
  border-radius: 999px;
  background: rgba(10, 10, 20, 0.75);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.15);
  overflow: hidden;
}
.hh-boss-fill {
  height: 100%;
  width: 100%;
  background: linear-gradient(180deg, #ff9a7a, #ff3d5a);
  transition: width 0.15s;
}

.hh-banner {
  position: absolute;
  left: 50%;
  top: 34%;
  transform: translate(-50%, -50%) scale(0.6);
  padding: 10px 24px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(104, 66, 255, 0.95), rgba(70, 40, 200, 0.95));
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.25),
    0 8px 24px rgba(0, 0, 0, 0.45);
  font-size: 22px;
  font-weight: 900;
  white-space: nowrap;
  max-width: 92%;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.2s,
    transform 0.25s cubic-bezier(0.2, 1.6, 0.4, 1);
}
.hh-banner.is-on {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.hh-banner.is-danger {
  background: linear-gradient(180deg, rgba(255, 90, 90, 0.96), rgba(190, 30, 60, 0.96));
}
.hh-banner.is-gold {
  background: linear-gradient(180deg, rgba(255, 205, 70, 0.97), rgba(226, 140, 10, 0.97));
  color: #3b1d00;
}

/* ---------- Hint ---------- */
.hh-hint {
  position: absolute;
  left: 50%;
  bottom: 18%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  pointer-events: none;
  animation: hh-fade-in 0.4s ease-out;
  width: 92%;
}
.hh-hint p {
  margin: 0;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(15, 16, 32, 0.8);
  font-size: 15px;
  text-align: center;
}
.hh-hint-keys {
  display: grid;
  grid-template-columns: repeat(3, 34px);
  grid-template-rows: 34px 34px;
  gap: 4px;
}
.hh-key {
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #d9dcef);
  color: #23243a;
  font-weight: 900;
  box-shadow: 0 3px 0 #8b8fae;
  animation: hh-key 2s infinite;
}
.hh-key-w {
  grid-column: 2;
  grid-row: 1;
}
.hh-key-a {
  grid-column: 1;
  grid-row: 2;
  animation-delay: 0.5s;
}
.hh-key-s {
  grid-column: 2;
  grid-row: 2;
  animation-delay: 1s;
}
.hh-key-d {
  grid-column: 3;
  grid-row: 2;
  animation-delay: 1.5s;
}
.hh-hint-hand {
  position: relative;
  width: 120px;
  height: 60px;
  display: none;
}
.is-touch .hh-hint-keys {
  display: none;
}
.is-touch .hh-hint-hand {
  display: block;
}
.hh-hand-ring {
  position: absolute;
  left: 40px;
  top: 10px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.6);
}
.hh-hand {
  position: absolute;
  left: 48px;
  top: 18px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff, #e5e5ff);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.5);
  animation: hh-drag 1.8s ease-in-out infinite;
}
@keyframes hh-key {
  0%,
  70%,
  100% {
    transform: translateY(0);
    box-shadow: 0 3px 0 #8b8fae;
  }
  15% {
    transform: translateY(3px);
    box-shadow: 0 0 0 #8b8fae;
    background: linear-gradient(180deg, #d8ccff, #a58cff);
  }
}
@keyframes hh-drag {
  0%,
  100% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(34px, -6px);
  }
  50% {
    transform: translate(0, 12px);
  }
  75% {
    transform: translate(-34px, -6px);
  }
}
@keyframes hh-fade-in {
  from {
    opacity: 0;
  }
}

/* ---------- Overlays ---------- */
.hh-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 12px;
  background: radial-gradient(ellipse at center, rgba(20, 16, 50, 0.55), rgba(8, 8, 20, 0.85));
  overflow-y: auto;
  animation: hh-fade-in 0.2s ease-out;
}
.hh-overlay-dim {
  background: rgba(8, 8, 22, 0.72);
}
.hh-card {
  width: min(560px, 100%);
  padding: 20px 20px 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, #25263a, #1a1b28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 0 2px rgba(104, 66, 255, 0.35),
    0 20px 50px rgba(0, 0, 0, 0.55);
  text-align: center;
  animation: hh-pop 0.35s cubic-bezier(0.2, 1.5, 0.4, 1);
}
@keyframes hh-pop {
  from {
    transform: scale(0.85);
    opacity: 0;
  }
}
.hh-big-title {
  margin: 0;
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
  color: #ffe36e;
  text-shadow:
    0 3px 0 #c2621c,
    0 6px 16px rgba(255, 140, 40, 0.35);
}
.hh-big-title span {
  color: #ff7a59;
  text-shadow:
    0 3px 0 #8d2a2a,
    0 6px 16px rgba(255, 80, 80, 0.35);
}
.hh-sub {
  margin: 8px 0 12px;
  color: var(--muted);
  font-size: 15px;
}
.hh-menu-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 14px;
}
.hh-btn {
  min-height: 44px;
  padding: 10px 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  font-size: 16px;
  cursor: pointer;
  transition:
    transform 0.1s,
    filter 0.15s;
}
.hh-btn:active {
  transform: translateY(2px) scale(0.98);
}
.hh-btn-primary {
  background: linear-gradient(180deg, #8a6bff, #6842ff 55%, #5530e6);
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.3),
    0 4px 0 #3a1fb0,
    0 8px 18px rgba(104, 66, 255, 0.45);
}
.hh-btn-secondary {
  background: linear-gradient(180deg, #34354b, #2a2b3d);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 4px 0 #17182a;
}
.hh-btn-big {
  font-size: 21px;
  padding: 12px 38px;
  min-height: 52px;
}
.hh-btn:hover {
  filter: brightness(1.1);
}
.hh-btn:disabled {
  opacity: 0.45;
  cursor: default;
  filter: grayscale(0.4);
}
.hh-menu-stats {
  margin: 12px 0 0;
  font-size: 13px;
  color: var(--muted);
}

.hh-chars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.hh-char {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 8px 6px 10px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(180deg, #2c2d44, #222336);
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.08),
    0 3px 0 #141522;
  cursor: pointer;
  min-width: 0;
}
.hh-char canvas {
  width: 58px;
  height: 58px;
}
.hh-char strong {
  font-size: 16px;
  font-weight: 900;
}
.hh-char small {
  font-size: 11.5px;
  color: var(--muted);
  line-height: 1.25;
}
.hh-char[aria-checked="true"] {
  background: linear-gradient(180deg, #4d36c8, #3a279e);
  box-shadow:
    inset 0 0 0 3px #a58cff,
    0 3px 0 #251873,
    0 0 18px rgba(104, 66, 255, 0.5);
}
.hh-char.is-locked canvas {
  filter: grayscale(1) brightness(0.45);
}
.hh-char-price {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 3px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}
.hh-char-price .hh-coin {
  width: 12px;
  height: 12px;
}
.hh-char.can-buy .hh-char-price {
  background: #6842ff;
  color: #fff;
}

/* Shop */
.hh-shop-card {
  width: min(680px, 100%);
}
.hh-shop-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.hh-shop-head h2 {
  margin: 0;
  font-size: 26px;
  font-weight: 900;
}
.hh-shop-card .hh-sub {
  text-align: left;
  margin-bottom: 10px;
}
.hh-shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}
.hh-up {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 10px 6px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(180deg, #2c2d44, #222336);
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.07),
    0 3px 0 #141522;
  cursor: pointer;
  min-width: 0;
}
.hh-up strong {
  font-size: 14.5px;
  font-weight: 900;
}
.hh-up small {
  font-size: 11.5px;
  color: var(--muted);
}
.hh-pips {
  display: flex;
  gap: 3px;
  margin: 3px 0;
}
.hh-pips i {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: #3a3b55;
}
.hh-pips i.on {
  background: linear-gradient(180deg, #b7a4ff, #6842ff);
  box-shadow: 0 0 6px rgba(104, 66, 255, 0.7);
}
.hh-up-cost {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 999px;
  background: #6842ff;
  font-size: 13px;
  font-weight: 900;
}
.hh-up-cost .hh-coin {
  width: 12px;
  height: 12px;
}
.hh-up:disabled {
  cursor: default;
}
.hh-up:disabled .hh-up-cost {
  background: #3a3b55;
  color: var(--muted);
}
.hh-up.is-max .hh-up-cost {
  background: #2b8a4b;
  color: #fff;
}
.hh-up.just-bought {
  animation: hh-bought 0.4s ease-out;
}
@keyframes hh-bought {
  40% {
    transform: scale(1.08);
    box-shadow:
      inset 0 0 0 3px #ffd84d,
      0 0 20px rgba(255, 216, 77, 0.6);
  }
}

/* Level up */
.hh-levelup {
  width: min(760px, 100%);
  text-align: center;
}
.hh-lv-title {
  margin: 0;
  font-size: 42px;
  font-weight: 900;
  color: #9af0ff;
  text-shadow:
    0 3px 0 #1f6fb0,
    0 0 24px rgba(67, 217, 255, 0.6);
  animation: hh-pop 0.4s cubic-bezier(0.2, 1.6, 0.4, 1);
}
.hh-offers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.hh-offer {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 12px 14px;
  border: 0;
  border-radius: 20px;
  background: linear-gradient(180deg, #30315a, #22233a);
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.1),
    0 5px 0 #121320,
    0 12px 24px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  text-align: center;
  animation: hh-deal 0.4s cubic-bezier(0.2, 1.4, 0.4, 1) backwards;
  transition:
    transform 0.12s,
    box-shadow 0.12s;
  min-width: 0;
}
.hh-offer:nth-child(2) {
  animation-delay: 0.07s;
}
.hh-offer:nth-child(3) {
  animation-delay: 0.14s;
}
.hh-offer:hover,
.hh-offer:focus-visible {
  transform: translateY(-4px);
  box-shadow:
    inset 0 0 0 3px #a58cff,
    0 9px 0 #121320,
    0 16px 30px rgba(104, 66, 255, 0.35);
}
@keyframes hh-deal {
  from {
    transform: translateY(40px) scale(0.8);
    opacity: 0;
  }
}
.hh-offer canvas {
  width: 64px;
  height: 64px;
}
.hh-offer strong {
  font-size: 18px;
  font-weight: 900;
}
.hh-offer p {
  margin: 0;
  color: #cfd1e6;
  font-size: 14px;
  line-height: 1.3;
}
.hh-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 2px 9px;
  border-radius: 999px;
  background: #6842ff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
}
.hh-badge.is-new {
  background: linear-gradient(180deg, #54e08a, #1fa654);
}
.hh-badge.is-evolve {
  background: linear-gradient(180deg, #ffd84d, #e79a00);
  color: #3b1d00;
}
.hh-offer.is-evolve {
  background: linear-gradient(180deg, #5a4210, #2d2412);
  box-shadow:
    inset 0 0 0 3px #ffd84d,
    0 5px 0 #121320,
    0 0 26px rgba(255, 216, 77, 0.45);
}
.hh-key-hint {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 12px;
  line-height: 22px;
  color: var(--muted);
}

/* Pause build */
.hh-build {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
}
.hh-build .hh-slot {
  width: 40px;
  height: 40px;
}
.hh-build .hh-slot canvas {
  width: 32px;
  height: 32px;
}

/* End */
.hh-end-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.hh-end-stats div {
  padding: 10px 4px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hh-end-stats span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.hh-end-stats strong {
  font-size: 22px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}
.hh-end-gold strong {
  color: var(--gold);
}
.hh-end-best {
  margin: 10px 0 0;
  min-height: 1.2em;
  color: #ffd84d;
  font-size: 14px;
}
.hh-end-card.is-win .hh-big-title {
  animation: hh-bounce 1.2s ease-in-out infinite;
}
@keyframes hh-bounce {
  50% {
    transform: translateY(-5px) scale(1.04);
  }
}

.hh-help {
  margin: 8px 4px 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}
kbd {
  display: inline-block;
  padding: 1px 6px;
  border-radius: 6px;
  background: var(--secondary);
  box-shadow: 0 2px 0 #15151f;
  font-family: inherit;
  font-size: 12px;
  color: #fff;
}

/* ---------- Responsive ---------- */
@media (max-width: 640px) {
  body {
    padding: 6px;
  }
  .hh-logo {
    font-size: 17px;
  }
  .hh-hide-sm {
    display: none;
  }
  .hh-chip {
    padding: 5px 9px;
    font-size: 14px;
  }
  .hh-chip-label {
    display: none;
  }
  .hh-chip-time .hh-chip-label {
    display: none;
  }
  .hh-clock {
    font-size: 21px;
  }
  .hh-slot {
    width: 27px;
    height: 27px;
  }
  .hh-slot canvas {
    width: 21px;
    height: 21px;
  }
  .hh-big-title {
    font-size: 32px;
  }
  .hh-card {
    padding: 16px 12px 14px;
  }
  .hh-char small {
    display: none;
  }
  .hh-shop-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hh-offers {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .hh-offer {
    display: grid;
    grid-template-columns: 52px 1fr;
    grid-template-rows: auto auto;
    column-gap: 10px;
    row-gap: 2px;
    padding: 10px 12px;
    text-align: left;
    align-items: center;
  }
  .hh-offer canvas {
    grid-row: 1 / span 2;
    width: 50px;
    height: 50px;
  }
  .hh-offer strong {
    font-size: 16px;
    padding-right: 54px;
  }
  .hh-offer p {
    font-size: 13px;
  }
  .hh-key-hint {
    display: none;
  }
  .hh-lv-title {
    font-size: 32px;
  }
  .hh-end-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .hh-btn-big {
    padding: 12px 28px;
  }
  .hh-help {
    font-size: 12px;
  }
}
@media (max-width: 360px) {
  .hh-logo {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
.hh-up canvas {
  width: 40px;
  height: 40px;
}
