*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

:root {
  --bg-deep:   #060d1a;
  --bg-panel:  rgba(8, 18, 36, 0.94);
  --border:    rgba(255, 255, 255, 0.12);
  --text:      #e8f0fe;
  --muted:     #7a9ab8;
  --accent:    #4fc3f7;
  --accent-gold:#fbbc05;
  --accent-green:#34a853;
  --accent-red: #ef5350;
  --shadow-lg: 0 12px 36px rgba(0,0,0,0.6);
}

body {
  /* Matches the canvas land colour, so a slow first paint never flashes dark. */
  background: #e9e3cc;
  color: var(--text);
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  overflow: hidden;
  width: 100vw;
  height: 100vh;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

canvas { position: absolute; top:0; left:0; display:block; width:100%; height:100%; z-index: 1; }

/* Data attribution. Required for OpenStreetMap-derived places, and only fair to
   Wikipedia for the pictures and the words. */
#dataAttrib {
  position: absolute;
  right: 6px;
  bottom: 4px;
  z-index: 200;
  font-size: 9px;
  line-height: 1.3;
  color: rgba(232,240,254,0.7);
  background: rgba(6,13,26,0.55);
  border-radius: 5px;
  padding: 3px 7px;
  pointer-events: auto;
  max-width: 70vw;
  text-align: right;
}
#dataAttrib a { color: rgba(232,240,254,0.85); text-decoration: none; }
#dataAttrib a:hover { text-decoration: underline; }

#hud {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.panel {
  background: var(--bg-panel);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}

/* TOP DASHBOARD LAYOUT */
#topDash {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  justify-content: space-between;
  pointer-events: none;
}

/* RESOURCE PANEL */
#resourcePanel {
  width: 270px;
  padding: 10px 12px;
  flex-shrink: 0;
}

.res-block { margin-bottom: 6px; }
.res-block:last-child { margin-bottom: 0; }

.res-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2px;
}
.res-name { font-size: 9px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--muted); }
.res-pct { font-size: 11px; font-weight: 800; color: #fff; }

.res-row { display: flex; align-items: center; gap: 6px; }
.res-min-icon, .res-max-icon {
  font-size: 13px; flex-shrink: 0; width: 16px; text-align: center;
  line-height: 1; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.res-track { flex: 1; height: 6px; background: rgba(255,255,255,0.08); border-radius: 3px; overflow: hidden; }
.res-fill  { height: 100%; border-radius: 3px; transition: width .4s ease, background .4s ease; }
.res-fill.fuel   { background: linear-gradient(90deg,#1a7a38,#34a853); }
.res-fill.hunger { background: linear-gradient(90deg,#c68200,#fbbc05); }
.res-fill.tired  { background: linear-gradient(90deg,#6a2fa0,#9b5de5); }

/* GPS & DECISION CENTER */
#gpsCenter {
  flex: 1;
  max-width: 580px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: auto;
}

.gps-panel {
  padding: 8px 16px;
  text-align: center;
  border: 1.5px solid rgba(79,195,247,0.45);
  background: rgba(6, 22, 46, 0.94);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), inset 0 0 12px rgba(79,195,247,0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.gps-icon {
  font-size: 16px;
  color: var(--accent);
  animation: pulseGps 2s infinite ease-in-out;
}
@keyframes pulseGps { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.15); } }

#goalText { 
  font-size: 14px; font-weight: 800; color: #ffffff; letter-spacing: 0.2px; text-shadow: 0 2px 4px rgba(0,0,0,0.6); 
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* DECISION WRAPPER & CARDS */
#decisionWrap {
  width: 100%;
  display: none;
  pointer-events: auto;
  animation: fadeInDown 0.25s ease-out;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

#decisionTitle {
  text-align: center; font-size: 10px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 6px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}
#decisionOptions { display: flex; gap: 8px; justify-content: center; }

.dec-btn {
  flex: 1;
  background: rgba(8,18,36,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  padding: 8px;
  cursor: pointer;
  transition: all .2s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
  min-width: 100px;
  max-width: 200px;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.dec-btn:hover, .dec-btn:active {
  border-color: var(--accent);
  background: rgba(16,36,64,0.98);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 28px rgba(79,195,247,0.3);
}
.dec-btn.hl { border-color: rgba(251,188,5,0.7); }

/* Real Photo Container in Card */
.dec-img-wrap {
  width: 100%;
  height: 72px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 6px;
  position: relative;
  background: rgba(0,0,0,0.4);
}
.dec-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.dec-btn:hover .dec-img { transform: scale(1.08); }
.dec-icon-overlay {
  position: absolute;
  top: 4px;
  right: 4px;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(4px);
  border-radius: 6px;
  padding: 2px 5px;
  font-size: 14px;
  line-height: 1;
}

.dec-name { font-size: 12px; font-weight: 800; line-height: 1.2; text-align: center; color: #fff; }
.dec-sub  { font-size: 10px; color: var(--muted); margin-top: 2px; }
.dec-dir  { font-size: 10px; color: var(--accent); font-weight: 800; letter-spacing: 1px; text-transform: uppercase; margin-top: 3px; }
.dec-pts  { font-size: 10px; color: var(--accent-gold); font-weight: 700; margin-top: 2px; }

.dec-timer { height: 4px; background: rgba(255,255,255,0.08); border-radius: 2px; margin-top: 6px; overflow: hidden; width: 100%; }
.dec-timer-fill { height: 100%; background: linear-gradient(90deg,#4fc3f7,#0288d1); border-radius: 2px; transition: width .12s linear; }

/* RIGHT STATS & SPEEDO */
#rightStats {
  display: flex; gap: 8px; flex-shrink: 0;
}

.chip { padding: 6px 12px; text-align: center; }
.chip-label { font-size: 8px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--muted); }
.chip-value { font-size: 16px; font-weight: 800; color: #fff; line-height: 1.2; }

#speedo { padding: 6px 12px; display: flex; align-items: center; gap: 8px; }
.speed-sign {
  width: 28px; height: 28px; background: #fff; border: 2.5px solid #e53935;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 900; color: #000;
}
.speed-num { font-size: 20px; font-weight: 800; color: #fff; line-height: 1; }
.speed-unit { font-size: 8px; color: var(--muted); font-weight: 600; letter-spacing: 1px; }

/* NOTIFICATIONS */
#notifs {
  position: absolute;
  top: 130px;
  right: 12px;
  width: 260px;
  pointer-events: none;
  z-index: 110;
}
.notif {
  background: rgba(8,18,36,0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 10px 12px;
  margin-bottom: 6px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  border-left: 3px solid var(--accent);
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  animation: slideIn .25s ease;
}
@keyframes slideIn { from{opacity:0;transform:translateX(16px)} to{opacity:1;transform:translateX(0)} }
.notif-title { font-size: 11px; font-weight: 800; color: #fff; }
.notif-body  { font-size: 10px; color: #9bb5d0; margin-top: 2px; line-height: 1.3; }

@keyframes warn { 0%,100%{opacity:1} 50%{opacity:.3} }
.warning { animation: warn .7s ease-in-out infinite; color: #ef5350 !important; }

/* OVERLAY SCREENS */
.overlay-screen {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 20px;
  overflow-y: auto;
}

#startScreen {
  background: radial-gradient(ellipse at 50% 50%, #0c2347 0%, #060d1a 80%);
}

.logo-text {
  font-size: 64px;
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1;
  background: linear-gradient(135deg, #4fc3f7 0%, #9b5de5 55%, #fbbc05 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
  text-align: center;
}
.logo-sub {
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  text-align: center;
}

/* REAL WORLD LOCATION SETUP BOX ON START SCREEN */
.loc-setup-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(79,195,247,0.3);
  border-radius: 18px;
  padding: 16px 20px;
  width: 100%;
  max-width: 520px;
  margin-bottom: 24px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

.loc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.loc-title {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 6px;
}
.gps-btn {
  background: rgba(79,195,247,0.15);
  border: 1px solid var(--accent);
  color: #fff;
  border-radius: 10px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}
.gps-btn:hover { background: rgba(79,195,247,0.3); transform: translateY(-1px); }

.loc-status {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  background: rgba(0,0,0,0.3);
  padding: 8px 12px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dir-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.dir-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.dir-btn {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 10px 6px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
}
.dir-btn:hover, .dir-btn.active {
  background: rgba(79,195,247,0.25);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 0 12px rgba(79,195,247,0.3);
}

.feature-grid { display: flex; gap: 12px; margin-bottom: 24px; max-width: 520px; width: 100%; }
.feat-card {
  flex: 1; text-align: center;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px; padding: 12px 8px;
}
.feat-icon { font-size: 26px; line-height: 1; margin-bottom: 6px; }
.feat-name { font-size: 11px; font-weight: 700; color: #d0e8f8; }
.feat-desc { font-size: 9px; color: var(--muted); margin-top: 2px; }

.key-hints { font-size: 11px; color: var(--muted); margin-bottom: 16px; text-align: center; }
.key-hints kbd {
  display: inline-block; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18); border-radius: 4px;
  padding: 1px 6px; font-size: 10px; font-family: inherit; color: #c0d8ee;
}

.big-btn {
  background: linear-gradient(135deg,#1565c0,#0288d1); border: none;
  border-radius: 16px; padding: 16px 48px; font-size: 17px; font-weight: 800;
  color: #fff; cursor: pointer; font-family: 'Outfit', sans-serif;
  letter-spacing: 0.5px; transition: all .2s ease;
  box-shadow: 0 8px 28px rgba(2,136,209,.4);
}
.big-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(2,136,209,.6); }

/* GAME OVER SCREEN & VISITED TRAVEL LOG */
#gameOverScreen {
  background: rgba(0,0,0,0.88); backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px); display: none;
  padding: 24px 16px;
}
.go-title {
  font-size: 44px; font-weight: 900; letter-spacing: -1px;
  background: linear-gradient(135deg,#4fc3f7,#9b5de5);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 4px; text-align: center;
}
#goReason { font-size: 15px; color: var(--muted); max-width: 440px; text-align: center; margin-bottom: 20px; }

.score-box {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px; padding: 16px 36px; text-align: center; margin-bottom: 20px;
}
.score-label { font-size: 10px; letter-spacing: 2px; color: var(--muted); text-transform: uppercase; margin-bottom: 4px; }
.score-big   { font-size: 56px; font-weight: 900; color: #fff; letter-spacing: -1px; line-height: 1; }
.score-unit  { font-size: 12px; color: var(--muted); margin-top: 2px; }
.score-stats { display: flex; gap: 24px; margin-top: 14px; justify-content: center; }
.score-stat  { text-align: center; }
.ss-val { font-size: 22px; font-weight: 800; color: var(--accent); }
.ss-lbl { font-size: 9px; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; }

/* VISITED TRAVEL LOG SECTION */
.visited-card {
  width: 100%;
  max-width: 580px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(79,195,247,0.3);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}
.visited-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.visited-title {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
}
.copy-btn {
  background: rgba(79,195,247,0.15);
  border: 1px solid var(--accent);
  color: #fff;
  border-radius: 8px;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}
.copy-btn:hover { background: rgba(79,195,247,0.3); }

.visited-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 220px;
  overflow-y: auto;
  padding-right: 4px;
}
.visited-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 8px 12px;
}
.visited-img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}
.visited-info { flex: 1; }
.visited-name { font-size: 12px; font-weight: 800; color: #fff; }
.visited-sub { font-size: 10px; color: var(--muted); margin-top: 2px; }

/* MOBILE RESPONSIVE MEDIA QUERIES (< 768px) */
@media (max-width: 768px) {
  #topDash {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    top: 8px; left: 8px; right: 8px;
  }

  #resourcePanel {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 8px;
    padding: 6px 10px;
  }
  .res-block { flex: 1; margin-bottom: 0; }
  .res-name { font-size: 8px; letter-spacing: 0.5px; }
  .res-pct { font-size: 10px; }
  .res-track { height: 5px; }

  #gpsCenter { max-width: 100%; order: 2; }
  .gps-panel { padding: 6px 12px; }
  #goalText { font-size: 12px; }

  #rightStats {
    justify-content: space-between;
    width: 100%;
    order: 3;
  }
  .chip { flex: 1; padding: 4px 8px; }
  .chip-value { font-size: 14px; }
  #speedo { padding: 4px 8px; }
  .speed-num { font-size: 16px; }

  #decisionWrap {
    position: fixed;
    bottom: 12px;
    left: 8px;
    right: 8px;
    width: auto;
    z-index: 150;
  }
  #decisionOptions { gap: 6px; }
  .dec-btn { min-width: 0; padding: 6px; border-radius: 12px; }
  .dec-img-wrap { height: 54px; margin-bottom: 4px; }
  .dec-name { font-size: 10px; }
  .dec-sub  { font-size: 9px; }
  .dec-dir  { font-size: 9px; }

  .logo-text { font-size: 44px; }
  .logo-sub { font-size: 12px; margin-bottom: 16px; }
  .loc-setup-card { padding: 12px 14px; margin-bottom: 16px; }
  .dir-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .big-btn { padding: 14px 32px; font-size: 15px; width: 100%; }
}

/* ── WAYBOUND EXPLORER: new elements after the rebuild ───────────────── */

.logo-word {
  font-size: 30px; font-weight: 800; letter-spacing: 10px;
  color: var(--accent); margin-top: -6px; margin-bottom: 2px;
}

.loc-note {
  font-size: 11px; line-height: 1.45; color: var(--muted);
  margin-top: 10px; padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.disclaimer {
  max-width: 520px; margin-top: 18px;
  font-size: 10.5px; line-height: 1.5; text-align: center;
  color: var(--muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px; padding: 9px 14px;
}
.disclaimer strong { color: #c0d8ee; }

/* Decision cards now carry a live description under the name. */
.dec-desc {
  font-size: 9.5px; line-height: 1.35; color: var(--muted);
  margin-top: 3px; min-height: 13px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.dec-icon-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; background: rgba(255,255,255,0.05);
}

/* Travel log entries carry the true distance from the start point. */
.visited-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; background: rgba(255,255,255,0.06); border-radius: 8px;
}
.visited-dist { font-size: 10px; color: var(--accent); margin-top: 3px; font-weight: 700; }
.visited-empty { text-align: center; color: var(--muted); font-size: 12px; padding: 14px; }

@media (max-width: 768px) {
  .logo-word { font-size: 20px; letter-spacing: 6px; }
  .disclaimer { font-size: 9.5px; padding: 8px 11px; }
  .dec-desc { display: none; }
}

/* Commons licences want the photographer credited, so the credit sits on the
   picture it belongs to rather than in a footnote nobody reads. */
.dec-credit {
  position: absolute; left: 0; right: 0; bottom: 0;
  font-size: 7.5px; line-height: 1.3; padding: 2px 4px;
  color: rgba(255,255,255,0.82);
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* ── THE SATCHEL: finds accumulating during play ─────────────────────── */

#findPanel {
  position: absolute;
  top: 96px;
  right: 12px;
  width: 232px;
  max-height: 46vh;
  padding: 8px 6px 6px 10px;
  display: flex;
  flex-direction: column;
  pointer-events: auto;
  z-index: 110;
}
#findPanel[hidden] { display: none; }

.find-head {
  display: flex; justify-content: space-between; align-items: center;
  padding-right: 4px; margin-bottom: 6px; flex-shrink: 0;
}
.find-title {
  font-size: 9px; font-weight: 800; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--muted);
}
.find-count {
  font-size: 11px; font-weight: 800; color: var(--accent);
  background: rgba(79,195,247,0.14); border-radius: 6px; padding: 1px 7px;
}

.find-list { overflow-y: auto; display: flex; flex-direction: column; gap: 5px; padding-right: 4px; }
.find-list::-webkit-scrollbar { width: 4px; }
.find-list::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.18); border-radius: 2px; }

.find-item {
  display: flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px; padding: 4px 6px;
  animation: findIn .35s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes findIn {
  from { opacity: 0; transform: translateX(14px); }
  to   { opacity: 1; transform: translateX(0); }
}
.find-thumb {
  width: 30px; height: 30px; border-radius: 6px; object-fit: cover; flex-shrink: 0;
}
.find-thumb-icon {
  width: 30px; height: 30px; border-radius: 6px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; background: rgba(255,255,255,0.07);
}
.find-text { min-width: 0; }
.find-name {
  font-size: 10.5px; font-weight: 700; color: #fff;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.find-dist { font-size: 9px; color: var(--accent); margin-top: 1px; }

@media (max-width: 768px) {
  /* On a phone the dashboard already stacks; the satchel goes below it, low and wide. */
  #findPanel {
    top: auto; bottom: 8px; left: 8px; right: 8px;
    width: auto; max-height: 22vh;
  }
  .find-list { flex-direction: row; overflow-x: auto; overflow-y: hidden; }
  .find-item { flex-shrink: 0; max-width: 150px; }
}
