:root {
  color-scheme: dark;
  --bg-top: #1a1040;
  --bg-bottom: #0d0824;
  --outer-top: #24305f;
  --outer-bottom: #120d30;
  --neon: #39ff6a;
  --neon-soft: #9dffb8;
  --neon-glow: rgba(57, 255, 106, 0.35);
  --panel-top: rgba(36, 24, 78, 0.95);
  --panel-bottom: rgba(14, 10, 36, 0.98);
  --cream: #e8fff0;
  --ink: #c8e8ff;
  font-family: 'Segoe UI', 'Noto Sans Khmer', system-ui, sans-serif;
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

html,
body {
  margin: 0;
  height: 100%;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 12%, rgba(120, 190, 255, 0.18) 0%, transparent 46%),
    radial-gradient(ellipse at 18% 50%, rgba(57, 255, 106, 0.08) 0%, transparent 34%),
    radial-gradient(ellipse at 82% 50%, rgba(140, 120, 255, 0.16) 0%, transparent 36%),
    linear-gradient(180deg, var(--outer-top) 0%, var(--outer-bottom) 100%);
}

#app {
  height: 100%;
  display: grid;
  place-items: center;
}

.phone-frame {
  width: min(100vw, calc(100vh * 9 / 16));
  height: min(100vh, calc(100vw * 16 / 9));
  max-width: 480px;
  max-height: 100vh;
  background: linear-gradient(180deg, var(--bg-top) 0%, var(--bg-bottom) 100%);
  overflow: hidden;
  position: relative;
  border-left: 1px solid rgba(170, 220, 255, 0.12);
  border-right: 1px solid rgba(170, 220, 255, 0.12);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.58),
    0 0 0 1px rgba(150, 200, 255, 0.08),
    0 0 80px rgba(120, 70, 220, 0.18),
    inset 0 0 0 2px rgba(120, 255, 160, 0.14);
}

.game-root {
  width: 100%;
  height: 100%;
  position: relative;
}

.screen {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.img-btn {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  line-height: 0;
}

.img-btn img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

.img-btn:active {
  transform: scale(0.96);
}

.img-btn:disabled {
  opacity: 0.45;
  cursor: default;
}

/* Title */
.screen-title {
  background-size: 108% 108%;
  background-position: center;
  align-items: center;
  justify-content: flex-end;
  padding: 8% 8% 10%;
  gap: 3%;
  animation: title-bg-drift 14s ease-in-out infinite alternate;
}

.screen-title::after {
  content: '';
  position: absolute;
  inset: -20% -45%;
  pointer-events: none;
  background: linear-gradient(
    112deg,
    transparent 38%,
    rgba(255, 255, 220, 0.22) 48%,
    transparent 58%
  );
  transform: translateX(-35%);
  animation: title-sun-sweep 8s ease-in-out infinite;
}

.title-logo {
  width: 86%;
  max-height: 28%;
  object-fit: contain;
  margin-top: auto;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.25));
  z-index: 1;
  animation: title-logo-float 3.4s ease-in-out infinite;
}

.title-tip {
  margin: 0;
  color: var(--cream);
  font-size: clamp(16px, 4.2vw, 22px);
  font-weight: 700;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
  z-index: 1;
  animation: title-tip-breathe 2.8s ease-in-out infinite;
}

.btn-play {
  width: min(72%, 280px);
  z-index: 1;
  animation: title-play-attract 2.2s ease-in-out infinite;
}

.btn-lang {
  position: absolute;
  top: 3.5%;
  right: 4%;
  width: 14%;
  min-width: 52px;
  z-index: 2;
}

.btn-settings {
  position: absolute;
  top: 3.5%;
  left: 4%;
  width: 14%;
  min-width: 52px;
  z-index: 2;
}

.settings-overlay {
  background: rgba(8, 6, 20, 0.72);
  z-index: 6;
}

.settings-panel {
  width: min(88%, 360px);
  max-height: min(82%, 560px);
  overflow-y: auto;
  padding: 8% 7% 7%;
  border-radius: 24px;
  border: 1px solid rgba(120, 255, 160, 0.32);
  background: linear-gradient(160deg, rgba(36, 24, 78, 0.95) 0%, rgba(14, 10, 36, 0.98) 100%);
  box-shadow:
    0 0 40px rgba(57, 255, 106, 0.1),
    0 20px 40px rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.settings-title {
  margin: 0;
  color: #39ff6a;
  font-size: clamp(24px, 6.5vw, 32px);
  font-weight: 900;
  text-shadow: 0 0 16px rgba(57, 255, 106, 0.45);
}

.settings-row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(100, 255, 150, 0.22);
  background: rgba(10, 8, 28, 0.72);
}

.settings-label {
  color: #c8e8ff;
  font-size: clamp(15px, 4vw, 18px);
  font-weight: 800;
}

.settings-sound-btn {
  width: min(42%, 110px);
  flex: 0 0 auto;
}

.settings-sound-btn img {
  width: 100%;
  height: auto;
}

.settings-help-title {
  margin: 4px 0 0;
  width: 100%;
  color: #9dffb8;
  font-size: clamp(16px, 4.2vw, 20px);
  font-weight: 900;
  text-align: left;
}

.settings-help-list {
  margin: 0;
  padding: 0 0 0 18px;
  width: 100%;
  color: rgba(200, 220, 255, 0.88);
  font-size: clamp(13px, 3.5vw, 16px);
  font-weight: 600;
  line-height: 1.45;
}

.settings-help-list li {
  margin-bottom: 8px;
}

.settings-help-list li:last-child {
  margin-bottom: 0;
}

.settings-close {
  width: 48px;
  height: 48px;
  margin-top: 4px;
}

.settings-close img {
  width: 100%;
  height: 100%;
}

@keyframes title-bg-drift {
  0% {
    background-position: 46% 50%;
  }
  100% {
    background-position: 54% 47%;
  }
}

@keyframes title-sun-sweep {
  0%,
  58% {
    opacity: 0;
    transform: translateX(-35%);
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(35%);
  }
}

@keyframes title-logo-float {
  0%,
  100% {
    transform: translateY(0) rotate(-0.5deg);
  }
  50% {
    transform: translateY(-8px) rotate(0.5deg);
  }
}

@keyframes title-tip-breathe {
  0%,
  100% {
    opacity: 0.82;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-2px);
  }
}

@keyframes title-play-attract {
  0%,
  72%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 8px 9px rgba(57, 255, 106, 0.18));
  }
  84% {
    transform: scale(1.045);
    filter: drop-shadow(0 12px 14px rgba(57, 255, 106, 0.42));
  }
}

@media (prefers-reduced-motion: reduce) {
  .screen-title,
  .screen-title::after,
  .title-logo,
  .title-tip,
  .btn-play {
    animation: none !important;
  }
}

.btn-icon {
  width: 56px;
  height: 56px;
}

.btn-wide {
  width: min(70%, 260px);
}

/* Levels */
.screen-levels {
  background: linear-gradient(180deg, var(--bg-top) 0%, var(--bg-bottom) 100%);
  padding: 1.5% 3% 2%;
  gap: 1%;
  overflow: hidden;
}

.levels-header {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  flex: 0 0 auto;
  width: 100%;
}

.levels-title {
  margin: 0;
  color: var(--neon-soft);
  font-size: clamp(22px, 5.8vw, 34px);
  font-weight: 800;
  text-shadow: 0 0 14px var(--neon-glow);
}

.levels-grid {
  --cell: clamp(56px, min(26vw, 13.5vh), 88px);
  --gap: clamp(6px, 2vh, 10px);
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: repeat(3, var(--cell));
  grid-template-rows: repeat(5, var(--cell));
  gap: var(--gap);
  width: fit-content;
  min-height: 0;
  max-width: 100%;
  margin: 0 auto;
  align-content: center;
  justify-content: center;
}

.levels-pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 40px;
  flex: 0 0 auto;
  width: 100%;
  margin-top: 0;
  padding-bottom: 1%;
}

.levels-page-label {
  color: rgba(157, 255, 184, 0.9);
  font-size: clamp(14px, 3.6vw, 17px);
  font-weight: 800;
  letter-spacing: 0.04em;
  min-width: 88px;
  text-align: center;
}

.levels-page-btn {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
}

.levels-page-btn:disabled {
  opacity: 0.35;
}

.levels-page-next img {
  transform: scaleX(-1);
}

.level-cell {
  position: relative;
  border: 0;
  background: transparent;
  padding: 0;
  width: var(--cell);
  height: var(--cell);
  min-width: 0;
  min-height: 0;
  cursor: pointer;
}

.level-cell:disabled {
  cursor: default;
}

.level-cell-bg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.level-num {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: clamp(15px, 4.2vw, 24px);
  font-weight: 900;
  color: #5a3d12;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

.level-stars {
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 6%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2%;
  padding: 2px 5px 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(120, 72, 0, 0.9), rgba(72, 38, 0, 0.95));
  border: 1px solid rgba(255, 239, 170, 0.55);
  box-shadow:
    0 1px 4px rgba(0, 0, 0, 0.22),
    inset 0 1px 1px rgba(255, 240, 170, 0.22);
  pointer-events: none;
}

.level-stars img {
  width: 22%;
  height: auto;
  filter:
    drop-shadow(0 0 2px rgba(255, 245, 180, 0.75))
    drop-shadow(0 1px 2px rgba(255, 190, 30, 0.85));
}

/* Play — neon trail maze */
.screen-play {
  background: linear-gradient(180deg, var(--bg-top) 0%, var(--bg-bottom) 100%);
  padding: 1.2% 2% 1%;
  gap: 0.3%;
}

.play-hud {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 6px;
  min-height: 58px;
  flex: 0 0 auto;
  padding: 2px 0;
}

.hud-side {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hud-actions {
  align-items: center;
  gap: 8px;
}

.hud-action-btn {
  width: 54px;
  height: 62px;
}

.hud-action-btn::before {
  inset: -6px -4px;
}

.hud-action-btn img {
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.45));
}

.hud-mid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
}

.hud-btn {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  position: relative;
}

.hud-btn-back {
  width: 48px;
  height: 48px;
}

.hud-btn::before {
  content: '';
  position: absolute;
  inset: -8px -4px;
}

.hud-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.3));
}

.hud-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 36px;
  background: rgba(12, 10, 28, 0.88);
  border: 1px solid rgba(100, 255, 150, 0.28);
  border-radius: 999px;
  padding: 4px 12px;
  color: #9dffb8;
  font-weight: 800;
  font-size: clamp(15px, 3.8vw, 18px);
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.28);
}

.hud-level {
  padding: 4px 12px 4px 10px;
  gap: 6px;
}

.hud-level small {
  color: rgba(157, 255, 184, 0.55);
  font-size: 0.68em;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hud-timer {
  padding-left: 8px;
  min-width: 72px;
  justify-content: flex-start;
}

.hud-chip img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex: 0 0 auto;
}

.hud-value {
  font-variant-numeric: tabular-nums;
}

.play-stage {
  flex: 1 1 auto;
  min-height: 0;
  border-radius: 14px;
  overflow: hidden;
  background: #0d0824;
  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.45),
    inset 0 0 0 2px rgba(100, 70, 180, 0.35);
  touch-action: none;
  margin-bottom: 0.5%;
}

.maze-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* Overlay / result */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 6, 20, 0.72);
  display: grid;
  place-items: center;
  z-index: 5;
}

.popup {
  width: min(86%, 360px);
  aspect-ratio: 4 / 3.2;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3%;
  padding: 10% 8% 8%;
}

.popup-title {
  margin: 0;
  font-size: clamp(28px, 7vw, 40px);
  font-weight: 900;
  color: var(--neon);
  text-shadow: 0 0 14px var(--neon-glow);
}

/* Result — neon glass (matches play theme) */
.screen-result {
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 6% 5%;
}

.result-win {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(57, 255, 106, 0.22), transparent 42%),
    radial-gradient(ellipse at 80% 80%, rgba(120, 70, 220, 0.28), transparent 40%),
    linear-gradient(180deg, var(--bg-top) 0%, #0a0618 100%);
}

.result-lose {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 80, 120, 0.18), transparent 42%),
    radial-gradient(ellipse at 20% 90%, rgba(90, 40, 140, 0.22), transparent 40%),
    linear-gradient(180deg, var(--bg-top) 0%, #0a0618 100%);
}

.result-confetti {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.confetti-piece {
  position: absolute;
  top: -12%;
  left: var(--x);
  width: 10px;
  height: 20px;
  border-radius: 3px;
  opacity: 0;
  animation: confetti-fall var(--dur) linear var(--delay) forwards;
}

.confetti-piece.tone-0 {
  background: linear-gradient(180deg, #ffe774 0%, #ffb100 100%);
}

.confetti-piece.tone-1 {
  background: linear-gradient(180deg, #6dff95 0%, #21d25d 100%);
}

.confetti-piece.tone-2 {
  background: linear-gradient(180deg, #7cf7ff 0%, #3cb8ff 100%);
}

.confetti-piece.tone-3 {
  background: linear-gradient(180deg, #ffd0f5 0%, #ff73d0 100%);
}

.result-glow {
  position: absolute;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(40px);
  opacity: 0.55;
  animation: result-pulse 2.4s ease-in-out infinite;
}

.result-win .result-glow {
  background: rgba(57, 255, 106, 0.45);
  top: 8%;
}

.result-lose .result-glow {
  background: rgba(255, 70, 110, 0.35);
  top: 10%;
}

.result-panel {
  position: relative;
  z-index: 1;
  width: min(92%, 380px);
  min-height: min(72%, 520px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.2%;
  padding: 10% 8% 8%;
  border-radius: 28px;
  border: 1px solid rgba(120, 255, 160, 0.35);
  background:
    linear-gradient(160deg, rgba(36, 24, 78, 0.92) 0%, rgba(14, 10, 36, 0.96) 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 0 40px rgba(57, 255, 106, 0.12),
    0 24px 48px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
  animation: result-enter 480ms cubic-bezier(0.2, 0.9, 0.25, 1.1);
  overflow: hidden;
}

.panel-lose {
  border-color: rgba(255, 120, 150, 0.32);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 0 36px rgba(255, 70, 110, 0.12),
    0 24px 48px rgba(0, 0, 0, 0.45);
}

.result-ring {
  position: absolute;
  top: -18%;
  left: 50%;
  width: 70%;
  aspect-ratio: 1;
  transform: translateX(-50%);
  border-radius: 50%;
  border: 2px solid rgba(57, 255, 106, 0.18);
  box-shadow: 0 0 30px rgba(57, 255, 106, 0.08) inset;
  pointer-events: none;
}

.panel-lose .result-ring {
  border-color: rgba(255, 120, 150, 0.16);
  box-shadow: 0 0 30px rgba(255, 70, 110, 0.06) inset;
}

.result-level {
  margin: 0;
  padding: 6px 18px;
  border-radius: 999px;
  border: 1px solid rgba(57, 255, 106, 0.45);
  background: rgba(20, 40, 32, 0.85);
  color: #9dffb8;
  font-size: clamp(12px, 3vw, 15px);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.25;
}

.panel-lose .result-level {
  border-color: rgba(255, 140, 160, 0.4);
  background: rgba(48, 20, 32, 0.85);
  color: #ffb0c0;
}

.result-title {
  margin: 2% 0 0;
  font-size: clamp(36px, 9.5vw, 52px);
  font-weight: 900;
  line-height: 1.05;
  text-align: center;
  letter-spacing: 0.02em;
}

.panel-win .result-title {
  color: #39ff6a;
  text-shadow:
    0 0 18px rgba(57, 255, 106, 0.65),
    0 0 40px rgba(57, 255, 106, 0.35);
  animation: title-glow 1.8s ease-in-out infinite;
}

.panel-lose .result-title {
  color: #ff6b8a;
  text-shadow:
    0 0 16px rgba(255, 80, 120, 0.55),
    0 0 32px rgba(255, 80, 120, 0.25);
}

.result-message {
  margin: 0;
  color: rgba(180, 200, 255, 0.72);
  font-size: clamp(13px, 3.4vw, 16px);
  font-weight: 700;
  text-align: center;
  line-height: 1.35;
}

.result-stars {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4%;
  width: 78%;
  min-height: 18%;
  margin: 3% 0 1%;
}

.result-star {
  display: block;
  width: 28%;
  transform-origin: center bottom;
}

.result-star.star-waiting {
  opacity: 0;
  transform: translateY(12px) scale(0.45);
}

.result-star.star-ready {
  animation: star-pop 520ms cubic-bezier(0.2, 0.9, 0.3, 1.2) both;
}

.result-star:nth-child(2) {
  width: 34%;
}

.result-star:nth-child(2).is-on,
.result-star:nth-child(2).is-off {
  margin-bottom: 4%;
}

.result-star img {
  display: block;
  width: 100%;
  height: auto;
}

.result-star.is-on img {
  filter:
    drop-shadow(0 0 10px rgba(255, 210, 60, 0.85))
    drop-shadow(0 4px 8px rgba(0, 0, 0, 0.35));
}

.result-star.is-off img {
  opacity: 0.38;
  filter: grayscale(0.4) brightness(0.85);
}

.result-stats {
  width: 90%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 2% 0;
}

.result-stat {
  min-width: 0;
  padding: 10px 8px 12px;
  border-radius: 16px;
  border: 1px solid rgba(120, 255, 160, 0.22);
  background: rgba(10, 8, 28, 0.72);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.panel-lose .result-stat {
  border-color: rgba(255, 140, 160, 0.2);
}

.result-stat small {
  color: rgba(150, 170, 220, 0.75);
  font-size: clamp(11px, 2.6vw, 13px);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.2;
}

.result-stat strong {
  color: #e8fff0;
  font-size: clamp(22px, 5.4vw, 28px);
  font-weight: 900;
  line-height: 1.15;
}

.panel-win .result-stat strong {
  text-shadow: 0 0 12px rgba(57, 255, 106, 0.35);
}

.result-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  margin-top: auto;
  padding-top: 4%;
}

.result-actions-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
}

.result-btn {
  width: auto;
  min-height: 56px;
  line-height: 0;
  flex: 0 1 auto;
  max-width: none;
  min-width: 0;
  display: grid;
  place-items: center;
}

.result-btn img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 82px;
  object-fit: contain;
}

.result-primary {
  order: 2;
  width: min(48%, 176px);
}

.result-primary img {
  width: 100%;
  filter: drop-shadow(0 0 10px rgba(57, 255, 106, 0.35));
}

.result-retry {
  order: 1;
  width: min(48%, 176px);
}

.result-retry img {
  width: 100%;
  filter: drop-shadow(0 0 8px rgba(140, 120, 255, 0.28));
}

.result-back {
  flex: 0 0 auto;
  width: 48px;
  max-width: none;
  height: 48px;
}

.result-back img {
  width: 100%;
  height: 100%;
  max-height: none;
}

@keyframes result-enter {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes result-pulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.08);
  }
}

@keyframes title-glow {
  0%,
  100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.15);
  }
}

@keyframes confetti-fall {
  0% {
    opacity: 0;
    transform: translate3d(0, -8%, 0) rotate(0deg) scale(0.9);
  }
  12% {
    opacity: 1;
  }
  100% {
    opacity: 0.95;
    transform: translate3d(var(--drift), 118vh, 0) rotate(var(--rot)) scale(1);
  }
}

@keyframes star-pop {
  from {
    opacity: 0;
    transform: scale(0.5) translateY(12px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@media (max-height: 620px) {
  .result-panel {
    min-height: 80%;
    padding-top: 7%;
    padding-bottom: 5%;
  }

  .result-stars {
    min-height: 14%;
  }

  .result-btn img {
    max-height: 68px;
  }
}
