/* TheTaiwanShop night market claw game.
   Same token names and values as site/src/style.css so the game drops into
   the storefront without a re-skin. Night values extend the set the same way
   the Lantern Night hero does.
   Tokens are scoped (NOT :root) so embedding never overrides site-wide vars:
   --shadow-lift here differs from the storefront value on purpose. Any embed
   wrapper must carry the class `claw-scope`. */
body.claw-demo, .claw-scope {
  --porcelain: #F7F1E4;
  --porcelain-deep: #EFE5CF;
  --navy: #13263D;
  --navy-deep: #0E1B2E;
  --navy-soft: #5A6B80;
  --surface: #FFFFFF;
  --accent: #FF7A1A;
  --accent-text: #A83F00;
  --highlight: #FFE14D;
  --night: #0A1626;
  --night-glow: #182C47;
  --lantern-red: #D8452E;
  --radius: 16px;
  --shadow-lift: 0 14px 34px rgba(4, 10, 20, .5);
  --font-display: ui-serif, "Songti TC", "STSong", "Noto Serif CJK TC", "PMingLiU", serif;
  --font-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang TC", "Microsoft JhengHei", "Noto Sans CJK TC", sans-serif;
}

* { box-sizing: border-box; }

body.claw-demo {
  margin: 0;
  min-height: 100svh;
  font-family: var(--font-body);
  color: var(--porcelain);
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 122, 26, .14), transparent 34%),
    radial-gradient(circle at 84% 20%, rgba(255, 225, 77, .10), transparent 30%),
    radial-gradient(circle at 70% 78%, rgba(216, 69, 46, .08), transparent 40%),
    linear-gradient(180deg, var(--night) 0%, var(--night-glow) 78%, #101F33 100%);
  overflow-x: clip;
}

/* soft out-of-focus market lights (demo page only: the live site has its own
   .bokeh class, so these rules stay behind the body.claw-demo scope) */
body.claw-demo .bokeh { position: fixed; inset: 0; pointer-events: none; z-index: 0; }
body.claw-demo .bokeh i {
  position: absolute; border-radius: 50%; filter: blur(6px); opacity: .35;
  animation: bokehDrift 9s ease-in-out infinite alternate;
}
@keyframes bokehDrift { from { transform: translateY(0); } to { transform: translateY(-14px); } }

.demo-shell { position: relative; z-index: 1; max-width: 560px; margin: 0 auto; padding: 18px 16px 56px; }

.demo-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.demo-brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 900; font-size: 17px; }
.demo-brand .seal {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; background: var(--accent); color: var(--navy-deep);
  border-radius: 8px; font-size: 18px; box-shadow: inset 0 0 0 2px rgba(247, 241, 228, .4);
}
.demo-tools { display: flex; gap: 8px; }
.tool-btn {
  padding: 5px 13px; border-radius: 99px; border: 1.5px solid rgba(247, 241, 228, .5);
  background: transparent; color: var(--porcelain); font-family: var(--font-body);
  font-size: 13px; cursor: pointer; transition: background .2s, color .2s;
}
.tool-btn:hover { background: var(--porcelain); color: var(--navy-deep); }
.tool-btn[aria-pressed="true"] { background: var(--highlight); border-color: var(--highlight); color: var(--navy-deep); }

/* hanging lanterns, matching the storefront hero (demo page dressing) */
body.claw-demo .lantern { position: fixed; top: -6px; width: 54px; z-index: 0; pointer-events: none; animation: lanternSway 5.5s ease-in-out infinite alternate; transform-origin: top center; }
body.claw-demo .lantern.l { left: 4vw; }
body.claw-demo .lantern.r { right: 5vw; animation-delay: -2.6s; }
@keyframes lanternSway { from { transform: rotate(-3deg); } to { transform: rotate(3deg); } }

.demo-title { text-align: center; margin: 20px 0 2px; }
/* the machine marquee IS the visual title; keep the h1 for search + screen readers */
.sr-title { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); margin: 0; }
.demo-sub { margin: 0; text-align: center; color: rgba(247, 241, 228, .78); font-size: 15.5px; }

/* ---------- the stall ---------- */
.claw-stall { position: relative; margin-top: 18px; }

.claw-scene { position: relative; max-width: 460px; margin: 0 auto; }
.claw-svg { display: block; width: 100%; height: auto; }

/* marquee bulbs: chase speed follows machine state */
.bulb { fill: #6B5A2E; }
.bulb.lit { fill: var(--highlight); }
[data-lights="chase"] .bulb { animation: bulbChase 1.4s steps(1) infinite; animation-delay: var(--d, 0s); }
[data-lights="fast"] .bulb { animation: bulbChase .5s steps(1) infinite; animation-delay: var(--d, 0s); }
[data-lights="win"] .bulb { animation: bulbStrobe .32s steps(1) infinite; animation-delay: var(--d, 0s); }
@keyframes bulbChase { 0% { fill: var(--highlight); } 25% { fill: #6B5A2E; } 100% { fill: #6B5A2E; } }
@keyframes bulbStrobe { 0% { fill: var(--highlight); } 50% { fill: var(--accent); } }

/* capsules bob while idle; freeze once the claw is working */
.capsule { pointer-events: none; }
[data-state="attract"] .capsule .cap-inner,
[data-state="aim"] .capsule .cap-inner { animation: capBob 2.6s ease-in-out infinite; animation-delay: var(--d, 0s); }
@keyframes capBob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-3px); } }
.capsule .ring { opacity: 0; }
.capsule.sel .ring { opacity: 1; animation: ringPulse 1s ease-in-out infinite; }
@keyframes ringPulse { 0%, 100% { stroke-width: 2.5; } 50% { stroke-width: 5; } }
[data-state="aim"] .capsule:hover .cap-inner { animation-play-state: paused; }

/* The visual capsules stay inside the SVG. These real buttons provide the
   interactive hit targets and accessibility semantics at the same positions. */
.capsule-controls { position: absolute; inset: 0; pointer-events: none; }
.capsule-hit {
  position: absolute; width: clamp(44px, 13%, 60px); aspect-ratio: 1;
  transform: translate(-50%, -50%); border: 0; border-radius: 50%;
  padding: 0; background: transparent; pointer-events: auto; cursor: pointer;
}
.capsule-hit:disabled { pointer-events: none; cursor: default; }
.capsule-hit:focus,
.capsule-hit:focus-visible { outline: 3px solid var(--highlight); outline-style: solid; outline-offset: 2px; background: rgba(255, 225, 77, .12); }

/* prize tray capsule (HTML, positioned over the SVG tray) */
.tray-capsule {
  position: absolute; left: 50%; bottom: 21%; width: 15%; aspect-ratio: 1;
  transform: translateX(-50%); cursor: pointer; z-index: 3;
  background: none; border: none; padding: 0;
}
.tray-capsule[hidden] { display: none; }
.tray-capsule .half {
  position: absolute; left: 0; width: 100%; height: 50%; transition: transform .45s cubic-bezier(.34, 1.4, .5, 1);
}
.tray-capsule .half.top { top: 0; border-radius: 100px 100px 8px 8px; background: var(--lantern-red); box-shadow: inset -6px 4px 10px rgba(255, 255, 255, .25); }
.tray-capsule .half.bot { bottom: 0; border-radius: 8px 8px 100px 100px; background: var(--porcelain); box-shadow: inset -4px -5px 9px rgba(14, 27, 46, .18); }
.tray-capsule.pop { animation: trayPop .55s cubic-bezier(.34, 1.6, .45, 1); }
@keyframes trayPop { 0% { transform: translateX(-50%) translateY(26px) scale(.4); opacity: 0; } 60% { transform: translateX(-50%) translateY(-8px) scale(1.06); opacity: 1; } 100% { transform: translateX(-50%) translateY(0) scale(1); } }
.tray-capsule.wob { animation: trayWob 1.6s ease-in-out .6s infinite; }
@keyframes trayWob { 0%, 100% { rotate: 0deg; } 25% { rotate: -6deg; } 75% { rotate: 6deg; } }
.tray-capsule.open .half.top { transform: translateY(-130%) rotate(-24deg); }
.tray-capsule.open .half.bot { transform: translateY(110%) rotate(14deg); }
.tray-capsule .burst {
  position: absolute; inset: -40%; border-radius: 50%; opacity: 0;
  background: radial-gradient(circle, rgba(255, 225, 77, .85) 0%, rgba(255, 225, 77, 0) 65%);
}
.tray-capsule.open .burst { animation: burst .6s ease-out forwards; }
@keyframes burst { 0% { opacity: 0; transform: scale(.4); } 35% { opacity: 1; } 100% { opacity: 0; transform: scale(1.5); } }
.tray-hint {
  position: absolute; left: 50%; bottom: 11%; transform: translateX(-50%);
  font-size: 13px; color: var(--highlight); white-space: nowrap; z-index: 3;
  animation: hintBlink 1.2s ease-in-out infinite;
}
.tray-hint[hidden] { display: none; }
@keyframes hintBlink { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }

/* ---------- status + controls ---------- */
.claw-status { min-height: 26px; margin: 14px 0 10px; text-align: center; font-size: 16px; color: rgba(247, 241, 228, .9); }
.claw-status strong { color: var(--highlight); font-weight: 700; }

.claw-controls { display: flex; justify-content: center; margin-bottom: 6px; }
.coin-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 30px; border: none; border-radius: 99px; cursor: pointer;
  background: var(--accent); color: var(--navy-deep);
  font-family: var(--font-body); font-weight: 700; font-size: 17px;
  box-shadow: 0 6px 0 #B3540E, 0 16px 30px rgba(255, 122, 26, .3);
  transition: transform .12s ease, box-shadow .12s ease;
}
.coin-btn:hover { transform: translateY(-1px); }
.coin-btn:active { transform: translateY(4px); box-shadow: 0 2px 0 #B3540E, 0 8px 18px rgba(255, 122, 26, .3); }
.coin-btn:disabled { opacity: .55; cursor: default; }
.coin-btn[hidden] { display: none; }
.coin-btn .coin-ico { width: 24px; height: 24px; }

.aim-controls { display: flex; align-items: center; gap: 14px; }
.aim-controls[hidden] { display: none; }
.nav-btn {
  width: 54px; height: 54px; border-radius: 50%; border: 2px solid rgba(247, 241, 228, .45);
  background: rgba(247, 241, 228, .08); color: var(--porcelain); font-size: 19px; cursor: pointer;
  transition: background .15s, border-color .15s;
}
.nav-btn:hover { background: rgba(247, 241, 228, .18); border-color: var(--porcelain); }
.grab-btn {
  width: 92px; height: 92px; border-radius: 50%; border: none; cursor: pointer;
  background: radial-gradient(circle at 34% 30%, #FF9C52, var(--accent) 62%);
  color: var(--navy-deep); font-family: var(--font-display); font-weight: 900; font-size: 26px;
  box-shadow: 0 7px 0 #B3540E, 0 18px 34px rgba(255, 122, 26, .35), inset 0 -6px 12px rgba(0, 0, 0, .18);
  transition: transform .12s ease, box-shadow .12s ease;
}
.grab-btn:hover { transform: translateY(-2px); }
.grab-btn:active { transform: translateY(5px); box-shadow: 0 2px 0 #B3540E, 0 8px 18px rgba(255, 122, 26, .35); }
:is(.coin-btn, .nav-btn, .grab-btn, .tool-btn, .tray-capsule):focus-visible { outline: 3px solid var(--highlight); outline-offset: 3px; }

/* ---------- ticket reveal ---------- */
.ticket-layer {
  position: absolute; inset: 0; z-index: 5;
  display: flex; align-items: center; justify-content: center; padding: 18px;
  background: rgba(10, 22, 38, .78); backdrop-filter: blur(3px); border-radius: var(--radius);
}
.ticket-layer[hidden] { display: none; }
.claw-ticket {
  position: relative; width: min(340px, 92%);
  background: var(--porcelain); color: var(--navy); border-radius: 14px;
  padding: 26px 26px 22px 38px; text-align: center;
  box-shadow: var(--shadow-lift);
  animation: ticketIn .55s cubic-bezier(.3, 1.4, .45, 1);
}
@keyframes ticketIn { from { transform: translateY(40px) scale(.85); opacity: 0; } to { transform: none; opacity: 1; } }
/* perforated stub edge */
.claw-ticket::before {
  content: ""; position: absolute; left: 18px; top: 10px; bottom: 10px;
  border-left: 2.5px dashed rgba(19, 38, 61, .28);
}
.claw-ticket::after {
  content: ""; position: absolute; left: 9px; top: 50%; width: 18px; height: 18px;
  transform: translate(0, -50%); border-radius: 50%; background: var(--night);
  box-shadow: 0 -232px 0 var(--night), 0 232px 0 var(--night);
}
.tk-badge {
  display: inline-block; padding: 4px 16px; border-radius: 99px;
  font-size: 13.5px; font-weight: 700; letter-spacing: .08em;
}
.tk-badge.d10 { background: var(--navy); color: var(--porcelain); }
.tk-badge.d15 { background: var(--accent); color: var(--navy-deep); }
.tk-badge.d20 { background: linear-gradient(100deg, #F5C531, var(--highlight) 45%, #F5C531); color: var(--navy-deep); }
.tk-pct { margin: 10px 0 2px; font-family: var(--font-display); font-weight: 900; font-size: 74px; line-height: 1; letter-spacing: .01em; }
.tk-pct sup { font-size: 30px; vertical-align: 26px; letter-spacing: 0; }
.claw-ticket.d15 .tk-pct { color: var(--accent-text); }
.claw-ticket.d20 .tk-pct {
  background: linear-gradient(105deg, #B3540E, var(--accent) 38%, #E5A800 70%, #B3540E);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.tk-off { margin: 0 0 14px; font-size: 15px; font-weight: 700; letter-spacing: .3em; text-indent: .3em; color: var(--navy-soft); }
.tk-code-row { display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; }
.tk-code {
  background: var(--highlight); color: var(--navy-deep); font-weight: 900;
  font-family: var(--font-display); letter-spacing: .1em; padding: 7px 18px;
  border-radius: 99px; font-size: 18px; user-select: all;
}
.tk-copy {
  border: 1.5px solid rgba(19, 38, 61, .3); background: var(--surface); color: var(--navy);
  border-radius: 99px; padding: 7px 14px; font-family: var(--font-body); font-size: 13.5px;
  font-weight: 500; cursor: pointer; transition: background .15s;
}
.tk-copy:hover { background: var(--porcelain-deep); }
.tk-copy.ok { background: var(--navy); border-color: var(--navy); color: var(--porcelain); }
.tk-timer { margin: 14px 0 4px; font-size: 14.5px; color: var(--navy-soft); }
.tk-timer b { color: var(--navy); font-size: 17px; font-variant-numeric: tabular-nums; }
.claw-ticket.low .tk-timer b { color: var(--lantern-red); }
.tk-cta {
  display: inline-block; margin-top: 12px; padding: 12px 32px; border-radius: 99px;
  background: var(--navy); color: var(--porcelain); font-weight: 700; font-size: 15.5px;
  text-decoration: none; transition: transform .15s, background .2s;
}
.tk-cta:hover { transform: translateY(-1px); background: var(--navy-deep); }
.tk-note { margin: 12px 0 0; font-size: 12px; color: var(--navy-soft); line-height: 1.6; }
.claw-ticket.expired .tk-code, .claw-ticket.expired .tk-pct { opacity: .32; }
.tk-stamp {
  position: absolute; top: 42%; left: 50%; transform: translate(-50%, -50%) rotate(-14deg);
  border: 3px solid var(--lantern-red); color: var(--lantern-red); border-radius: 8px;
  padding: 4px 16px; font-family: var(--font-display); font-weight: 900; font-size: 24px;
  letter-spacing: .12em; opacity: .85; background: rgba(247, 241, 228, .8);
}

/* cooldown card reuses the ticket paper */
.tk-moon { font-size: 44px; margin: 4px 0 8px; }

/* confetti for the 20% tier */
.claw-confetti { position: absolute; top: -10px; width: 9px; height: 14px; z-index: 6; pointer-events: none; animation: confFall linear forwards; }
@keyframes confFall {
  from { transform: translateY(-20px) rotate(0turn); opacity: 1; }
  to { transform: translateY(min(78vh, 640px)) rotate(3turn); opacity: 0; }
}

.demo-foot { margin-top: 34px; text-align: center; font-size: 12.5px; color: rgba(247, 241, 228, .55); line-height: 1.8; }

@media (max-width: 430px) {
  .demo-shell { padding-inline: 10px; }
  .nav-btn { width: 48px; height: 48px; }
  .grab-btn { width: 80px; height: 80px; font-size: 23px; }
  body.claw-demo .lantern { width: 40px; }
  .claw-ticket { padding-left: 34px; }
  .tk-pct { font-size: 62px; }
}

@media (prefers-reduced-motion: reduce) {
  .bulb, .capsule .cap-inner, body.claw-demo .lantern, body.claw-demo .bokeh i, .tray-capsule.wob, .tray-hint { animation: none !important; }
  .claw-ticket { animation-duration: .01s; }
  .claw-confetti { display: none; }
}

/* ============================================================
   Homepage band: the game's stall on the storefront, full-bleed
   night section sitting right before 典藏系列. The machine breaks
   out of the band's top edge on purpose.
============================================================ */
.claw-band { position: relative; width: 100vw; margin: 122px calc(50% - 50vw) 60px; padding: 62px 22px 54px;
  background: linear-gradient(180deg, #0E1B2E 0%, #182C47 55%, #13263D 100%); color: #F7F1E4; }
.claw-awning { position: absolute; top: 0; left: 0; right: 0; height: 20px;
  background: repeating-linear-gradient(90deg, #FF7A1A 0 46px, #F7F1E4 46px 92px); }
.claw-awning::after { content: ""; position: absolute; top: 100%; left: 0; right: 0; height: 13px;
  background-image: radial-gradient(13px at 23px 0, #FF7A1A 97%, transparent 100%),
                    radial-gradient(13px at 69px 0, #F7F1E4 97%, transparent 100%);
  background-size: 92px 13px; background-repeat: repeat-x; }
.claw-band-glow { position: absolute; inset: 0; pointer-events: none; overflow: hidden;
  background: radial-gradient(circle at 16% 24%, rgba(255, 122, 26, .13), transparent 34%),
              radial-gradient(circle at 82% 70%, rgba(255, 225, 77, .09), transparent 30%); }
.claw-band-lant { position: absolute; top: -30px; left: 5.5%; width: 46px; z-index: 3;
  transform-origin: top center; animation: clawLantSway 5.5s ease-in-out infinite alternate; }
@keyframes clawLantSway { from { transform: rotate(-3deg); } to { transform: rotate(3deg); } }
.claw-band-inner { position: relative; max-width: 1120px; margin: 0 auto; display: grid;
  grid-template-columns: minmax(0, 1fr) 430px; gap: 48px; align-items: start; }
.claw-band-copy { padding-top: 26px; }
.claw-eyebrow { display: inline-block; font-size: 13px; letter-spacing: .24em; color: #FFE14D;
  text-transform: uppercase; margin: 0 0 4px; }
.claw-band-h { font-size: clamp(30px, 4vw, 44px); margin: 10px 0 16px; line-height: 1.3; color: #F7F1E4; }
.claw-chip { background: #FFE14D; color: #0E1B2E; padding: 0 .14em; box-decoration-break: clone; -webkit-box-decoration-break: clone; }
.claw-band-p { font-size: 16px; line-height: 1.95; color: rgba(247, 241, 228, .86); margin: 0 0 22px; max-width: 44ch; }
.claw-tiers { list-style: none; display: flex; gap: 10px; padding: 0; margin: 0 0 20px; flex-wrap: wrap; }
.claw-tiers li { border: 1.5px solid rgba(247, 241, 228, .35); border-radius: 99px; padding: 7px 17px;
  font-size: 14px; font-weight: 700; }
.claw-tiers .t15 { background: #FF7A1A; color: #0E1B2E; border-color: transparent; }
.claw-tiers .t20 { background: linear-gradient(100deg, #F5C531, #FFE14D 45%, #F5C531); color: #0E1B2E; border-color: transparent; }
.claw-band-note { font-size: 12.5px; color: rgba(247, 241, 228, .55); margin: 0; }
.claw-band-machine { position: relative; z-index: 2; margin: -148px 0 -6px;
  filter: drop-shadow(0 26px 42px rgba(4, 10, 20, .45)); }
@media (max-width: 880px) {
  .claw-band { margin-top: 84px; padding-top: 46px; }
  .claw-band-inner { grid-template-columns: 1fr; gap: 8px; }
  .claw-band-copy { padding-top: 0; }
  .claw-band-machine { margin: 6px auto 0; max-width: 420px; width: 100%; }
  .claw-band-lant { width: 38px; top: -26px; }
}
@media (prefers-reduced-motion: reduce) { .claw-band-lant { animation: none; } }

/* One rewarding moment, grounded in the existing night-market cabinet. */
.claw-band { margin-top:64px; }
.claw-band-inner { gap:clamp(24px,5vw,72px); }
.claw-svg { filter:drop-shadow(0 18px 16px rgba(0,0,0,.16)); }
.claw-band-glow { opacity:.42; }
.claw-band-p { max-width:32em; line-height:1.9; }
.claw-band-note { max-width:32em; line-height:1.8; }
.claw-scope .coin-btn { box-shadow:0 5px 0 #A84808,0 12px 22px rgba(0,0,0,.16); }
.claw-scope .claw-ticket { box-shadow:0 20px 48px rgba(0,0,0,.26); }
.claw-scope .bulb { animation-duration:2.6s; }
@media(max-width:780px) {
 .claw-band { margin-top:42px; }
 .claw-band-inner { gap:20px; }
 .claw-band-p { font-size:15px; }
}
@media(prefers-reduced-motion:reduce) {
 .claw-scope .bulb { animation:none; }
}

/* The cabinet arrives once, rolling on casters and settling into its pitch. */
.claw-band { overflow-x:clip; overflow-y:visible; }
.claw-awning { box-shadow:inset 0 1px rgba(255,246,221,.38),inset 0 -5px 7px rgba(41,29,19,.13); }
.claw-band-lant { filter:drop-shadow(0 5px 12px rgba(233,156,72,.14)); }
.claw-arrival-carriage { transform-origin:50% 88%; }
@keyframes stand-roll-in {
  0% { transform:translateX(calc(50vw + 100%)) rotate(2deg); }
  68% { transform:translateX(-12px) rotate(-.8deg); }
  85% { transform:translateX(4px) rotate(.3deg); }
  100% { transform:none; }
}
@keyframes caster-roll { from { transform:rotate(0); } to { transform:rotate(-720deg); } }
.stall-wheel { transform-box:fill-box; transform-origin:center; }
@media (prefers-reduced-motion:no-preference) {
  .claw-arrival-carriage.is-waiting { transform:translateX(calc(50vw + 100%)) rotate(2deg); }
  .is-leaving .stall-wheel { animation:caster-roll 1.8s cubic-bezier(.22,.65,.25,1) reverse; }
  .is-arriving .stall-wheel { animation:caster-roll 1.8s cubic-bezier(.22,.65,.25,1); }
}

/* The receipt stays readable after expiry and offers the next free round. */
.tk-replay { border:0; font-family:var(--font-body); cursor:pointer; }
.tk-cta[hidden],.tk-replay[hidden] { display:none; }
.claw-ticket.expired .tk-code { opacity:1; }
.tk-replay:disabled { opacity:.55; cursor:wait; }

.tk-code { max-width:100%; padding:9px 12px; border-radius:12px; font-family:ui-monospace,SFMono-Regular,Consolas,monospace; font-size:clamp(11px,3.2vw,15px); letter-spacing:.02em; overflow-wrap:anywhere; }
.tk-copy { min-height:44px; }
.claw-ticket .tk-stamp { position:static; display:inline-block; transform:rotate(-5deg); margin-top:10px; padding:4px 10px; font-size:15px; pointer-events:none; }
@media (max-width:780px) {
  .ticket-layer { padding:10px; }
  .claw-ticket { width:min(340px,100%); padding:24px 16px 20px 28px; }
  .claw-ticket::before { left:12px; }
  .claw-ticket::after { left:3px; }
}
