:root {
  --hay: #e3b64b;
  --hay-deep: #b9832a;
  --wood: #6b4423;
  --wood-dark: #3a2413;
  --ink: #241809;
  --cream: #fff4dc;
  --gold: #ffcf4d;
  --green: #5fa84f;
  --red: #c4553d;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

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

html, body {
  margin: 0; padding: 0; height: 100%;
  overflow: hidden; overscroll-behavior: none;
  background: #14100a;
  color: var(--cream);
  font-family: ui-rounded, "SF Pro Rounded", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-weight: 700;
  user-select: none; -webkit-user-select: none;
  /* manipulation kills the double-tap-to-zoom delay/gesture without also
     killing panning inside the scrollable panels below */
  touch-action: manipulation;
  -webkit-text-size-adjust: 100%;
}

/* the game surfaces take no browser gestures at all */
#app, #scene, #hud, .screen, .drawer-head, .hud-top, .hud-bottom {
  touch-action: none;
}

/* …but lists that scroll still need a vertical pan */
.drawer-body, .card, .modal-card {
  touch-action: pan-y;
}

#app { position: relative; width: 100%; height: 100%; overflow: hidden; }
#scene { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }

/* ---------------------------------------------------------- screens */
.screen {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  padding: 24px;
  z-index: 20;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
.screen.open { opacity: 1; pointer-events: auto; }
.screen.solid { background: #14100a; }
.screen.dim { background: rgba(12,8,3,.78); backdrop-filter: blur(4px); }
.screen.clear { background: none; }
.screen[hidden] { display: none; }

/* Barn Shelf and Retire open on top of whatever asked for them — the pause
   card, the win card or the menu — so they sit a layer above the rest. */
#shelf, #retire, #dailyCard { z-index: 26; }

.card {
  width: 100%; max-width: 380px;
  background: linear-gradient(180deg, #543317, #2e1c0d);
  border: 3px solid rgba(255,207,77,.38);
  border-radius: 22px;
  padding: 22px;
  text-align: center;
  max-height: 100%;
  overflow-y: auto;
}
.card h2 { margin: 0 0 14px; font-size: 22px; }
.card p { font-size: 13.5px; font-weight: 600; line-height: 1.55; opacity: .9; margin: 0 0 14px; }

/* ------------------------------------------------ startup identity */
/* Ported from the other Polite Carrot games so every title boots the same. */
#boot {
  position: fixed;
  inset: 0;
  height: 100vh;
  height: 100dvh;
  z-index: 100;
  background: #000;
  display: grid;
  place-items: center;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.55s ease;
}
#boot.done { opacity: 0; }
.boot-lockup {
  display: grid;
  justify-items: center;
  width: min(68vw, 52vh, 360px);
}
.boot-mark {
  display: block;
  width: 92%;
  height: auto;
  opacity: 0;
  transform: scale(0.94);
  animation: boot-logo 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) 0.18s forwards;
}
.boot-name {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 12px;
  opacity: 0;
  transform: translateY(8px);
  animation: boot-name 0.55s ease 0.72s forwards;
}
@keyframes boot-logo {
  to { opacity: 1; transform: scale(1); }
}
@keyframes boot-name {
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .boot-mark,
  .boot-name { animation-duration: 0.01ms; }
}

/* ------------------------------------------------------------- menu */
#menu {
  background:
    radial-gradient(90% 60% at 50% 22%, rgba(12,8,3,.08), rgba(12,8,3,.55) 75%),
    linear-gradient(180deg, rgba(12,8,3,.35) 0%, rgba(12,8,3,0) 28%, rgba(12,8,3,.72) 78%);
  /* The menu grew past a short phone's screen. `align-items: start` plus an
     auto block margin centres it when it fits and scrolls from the top when
     it does not — plain centring leaves the top unreachable. */
  align-items: start;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.menu-inner { text-align: center; width: 100%; max-width: 420px; margin-block: auto; }
.title {
  margin: 0;
  font-size: clamp(34px, 11vw, 58px);
  line-height: 1;
  letter-spacing: -1px;
  text-shadow: 0 4px 0 #6d4a12, 0 10px 34px rgba(255,190,60,.35);
  color: var(--gold);
}
.title-in { display: block; font-size: .42em; color: var(--cream); letter-spacing: 4px; opacity: .8; margin: 6px 0; }
.tagline { font-size: 13.5px; font-weight: 600; opacity: .75; margin: 14px 0 26px; letter-spacing: .4px; }
.menu-buttons { display: flex; flex-direction: column; gap: 10px; }
.menu-foot { margin-top: 22px; font-size: 12px; opacity: .6; cursor: pointer; font-weight: 600; }

.btn {
  width: 100%;
  border: none; border-radius: 15px;
  padding: 14px;
  font: inherit; font-size: 15px;
  cursor: pointer;
  color: var(--ink);
  background: linear-gradient(180deg, var(--gold), #e0a728);
  box-shadow: 0 4px 0 #9a6c13;
}
.btn:active { transform: translateY(3px); box-shadow: 0 1px 0 #9a6c13; }
.btn.big { font-size: 17px; padding: 16px; }
.btn.ghost {
  background: none; box-shadow: none;
  border: 2px solid rgba(255,244,220,.22);
  color: var(--cream);
  font-size: 14px; padding: 12px;
}
.btn.ghost.danger { color: #ffb3a3; border-color: rgba(196,85,61,.55); }
.btn + .btn { margin-top: 0; }
.card .btn { margin-top: 10px; }

/* ------------------------------------------------------ level intro */
.intro-card {
  text-align: center;
  animation: introIn 1s cubic-bezier(.2,.9,.3,1);
  text-shadow: 0 6px 24px rgba(0,0,0,.8);
}
.intro-eyebrow { font-size: 13px; letter-spacing: 7px; opacity: .8; text-transform: uppercase; }
.intro-number {
  font-size: clamp(76px, 26vw, 150px);
  line-height: .95;
  color: var(--gold);
  text-shadow: 0 6px 0 #714c10, 0 16px 44px rgba(0,0,0,.7);
}
.intro-sub { font-size: 14px; font-weight: 600; opacity: .85; letter-spacing: 1.5px; }
@keyframes introIn { from { opacity: 0; transform: translateY(18px) scale(.94); } to { opacity: 1; transform: none; } }

.skip-btn {
  position: absolute;
  right: 16px; bottom: calc(18px + var(--safe-bottom));
  border: 2px solid rgba(255,244,220,.25);
  background: rgba(20,13,5,.6);
  color: var(--cream);
  font: inherit; font-size: 13px;
  padding: 9px 16px; border-radius: 999px;
  cursor: pointer;
}

/* -------------------------------------------------------------- HUD */
#hud {
  position: absolute; inset: 0;
  z-index: 10;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s;
}
#hud.on { opacity: 1; }

.hud-top {
  position: absolute; top: 0; left: 0; right: 0;
  padding: calc(10px + var(--safe-top)) 12px 12px;
  display: flex; align-items: center; gap: 8px;
  background: linear-gradient(180deg, rgba(20,13,5,.8), rgba(20,13,5,0));
}
.coins {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(58,36,19,.85);
  border: 2px solid rgba(255,207,77,.45);
  border-radius: 999px;
  padding: 6px 14px 6px 10px;
  font-size: 18px;
  box-shadow: 0 3px 0 rgba(0,0,0,.3);
  transition: transform .12s ease;
}
.coins.bump { transform: scale(1.09); }
.barn-chip {
  font-size: 12.5px; letter-spacing: .5px;
  background: rgba(58,36,19,.7);
  border: 2px solid rgba(255,244,220,.16);
  padding: 6px 12px; border-radius: 999px;
}
.hud-top-right { margin-left: auto; display: flex; gap: 8px; pointer-events: auto; }
.icon-btn {
  position: relative;
  width: 40px; height: 40px;
  border-radius: 13px;
  border: 2px solid rgba(255,244,220,.22);
  background: rgba(58,36,19,.82);
  color: var(--cream);
  font-size: 17px; cursor: pointer;
  display: grid; place-items: center; padding: 0;
}
.icon-btn:active { transform: translateY(1px); }
.dot {
  position: absolute; top: -5px; right: -5px;
  width: 13px; height: 13px; border-radius: 50%;
  background: var(--green); border: 2px solid var(--ink);
  animation: pulse 1.1s infinite;
}
@keyframes pulse { 0%,100% { filter: brightness(1); } 50% { filter: brightness(1.5); } }

.sense-line {
  position: absolute; top: calc(66px + var(--safe-top)); left: 0; right: 0;
  text-align: center;
  font-size: 12px; letter-spacing: 1px;
  color: var(--gold);
  text-shadow: 0 0 12px rgba(255,207,77,.5), 0 2px 4px rgba(0,0,0,.8);
  opacity: 0; transition: opacity .3s;
}
.sense-line.on { opacity: 1; }

.toast {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  top: calc(86px + var(--safe-top));
  max-width: 88%;
  background: rgba(24,15,6,.9);
  border: 2px solid rgba(255,207,77,.4);
  border-radius: 999px;
  padding: 7px 15px;
  font-size: 12.5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0;
  transition: opacity .25s, transform .25s;
  pointer-events: none;
  z-index: 6;
}
.toast.on { opacity: 1; transform: translateX(-50%) translateY(0); }

.pile-card {
  position: absolute;
  left: 50%; transform: translateX(-50%);
  top: calc(92px + var(--safe-top));
  width: min(280px, 76%);
  background: rgba(24,15,6,.82);
  border: 2px solid rgba(255,244,220,.18);
  border-radius: 14px;
  padding: 9px 12px;
}
.pile-card[hidden] { display: none; }
.pile-card-head { display: flex; justify-content: space-between; font-size: 12.5px; margin-bottom: 6px; }
.pile-card-head span:last-child { opacity: .75; font-weight: 600; }
.pile-track { height: 8px; border-radius: 999px; background: rgba(0,0,0,.5); overflow: hidden; }
.pile-fill { height: 100%; width: 0%; background: linear-gradient(90deg, var(--hay-deep), var(--gold)); transition: width .15s; }

.hud-bottom {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 12px 12px calc(12px + var(--safe-bottom));
  background: linear-gradient(0deg, rgba(20,13,5,.8), rgba(20,13,5,0));
}
.load-box { max-width: 300px; }
.load-label { display: flex; justify-content: space-between; font-size: 12.5px; margin-bottom: 5px; text-shadow: 0 1px 3px rgba(0,0,0,.8); }
#loadText { opacity: .78; font-weight: 600; }
.load-track {
  height: 14px; border-radius: 999px;
  background: rgba(0,0,0,.55);
  border: 2px solid rgba(255,244,220,.2);
  overflow: hidden;
}
.load-fill { height: 100%; width: 0%; background: linear-gradient(90deg, #d8a13a, var(--hay)); transition: width .12s linear; }
.load-fill.full { background: linear-gradient(90deg, var(--gold), #fff0b8); animation: pulse 1s infinite; }

.prompt {
  position: absolute;
  left: 50%; bottom: 31%;
  transform: translateX(-50%);
  background: rgba(20,13,5,.82);
  border: 2px solid rgba(255,207,77,.35);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  white-space: nowrap;
}
.prompt[hidden] { display: none; }

/* ------------------------------------------------- touch controls */
.stick {
  position: absolute;
  left: 22px; bottom: calc(76px + var(--safe-bottom));
  width: 124px; height: 124px;
  border-radius: 50%;
  background: rgba(20,13,5,.32);
  border: 2px solid rgba(255,244,220,.18);
  pointer-events: auto;
  touch-action: none;
}
.stick[hidden] { display: none; }
.stick-knob {
  position: absolute; left: 50%; top: 50%;
  width: 54px; height: 54px; margin: -27px 0 0 -27px;
  border-radius: 50%;
  background: rgba(255,207,77,.75);
  border: 2px solid rgba(20,13,5,.5);
}
.action-btn {
  position: absolute;
  right: 22px; bottom: calc(82px + var(--safe-bottom));
  width: 108px; height: 108px;
  border-radius: 50%;
  border: 3px solid rgba(20,13,5,.45);
  background: radial-gradient(circle at 35% 30%, #ffd75e, #d79a1f);
  color: var(--ink);
  font: inherit; font-size: 17px;
  pointer-events: auto;
  cursor: pointer;
  touch-action: none;
}
.action-btn:active { transform: scale(.94); }
.action-btn:disabled { opacity: .4; }

/* ------------------------------------------------------- my farmer */
.wardrobe {
  position: absolute;
  inset: 0;
  z-index: 25;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  touch-action: none;
}
.wardrobe.open { opacity: 1; pointer-events: auto; }

.wardrobe-top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: calc(10px + var(--safe-top)) 12px 10px;
  background: linear-gradient(180deg, rgba(20,13,5,.9), rgba(20,13,5,0));
}
.wardrobe-top h2 { margin: 0; font-size: 18px; letter-spacing: .3px; }
.wardrobe-top .coins { margin-left: auto; font-size: 16px; padding: 5px 12px 5px 9px; }
.coins.small .coin-icon { font-size: 15px; }

.wardrobe-panel {
  margin-top: auto;
  background: linear-gradient(180deg, #4a2f18, #2b1a0c);
  border-top: 3px solid rgba(255,207,77,.35);
  border-radius: 20px 20px 0 0;
  padding: 12px 12px calc(10px + var(--safe-bottom));
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 52%;
}
.subtabs {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}
.subtabs[hidden] { display: none; }
.subtab {
  border: 2px solid rgba(255,244,220,.14);
  background: rgba(0,0,0,.22);
  color: var(--cream);
  font: inherit;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
  opacity: .8;
}
.subtab.active {
  background: rgba(255,207,77,.18);
  border-color: var(--gold);
  color: var(--gold);
  opacity: 1;
}
.subtab .count { opacity: .6; font-size: 11px; margin-left: 4px; }

.wardrobe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 9px;
  /* shrink before the footer does, so the blurb is never clipped off */
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  padding-bottom: 2px;
}
.kit {
  display: flex;
  align-items: center;
  gap: 9px;
  text-align: left;
  font: inherit;
  color: var(--cream);
  background: rgba(0,0,0,.28);
  border: 2px solid rgba(255,244,220,.12);
  border-radius: 14px;
  padding: 8px 9px;
  cursor: pointer;
}
.kit:active { transform: translateY(1px); }
.kit.owned { border-color: rgba(95,168,79,.45); }
.kit.worn { border-color: var(--gold); background: rgba(255,207,77,.14); }
.kit.locked, .kit.cant { opacity: .55; }
.kit-swatch {
  flex: none;
  width: 38px; height: 38px;
  border-radius: 10px;
  border: 2px solid rgba(0,0,0,.35);
  overflow: hidden;
  display: flex;
}
.kit-swatch span { flex: 1; }
.kit-swatch.emoji {
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background: rgba(0,0,0,.3);
  border-color: rgba(255,244,220,.18);
}
.kit-info { min-width: 0; flex: 1; }
.kit-name {
  font-size: 12.5px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.kit-tag { font-size: 11px; font-weight: 700; opacity: .8; margin-top: 3px; }
.kit.worn .kit-tag { color: var(--gold); opacity: 1; }
.kit-tag.price { color: var(--gold); }
.kit-tag.locked { color: #ffb3a3; }

.wardrobe-foot {
  flex: none;
  font-size: 12px;
  font-weight: 600;
  opacity: .78;
  text-align: center;
  min-height: 2.6em;
  line-height: 1.3;
}

/* ------------------------------------------------------------ shop */
.drawer {
  position: absolute; left: 0; right: 0; bottom: 0;
  max-height: 80%;
  background: linear-gradient(180deg, #4a2f18, #2b1a0c);
  border-top: 3px solid rgba(255,207,77,.35);
  border-radius: 20px 20px 0 0;
  transform: translateY(102%);
  transition: transform .3s cubic-bezier(.2,.9,.3,1);
  z-index: 30;
  display: flex; flex-direction: column;
  padding-bottom: var(--safe-bottom);
}
.drawer.open { transform: translateY(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 12px 12px 6px; }
.tabs { display: flex; gap: 8px; }
.tab {
  border: 2px solid rgba(255,244,220,.18);
  background: rgba(0,0,0,.25);
  color: var(--cream);
  font: inherit; font-size: 13.5px;
  padding: 8px 14px; border-radius: 12px; cursor: pointer;
}
.tab.active { background: var(--gold); color: var(--ink); border-color: transparent; }
.drawer-coins { padding: 2px 16px 8px; font-size: 15px; color: var(--gold); }
.drawer-body {
  overflow-y: auto; -webkit-overflow-scrolling: touch;
  padding: 0 12px 16px;
  display: flex; flex-direction: column; gap: 9px;
}
.item {
  display: flex; align-items: center; gap: 11px;
  background: rgba(0,0,0,.28);
  border: 2px solid rgba(255,244,220,.12);
  border-radius: 14px; padding: 10px 11px;
}
.item.owned { border-color: rgba(95,168,79,.5); background: rgba(95,168,79,.1); }
.item.equipped { border-color: var(--gold); background: rgba(255,207,77,.13); }
.item.locked { opacity: .5; }
.item-emoji {
  font-size: 25px; width: 42px; height: 42px;
  display: grid; place-items: center;
  background: rgba(0,0,0,.3); border-radius: 11px; flex: none;
}
.item-info { flex: 1; min-width: 0; }
.item-name { font-size: 14.5px; }
.item-desc { font-size: 11.5px; font-weight: 600; opacity: .72; margin-top: 3px; line-height: 1.35; }
.btn-buy {
  flex: none; border: none; border-radius: 12px;
  padding: 10px 12px; font: inherit; font-size: 13px;
  min-width: 86px; cursor: pointer;
  color: var(--ink);
  background: linear-gradient(180deg, var(--gold), #e0a728);
  box-shadow: 0 3px 0 #9a6c13;
}
.btn-buy:active:not(:disabled) { transform: translateY(2px); box-shadow: 0 1px 0 #9a6c13; }
.btn-buy:disabled { background: #6b5638; color: rgba(255,244,220,.5); box-shadow: none; cursor: default; }
.btn-buy.equip { background: linear-gradient(180deg, #7bc76a, var(--green)); box-shadow: 0 3px 0 #3d7433; color: #10230c; }
.btn-buy.tag { background: none; box-shadow: none; color: var(--gold); font-size: 12px; min-width: 72px; }

/* ----------------------------------------------------------- lists */
.howto-list { list-style: none; margin: 0 0 8px; padding: 0; text-align: left; }
.howto-list li { font-size: 13px; font-weight: 600; line-height: 1.5; padding: 7px 0; border-bottom: 1.5px dashed rgba(255,244,220,.13); opacity: .92; }
.howto-list b { color: var(--gold); font-weight: 800; }
kbd {
  font: inherit; font-size: 11.5px;
  background: rgba(0,0,0,.4); border: 1.5px solid rgba(255,244,220,.25);
  border-radius: 6px; padding: 1px 6px;
}
.stats-list { list-style: none; margin: 0 0 8px; padding: 0; text-align: left; }
.stats-list li {
  display: flex; justify-content: space-between; gap: 10px;
  font-size: 13px; padding: 8px 2px;
  border-bottom: 1.5px dashed rgba(255,244,220,.14);
}
.stats-list li span:last-child { color: var(--gold); }

.needle-art { font-size: 52px; animation: spinNeedle 2.4s ease-in-out infinite; filter: drop-shadow(0 0 18px rgba(255,207,77,.7)); }
@keyframes spinNeedle { 0%,100% { transform: rotate(-14deg) scale(1); } 50% { transform: rotate(14deg) scale(1.1); } }
/* ------------------------------------------------ rosettes & shelf */

.prestige-line {
  margin: -16px 0 20px;
  font-size: 13px; font-weight: 800; letter-spacing: .4px;
  color: var(--gold);
}

.away-card {
  margin: 0 0 18px;
  background: rgba(0,0,0,.3);
  border: 2px solid rgba(255,207,77,.34);
  border-radius: 16px;
  padding: 14px;
}
.away-head { font-size: 11px; letter-spacing: 1.6px; text-transform: uppercase; opacity: .65; font-weight: 800; }
.away-body { font-size: 13px; font-weight: 600; line-height: 1.5; margin: 6px 0 10px; opacity: .92; }
.btn.small { font-size: 13px; padding: 10px 14px; }

.card.wide { max-width: 460px; }
.card-sub { font-size: 12px !important; letter-spacing: 1.2px; text-transform: uppercase; opacity: .6 !important; }
.card-foot { font-size: 12px !important; opacity: .7 !important; margin-top: 14px !important; }

.shelf-grid { display: grid; gap: 8px; text-align: left; }
.shelf-item {
  display: flex; align-items: center; gap: 12px;
  background: rgba(0,0,0,.26);
  border: 2px solid rgba(255,244,220,.12);
  border-radius: 14px;
  padding: 10px 12px;
}
.shelf-item.empty { opacity: .45; }
.shelf-emoji { font-size: 26px; width: 34px; text-align: center; flex: none; }
.shelf-info { flex: 1; min-width: 0; }
.shelf-name { font-size: 14px; font-weight: 800; }
.shelf-line { font-size: 11.5px; font-weight: 600; opacity: .72; line-height: 1.4; }
.shelf-count { font-size: 15px; font-weight: 900; color: var(--gold); flex: none; }

/* ---------------------------------------------------- daily barn */

/* The menu button carries today's state, so you can see whether it is worth
   opening without opening it. */
.btn-note {
  display: block;
  font-size: 11px; font-weight: 700; letter-spacing: .3px;
  opacity: .6; margin-top: 3px; text-transform: none;
}

/* The clock stands in for the coin counter, so it wants the same weight and
   a fixed width — digits must not shuffle the chip about as they tick. */
.coins.timer {
  font-variant-numeric: tabular-nums;
  min-width: 96px;
  color: var(--gold);
}

.win-stats { background: rgba(0,0,0,.28); border-radius: 14px; padding: 10px 14px; font-size: 13px; text-align: left; }
.win-stats div { display: flex; justify-content: space-between; padding: 4px 0; }
.win-stats span:last-child { color: var(--gold); }

/* Short screens: less air, so the whole menu stays in one view. */
@media (max-height: 860px) {
  .title { font-size: clamp(30px, 9vw, 44px); }
  .tagline { margin: 10px 0 16px; }
  .menu-buttons { gap: 8px; }
  .btn { padding: 12px 16px; }
  .btn.big { font-size: 16px; padding: 13px; }
  .away-card { padding: 11px; margin-bottom: 14px; }
  .menu-foot { margin-top: 14px; }
  .prestige-line { margin: -10px 0 14px; }
}

@media (min-width: 760px) {
  .drawer { width: 100%; max-width: 540px; left: 50%; right: auto; margin-left: -270px; }
  .action-btn { width: 96px; height: 96px; font-size: 16px; }
}
@media (pointer: fine) {
  .action-btn { width: 92px; height: 92px; font-size: 15px; }
}
