/* AI בגובה העיניים — game player design system */

:root {
  --paper: #faf7f2;
  --card: #ffffff;
  --ink: #1c2333;
  --ink-soft: #5b6478;
  --navy: #0a1122;
  --navy2: #16264f;
  --blue: #2f6fe0;
  --blue-soft: #e8f0fe;
  --accent: #6ea8ff;
  --orange: #d1490a;
  --orange-soft: #fdeee6;
  --green: #1d9e57;
  --green-soft: #e6f7ec;
  --amber: #b97a10;
  --amber-soft: #fdf3dd;
  --line: #e5decf;
  --shadow: 0 10px 30px rgba(20, 30, 60, 0.10);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { height: 100%; }
body {
  font-family: 'Heebo', sans-serif;
  background: var(--navy);
  color: var(--ink);
  height: 100%;
  overscroll-behavior: none;
}

/* ---------- app frame: phone-like column on every screen size ---------- */
#app {
  position: fixed; inset: 0;
  margin: 0 auto;
  width: 100%; max-width: 560px;
  background: var(--paper);
  display: flex; flex-direction: column;
  overflow: hidden;
}
@media (min-width: 620px) {
  #app {
    top: 18px; bottom: 18px;
    border-radius: 26px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  }
  body { background: radial-gradient(circle at 50% 0%, #16264f 0%, #0a1122 70%); }
}

/* ---------- top bar ---------- */
.topbar {
  flex: none; display: flex; align-items: center; gap: 14px;
  padding: 14px 16px;
  background: var(--paper);
  border-bottom: 1.5px solid var(--line);
}
.tb-back {
  font-family: inherit; font-size: 19px; font-weight: 700; color: var(--ink-soft);
  background: none; border: none; cursor: pointer;
  display: flex; align-items: center; gap: 4px;
  padding: 8px 4px; min-height: 44px;
}
.tb-back svg { width: 20px; height: 20px; }
.tb-track {
  flex: 1; height: 14px; border-radius: 999px;
  background: #e9e2d4; overflow: hidden;
}
.tb-fill {
  height: 100%; width: 0; border-radius: 999px;
  background: var(--blue);
  transition: width 0.35s ease, background 0.35s ease;
}
.tb-fill.won { background: var(--green); }
.tb-map {
  font-size: 18px; font-weight: 700; color: var(--ink-soft);
  text-decoration: none; padding: 8px 4px; min-height: 44px;
  display: flex; align-items: center;
}

/* ---------- stage (card area) ---------- */
.stage {
  flex: 1; overflow-y: auto; -webkit-overflow-scrolling: touch;
  display: flex; flex-direction: column;
  padding: 22px 20px 24px;
}
.card {
  width: 100%; margin: auto 0;
  font-size: 23px; line-height: 1.55;
  outline: none;
}
.card h1 { font-size: 32px; font-weight: 900; line-height: 1.25; color: var(--navy); }
.card h2 { font-size: 29px; font-weight: 900; line-height: 1.3; color: var(--navy); margin-bottom: 14px; }
.card p { margin-bottom: 12px; }
.card p:last-child { margin-bottom: 0; }

/* pills */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 17px; font-weight: 800; letter-spacing: 0.2px;
  border-radius: 999px; padding: 7px 16px; margin-bottom: 16px;
}
.pill.blue { background: var(--blue-soft); color: var(--blue); }
.pill.orange { background: var(--orange-soft); color: var(--orange); }
.pill.green { background: var(--green-soft); color: var(--green); }

/* ---------- title card ---------- */
.c-title { text-align: center; }
.c-title .op {
  width: 100%; max-height: 34vh; object-fit: cover;
  border-radius: 20px; box-shadow: var(--shadow); margin-bottom: 18px;
}
.c-title h1 { margin-bottom: 20px; }
.goals { display: flex; flex-direction: column; gap: 10px; max-width: 380px; margin: 0 auto; }
.goal {
  display: flex; align-items: center; gap: 14px;
  background: var(--card); border: 1.5px solid var(--line); border-radius: 16px;
  padding: 12px 18px; font-size: 21px; font-weight: 700; color: var(--navy);
  text-align: right;
}
.goal .g-ico { font-size: 30px; flex: none; }

/* ---------- learn card ---------- */
.c-learn { text-align: center; }
.c-learn .big-ico { font-size: 74px; line-height: 1; display: block; margin-bottom: 18px; }
.c-learn p { color: var(--ink); font-size: 24px; }
.c-learn img.learn-img {
  width: 100%; max-height: 30vh; object-fit: cover;
  border-radius: 18px; box-shadow: var(--shadow); margin-bottom: 18px;
}
.learn-links { display: flex; flex-direction: column; gap: 14px; margin-top: 22px; }
.learn-link {
  display: flex; align-items: center; justify-content: center;
  min-height: 60px; padding: 12px 18px;
  background: var(--orange); color: #fff;
  font-size: 21px; font-weight: 800; text-decoration: none;
  border-radius: 16px; box-shadow: 0 5px 0 rgba(122, 40, 4, 0.5);
}
.learn-link:active { transform: translateY(3px); box-shadow: 0 2px 0 rgba(122, 40, 4, 0.5); }

/* ---------- story card ---------- */
.st-head { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.st-avatar {
  width: 64px; height: 64px; border-radius: 50%; flex: none;
  background: linear-gradient(135deg, #f4a261, #e76f51);
  color: #fff; font-size: 30px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
}
.st-name { font-size: 22px; font-weight: 800; color: var(--navy); }
.st-sub { font-size: 18px; color: var(--ink-soft); }
.beats { display: flex; flex-direction: column; gap: 12px; }
.beat {
  background: var(--card); border: 1.5px solid var(--line);
  border-radius: 18px 18px 18px 6px;
  padding: 14px 18px; font-size: 22px;
}
.beat.last { background: var(--green-soft); border-color: #bfe8cf; font-weight: 700; }
.beat.dim { opacity: 0.55; transition: opacity 0.3s; }

/* ---------- chat card (phone replay) ---------- */
.phone-wrap { max-width: 340px; margin: 0 auto; }
.phone {
  background: #111; border-radius: 38px; padding: 10px;
  box-shadow: 0 18px 45px rgba(20, 38, 77, 0.25);
}
.phone-screen {
  background: #fff; border-radius: 30px; overflow: hidden;
  font-size: 16px; line-height: 1.5; position: relative;
}
.ph-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px; border-bottom: 1px solid #f0f0f0; direction: ltr;
}
.ph-top .ph-title { font-weight: 700; color: #0d0d0d; direction: ltr; }
.ph-top .ph-title span { color: #8e8e8e; font-weight: 400; }
.ph-icon { width: 22px; height: 22px; color: #0d0d0d; flex: none; }
.ph-body { padding: 14px; min-height: 210px; display: flex; flex-direction: column; gap: 12px; }
.msg-user {
  align-self: flex-start; background: #e9e9eb; color: #0d0d0d;
  border-radius: 20px; padding: 10px 16px; max-width: 85%;
}
.msg-ai { color: #0d0d0d; padding: 2px 2px 0; }
.ph-composer {
  margin: 10px 12px 14px; background: #f4f4f4; border-radius: 999px;
  display: flex; align-items: center; gap: 10px; padding: 10px 14px; direction: ltr;
}
.ph-composer .ph-icon { width: 20px; height: 20px; color: #555; }
.ph-composer .ph-ask { color: #8e8e8e; flex: 1; direction: ltr; text-align: left; font-size: 15px; }
.typing { display: flex; gap: 5px; padding: 8px 2px; }
.typing span {
  width: 9px; height: 9px; border-radius: 50%; background: #b9b9c0;
  animation: typing 1s infinite;
}
.typing span:nth-child(2) { animation-delay: 0.18s; }
.typing span:nth-child(3) { animation-delay: 0.36s; }
.chat-note { text-align: center; font-size: 19px; color: var(--ink-soft); margin-top: 14px; }

/* ---------- screen card (tap the dots) ---------- */
.c-screen h2 { text-align: center; }
.co-dot {
  position: absolute; width: 38px; height: 38px; border-radius: 50%;
  background: var(--orange); color: #fff;
  font-weight: 800; font-size: 19px; font-family: inherit;
  display: flex; align-items: center; justify-content: center;
  border: 3px solid #fff; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
  z-index: 2; cursor: pointer;
  animation: pulse-halo 1.6s infinite;
}
.co-dot.hit {
  background: var(--green); animation: none;
  font-size: 21px;
}
.dot-say {
  min-height: 84px; margin-top: 16px;
  background: var(--card); border: 1.5px solid var(--line); border-radius: 16px;
  padding: 14px 18px; font-size: 21px;
  display: flex; align-items: center; gap: 12px;
}
.dot-say .ds-num {
  width: 34px; height: 34px; border-radius: 50%; flex: none;
  background: var(--green); color: #fff; font-weight: 800; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
}
.dot-say.empty { color: var(--ink-soft); font-size: 20px; }
.screen-hint { text-align: center; font-size: 20px; font-weight: 700; color: var(--orange); margin-bottom: 14px; }

/* ---------- do card ---------- */
.c-do .lead { font-size: 23px; margin-bottom: 16px; }
.prompt-box {
  background: var(--card); border: 2px solid var(--line); border-radius: 18px;
  padding: 18px 20px; font-size: 23px; line-height: 1.6; color: var(--navy);
  box-shadow: var(--shadow);
}
.do-links { text-align: center; margin-top: 16px; }
.copy-link {
  font-family: inherit; font-size: 19px; font-weight: 700; color: var(--ink-soft);
  background: none; border: none; cursor: pointer; text-decoration: underline;
  padding: 8px; min-height: 44px;
}
.did-it {
  text-align: center; font-size: 22px; font-weight: 800; color: var(--green);
  margin-top: 14px;
}

/* ---------- pick card ---------- */
.picks { display: flex; flex-direction: column; gap: 12px; }
.pick-btn {
  font-family: inherit; font-size: 21px; font-weight: 700; text-align: right;
  color: var(--navy); background: var(--card);
  border: 2px solid var(--line); border-radius: 16px;
  padding: 16px 18px; min-height: 64px; cursor: pointer;
  display: flex; align-items: center; gap: 12px;
  transition: border-color 0.15s;
}
.pick-btn .p-ico { font-size: 28px; flex: none; }
.pick-btn:active { border-color: var(--blue); }
.pick-btn.tried { border-color: var(--green); background: var(--green-soft); }
.pick-btn.tried::after { content: '✓'; margin-inline-start: auto; color: var(--green); font-weight: 900; font-size: 26px; }

/* ---------- quiz card ---------- */
.c-quiz .q-text { font-size: 25px; font-weight: 800; color: var(--navy); margin-bottom: 20px; }
.answers { display: flex; flex-direction: column; gap: 12px; }
.ans-btn {
  font-family: inherit; font-size: 21px; font-weight: 700; text-align: right;
  color: var(--navy); background: var(--card);
  border: 2px solid var(--line); border-radius: 16px;
  padding: 16px 18px; min-height: 64px; cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.ans-btn.correct { border-color: var(--green); background: var(--green-soft); animation: pop 0.35s; }
.ans-btn.wrong { border-color: #d99; background: #fdeceb; animation: shake 0.4s; }
.quiz-fb { min-height: 36px; margin-top: 16px; font-size: 21px; font-weight: 800; text-align: center; }
.quiz-fb.good { color: var(--green); }
.quiz-fb.bad { color: var(--amber); }

/* ---------- tip card ---------- */
.c-tip { text-align: center; }
.tip-frame { border-radius: 22px; padding: 30px 24px; }
.tip-frame .big-ico { font-size: 72px; line-height: 1; display: block; margin-bottom: 16px; }
.tip-frame p { font-size: 24px; font-weight: 700; }
.tip-safe { background: var(--green-soft); color: #14532d; }
.tip-warn { background: var(--amber-soft); color: #7c4a03; }
.tip-tip { background: var(--blue-soft); color: #1e3a8a; }

/* ---------- reveal card (flip) ---------- */
.flip-zone { perspective: 1200px; cursor: pointer; }
.flip-inner {
  position: relative; width: 100%; min-height: 260px;
  transform-style: preserve-3d; transition: transform 0.6s;
}
.flip-zone.flipped .flip-inner { transform: rotateY(180deg); }
.flip-face {
  position: absolute; inset: 0; backface-visibility: hidden; -webkit-backface-visibility: hidden;
  border-radius: 22px; padding: 26px 24px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 14px;
}
.flip-front { background: var(--navy2); color: #fff; }
.flip-front .f-q { font-size: 27px; font-weight: 900; }
.flip-front .f-hint { font-size: 19px; font-weight: 700; color: var(--accent); }
.flip-back { background: var(--card); border: 2px solid var(--line); transform: rotateY(180deg); }
.flip-back p { font-size: 23px; font-weight: 700; color: var(--navy); }

/* ---------- before/after card ---------- */
.c-ba { text-align: center; }
.ba-frame {
  position: relative; max-width: 340px; margin: 0 auto;
  border-radius: 18px; overflow: hidden; box-shadow: var(--shadow);
}
.ba-frame img { width: 100%; display: block; }
.ba-frame .ba-after { position: absolute; inset: 0; opacity: 0; transition: opacity 0.9s ease; }
.ba-frame.magic .ba-after { opacity: 1; }
.ba-tag {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  background: rgba(10, 17, 34, 0.8); color: #fff;
  font-size: 17px; font-weight: 800; border-radius: 999px; padding: 5px 14px;
}
.ba-toggle {
  margin-top: 14px; font-family: inherit; font-size: 19px; font-weight: 700;
  color: var(--blue); background: none; border: none; cursor: pointer;
  text-decoration: underline; padding: 8px; min-height: 44px;
}

/* ---------- recap card ---------- */
.recap-list { display: flex; flex-direction: column; gap: 12px; }
.recap-item {
  display: flex; align-items: center; gap: 14px;
  background: var(--card); border: 1.5px solid var(--line); border-radius: 16px;
  padding: 14px 18px; font-size: 21px; font-weight: 700; color: var(--navy);
  opacity: 0; transform: translateY(10px);
}
.recap-item.on { opacity: 1; transform: none; transition: opacity 0.3s, transform 0.3s; }
.recap-item .r-check {
  width: 34px; height: 34px; border-radius: 50%; flex: none;
  background: var(--green); color: #fff; font-size: 20px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  animation: pop 0.35s;
}

/* ---------- finish card ---------- */
.c-finish { text-align: center; }
.c-finish .fin-bini { height: 120px; margin-bottom: 8px; animation: bini-bounce 0.7s; }
.c-finish h1 { margin-bottom: 8px; }
.fin-sub { font-size: 22px; color: var(--ink-soft); margin-bottom: 14px; }
.stars { display: flex; justify-content: center; gap: 12px; margin-bottom: 20px; }
.star { font-size: 52px; line-height: 1; opacity: 0.22; transform: scale(0.8); }
.star.lit { opacity: 1; transform: scale(1); animation: pop 0.4s; }
.fin-trophy { font-size: 80px; line-height: 1; margin-bottom: 10px; animation: pop 0.5s; }

/* upsell / community blocks on finish card */
.sell-box {
  text-align: right;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy2) 100%);
  color: #eef2ff; border-radius: 22px; padding: 24px 22px; margin-top: 10px;
}
.sell-box .sb-kick { font-size: 18px; font-weight: 800; color: var(--accent); margin-bottom: 6px; }
.sell-box .sb-head { font-size: 24px; font-weight: 900; color: #fff; margin-bottom: 12px; }
.sell-box ul { list-style: none; margin-bottom: 16px; }
.sell-box li { position: relative; padding-right: 26px; margin-bottom: 8px; font-size: 20px; }
.sell-box li::before {
  content: ''; position: absolute; right: 0; top: 12px;
  width: 12px; height: 12px; border-radius: 50%; background: var(--orange);
}
.sell-box .sb-btn {
  display: block; text-align: center; text-decoration: none;
  background: var(--orange); color: #fff;
  font-size: 22px; font-weight: 900; border-radius: 16px; padding: 16px;
  border: none; width: 100%; font-family: inherit; cursor: pointer;
}
.sell-box .sb-note { text-align: center; font-size: 18px; color: #b9c6e8; margin-top: 10px; margin-bottom: 0; }
.sell-box .sb-ok { text-align: center; font-size: 20px; font-weight: 800; color: #7fe0a4; margin-top: 10px; margin-bottom: 0; }

/* ---------- bottom bar ---------- */
.botbar {
  flex: none;
  padding: 10px 20px calc(14px + env(safe-area-inset-bottom));
  background: var(--paper);
  border-top: 1.5px solid var(--line);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.skip-link {
  font-family: inherit; font-size: 18px; font-weight: 700; color: var(--ink-soft);
  background: none; border: none; cursor: pointer; text-decoration: underline;
  padding: 6px; min-height: 36px;
}
.go-btn {
  width: 100%; min-height: 66px;
  font-family: inherit; font-size: 24px; font-weight: 900; color: #fff;
  background: var(--blue); border: none; border-radius: 18px; cursor: pointer;
  box-shadow: 0 6px 0 rgba(23, 56, 128, 0.45);
  transition: background 0.2s, transform 0.1s;
}
.go-btn:active { transform: translateY(3px); box-shadow: 0 3px 0 rgba(23, 56, 128, 0.45); }
.go-btn.orange { background: var(--orange); box-shadow: 0 6px 0 rgba(122, 40, 4, 0.5); }
.go-btn.green { background: var(--green); box-shadow: 0 6px 0 rgba(12, 92, 49, 0.5); }
.go-btn.locked {
  background: #cfc8b8; color: #8a8474; box-shadow: none; cursor: default;
}
.go-btn.unlockpop { animation: pop 0.35s; }

/* ---------- Bini ---------- */
.bini-slot {
  position: relative; flex: none;
  display: flex; flex-direction: row; align-items: flex-end; gap: 8px;
  direction: ltr; padding: 6px 12px 4px;
  pointer-events: none;
}
.bini-slot img {
  height: 64px; display: block;
  filter: drop-shadow(0 6px 12px rgba(10, 20, 50, 0.3));
  animation: bini-float 3.2s ease-in-out infinite;
}
.bini-x {
  position: absolute; top: -2px; left: 48px; z-index: 6;
  width: 26px; height: 26px; border-radius: 50%; padding: 0;
  background: #fff; color: var(--ink-soft); border: 1.5px solid var(--line);
  font-family: inherit; font-size: 16px; font-weight: 700; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; pointer-events: auto; box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.bini-pop {
  max-width: 280px; margin-bottom: 4px; direction: rtl;
  background: var(--navy); color: #fff;
  font-size: 18px; font-weight: 700; line-height: 1.45;
  border-radius: 16px 16px 16px 4px; padding: 10px 14px;
  opacity: 0; transform: scale(0.85); transform-origin: bottom left;
  transition: opacity 0.25s, transform 0.25s;
}
.bini-pop.shown { opacity: 1; transform: scale(1); }

/* ---------- confetti ---------- */
.confetti-layer {
  position: absolute; inset: 0; overflow: hidden;
  pointer-events: none; z-index: 50;
}
.conf {
  position: absolute; top: -20px; width: 10px; height: 14px;
  border-radius: 2px;
  animation: conf-fall var(--d) linear forwards;
  left: var(--x);
}
@keyframes conf-fall {
  0% { transform: translateY(0) rotate(0); opacity: 1; }
  100% { transform: translateY(105vh) rotate(var(--r)); opacity: 0.6; }
}

/* ---------- error / noscript ---------- */
.boot-err { text-align: center; padding: 60px 26px; font-size: 23px; }
.boot-err button {
  margin-top: 22px; width: 100%; min-height: 66px;
  font-family: inherit; font-size: 24px; font-weight: 900; color: #fff;
  background: var(--blue); border: none; border-radius: 18px; cursor: pointer;
}
.nojs { text-align: center; padding: 60px 26px; font-size: 22px; color: var(--paper); }

/* ---------- animations ---------- */
@keyframes card-in { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
.card.in { animation: card-in 0.3s ease both; }
@keyframes pop { 0% { transform: scale(0.9); } 60% { transform: scale(1.06); } 100% { transform: scale(1); } }
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(6px); }
  50% { transform: translateX(-6px); }
  75% { transform: translateX(4px); }
}
@keyframes pulse-halo {
  0% { box-shadow: 0 2px 10px rgba(0,0,0,0.35), 0 0 0 0 rgba(209, 73, 10, 0.55); }
  70% { box-shadow: 0 2px 10px rgba(0,0,0,0.35), 0 0 0 14px rgba(209, 73, 10, 0); }
  100% { box-shadow: 0 2px 10px rgba(0,0,0,0.35), 0 0 0 0 rgba(209, 73, 10, 0); }
}
@keyframes typing { 0%, 60%, 100% { opacity: 0.3; } 30% { opacity: 1; } }
@keyframes bini-bounce {
  0% { transform: translateY(0); } 35% { transform: translateY(-22px); }
  65% { transform: translateY(0); } 82% { transform: translateY(-8px); } 100% { transform: translateY(0); }
}
@keyframes bini-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .recap-item { opacity: 1; transform: none; }
}

/* ---------- small phones ---------- */
@media (max-width: 380px) {
  .card { font-size: 21px; }
  .card h1 { font-size: 28px; }
  .card h2 { font-size: 25px; }
  .go-btn { font-size: 22px; min-height: 62px; }
  .bini-slot img { height: 56px; }
  .bini-x { top: -2px; left: 40px; }
}

/* =========================================================
   MAP (course/index.html)
   ========================================================= */
body.mappage { overflow-y: auto; height: auto; background: var(--navy); }
.map-shell { max-width: 560px; margin: 0 auto; background: var(--paper); min-height: 100vh; }
@media (min-width: 620px) {
  .map-shell { box-shadow: 0 0 80px rgba(0, 0, 0, 0.5); }
}
.map-head {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy2) 100%);
  color: #fff; text-align: center; padding: 26px 22px 30px;
}
.map-head .mh-brand { font-size: 19px; font-weight: 800; color: var(--accent); text-decoration: none; display: inline-block; margin-bottom: 10px; }
.map-head h1 { font-size: 34px; font-weight: 900; margin-bottom: 8px; }
.map-head .mh-progress { font-size: 20px; color: #c9d6f5; margin-bottom: 14px; }
.mh-track { height: 14px; border-radius: 999px; background: rgba(255,255,255,0.15); overflow: hidden; max-width: 320px; margin: 0 auto; }
.mh-fill { height: 100%; border-radius: 999px; background: var(--green); transition: width 0.4s; }

.map-path { position: relative; padding: 30px 0 40px; }
.stage-zone { position: relative; padding: 10px 22px 26px; }
.stage-zone.z1 { background: #eef4fd; }
.stage-zone.z2 { background: #fdf6ea; }
.stage-zone.z3 { background: #edf9f1; }
.zone-pill {
  display: table; margin: 8px auto 20px;
  font-size: 18px; font-weight: 900; border-radius: 999px; padding: 8px 20px;
  background: var(--navy); color: #fff;
}
.spine {
  position: absolute; top: 0; bottom: 0; right: 68px;
  border-right: 3px dashed #c9c0ac; z-index: 0;
}
.station {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 16px;
  width: 100%; text-align: right; text-decoration: none;
  background: none; border: none; font-family: inherit; cursor: pointer;
  padding: 10px 6px; min-height: 92px; margin-bottom: 6px;
}
.station.now { min-height: 118px; padding-inline-end: 100px; }
.st-circle {
  width: 82px; height: 82px; border-radius: 50%; flex: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 34px; font-weight: 900;
  background: var(--card); color: var(--blue);
  border: 3px solid var(--blue);
  box-shadow: 0 6px 16px rgba(20, 30, 60, 0.12);
}
.station.done .st-circle { background: var(--green); border-color: var(--green); color: #fff; font-size: 38px; }
.station.now .st-circle {
  background: var(--orange); border-color: var(--orange); color: #fff;
  animation: pulse-halo 1.8s infinite;
}
.station.lock .st-circle { background: #eae5d9; border-color: #cfc8b8; color: #a49d8b; font-size: 30px; }
.st-txt { flex: 1; }
.st-title { font-size: 22px; font-weight: 800; color: var(--navy); line-height: 1.3; }
.st-sub { font-size: 18px; color: var(--ink-soft); line-height: 1.35; }
.station.lock .st-title, .station.lock .st-sub { color: #a49d8b; }
.st-stars { font-size: 19px; letter-spacing: 2px; }
.map-bini {
  position: absolute; left: 4px; top: 50%; transform: translateY(-50%);
  width: 88px; pointer-events: none; z-index: 2;
  filter: drop-shadow(0 6px 12px rgba(10, 20, 50, 0.3));
  animation: bini-float 3.2s ease-in-out infinite;
}

/* lock bottom sheet */
.sheet-veil {
  position: fixed; inset: 0; background: rgba(7, 12, 24, 0.6);
  z-index: 90; opacity: 0; transition: opacity 0.25s; pointer-events: none;
}
.sheet-veil.open { opacity: 1; pointer-events: auto; }
.lock-sheet {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 91;
  max-width: 560px; margin: 0 auto;
  background: var(--paper); border-radius: 26px 26px 0 0;
  padding: 26px 24px calc(30px + env(safe-area-inset-bottom));
  text-align: center;
  transform: translateY(105%); transition: transform 0.3s ease;
}
.lock-sheet.open { transform: none; }
.lock-sheet .ls-ico { font-size: 54px; line-height: 1; display: block; margin-bottom: 10px; }
.lock-sheet h2 { font-size: 26px; font-weight: 900; color: var(--navy); margin-bottom: 8px; }
.lock-sheet p { font-size: 20px; color: var(--ink-soft); margin-bottom: 18px; }
.lock-sheet .ls-btn {
  display: block; text-decoration: none; background: var(--orange); color: #fff;
  font-size: 23px; font-weight: 900; border-radius: 16px; padding: 17px; margin-bottom: 12px;
}
.lock-sheet .ls-close {
  font-family: inherit; font-size: 19px; font-weight: 700; color: var(--ink-soft);
  background: none; border: none; cursor: pointer; text-decoration: underline; padding: 6px;
}
.map-comm { padding: 8px 22px 40px; }
