@font-face {
  font-family: 'DynaPuff';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/assets/fonts/dynapuff-700-latin.woff2) format('woff2');
}

/* Tokens and components copied from the app (catshi/renderer/style.css) so the site looks like the game. */
:root {
  color-scheme: light;
  --ink: #2a2233;
  --paper: #fff8ec;
  --tan: #f3e6cf;
  --track: #eadbc2;
  --chip: #d8cbb6;
  --muted: #7a6e86;
  --soft: #5a4e66;
  --accent: #f29b4b;
  --pink: #d4537e;
  --note: #ffe97a;
  --red: #e0485f;
  --gold: #f5a623;
  --green: #6fc27a;
  --white: #ffffff;
  --wrap: 1120px;
  --display: 'DynaPuff', 'Segoe UI', system-ui, sans-serif;
  --body: 'Segoe UI', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--body); font-size: 17px; line-height: 1.5; }
img { max-width: 100%; }
a { color: inherit; }
p, h1, h2, h3 { text-wrap: pretty; }
h1, h2, h3 { text-wrap: balance; }
button { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid rgba(242, 155, 75, 0.9); outline-offset: 3px; border-radius: 8px; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.sprite { image-rendering: pixelated; image-rendering: crisp-edges; height: auto; }
.egg { transform-origin: 50% 55%; cursor: pointer; }
.ico { width: 20px; height: 20px; fill: currentColor; flex: none; }
.nav-link .ico, .menu .ico { width: 18px; height: 18px; }
[aria-expanded="true"] > .ico:last-child { transform: rotate(180deg); }

.skip { position: absolute; left: 12px; top: -60px; background: #000; color: #fff; padding: 8px 14px; border-radius: 10px; z-index: 50; }
.skip:focus { top: 12px; }
.prelaunch { background: var(--ink); color: var(--paper); text-align: center; font-size: 13px; font-weight: 600; padding: 6px 16px; }
.label { font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); }

/* ---------- friends: one strip of frames from the app, stepped by site.js ---------- */
.pet {
  --k: var(--s); --f: 0;
  display: inline-block; vertical-align: bottom; flex: none;
  width: calc(var(--fw) * var(--k) * 1px); height: calc(var(--fh) * var(--k) * 1px);
  background-repeat: no-repeat;
  background-size: calc(var(--fw) * var(--k) * var(--n) * 1px) 100%;
  background-position: calc(var(--f) * var(--fw) * var(--k) * -1px) 0;
  image-rendering: pixelated; image-rendering: crisp-edges;
}
.pet.flip { transform: scaleX(-1); }

/* ---------- buttons (the app's Hatch / Random buttons) ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: 2px solid #000; border-radius: 12px; padding: 11px 18px; font-size: 16px; font-weight: 800; line-height: 1.2; text-decoration: none; cursor: pointer; white-space: nowrap; }
.btn:active { transform: translateY(2px); }
.btn-ink { background: #000; color: #fff; box-shadow: 0 4px 0 rgba(0, 0, 0, 0.25); }
.btn-white { background: #fff; color: var(--ink); }
.btn-lg { padding: 14px 24px; }
.btn-sm { padding: 7px 12px; font-size: 14px; border-radius: 10px; }
.btn-sm .ico { width: 18px; height: 18px; }

/* ---------- cards (the app's stats card) ---------- */
.card { background: var(--paper); border: 2px solid var(--ink); border-radius: 14px; box-shadow: 0 5px 0 var(--ink); }
.tag { display: inline-block; padding: 1px 8px; border-radius: 999px; background: var(--red); color: #fff; font-size: 11px; font-weight: 700; line-height: 1.6; vertical-align: 2px; }
.tag-gold { background: var(--gold); }
.tag-green { background: #3f9b4f; }
.chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chips span { padding: 2px 10px; border: 2px solid var(--chip); border-radius: 999px; background: #fff; font-size: 13.5px; font-weight: 600; line-height: 1.5; }
.stat { display: grid; grid-template-columns: 82px minmax(0, 1fr) 34px; align-items: center; gap: 10px; min-height: 28px; }
.stat + .stat { margin-top: 6px; }
.stat b { font-size: 14px; font-weight: 800; text-align: right; }
.stat .fact, .stat .chips { grid-column: 2 / 4; }
.stat .fact { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700; }
.bar { height: 12px; background: var(--track); border: 2px solid var(--ink); border-radius: 6px; overflow: hidden; }
.bar span { display: block; height: 100%; background: var(--accent); }

/* ---------- header ---------- */
.site-header { background: var(--paper); border-bottom: 2px solid var(--ink); position: sticky; top: 0; z-index: 20; }
.header-inner { max-width: var(--wrap); margin: 0 auto; padding: 12px 24px; display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 20px; }
.nav { grid-column: 1; justify-self: start; margin-left: -12px; }
.header-right { grid-column: 2; }
.header-left { display: flex; align-items: center; gap: 12px; justify-self: start; }
.brand { display: inline-flex; line-height: 0; border-radius: 6px; }
.brand img { width: 129px; height: auto; }
.nav-list { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 2px; }
.nav-link { display: inline-flex; align-items: center; gap: 4px; background: none; border: 0; padding: 8px 12px; border-radius: 10px; font-size: 15px; font-weight: 700; text-decoration: none; cursor: pointer; white-space: nowrap; }
.nav-link:hover, .nav-link[aria-expanded="true"], .nav-link[aria-current="page"] { background: var(--tan); }
/* Opens in a new tab: a small icon on the left, at 70% opacity */
.ext { display: inline-flex; opacity: 0.7; margin-right: 2px; }
.ext .ico { width: 15px; height: 15px; }
.menu-label { display: inline-flex; align-items: center; gap: 4px; }
.header-right { display: flex; align-items: center; gap: 10px; justify-self: end; }
.lang-btn, .burger, .music { display: inline-flex; align-items: center; justify-content: center; gap: 4px; background: #fff; border: 2px solid var(--ink); border-radius: 10px; cursor: pointer; height: 40px; }
.lang-btn { padding: 0 8px 0 10px; font-size: 14px; font-weight: 800; }
.lang-btn:hover, .lang-btn[aria-expanded="true"], .burger:hover, .music:hover { background: var(--tan); }
.burger { display: none; width: 40px; padding: 0; }
.btn-shop { position: relative; height: 40px; padding: 0 14px; font-size: 15px; }
.cart-count { position: absolute; top: -8px; right: -8px; min-width: 20px; height: 20px; padding: 0 5px; border-radius: 999px; background: var(--accent); color: var(--ink); border: 2px solid var(--ink); font-size: 11px; font-weight: 800; line-height: 16px; text-align: center; }
.cart-count[hidden] { display: none; }

.has-menu { position: relative; }
.menu { position: absolute; top: calc(100% + 6px); left: 0; list-style: none; margin: 0; padding: 4px; min-width: 176px; background: var(--paper); border: 2px solid var(--ink); border-radius: 12px; box-shadow: 0 5px 0 var(--ink); z-index: 30; }
.menu[hidden] { display: none; }
.menu-right { left: auto; right: 0; }
.menu button, .menu a { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 10px; background: none; border: 0; padding: 6px 10px; border-radius: 7px; font-size: 14.5px; font-weight: 600; line-height: 1.35; text-align: left; text-decoration: none; cursor: pointer; }
.menu button:hover, .menu a:hover, .menu a[aria-current="page"] { background: var(--tan); }
.nav-lang { display: none; }
.menu-note { display: block; padding: 6px 10px; font-size: 13px; color: var(--muted); }

/* The music button sits at the far left edge of the header, like a game launcher. */
.music { position: absolute; left: 16px; top: 50%; z-index: 2; width: 40px; padding: 0; transform: translateY(-50%); }
.music:active { transform: translateY(calc(-50% + 2px)); }
.eq { display: flex; align-items: flex-end; gap: 3px; height: 16px; }
.eq i { width: 3px; border-radius: 1px; background: var(--ink); height: 4px; }
.eq i:nth-child(2) { height: 10px; } .eq i:nth-child(3) { height: 7px; } .eq i:nth-child(4) { height: 12px; }
.music[aria-pressed="true"] { background: var(--accent); }
.music[aria-pressed="true"] .eq i { animation: eq 0.9s ease-in-out infinite alternate; }
.music[aria-pressed="true"] .eq i:nth-child(2) { animation-delay: -0.3s; }
.music[aria-pressed="true"] .eq i:nth-child(3) { animation-delay: -0.6s; }
.music[aria-pressed="true"] .eq i:nth-child(4) { animation-delay: -0.15s; }
@keyframes eq { from { height: 3px; } to { height: 16px; } }

/* ---------- hero ---------- */
.hero { padding: 72px 0 88px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; align-items: center; gap: 48px; }
.hero-title { font-family: var(--display); font-weight: 700; font-size: clamp(40px, 5.4vw, 66px); line-height: 1.05; margin: 0 0 32px; max-width: 13ch; }
.tagline { font-size: 22px; line-height: 1.4; color: var(--soft); margin: 22px 0 30px; }
.hero-cta { display: flex; align-items: center; flex-wrap: wrap; gap: 14px 20px; }
.soon-note { margin: 0; color: var(--muted); font-size: 15px; font-weight: 600; }
.hero-art { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.carebar { display: flex; gap: 4px; padding: 6px 8px; background: var(--paper); border: 2px solid var(--ink); border-radius: 14px; box-shadow: 0 5px 0 var(--ink); }
.carebar[hidden] { display: none; }
.carebar:not([hidden]) { animation: bar-in 0.35s cubic-bezier(0.3, 1.5, 0.5, 1); }
@keyframes bar-in { from { opacity: 0; transform: translateY(10px) scale(0.9); } }
.carebar button { width: 48px; height: 44px; display: grid; place-items: center; border: 0; border-radius: 9px; background: none; cursor: pointer; }
.carebar button:hover, .carebar button[aria-pressed="true"] { background: var(--tan); }
.window { position: relative; width: 100%; max-width: 380px; background: #fff; border: 2px solid var(--ink); border-radius: 14px; box-shadow: 0 5px 0 var(--ink); }
.window-bar { display: flex; gap: 7px; padding: 12px 14px; border-bottom: 2px solid var(--ink); }
.window-bar i { width: 12px; height: 12px; border-radius: 50%; border: 2px solid var(--ink); }
.window-bar i:nth-child(1) { background: var(--red); } .window-bar i:nth-child(2) { background: #f5c451; } .window-bar i:nth-child(3) { background: var(--green); }
.window-body { padding: 20px 18px 26px; display: grid; gap: 12px; }
.window-body span { height: 12px; border-radius: 6px; background: var(--tan); }
.window-body .short { width: 60%; }
.window-cat { position: absolute; right: 36px; bottom: 100%; margin-bottom: -2px; line-height: 0; }

/* ---------- sections ---------- */
.section-title { font-family: var(--display); font-weight: 700; font-size: clamp(28px, 4vw, 40px); line-height: 1.15; margin: 0 0 14px; }
.lead { font-size: 19px; line-height: 1.45; color: var(--soft); margin: 0 0 32px; max-width: 640px; }

.steps { padding: 72px 0; background: var(--tan); border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); }
.steps .section-title { text-align: center; margin-bottom: 40px; }
.step-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.step { padding: 24px 24px 18px; }
.step-art { height: 100px; display: flex; align-items: flex-end; margin-bottom: 18px; }
.step h3 { font-family: var(--display); font-size: 22px; margin: 0 0 6px; }
.step p { margin: 0; color: var(--soft); line-height: 1.5; }
/* The app's sticky note (the one a friend leaves when it walks out) */
.note { position: relative; height: 84px; display: flex; align-items: center; background: var(--note); color: #3a2e1a; font-family: "Segoe Print", "Comic Sans MS", cursive; font-size: 24px; line-height: 1; padding: 0 28px 4px; transform: rotate(-3deg); box-shadow: 0 8px 14px rgba(0, 0, 0, 0.2); margin: 0 0 4px 8px; }
.note::before { content: ''; position: absolute; top: -10px; left: 50%; width: 56px; height: 18px; margin-left: -28px; background: rgba(255, 255, 255, 0.55); transform: rotate(-2deg); }

.features { padding: 80px 0 40px; }
.features .section-title, .made-for .section-title, .warnings .section-title { text-align: center; margin-bottom: 36px; }
.feature-list, .made-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); grid-auto-rows: 1fr; gap: 24px; }
/* Bottom padding is 6px less than the sides: the last line of text carries its own line spacing below it. */
.feature { padding: 24px 24px 18px; }
.feature-art { height: 60px; display: flex; align-items: center; margin-bottom: 18px; }
.feature h3, .made h3 { font-family: var(--display); font-size: 21px; line-height: 1.2; margin: 0 0 6px; }
.feature p, .made p { margin: 0; color: var(--soft); line-height: 1.45; }

.made-for { padding: 80px 0; background: var(--ink); color: var(--paper); }
.made-for .section-title { color: var(--paper); }
.made { display: flex; flex-direction: column; padding: 24px 24px 18px; background: var(--paper); color: var(--ink); border-color: #000; box-shadow: 0 5px 0 #000; }
.made-art { height: 48px; display: flex; align-items: center; margin-bottom: 16px; }
.made > div { min-width: 0; }

/* "Make it yours": the app's setup screen, as a list of what you can pick */
.options { padding: 72px 0; background: var(--tan); border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); }
.options .section-title, .options .lead { text-align: center; margin-left: auto; margin-right: auto; }
/* The live maker: laid out like the app's setup screen (preview panel left, choices right) */
.maker { display: grid; grid-template-columns: 300px minmax(0, 1fr); gap: 28px; max-width: 1020px; margin: 0 auto; padding: 22px; }
.maker-preview { display: flex; flex-direction: column; gap: 12px; background-color: var(--tan); background-size: 56px 56px; background-repeat: repeat; border-radius: 14px; padding: 14px; }
.maker-preview canvas { align-self: center; cursor: pointer; image-rendering: pixelated; }
.maker-name { display: flex; gap: 8px; }
.maker-name input { flex: 1; min-width: 0; font: inherit; font-size: 18px; font-weight: 800; text-align: center; color: var(--ink); padding: 8px 10px; border: 2px solid var(--ink); border-radius: 10px; background: #fff; outline: none; }
.maker-name input:focus { box-shadow: 0 0 0 3px rgba(242, 155, 75, 0.45); }
.dice { width: 46px; flex: none; border: 2px solid var(--ink); border-radius: 10px; background: #fff; display: grid; place-items: center; cursor: pointer; }
.dice:hover { background: var(--tan); }
.maker-desc { margin: 0; font-size: 14.5px; line-height: 1.45; text-align: center; color: var(--soft); text-wrap: balance; }
.maker-actions { display: flex; flex-direction: column; gap: 8px; margin-top: auto; }
.maker-actions .btn { width: 100%; }
.maker-actions .btn span { font-weight: 800; }
.maker-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; padding-bottom: 14px; margin-bottom: 4px; border-bottom: 2px dashed var(--track); }
.maker-title { font-family: var(--display); font-weight: 700; font-size: clamp(28px, 3.4vw, 38px); line-height: 1.1; margin: 0 0 6px; }
.maker-lead { margin: 0; color: var(--soft); line-height: 1.45; max-width: 460px; }
.maker-reset { flex: none; }
.maker-friend { display: flex; align-items: center; flex-wrap: wrap; gap: 6px 10px; }
.maker-friend > span { color: var(--muted); font-weight: 600; }
.maker-friend .btn { margin-left: auto; }
.setup-row { display: grid; grid-template-columns: 96px minmax(0, 1fr); align-items: center; gap: 16px; padding: 10px 0; }
.setup-row + .setup-row { border-top: 2px dashed var(--track); }
.setup-note { margin: 8px 0 0; font-size: 14px; line-height: 1.4; color: var(--muted); }
.swatches { display: flex; flex-wrap: wrap; gap: 9px; }
.sw { width: 30px; height: 30px; padding: 0; border-radius: 50%; border: 2px solid rgba(42, 34, 51, 0.22); cursor: pointer; }
.sw[aria-pressed="true"] { box-shadow: 0 0 0 3px var(--paper), 0 0 0 5px var(--ink); }
.seg { display: inline-flex; border: 2px solid var(--ink); border-radius: 10px; overflow: hidden; background: #fff; }
.seg button { background: #fff; border: 0; padding: 6px 16px; font-weight: 600; cursor: pointer; }
.seg button + button { border-left: 2px solid var(--ink); }
.seg [aria-pressed="true"] { background: var(--ink); color: #fff; }
.type-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.type-chips button { padding: 4px 12px; border: 2px solid var(--chip); border-radius: 999px; background: #fff; font-size: 14px; font-weight: 600; cursor: pointer; }
.type-chips [aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: #fff; }
.type-chips .mystery { border-style: dashed; border-color: #b9a98f; }
.type-chips .mystery[aria-pressed="true"] { border-style: solid; }

/* "Before you hatch": honest warnings, like the side of a toy box */
.warnings { padding: 72px 0 88px; background: var(--note); border-top: 2px solid var(--ink); }
.warning-list { list-style: none; margin: 0 auto; max-width: 980px; padding: 8px 30px; background: #fff; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 30px; }
.warning-list li { display: flex; align-items: flex-start; gap: 14px; padding: 18px 0; border-bottom: 2px dashed var(--track); }
.warning-list li:nth-last-child(-n + 2) { border-bottom: 0; }
.warning-list .ico { width: 26px; height: 26px; color: var(--pink); margin-top: 1px; }
.warning-list h3 { margin: 0 0 2px; font-size: 16px; font-weight: 800; }
.warning-list p { margin: 0; font-size: 15px; line-height: 1.45; color: var(--soft); }

.cast { padding: 80px 0; text-align: center; }
.cast .lead { margin-left: auto; margin-right: auto; }
.cast-row { list-style: none; margin: 0 auto 36px; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; align-items: flex-end; gap: 16px; max-width: 1080px; }
.cast-row a { display: block; line-height: 0; padding: 4px; border-radius: 10px; transition: transform 0.15s; }
.cast-row a:hover { transform: translateY(-4px); }
.cast-cta { margin: 0; }

.pebble { padding: 0 0 88px; }
.pebble-grid { display: flex; align-items: center; gap: 36px; padding: 32px 40px; max-width: 860px; margin: 0 auto; }
.pebble-grid { background: #fff; }
.pebble-grid p { margin: 0; color: var(--soft); font-size: 18px; line-height: 1.5; }

/* ---------- friends page: capsule rail + stage ---------- */
.page-title { font-family: var(--display); font-weight: 700; font-size: clamp(36px, 6vw, 56px); line-height: 1.1; margin: 0 0 14px; }
.lineup { padding: 36px 0 72px; }
.lineup-inner { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 150px minmax(0, 1fr); gap: 40px; align-items: start; }

.rail-wrap { position: sticky; top: 96px; display: flex; flex-direction: column; align-items: center; gap: 10px; height: min(640px, calc(100vh - 140px)); }
.rail-step { position: relative; z-index: 1; flex: none; width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--ink); background: #fff; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 3px 0 var(--ink); }
.rail-step:hover { background: var(--tan); }
.rail-step:active { transform: translateY(2px); box-shadow: 0 1px 0 var(--ink); }
.rail { position: relative; list-style: none; margin: 0; padding: 4px 0 0; width: 100%; flex: 1; overflow-y: auto; scroll-snap-type: y mandatory; scrollbar-width: none; -webkit-mask-image: linear-gradient(#000 60%, rgba(0, 0, 0, 0.3) 84%, transparent); mask-image: linear-gradient(#000 60%, rgba(0, 0, 0, 0.3) 84%, transparent); }
.rail::-webkit-scrollbar { display: none; }
.rail::after { content: ''; display: block; height: calc(100% - var(--pitch, 176px)); }
.cap-item { height: var(--pitch, 176px); padding-top: 40px; scroll-snap-align: start; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.cap-name { font-size: 13px; font-weight: 800; color: var(--muted); transition: color 0.2s; }
.cap-item.is-active .cap-name { color: var(--ink); }

/* Gacha capsules: pixel art like the friends (a clear dome over a base in the friend's colour), 30 x 30 pixels. */
.capsule { --cp: 3; position: relative; flex: none; width: calc(30px * var(--cp)); height: calc(30px * var(--cp)); padding: 0; border: 0; background: none; cursor: pointer; border-radius: 50%; }
.capsule .pet { position: absolute; left: 50%; top: 50%; z-index: 1; transform: translate(-50%, -50%); transition: transform 0.45s cubic-bezier(0.3, 1.6, 0.5, 1); }
.cap-base, .cap-lid { position: absolute; left: 0; width: 100%; height: 50%; background-size: 100% 100%; background-repeat: no-repeat; image-rendering: pixelated; image-rendering: crisp-edges; }
.cap-base { bottom: 0; z-index: 2; }
.cap-lid { top: 0; z-index: 3; background-image: url(/assets/img/cap-lid.png); transform-origin: 10% 100%; transition: transform 0.45s cubic-bezier(0.3, 1.6, 0.5, 1); }
.capsule:hover .cap-lid { transform: translateY(-3px) rotate(-4deg); }
.cap-item.is-active .cap-lid { transform: translate(-2px, -24px) rotate(-12deg); }
.cap-item.is-active .capsule .pet { --f: 9; transform: translate(-50%, -78%) scale(1.1); }
.cap-item.is-out .capsule .pet { visibility: hidden; }
.capsule.spin { animation: cap-spin 0.6s ease-in-out; }
@keyframes cap-spin { 45% { transform: rotate(200deg) scale(0.9); } to { transform: rotate(360deg); } }
/* A friend in flight between its capsule and the stage */
@property --k { syntax: '<number>'; inherits: false; initial-value: 1; }
.flyer { position: fixed; left: 0; top: 0; z-index: 55; pointer-events: none; transform-origin: 50% 50%; }

.stage { min-width: 0; }
.stage-title { font-family: var(--display); font-weight: 700; font-size: 22px; color: var(--muted); margin: 6px 0 16px; display: flex; align-items: center; gap: 12px; }
.panel { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); grid-template-areas: "art info" "buy info"; grid-template-rows: auto 1fr; gap: 20px 32px; align-items: start; border-radius: 18px; padding: 24px; margin-bottom: 28px; }
.js .panel { display: none; }
.js .panel.is-active { display: grid; animation: panel-in 0.3s ease-out; }
@keyframes panel-in { from { opacity: 0; transform: translateY(8px); } }
/* The app's setup preview: tan panel with the friend's motif */
.panel-art { position: relative; height: 420px; border-radius: 14px; background-color: var(--tan); background-size: 56px 56px; background-repeat: repeat; display: flex; align-items: flex-end; justify-content: center; padding-bottom: 48px; overflow: hidden; }
/* The friend's shadow travels with it, and only once it has landed. */
.walker::after { content: ''; position: absolute; left: 50%; bottom: -10px; width: 70%; height: 16px; transform: translateX(-50%); border-radius: 50%; background: rgba(42, 34, 51, 0.14); z-index: -1; }
.js .panel:not(.has-friend) .walker { visibility: hidden; }
.walker { position: relative; z-index: 1; line-height: 0; will-change: transform; }
.walker .pet { cursor: pointer; }
/* Fang sleeps hanging upside down from the top of a window, like in the app. */
.panel-art.is-hang { align-items: flex-start; padding: 96px 0 0; }
.is-hang .walker::after { display: none; }
.perch { position: absolute; left: 12%; right: 12%; top: 78px; height: 20px; z-index: 2; background: #fff; border: 2px solid var(--ink); border-radius: 8px; box-shadow: 0 4px 0 var(--ink); }
.perch::before { content: ''; position: absolute; left: 10px; top: 4px; width: 32px; height: 8px; background: radial-gradient(circle, var(--red) 3px, transparent 3.5px) 0 0 / 11px 8px repeat-x; }
.is-hang .walker { transform-origin: 50% 0; }
.is-hang .walker .pet { transform: rotate(180deg); }
.panel-art { grid-area: art; }
.panel-info { grid-area: info; min-width: 0; }
.panel-buy { grid-area: buy; display: grid; gap: 12px; }
.panel-buy .btn { width: 100%; }
.panel-info > .label { margin: 4px 0 0; }
.panel-name { font-family: var(--display); font-weight: 700; font-size: clamp(40px, 5vw, 56px); line-height: 1; margin: 2px 0 4px; }
.panel-info .sub { margin: 0 0 12px; color: var(--muted); font-size: 15px; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.panel-about { margin: 0 0 16px; font-size: 16.5px; line-height: 1.5; color: var(--soft); }
.statcard { background: #fff; padding: 14px 16px 16px; box-shadow: 0 4px 0 var(--ink); border-radius: 12px; margin-bottom: 4px; }
.locked { position: relative; margin-top: 12px; padding-top: 12px; border-top: 2px dashed var(--chip); }
.locked-rows { filter: blur(3px); opacity: 0.5; }
.locked-cta { position: absolute; inset: 12px 0 0; background: radial-gradient(closest-side, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.6)); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; text-align: center; }
.locked-cta > .ico { width: 22px; height: 22px; color: var(--muted); }
.locked-cta p { margin: 0; font-size: 13.5px; font-weight: 700; line-height: 1.35; max-width: 280px; }
.price { position: absolute; right: 14px; top: 14px; z-index: 3; transform: rotate(3deg); font-family: var(--display); font-size: 30px; line-height: 1; padding: 6px 18px 8px; background: var(--paper); border: 2px solid var(--ink); border-radius: 12px; box-shadow: 0 4px 0 var(--ink); white-space: nowrap; }
.btn-all { width: 100%; justify-content: space-between; }
.btn-all span { font-family: var(--display); font-size: 18px; }

/* ---------- hearts (the app's pixel heart) ---------- */
.heart-fx { position: fixed; z-index: 40; width: 27px; height: 24px; pointer-events: none; image-rendering: pixelated; animation: heart-up 1.3s ease-out forwards; }
@keyframes heart-up { from { transform: translate(0, 0) scale(0.6); opacity: 1; } 70% { opacity: 1; } to { transform: translate(var(--dx), -90px) scale(1); opacity: 0; } }

@media (max-width: 860px) {
  .lineup { padding: 20px 0 56px; }
  .lineup-inner { grid-template-columns: minmax(0, 1fr); gap: 8px; padding: 0 16px; }
  .rail-wrap { position: relative; top: 0; height: auto; flex-direction: row; }
  .rail-step { display: none; }
  .rail { display: flex; overflow-x: auto; overflow-y: hidden; scroll-snap-type: x mandatory; padding: 0; -webkit-mask-image: linear-gradient(90deg, #000 75%, transparent); mask-image: linear-gradient(90deg, #000 75%, transparent); }
  .rail::after { flex: none; width: calc(100% - 84px); height: 1px; }
  .cap-item { flex: none; width: 84px; height: auto; padding: 40px 0 10px; }
  .capsule { --cp: 2; }
  .cap-item.is-active .cap-lid { transform-origin: 90% 100%; transform: translate(2px, -18px) rotate(12deg); }
  .stage-title { font-size: 18px; margin: 4px 0 12px; }
  .panel { grid-template-columns: minmax(0, 1fr); grid-template-areas: "art" "info" "buy"; grid-template-rows: auto; gap: 18px; padding: 14px; }
  .panel-art { height: 250px; padding-bottom: 32px; }
  .price { font-size: 24px; top: 10px; right: 10px; }
  .walker .pet { --k: var(--sp); }
}

/* ---------- 404 ---------- */
.notfound { min-height: 70vh; display: flex; align-items: center; text-align: center; padding: 64px 0; }
.notfound .wrap { width: 100%; }
.notfound .lead { margin-left: auto; margin-right: auto; }
.notfound-code { font-family: var(--display); font-size: 20px; color: var(--muted); margin: 16px 0 4px; }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: var(--paper); }
.footer-inner { max-width: var(--wrap); margin: 0 auto; padding: 48px 24px; display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap; }
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.footer-brand > a { display: inline-flex; line-height: 0; border-radius: 8px; }
.footer-brand img { width: 260px; height: auto; }
.footer-brand p { margin: 0; font-size: 14px; color: rgba(255, 248, 236, 0.75); }
.footer-brand p a { color: var(--paper); }
.rating { display: flex; align-items: center; gap: 16px; max-width: 520px; }
.rating-box { width: 60px; height: 74px; flex: none; border: 2px solid var(--paper); border-radius: 8px; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.rating-age { font-family: var(--display); font-size: 26px; line-height: 1; }
.rating-state { font-size: 10px; letter-spacing: 1px; text-transform: uppercase; margin-top: 5px; opacity: 0.8; font-weight: 700; }
.rating-text p { margin: 0; font-size: 14px; color: rgba(255, 248, 236, 0.75); }
.rating-text .rating-title { font-weight: 800; color: var(--paper); }

/* ---------- toast (styled like the app's cards) ---------- */
.toast { position: fixed; left: 50%; bottom: 24px; transform: translateX(-50%); background: var(--paper); color: var(--ink); border: 2px solid var(--ink); box-shadow: 0 5px 0 var(--ink); padding: 10px 18px; border-radius: 12px; font-size: 15px; font-weight: 700; z-index: 60; max-width: calc(100% - 32px); text-align: center; }
.toast[hidden] { display: none; }

/* ---------- responsive ---------- */
@media (max-width: 1240px) {
  .header-inner { padding-left: 72px; }
}
@media (max-width: 980px) {
  .header-inner { grid-template-columns: 1fr auto; }
  .burger { display: inline-flex; }
  .nav { display: none; grid-column: 1 / -1; order: 3; margin-left: 0; justify-self: stretch; }
  .nav.open { display: block; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 2px; padding: 8px 0 4px; border-top: 2px dashed var(--chip); }
  .nav-link { width: 100%; justify-content: flex-start; padding: 12px 10px; font-size: 16px; }
  .has-menu .menu:not(.menu-right) { position: static; box-shadow: none; border: 0; background: none; padding: 0 0 0 14px; min-width: 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 20px; }
  .hero-text { text-align: center; }
  .hero-title { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-art { padding-top: 12px; }
  .step-list, .feature-list, .made-list { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .warning-list { grid-template-columns: 1fr; }
  .maker { grid-template-columns: minmax(0, 1fr); max-width: 640px; padding: 16px; }
  .warning-list li:nth-last-child(2) { border-bottom: 2px dashed var(--track); }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .wrap { padding: 0 16px; }
  .header-inner { padding: 10px 16px 10px 64px; gap: 10px; }
  .header-left { gap: 8px; }
  .brand img { width: 112px; }
  .lang { display: none; }
  .nav-lang { display: list-item; }
  .btn-shop { padding: 0 12px; }
  .hero { padding: 44px 0 64px; }
  .tagline { font-size: 19px; margin: 16px 0 24px; }
  .window-cat { right: 22px; }
  .window-cat .pet { --k: 5; }
  .steps, .features, .options, .cast { padding: 56px 0; }
  .warnings { padding: 48px 0 56px; }
  .made-for { padding: 56px 0; }
  .setup-row { grid-template-columns: 1fr; gap: 8px; }
  .warning-list { padding: 4px 18px; }
  .pebble-grid { flex-direction: column; text-align: center; padding: 28px 22px; gap: 20px; }
  .footer-inner { flex-direction: column; align-items: flex-start; padding: 32px 16px; }
  .footer-brand img { width: 200px; }
  .cast-row { gap: 10px 6px; }
  .cast-row a { padding: 2px; }
}
@media (max-width: 380px) {
  .brand img { width: 100px; }
  .btn-shop { padding: 0 10px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ---------- document pages: parents' guide, patch notes, press kit ---------- */
.doc { padding: 56px 0 88px; }
.doc-wrap { max-width: 860px; }
.doc .lead { margin-bottom: 28px; }
.doc-card, .note-card { padding: 22px 26px; margin-bottom: 20px; }
.doc-card h2, .note-head h2 { font-family: var(--display); font-weight: 700; font-size: 24px; line-height: 1.2; margin: 0 0 8px; }
.doc-card h2 + p, .doc-card p + p { margin-top: 0; }
.doc-card p { margin: 0 0 12px; color: var(--soft); line-height: 1.5; }
.doc-card p:last-child { margin-bottom: 0; }
.doc-card ul, .note-card ul { margin: 0; padding-left: 20px; color: var(--soft); line-height: 1.5; }
.doc-card li + li, .note-card li + li { margin-top: 6px; }
.doc-card li b { color: var(--ink); }
.note-head { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.note-head h2 { margin: 0; }
.note-card h3 { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin: 16px 0 6px; }
.facts { display: grid; grid-template-columns: 140px minmax(0, 1fr); gap: 8px 16px; margin: 0; }
.facts dt { font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); padding-top: 3px; }
.facts dd { margin: 0; font-weight: 600; }
.quote { font-size: 18px; font-weight: 600; color: var(--ink) !important; }
.downloads, .press-friends { list-style: none; margin: 8px 0 0; padding: 0 !important; display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 14px; }
.downloads li, .press-friends li { margin: 0 !important; display: flex; flex-direction: column; gap: 8px; }
.dl-art { height: 110px; border-radius: 12px; border: 2px solid var(--track); display: flex; align-items: center; justify-content: center; }
.dl-light { background: var(--tan); }
.dl-dark { background: var(--ink); border-color: var(--ink); }
.downloads a, .press-friends a { font-weight: 700; font-size: 14.5px; }
.shot { margin: 4px 0 12px; }
.shot img { width: 100%; height: auto; border-radius: 12px; border: 2px solid var(--ink); display: block; }
@media (max-width: 560px) {
  .doc { padding: 36px 0 56px; }
  .doc-card, .note-card { padding: 18px; }
  .facts { grid-template-columns: 1fr; gap: 2px; }
  .facts dd { margin-bottom: 8px; }
}

/* ======================= the desktop =======================
   Every page sits in one window on a little desktop, under a top bar like PostHog's; Nekoshi walks along the taskbar. */
:root { --bar: 58px; --taskbar: 52px; }
body { overflow: hidden; }
.desk { position: fixed; inset: 0; background: var(--tan) url(/assets/img/friends/nekoshi-motif.png) repeat; background-size: 56px 56px; }

/* the top bar: the site menu on the left; Shop, language and account on the right */
.desk > .site-header { position: absolute; top: 0; left: 0; right: 0; z-index: 20; }
.desk .header-inner { max-width: none; min-height: calc(var(--bar) - 2px); padding: 8px 14px 8px 24px; }
.header-right { gap: 6px; }
.icon-btn { display: inline-flex; align-items: center; justify-content: center; gap: 5px; height: 40px; min-width: 40px; padding: 0 8px; background: none; border: 0; border-radius: 10px; color: var(--ink); font-size: 14px; font-weight: 800; cursor: pointer; }
.header-right .lang-btn { border: 0; background: none; padding: 0 10px 0 8px; }
.icon-btn:hover, .header-right .lang-btn:hover, .icon-btn[aria-expanded="true"] { background: var(--tan); }
.icon-btn .ico { width: 24px; height: 24px; }
.header-right .btn-shop { margin-right: 6px; }

/* desktop icons */
.desk-icons { position: absolute; top: calc(var(--bar) + 14px); width: 104px; display: flex; flex-direction: column; gap: 8px; z-index: 1; }
.desk-left { left: 12px; }
.desk-right { right: 12px; }
.desk-icon { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 8px 4px; border: 0; border-radius: 10px; background: none; color: var(--ink); font: inherit; text-decoration: none; cursor: pointer; }
.desk-icon:hover, .desk-icon[aria-current="page"] { background: rgba(255, 248, 236, 0.75); }
.desk-img { height: 40px; width: auto; image-rendering: pixelated; }
.desk-icon span { font-size: 12.5px; font-weight: 800; line-height: 1.25; text-align: center; background: var(--paper); padding: 1px 7px; border-radius: 6px; }

/* the window: expand fills the desktop, close leaves just the icons */
.browser { position: absolute; top: calc(var(--bar) + 14px); left: 128px; right: 128px; bottom: calc(var(--taskbar) + 14px); z-index: 2; display: flex; flex-direction: column; background: var(--paper); border: 2px solid var(--ink); border-radius: 14px; box-shadow: 0 5px 0 var(--ink); overflow: hidden;
  transition: top 0.25s ease, left 0.25s ease, right 0.25s ease, bottom 0.25s ease, border-radius 0.25s ease, opacity 0.18s ease, transform 0.18s ease, visibility 0.18s; }
html.win-max .browser { top: var(--bar); left: 0; right: 0; bottom: var(--taskbar); border-radius: 0; border-width: 0; box-shadow: none; }
html.win-closed .browser { opacity: 0; transform: translateY(18px) scale(0.97); visibility: hidden; pointer-events: none; }
/* The top of the window fades the page away: blurred and washed out at the very top, easing to clear, no edge. */
.browser-top { position: absolute; top: 0; left: 0; right: 0; z-index: 3; height: 58px; display: flex; align-items: flex-start; justify-content: flex-end; gap: 2px; padding: 6px 10px 0; pointer-events: none; }
.browser-top::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to bottom, rgba(255, 248, 236, 0.55), rgba(255, 248, 236, 0)); -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px); -webkit-mask-image: linear-gradient(to bottom, #000, transparent); mask-image: linear-gradient(to bottom, #000, transparent); }
.browser-top .win-btn { pointer-events: auto; }
.win-btn { display: grid; place-items: center; width: 30px; height: 30px; padding: 0; border: 1.5px solid transparent; border-radius: 50%; background: none; color: var(--muted); cursor: pointer; }
.win-btn:hover { border-color: var(--track); color: var(--ink); background: #fff; }
.win-btn .ico { width: 18px; height: 18px; }
.win-max-btn .ico + .ico, html.win-max .win-max-btn .ico:first-child { display: none; }
html.win-max .win-max-btn .ico + .ico { display: block; }
.browser-view { flex: 1; min-height: 0; overflow-x: hidden; overflow-y: auto; }

/* a slim pill scrollbar, no arrows */
.browser-view::-webkit-scrollbar { width: 14px; }
.browser-view::-webkit-scrollbar-track { background: transparent; margin: 44px 0 6px; }   /* the thumb stays below the window buttons */
.browser-view::-webkit-scrollbar-button { display: none; height: 0; }
.browser-view::-webkit-scrollbar-thumb { min-height: 56px; background: rgba(42, 34, 51, 0.26) padding-box; border: 4px solid transparent; border-radius: 999px; }
.browser-view::-webkit-scrollbar-thumb:hover { background-color: rgba(42, 34, 51, 0.42); }
@supports not selector(::-webkit-scrollbar) { .browser-view { scrollbar-width: thin; scrollbar-color: rgba(42, 34, 51, 0.3) transparent; } }

.desk-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 5; pointer-events: none; }
.desk.cleaning, .desk.cleaning * { cursor: url(/assets/img/icons/cursor-broom.png) 3 17, pointer !important; }

/* the taskbar */
.taskbar { position: absolute; left: 0; right: 0; bottom: 0; height: var(--taskbar); z-index: 4; display: flex; align-items: center; gap: 10px; padding: 0 10px; background: var(--ink); color: var(--paper); }
.task { display: inline-flex; align-items: center; gap: 7px; height: 36px; padding: 0 14px; border: 0; border-bottom: 2px solid var(--accent); border-radius: 10px; background: rgba(255, 248, 236, 0.14); color: var(--paper); font: inherit; font-size: 13.5px; font-weight: 700; cursor: pointer; }
.task:hover { background: rgba(255, 248, 236, 0.22); }
.task[aria-pressed="false"] { border-bottom-color: transparent; background: rgba(255, 248, 236, 0.06); }
.tray { margin-left: auto; display: flex; align-items: center; gap: 8px; }
.taskbar .carebar { gap: 2px; padding: 3px; background: rgba(255, 248, 236, 0.12); border: 0; border-radius: 10px; box-shadow: none; animation: none; }
.taskbar .carebar button { width: 38px; height: 36px; border-radius: 8px; }
.taskbar .carebar button:hover, .taskbar .carebar button[aria-pressed="true"] { background: rgba(255, 248, 236, 0.22); }
.taskbar .music { position: static; transform: none; height: 36px; background: rgba(255, 248, 236, 0.12); border-color: transparent; }
.taskbar .music:active { transform: translateY(1px); }
.taskbar .music:hover { background: rgba(255, 248, 236, 0.22); }
.taskbar .music[aria-pressed="true"] { background: var(--accent); }
.taskbar .eq i { background: var(--paper); }
.taskbar .music[aria-pressed="true"] .eq i { background: var(--ink); }
.clock { min-width: 46px; text-align: right; font-size: 13.5px; font-weight: 700; font-variant-numeric: tabular-nums; }

/* Nekoshi's menu and speech bubble */
.pet-menu { position: absolute; z-index: 7; min-width: 150px; }
.pet-menu button, .pet-menu a { justify-content: flex-start; gap: 10px; }
.pet-menu-link { border-top: 2px dashed var(--track) !important; border-radius: 0 0 7px 7px !important; margin-top: 2px; }
.pet-menu img { image-rendering: pixelated; }
.pet-hint { position: absolute; z-index: 6; margin: 0; width: max-content; max-width: min(230px, calc(100vw - 16px)); text-wrap: balance; box-sizing: border-box; padding: 7px 12px; background: var(--paper); border: 2px solid var(--ink); border-radius: 12px; box-shadow: 0 4px 0 var(--ink); font-size: 13.5px; font-weight: 700; line-height: 1.3; pointer-events: none; transform: translateX(-50%); }
.pet-hint[hidden] { display: none; }
html.on-cat, html.on-cat * { cursor: pointer; }
html.holding, html.holding * { cursor: grabbing !important; user-select: none; }

/* the home hero, now inside the window */
.hero-grid { grid-template-columns: minmax(0, 1fr); text-align: center; }
.hero-logo img { margin: 0 auto; }
.hero-cta { justify-content: center; }
@media (min-width: 861px) { .rail-wrap { top: 56px; height: min(640px, calc(100vh - 270px)); } }

@media (max-width: 900px) {
  .desk-icons { display: none; }
  html.win-closed .desk-icons { display: flex; }
  .browser { left: 6px; right: 6px; top: calc(var(--bar) + 6px); bottom: calc(var(--taskbar) + 8px); }
  .win-max-btn { display: none; }
}
@media (max-width: 560px) {
  .desk .header-inner { padding: 8px 10px 8px 14px; }
  .header-right .btn-shop { margin-right: 2px; }
  .taskbar { gap: 6px; padding: 0 6px; }
  .taskbar .carebar button { width: 32px; }
  .task { padding: 0 10px; font-size: 0; gap: 0; }
  .clock { display: none; }
}
.warning-list h3 u { text-decoration-thickness: 3px; text-underline-offset: 3px; text-decoration-color: var(--pink); }
.warning-list li > div { flex: 1; min-width: 0; }
/* The maker follows the width of the window, not the screen, so it stacks when the window is narrow. */
.browser-view { container-type: inline-size; }
@container (max-width: 860px) { .maker { grid-template-columns: minmax(0, 1fr); max-width: 640px; } }
.setup-row.is-off .label, .setup-row.is-off .swatches { opacity: 0.35; }
.setup-row.is-off .sw { cursor: not-allowed; }
/* Home hero: fills the window, with a scroll cue at the bottom. --win-h is the visible height of the window. */
:root { --win-h: calc(100vh - var(--bar) - var(--taskbar) - 32px); }
html.win-max { --win-h: calc(100vh - var(--bar) - var(--taskbar)); }
@supports (height: 100dvh) {
  :root { --win-h: calc(100dvh - var(--bar) - var(--taskbar) - 32px); }
  html.win-max { --win-h: calc(100dvh - var(--bar) - var(--taskbar)); }
}
.hero { position: relative; box-sizing: border-box; min-height: var(--win-h); display: flex; flex-direction: column; justify-content: center; padding: 40px 0 120px; }
.hero > .wrap { width: 100%; }
.scroll-cue { position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--muted); font-size: 13.5px; font-weight: 700; text-decoration: none; white-space: nowrap; transition: opacity 0.3s ease; }
.scroll-cue:hover { color: var(--ink); }
.scroll-cue.is-gone { opacity: 0; pointer-events: none; }
.scroll-mouse { position: relative; width: 24px; height: 38px; border: 2px solid currentColor; border-radius: 12px; }
.scroll-mouse::after { content: ""; position: absolute; left: 50%; top: 7px; width: 4px; height: 8px; margin-left: -2px; border-radius: 2px; background: currentColor; animation: cue-wheel 1.6s ease-in-out infinite; }
@keyframes cue-wheel { 0% { opacity: 0; transform: translateY(0); } 30% { opacity: 1; } 100% { opacity: 0; transform: translateY(13px); } }
@media (prefers-reduced-motion: reduce) { .scroll-mouse::after { animation: none; } }
@media (max-width: 900px) { :root, html.win-max { --win-h: calc(100vh - var(--bar) - var(--taskbar) - 18px); } }
@supports (height: 100dvh) { @media (max-width: 900px) { :root, html.win-max { --win-h: calc(100dvh - var(--bar) - var(--taskbar) - 18px); } } }
.feature-art img, .made-art img { max-width: 100%; height: auto; }
/* The sound button sits at the far left of the top bar, before Home. */
.desk .header-inner { grid-template-columns: auto minmax(0, 1fr) auto; gap: 4px 12px; padding-left: 12px; }
.desk .header-inner > .music { grid-column: 1; }
.desk .nav { grid-column: 2; margin-left: -6px; }
.desk .header-right { grid-column: 3; }
.desk .music { position: static; transform: none; width: 40px; height: 40px; padding: 0; border: 0; background: none; color: var(--ink); }
.desk .music:hover, .desk .music[aria-pressed="true"] { background: var(--tan); }
.desk .music:active { transform: translateY(1px); }
.desk .music .ico { width: 24px; height: 24px; }
.desk .music .ico + .ico, .desk .music[aria-pressed="true"] .ico:first-child { display: none; }
.desk .music[aria-pressed="true"] .ico + .ico { display: block; }
@media (max-width: 980px) {
  .desk .header-inner { grid-template-columns: auto 1fr auto; }
  .desk .nav { grid-column: 1 / -1; grid-row: 2; margin-left: 0; }
}
/* how to play, in the middle of the taskbar */
.task-tip { flex: 1; min-width: 0; margin: 0; text-align: center; color: rgba(255, 248, 236, 0.62); font-size: 13px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.task-tip b { color: var(--paper); font-weight: 800; }
@media (max-width: 1100px) { .task-tip { display: none; } }
/* Friends page: dark heading; number on the left, species on the right, then the name */
.stage-title { color: var(--ink); }
.panel-kicker { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin: 0 0 4px; }
.panel-kicker .label { margin: 0; }
.panel-what { display: inline-flex; align-items: center; gap: 8px; }
/* Credits */
.credit-list { list-style: none; margin: 4px 0 0; padding: 0; }
.credit-list li { display: flex; flex-wrap: wrap; align-items: baseline; gap: 2px 10px; padding: 10px 0; border-top: 2px dashed var(--track); }
.credit-list li:first-child { border-top: 0; padding-top: 4px; }
.credit-list li > a { font-weight: 800; color: var(--ink); }
.credit-list span { color: var(--soft); }
.credit-card a { text-underline-offset: 3px; }
.doc .credit-list { padding: 0; margin-left: 0; }
/* One section spacing for the whole home page (the "Made for" spacing): the same above and below every section. */
:root { --sec: 80px; }
@media (max-width: 560px) { :root { --sec: 56px; } }
.steps, .features, .made-for, .options, .cast, .warnings { padding: var(--sec) 0; }
.pebble { padding: 0 0 var(--sec); }

/* Sticky notes on the desk: grudges, and the note it leaves when it goes */
.desk-sticky, .desk-note { position: absolute; z-index: 6; height: auto; margin: 0; border: 0; cursor: pointer; transform: rotate(var(--r, -4deg)); animation: note-in 0.3s cubic-bezier(0.3, 1.5, 0.5, 1); }
.desk-sticky { padding: 16px 20px 18px; font-size: 18px; max-width: 200px; text-align: left; }
.desk-note { bottom: calc(var(--taskbar) + 14px); padding: 20px 26px 22px; font-size: 22px; }
.desk-sticky.is-going { opacity: 0; transition: opacity 0.4s; }
@keyframes note-in { from { transform: rotate(var(--r, -4deg)) scale(0.6); opacity: 0; } }

/* ---------- early-access launch ---------- */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.signup { max-width: 540px; margin: 8px auto 0; text-align: center; }
.signup-kicker { margin: 0 0 14px; font-weight: 700; color: var(--soft); }
.signup-row { display: flex; gap: 10px; }
.signup-row input { flex: 1; min-width: 0; height: 56px; padding: 0 18px; border: 2px solid var(--ink); border-radius: 14px; background: #fff; font: inherit; font-size: 17px; color: var(--ink); }
.signup-row input:focus { outline: none; box-shadow: 0 0 0 3px rgba(242, 155, 75, 0.45); }
.signup-row .btn { flex: none; }
.signup .hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.signup-note { margin: 12px 0 0; font-size: 14px; color: var(--muted); }
.signup-note a { color: inherit; }
.signup-msg { margin: 10px 0 0; min-height: 1.4em; font-weight: 700; }
.signup-msg.is-error { color: var(--red); }
.signup.is-done .signup-row, .signup.is-done .signup-note { display: none; }
.signup.is-done .signup-msg { font-size: 18px; color: var(--ink); }
.signup button[disabled] { opacity: 0.7; cursor: progress; }
@media (max-width: 560px) { .signup-row { flex-direction: column; } .signup-row input { flex: none; } .signup-row .btn { width: 100%; } }
.confirmed { text-align: center; }
.confirmed .lead { margin-left: auto; margin-right: auto; }
.confirmed-cta { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin: 28px 0 0; }
/* not ready yet: greyed out, with a lock */
.is-locked { position: relative; opacity: 0.5; filter: grayscale(1); cursor: not-allowed !important; }
.is-locked:hover { background: none !important; }
.btn.is-locked:hover { background: inherit !important; }
.lock-badge { display: inline-flex; align-items: center; margin-right: 5px; }
.lock-badge .ico { width: 14px; height: 14px; }
.desk-icon.is-locked { opacity: 1; filter: none; }
.desk-icon.is-locked .desk-img, .desk-icon.is-locked > span:last-child { opacity: 0.45; filter: grayscale(1); }
.desk-icon.is-locked .lock-badge { position: absolute; top: 2px; right: 24px; z-index: 1; margin: 0; width: 22px; height: 22px; justify-content: center; border-radius: 50%; background: var(--ink); color: var(--paper); }
.icon-btn.is-locked .lock-badge { position: absolute; right: 0; bottom: 2px; margin: 0; }
.icon-btn.is-locked .lock-badge .ico { width: 12px; height: 12px; }

/* Locks in the app's Petubator style: the gold pixel padlock, and locked pictures darkened with the lock on top */
.is-locked { opacity: 1; filter: none; color: var(--muted) !important; }
.lock-badge img { display: block; image-rendering: pixelated; }
.btn.is-locked { background: var(--tan) !important; border-color: var(--chip) !important; color: var(--muted) !important; box-shadow: none !important; }
.btn.is-locked .ico, .icon-btn.is-locked .ico { opacity: 0.55; }
.desk-icon.is-locked .desk-img { opacity: 1; filter: brightness(0.35) saturate(0.4); }
.desk-icon.is-locked > span:last-child { opacity: 1; filter: none; }
.desk-icon.is-locked > span:last-child::after { content: "Locked"; display: block; color: var(--red); font-size: 11px; }
.desk-icon.is-locked .lock-badge { top: 19px; left: 50%; right: auto; width: auto; height: auto; transform: translateX(-50%); background: none; border-radius: 0; }
.icon-btn.is-locked .lock-badge { right: 1px; bottom: 1px; }

/* The Recycle Bin: a premium add-on in the app. It lights up while you hold a mess over it, and gulps it down. */
.desk-icon[data-bin] > span:last-child::after { content: "Premium"; display: block; color: #b8860b; font-size: 11px; }
.desk-icon[data-bin].is-hot { background: rgba(255, 248, 236, 0.95); box-shadow: 0 0 0 3px var(--accent); }
.desk-icon[data-bin].is-hot .desk-img { transform: scale(1.15) rotate(-6deg); }
.desk-icon[data-bin] .desk-img { transition: transform 0.15s; }
.desk-icon[data-bin].is-gulp .desk-img { animation: bin-gulp 0.5s ease; }
@keyframes bin-gulp { 0% { transform: scale(1.15); } 30% { transform: scale(0.85, 1.1); } 60% { transform: scale(1.08, 0.92); } 100% { transform: none; } }

/* Japanese: DynaPuff has no Japanese letters, so they come from the system's Japanese fonts. */
html[lang="ja"] { --display: 'DynaPuff', 'Yu Gothic UI', 'Hiragino Maru Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif; --body: 'Segoe UI', 'Yu Gothic UI', 'Hiragino Sans', Meiryo, system-ui, sans-serif; }
html[lang="ja"] body { line-break: strict; }
html[lang="ja"] .label { letter-spacing: 0.04em; }
html[lang="ja"] .desk-icon[data-bin] > span:last-child::after { content: "プレミアム"; }
html[lang="ja"] .desk-icon.is-locked > span:last-child::after { content: "ロック中"; }

/* The age rating as one label, like on a game box: the badge on the left, what to expect on the right. */
.rating { align-items: stretch; gap: 0; max-width: 360px; border: 2px solid var(--paper); border-radius: 8px; overflow: hidden; }
.rating-box { width: 80px; height: auto; border: 0; border-radius: 0; background: var(--paper); color: var(--ink); align-items: stretch; justify-content: space-between; padding: 4px; box-sizing: border-box; }
.rating-age { flex: 1; display: grid; place-items: center; font-size: 34px; padding: 8px 0 4px; }
.rating-state { margin: 0; padding: 4px 0; border-radius: 3px; background: var(--ink); color: var(--paper); text-align: center; font-size: 10px; letter-spacing: 1.5px; opacity: 1; }
.rating-text { padding: 12px 16px; display: flex; flex-direction: column; justify-content: center; }
.rating-text .rating-title { margin: 0 0 6px; font-size: 11.5px; letter-spacing: 1.2px; text-transform: uppercase; }
.rating-list { list-style: none; margin: 0; padding: 0; font-size: 14px; line-height: 1.45; color: rgba(255, 248, 236, 0.85); }
.rating-text .rating-extra { margin: 8px 0 0; padding-top: 7px; border-top: 1px solid rgba(255, 248, 236, 0.3); font-size: 12.5px; font-weight: 700; color: var(--paper); }

/* Launch hero: a sticky note by the logo, and a compact two-way early-access form, so it all fits in the window. */
.hero-text { position: relative; }
.soon-sticky { position: absolute; top: -6px; left: calc(50% + 250px); height: auto; margin: 0; padding: 16px 22px 18px; font-size: 22px; line-height: 1.15; text-align: left; transform: rotate(7deg); z-index: 1; }
.signup { margin-top: 4px; }
.signup-pick { margin: 0 auto 14px; }
.signup-pick button { padding: 6px 16px; font-size: 15px; }
.signup-free[hidden], .signup-support[hidden] { display: none; }
.signup-support { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.signup-risk { display: flex; align-items: flex-start; gap: 10px; max-width: 460px; text-align: left; font-size: 14.5px; line-height: 1.4; color: var(--soft); cursor: pointer; }
.signup-risk input { flex: none; width: 18px; height: 18px; margin-top: 1px; accent-color: var(--ink); }
.signup-pay[disabled] { opacity: 0.45; cursor: not-allowed; box-shadow: none; }
.signup-support .signup-note { margin-top: 2px; }
@container (max-width: 760px) {
  .soon-sticky { position: static; display: inline-block; margin: 0 0 14px; font-size: 18px; padding: 12px 18px 14px; transform: rotate(-3deg); }
}

.support-email { width: min(100%, 420px); height: 50px; padding: 0 16px; border: 2px solid var(--ink); border-radius: 12px; background: #fff; font: inherit; font-size: 16px; color: var(--ink); box-sizing: border-box; }
.support-email:focus { outline: none; box-shadow: 0 0 0 3px rgba(242, 155, 75, 0.45); }
.signup-pick[hidden] { display: none; }

.signup-support .signup-row { width: 100%; }
.signup-support .support-email { width: auto; height: 56px; flex: 1; min-width: 0; border-radius: 14px; font-size: 17px; }
.signup-risk { margin-top: 2px; }
.hero { padding: 24px 0 100px; }
.hero-logo { margin-bottom: 0; }
/* both early-access options take the same height, so the page does not jump when you switch */
.signup-free, .signup-support { min-height: 164px; box-sizing: border-box; }
@container (max-width: 560px) { .signup-free, .signup-support { min-height: 0; } }

/* Phones: less room above the logo, so the whole hero fits on first load */
@media (max-width: 600px) { .hero { padding-top: 8px; } .hero-logo { margin-top: 0; } }
/* The logo sits tight on the tagline: no inline line gap under the image, a small margin */
.hero-logo img { display: block; }
.hero-logo + .tagline { margin-top: 12px; }
/* Short screens (laptops at 125-150% scaling): the whole hero, scroll cue included, fits on first load */
@media (min-width: 601px) and (max-height: 820px) {
  .hero { padding: 16px 0 84px; }
  .hero-logo + .tagline { margin-bottom: 18px; }
  .signup-free, .signup-support { min-height: 0; }
  .scroll-cue { bottom: 14px; }
}
@media (min-width: 601px) and (max-height: 660px) { .hero-logo img { width: 330px; height: auto; } }
/* Pull to refresh (phones): the paw drops in from the top of the window */
.pull { position: absolute; top: 0; left: 50%; z-index: 4; width: 44px; height: 44px; display: grid; place-items: center; background: var(--paper); border: 2px solid var(--ink); border-radius: 50%; box-shadow: 0 3px 0 var(--ink); opacity: 0; pointer-events: none; transform: translate(-50%, -48px); }
.pull.is-armed { background: var(--note); }
.pull.is-back, .pull.is-go { transition: transform 0.2s ease, opacity 0.2s ease; }
.desk-note.is-going { opacity: 0; transform: rotate(var(--r, -4deg)) scale(0.8); transition: opacity 0.35s, transform 0.35s; }
/* One option only now (free sign-up): no room held for a second mode */
.signup-free { min-height: 0; }
/* Signing up: Nekoshi and everything it puts on screen fade out of the way */
.desk-canvas, .pet-hint, .desk-sticky, .desk-note { transition: opacity 0.3s ease; }
html.nk-quiet .desk-canvas, html.nk-quiet .pet-hint, html.nk-quiet .desk-sticky, html.nk-quiet .desk-note, html.nk-quiet .pet-menu { opacity: 0; pointer-events: none; }
/* ---------- Field Guide (staging only): who gets on with who ---------- */
.fg { --good: #3f9b57; --bad: #d9434f; --poison: #7c4dcc; --ugly: #c98a12; --meh: #cfc6d8; padding: 40px 0 var(--sec); }
.fg-wrap { max-width: 1120px; display: grid; gap: 36px; }
.fg-top { display: grid; gap: 14px; }
.fg-top .page-title, .fg-top .lead { margin: 0; }
.fg-stamp { justify-self: start; font-size: 12px; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; background: var(--note); color: var(--ink); border: 2px solid var(--ink); border-radius: 8px; padding: 3px 10px; box-shadow: 0 3px 0 var(--ink); }
.fg-parade { display: flex; flex-wrap: wrap; align-items: flex-end; gap: 10px 14px; padding: 16px 18px 12px; background: #fff; border: 2px solid var(--ink); border-radius: 16px; box-shadow: 0 4px 0 var(--ink); }
.fg-parade button { background: none; border: 0; padding: 4px; border-radius: 10px; cursor: pointer; display: grid; justify-items: center; gap: 4px; color: var(--ink); font: inherit; font-size: 12px; font-weight: 800; }
.fg-parade button:hover, .fg-parade button:focus-visible { background: var(--tan); outline: none; }
.fg-key, .fg-tally { display: flex; flex-wrap: wrap; gap: 8px 18px; font-size: 13.5px; }
.fg-key span, .fg-tally span { display: inline-flex; align-items: center; gap: 6px; }
.fg-chip { display: inline-grid; place-items: center; width: 22px; height: 22px; border-radius: 6px; font-style: normal; font-weight: 800; font-size: 13px; color: #fff; border: 2px solid var(--ink); flex: none; }
.fg-chip.good { background: var(--good); } .fg-chip.bad { background: var(--bad); } .fg-chip.poison { background: var(--poison); } .fg-chip.ugly { background: var(--ugly); } .fg-chip.meh { background: var(--meh); color: var(--ink); }
.fg-tag { display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: 2px 7px; border-radius: 6px; vertical-align: middle; }
.fg-tag.planned { background: #fff1c2; color: #7a5b00; }
.fg-tag.live { background: #dff1e3; color: #2f7a44; }
.fg-head { display: grid; gap: 6px; }
.fg-head h2 { font-family: var(--display); font-weight: 700; font-size: clamp(24px, 3.4vw, 32px); margin: 0; }
.fg-head p { margin: 0; max-width: 70ch; color: var(--muted); }
.fg-head > .fg-tag { justify-self: start; }
.fg-box { background: #fff; border: 2px solid var(--ink); border-radius: 18px; box-shadow: 0 5px 0 var(--ink); padding: 20px; }
.fg-faceoff { display: grid; gap: 18px; }
.fg-pickers { display: grid; grid-template-columns: 1fr auto 1fr; gap: 12px; align-items: center; }
.fg-pickers label { display: grid; gap: 4px; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.fg-pickers select { font: inherit; font-size: 16px; font-weight: 700; color: var(--ink); background: var(--paper); border: 2px solid var(--ink); border-radius: 10px; padding: 8px 10px; width: 100%; }
.fg-vs { font-family: var(--display); font-size: 22px; color: var(--accent); padding-top: 18px; }
.fg-duel { display: grid; grid-template-columns: 1fr minmax(0, 1.6fr) 1fr; gap: 14px; align-items: center; }
.fg-fighter { display: grid; justify-items: center; gap: 6px; text-align: center; }
.fg-fname { font-family: var(--display); font-size: 20px; }
.fg-fwhat { font-size: 13px; color: var(--muted); font-weight: 700; }
.fg-bars { display: grid; gap: 9px; }
.fg-brow { display: grid; grid-template-columns: 1fr 96px 1fr; gap: 8px; align-items: center; }
.fg-lab { text-align: center; font-weight: 800; color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .06em; }
.fg-pips { display: flex; gap: 3px; }
.fg-pips.l { justify-content: flex-end; }
.fg-pips i { width: 14px; height: 14px; border: 2px solid var(--ink); border-radius: 3px; background: var(--paper); }
.fg-pips i.on { background: var(--accent); }
.fg-pips i.on.win { background: var(--good); }
.fg-verdict { border: 2px solid var(--ink); border-radius: 14px; padding: 16px 18px; display: grid; gap: 8px; background: var(--paper); }
.fg-verdict p { margin: 0; }
.fg-verdict h3 { margin: 0; font-family: var(--display); font-size: 20px; }
.fg-vt { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.fg-effect { font-size: 14px; border-top: 2px dashed var(--tan); padding-top: 8px; }
.fg-verdict.good { box-shadow: inset 6px 0 0 var(--good); } .fg-verdict.bad { box-shadow: inset 6px 0 0 var(--bad); } .fg-verdict.poison { box-shadow: inset 6px 0 0 var(--poison); } .fg-verdict.ugly { box-shadow: inset 6px 0 0 var(--ugly); } .fg-verdict.meh { box-shadow: inset 6px 0 0 var(--meh); }
.fg-matrix-box { overflow-x: auto; padding: 12px; }
.fg-matrix { border-collapse: separate; border-spacing: 3px; margin: 0 auto; }
.fg-matrix th { padding: 0; text-align: center; }
.fg-matrix th.fg-rowh { padding-right: 6px; }
.fg-matrix td { width: 34px; height: 34px; padding: 0; }
.fg-matrix td button { width: 34px; height: 34px; border-radius: 7px; border: 2px solid transparent; font: inherit; font-size: 14px; font-weight: 800; color: #fff; cursor: pointer; display: grid; place-items: center; padding: 0; }
.fg-matrix td button:hover { border-color: var(--ink); transform: translateY(-1px); }
.fg-matrix td.fg-self { background: repeating-linear-gradient(45deg, var(--tan) 0 3px, transparent 3px 7px); border-radius: 7px; }
.fg-matrix td button.good { background: var(--good); } .fg-matrix td button.bad { background: var(--bad); } .fg-matrix td button.poison { background: var(--poison); } .fg-matrix td button.ugly { background: var(--ugly); } .fg-matrix td button.meh { background: var(--meh); color: var(--ink); }
.fg-roster { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 18px; }
.fg-card { background: #fff; border: 2px solid var(--ink); border-radius: 16px; box-shadow: 0 4px 0 var(--ink); padding: 16px; display: grid; gap: 12px; align-content: start; }
.fg-card-top { display: grid; grid-template-columns: 84px 1fr; gap: 12px; align-items: center; }
.fg-pic { width: 84px; height: 76px; display: grid; place-items: end center; background: var(--paper); border-radius: 12px; border: 2px solid var(--tan); padding-bottom: 6px; overflow: hidden; }
.fg-who { display: grid; gap: 2px; }
.fg-n { font-family: var(--display); font-size: 22px; line-height: 1.1; }
.fg-w { font-size: 13px; color: var(--muted); font-weight: 700; }
.fg-blurb { margin: 0; font-size: 14px; color: var(--soft); }
.fg-facts { display: grid; grid-template-columns: 92px 1fr; gap: 5px 10px; margin: 0; font-size: 13.5px; }
.fg-facts dt { color: var(--muted); font-weight: 800; font-size: 12px; text-transform: uppercase; letter-spacing: .05em; padding-top: 2px; }
.fg-facts dd { margin: 0; }
.fg-rates { display: grid; gap: 5px; }
.fg-rate { display: grid; grid-template-columns: 92px 1fr; align-items: center; gap: 10px; font-size: 12px; font-weight: 800; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }
.fg-rate .fg-pips i { width: 12px; height: 12px; }
.fg-links { display: flex; flex-wrap: wrap; gap: 6px; }
.fg-links button { font: inherit; font-size: 12.5px; font-weight: 700; border: 2px solid var(--ink); border-radius: 999px; padding: 2px 9px 2px 4px; background: var(--paper); color: var(--ink); cursor: pointer; display: inline-flex; align-items: center; gap: 5px; }
.fg-links button .fg-chip { width: 16px; height: 16px; font-size: 10px; border-width: 1.5px; border-radius: 50%; }
.fg-links button:hover { background: var(--tan); }
.fg-spec { display: grid; gap: 16px; }
.fg-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 12px; }
.fg-step { border: 2px solid var(--tan); border-radius: 12px; padding: 12px; background: var(--paper); display: grid; gap: 4px; align-content: start; }
.fg-step p { margin: 0; font-size: 14px; }
.fg-step-k { color: var(--accent); font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.fg-who .fg-step-who { grid-template-columns: 52px 1fr; align-items: start; gap: 10px; }
.fg-foot { margin: 0; font-size: 13px; color: var(--muted); border-top: 2px dashed var(--tan); padding-top: 14px; }
@media (max-width: 720px) {
  .fg-duel { grid-template-columns: 1fr 1fr; }
  .fg-duel .fg-bars { grid-column: 1 / -1; grid-row: 2; }
  .fg-brow { grid-template-columns: 1fr 80px 1fr; }
  .fg-pips i { width: 11px; height: 11px; }
  .fg-box { padding: 14px; }
}
@media (max-width: 460px) {
  .fg-pickers { grid-template-columns: 1fr; }
  .fg-vs { padding: 0; text-align: center; }
  .fg-roster { grid-template-columns: 1fr; }
}
/* Friends rail: capsules scrolled past fade out (no half-capsules peeking under the top arrow) */
.cap-item { transition: opacity 0.2s ease; }
.cap-item.is-past { opacity: 0; pointer-events: none; }
/* More languages: fonts with the script's own glyphs (DynaPuff is Latin only), and the desk-icon tags */
html[lang="th"] { --display: 'DynaPuff', 'Leelawadee UI', 'Noto Sans Thai', Thonburi, sans-serif; --body: 'Segoe UI', 'Leelawadee UI', 'Noto Sans Thai', Thonburi, system-ui, sans-serif; }
html[lang="th"] body { line-height: 1.65; }
html[lang="zh-Hans"] { --display: 'DynaPuff', 'Microsoft YaHei UI', 'PingFang SC', 'Noto Sans SC', sans-serif; --body: 'Segoe UI', 'Microsoft YaHei UI', 'PingFang SC', 'Noto Sans SC', system-ui, sans-serif; }
html[lang="zh-Hans"] body { line-break: strict; }
html[lang="th"] .desk-icon[data-bin] > span:last-child::after { content: "พรีเมียม"; }
html[lang="th"] .desk-icon.is-locked > span:last-child::after { content: "ล็อกอยู่"; }
html[lang="zh-Hans"] .desk-icon[data-bin] > span:last-child::after { content: "高级版"; }
html[lang="zh-Hans"] .desk-icon.is-locked > span:last-child::after { content: "已锁定"; }
html[lang="es"] .desk-icon.is-locked > span:last-child::after { content: "Bloqueado"; }
html[lang="fr"] .desk-icon.is-locked > span:last-child::after { content: "Verrouillé"; }
