:root {
  --bg: #160f0d;
  --bg2: #1f1512;
  --panel: #2a1d18;
  --panel-hi: #3a2820;
  --ink: #f3e7d8;
  --muted: #b09a86;
  --amber: #e0a546;
  --amber-soft: #c98a36;
  --red: #c0392b;
  --green: #4e9a5b;
  --line: rgba(224,165,70,0.18);
  --shadow: 0 12px 40px rgba(0,0,0,0.5);
}

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

html, body {
  height: 100%;
  background: radial-gradient(ellipse at 50% -10%, #2a1c16 0%, var(--bg) 60%);
  color: var(--ink);
  font-family: "Avenir Next", "Segoe UI", system-ui, -apple-system, sans-serif;
  -webkit-user-select: none;
  user-select: none;
  overscroll-behavior: none;
}

#app {
  max-width: 540px;
  margin: 0 auto;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: env(safe-area-inset-top) 18px env(safe-area-inset-bottom);
}

.screen {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 26px 4px 30px;
  animation: fade 0.35s ease both;
}
@keyframes fade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@keyframes pop { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }

/* Typography */
.kicker { letter-spacing: 0.4em; text-transform: uppercase; font-size: 12px; color: var(--amber); opacity: 0.85; }
h1 { font-size: 38px; font-weight: 800; letter-spacing: 0.02em; line-height: 1.05; margin: 8px 0; }
h2 { font-size: 24px; font-weight: 700; margin-bottom: 6px; }
.sub { color: var(--muted); font-size: 15px; line-height: 1.5; }
.spacer { flex: 1; }
.center { text-align: center; }

/* Buttons */
button {
  font-family: inherit;
  font-size: 17px;
  font-weight: 700;
  color: var(--bg);
  background: linear-gradient(180deg, var(--amber) 0%, var(--amber-soft) 100%);
  border: none;
  border-radius: 14px;
  padding: 16px 20px;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform 0.08s ease, opacity 0.2s ease, filter 0.2s;
}
button:active { transform: translateY(2px) scale(0.99); }
button:disabled { opacity: 0.35; filter: grayscale(0.4); cursor: default; }
button.ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
  box-shadow: none;
}
button.danger { background: linear-gradient(180deg, #d24b3b, #a32d20); color: #fff; }
button.block { width: 100%; }
.btn-row { display: flex; gap: 12px; }
.btn-row > button { flex: 1; }

/* Cards in a list (home / setup) */
.card-tile {
  background: linear-gradient(180deg, var(--panel-hi), var(--panel));
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 0.1s, border-color 0.2s;
}
.card-tile:active { transform: scale(0.985); }
.card-tile h2 { margin-bottom: 2px; }
.tile-meta { color: var(--amber); font-size: 13px; letter-spacing: 0.05em; margin-top: 10px; }

/* Setup */
.players-list { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }
.player-row { display: flex; align-items: center; gap: 12px; }
.player-row .idx {
  width: 34px; height: 34px; flex: 0 0 34px;
  display: grid; place-items: center;
  border-radius: 50%; background: var(--panel-hi); color: var(--amber);
  font-weight: 800;
}
input[type="text"] {
  flex: 1;
  font-family: inherit; font-size: 16px; color: var(--ink);
  background: var(--panel); border: 1px solid var(--line);
  border-radius: 12px; padding: 13px 14px;
}
input[type="text"]:focus { outline: none; border-color: var(--amber); }
.counter { display: flex; align-items: center; gap: 18px; margin-top: 8px; }
.counter button { width: 48px; height: 48px; padding: 0; border-radius: 50%; font-size: 26px; }
.counter .num { font-size: 30px; font-weight: 800; min-width: 40px; text-align: center; }

/* Pass-the-phone */
.pass {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 18px;
}
.pass .who { font-size: 30px; font-weight: 800; color: var(--amber); }
.eyes { font-size: 64px; }

/* Table / play screen */
.table-info {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--panel); border: 1px solid var(--line);
  border-radius: 14px; padding: 12px 16px; margin-bottom: 14px;
}
.table-info .label { color: var(--muted); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; }
.table-info .rank { font-size: 22px; font-weight: 800; color: var(--amber); }

.pile-note {
  text-align: center; color: var(--muted); font-size: 15px; line-height: 1.5;
  padding: 14px; min-height: 60px; display: grid; place-items: center;
}
.pile-note b { color: var(--ink); }

/* Playing-card faces */
.hand { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 18px 0; }
.pcard {
  width: 70px; height: 98px;
  background: linear-gradient(160deg, #fbf3e4, #efe0c8);
  border-radius: 10px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.45);
  position: relative;
  cursor: pointer;
  transition: transform 0.12s, box-shadow 0.12s;
  color: #3a2820;
  flex: 0 0 auto;
}
.pcard.sel { transform: translateY(-14px); box-shadow: 0 14px 22px rgba(224,165,70,0.45); outline: 2px solid var(--amber); }
.pcard .corner { position: absolute; font-weight: 800; font-size: 16px; line-height: 1; }
.pcard .corner.tl { top: 7px; left: 8px; }
.pcard .corner.br { bottom: 7px; right: 8px; transform: rotate(180deg); }
.pcard .pip { position: absolute; inset: 0; display: grid; place-items: center; font-size: 34px; }
.pcard.red { color: #b23a2e; }
.pcard.joker { background: linear-gradient(160deg, #2a1d18, #3a2820); color: var(--amber); outline: 1px solid var(--amber); }
.pcard.back {
  background: repeating-linear-gradient(45deg, #5a2d24, #5a2d24 8px, #4a241d 8px, #4a241d 16px);
  border: 2px solid var(--amber-soft);
}

.select-hint { text-align: center; color: var(--muted); font-size: 13px; margin-bottom: 12px; }

/* Reveal */
.reveal-cards { display: flex; gap: 10px; justify-content: center; margin: 16px 0; flex-wrap: wrap; }
.verdict { text-align: center; font-size: 22px; font-weight: 800; margin: 10px 0; animation: pop 0.4s ease both; }
.verdict.truth { color: var(--green); }
.verdict.lie { color: var(--red); }

/* Revolver / roulette */
.revolver { display: flex; flex-direction: column; align-items: center; gap: 20px; margin: 24px 0; }
.cylinder {
  width: 180px; height: 180px; border-radius: 50%;
  background: radial-gradient(circle at 50% 40%, #4a3a34, #241712);
  border: 6px solid #6b5048;
  position: relative;
  box-shadow: var(--shadow), inset 0 0 24px rgba(0,0,0,0.6);
}
.chamber {
  position: absolute; width: 34px; height: 34px; border-radius: 50%;
  background: #140d0b; border: 2px solid #3a2820;
  top: 50%; left: 50%; margin: -17px;
  transition: all 0.3s;
}
.chamber.spent { background: #2a1d18; }
.chamber.live.show { background: var(--red); box-shadow: 0 0 14px var(--red); }
.chamber.current { border-color: var(--amber); box-shadow: 0 0 12px var(--amber); }
.odds { font-size: 15px; color: var(--muted); }
.odds b { color: var(--amber); }

.bang { font-size: 60px; font-weight: 900; letter-spacing: 0.05em; animation: pop 0.3s ease both; }
.bang.dead { color: var(--red); }
.bang.safe { color: var(--green); }

@keyframes shake { 0%,100%{transform:none} 20%{transform:translateX(-8px)} 40%{transform:translateX(8px)} 60%{transform:translateX(-5px)} 80%{transform:translateX(5px)} }
.shake { animation: shake 0.4s; }

/* Status strip of players */
.roster { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-top: 6px; }
.chip {
  font-size: 13px; padding: 6px 11px; border-radius: 20px;
  background: var(--panel); border: 1px solid var(--line); color: var(--ink);
}
.chip.dead { opacity: 0.4; text-decoration: line-through; color: var(--muted); }
.chip.turn { border-color: var(--amber); color: var(--amber); }
.chip .gun { opacity: 0.7; font-size: 11px; margin-left: 4px; }

/* Winner */
.trophy { font-size: 80px; text-align: center; animation: pop 0.5s ease both; }

.topbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; }
.topbar .back { font-size: 14px; color: var(--muted); background: none; box-shadow: none; padding: 6px; font-weight: 600; }

/* ===== Main page (home) ===== */
.home-head { margin-top: 8px; margin-bottom: 22px; }
.home-head h1 { font-size: 44px; }

.home-hero {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: center;
  gap: 16px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--accent) 32%, var(--panel)) 0%, var(--panel) 70%);
  border: 1px solid color-mix(in srgb, var(--accent) 45%, transparent);
  border-radius: 22px;
  padding: 22px 20px;
  box-shadow: var(--shadow);
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.1s;
}
.home-hero:active { transform: scale(0.99); }
.hero-badge {
  position: absolute; top: 0; right: 0;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  background: var(--accent); color: #1a1210;
  padding: 5px 12px; border-bottom-left-radius: 12px; font-weight: 800;
}
.hero-icon { font-size: 50px; text-align: center; line-height: 1; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.5)); }
.hero-body h2 { font-size: 22px; margin-bottom: 4px; }
.hero-body .sub { font-size: 13.5px; line-height: 1.4; }
.hero-body .tile-meta { margin-top: 8px; color: color-mix(in srgb, var(--accent) 80%, var(--ink)); }
.hero-play {
  font-weight: 800; font-size: 14px; color: var(--accent);
  white-space: nowrap; align-self: center;
}

.section-label {
  display: flex; align-items: center; gap: 10px;
  margin: 26px 2px 12px;
  font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted);
}
.section-label .count {
  font-size: 11px; background: var(--panel-hi); color: var(--amber);
  padding: 2px 9px; border-radius: 20px; letter-spacing: 0;
}

.game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.game-card {
  position: relative;
  background: linear-gradient(180deg, var(--panel-hi), var(--panel));
  border: 1px solid color-mix(in srgb, var(--accent, #e0a546) 35%, transparent);
  border-radius: 18px;
  padding: 18px 16px 16px;
  min-height: 122px;
  display: flex; flex-direction: column; gap: 6px;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(0,0,0,0.32);
  transition: transform 0.1s;
}
.game-card:active { transform: scale(0.97); }
.game-card .gc-icon { font-size: 34px; }
.game-card .gc-name { font-weight: 800; font-size: 16px; }
.game-card .gc-meta { font-size: 12px; color: var(--muted); margin-top: auto; }
.game-card.locked {
  cursor: default;
  border-color: var(--line);
  filter: saturate(0.5);
  opacity: 0.62;
}
.game-card .gc-lock { position: absolute; top: 14px; right: 14px; font-size: 15px; opacity: 0.8; }
.game-card .gc-soon {
  margin-top: auto; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--amber-soft);
}
.foot { margin-top: 18px; opacity: 0.55; font-size: 13px; }

/* ===== Impostor role cards & rules ===== */
.role-card {
  border-radius: 20px; padding: 30px 24px; text-align: center;
  box-shadow: var(--shadow); margin-top: 10px;
  animation: pop 0.35s ease both;
}
.role-card.word { background: linear-gradient(160deg, #fbf3e4, #efe0c8); color: #2a1d18; }
.role-card.imp { background: linear-gradient(160deg, #3a1f1b, #24130f); border: 1px solid var(--red); color: var(--ink); }
.role-card .role-icon { font-size: 56px; }
.role-card .role-title { font-size: 26px; font-weight: 900; color: var(--red); margin: 6px 0 12px; letter-spacing: 0.02em; }
.role-card.word .kicker { color: var(--amber-soft); }
.role-card .role-word { font-size: 40px; font-weight: 900; margin: 8px 0 14px; letter-spacing: 0.01em; }
.role-card.word .sub { color: #6b5048; }
.role-card.imp .sub { color: var(--muted); }

.rules { margin: 14px 8px; padding-left: 22px; color: var(--ink); line-height: 1.7; }
.rules li { margin-bottom: 10px; }
.rules b { color: var(--amber); }

/* ---- Mode picker & online lobby ------------------------------------- */
.mode-list { display: flex; flex-direction: column; gap: 14px; margin-top: 20px; }
.mode-card {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  text-align: left;
  background: linear-gradient(180deg, var(--panel-hi), var(--panel));
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: var(--shadow);
}
.mode-card.disabled { opacity: 0.4; }
.mode-emoji { font-size: 30px; line-height: 1; }
.mode-text { display: flex; flex-direction: column; gap: 3px; }
.mode-title { font-size: 18px; font-weight: 800; }
.mode-sub { font-size: 13px; color: var(--muted); font-weight: 500; }

.join-row { display: flex; gap: 10px; align-items: stretch; }
.join-row input {
  flex: 1;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-align: center;
}
.join-row button { padding-left: 26px; padding-right: 26px; }

.lobby-name { display: flex; align-items: center; gap: 8px; font-size: 17px; font-weight: 600; }
.lobby-name.away { color: var(--muted); }
.you-tag, .host-tag, .away-tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 999px;
}
.you-tag  { background: rgba(224,165,70,0.18); color: var(--amber); }
.host-tag { background: rgba(78,154,91,0.18);  color: var(--green); }
.away-tag { background: rgba(176,154,134,0.14); color: var(--muted); }

/* ---- Online vote list ---------------------------------------------- */
.vote-list { display: flex; flex-direction: column; gap: 12px; margin-top: 18px; }
.vote-btn {
  width: 100%;
  background: linear-gradient(180deg, var(--panel-hi), var(--panel));
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  font-size: 18px;
  box-shadow: var(--shadow);
}
.vote-btn:disabled { opacity: 0.5; }
.vote-btn .sub { font-size: 13px; }

/* ---- Powder Keg: table view ---------------------------------------- */
.pk2-big { font-size: 52px; line-height: 1; margin-bottom: 6px; }

/* the felt table with the crew around it */
.pk2-table {
  position: relative;
  width: 100%;
  height: 42vh;
  min-height: 300px;
  margin: 6px 0 4px;
  border-radius: 50% / 42%;
  background:
    radial-gradient(ellipse at 50% 42%, rgba(78,122,140,0.16), transparent 62%),
    linear-gradient(180deg, var(--panel), var(--bg2));
  border: 1px solid var(--line);
  box-shadow: inset 0 0 40px rgba(0,0,0,0.45);
}

/* centre: draw pile + discard */
.pk2-center {
  position: absolute; left: 50%; top: 46%; transform: translate(-50%, -50%);
  display: flex; align-items: center; gap: 12px;
}
.pk2-draw {
  width: 64px; height: 88px; border-radius: 10px; padding: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
  background: repeating-linear-gradient(135deg, #3a2820 0 7px, #2a1d18 7px 14px);
  border: 2px solid var(--line); color: var(--ink); box-shadow: var(--shadow);
}
.pk2-draw .pk2-drawn { font-size: 22px; font-weight: 900; }
.pk2-draw .pk2-drawl { font-size: 10px; letter-spacing: 0.14em; color: var(--muted); }
.pk2-draw.armed { border-color: var(--amber); color: var(--amber); animation: pkpulse 1.4s ease-in-out infinite; cursor: pointer; }
.pk2-draw:disabled { opacity: 1; }
@keyframes pkpulse { 0%,100% { box-shadow: 0 0 0 0 rgba(224,165,70,0.0), var(--shadow); } 50% { box-shadow: 0 0 0 6px rgba(224,165,70,0.18), var(--shadow); } }
.pk2-discard {
  width: 54px; height: 76px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 30px;
  background: rgba(0,0,0,0.25); border: 1px dashed var(--line);
}

.pk2-peek {
  position: absolute; left: 50%; top: 76%; transform: translateX(-50%);
  font-size: 18px; letter-spacing: 2px; white-space: nowrap;
  background: rgba(224,165,70,0.12); border: 1px dashed var(--line);
  border-radius: 999px; padding: 4px 12px;
}

/* a seat around the ellipse */
.pk2-seat {
  position: absolute; transform: translate(-50%, -50%);
  width: 92px; text-align: center;
}
.pk2-av {
  font-size: 26px; width: 46px; height: 46px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--panel-hi); border: 2px solid var(--line);
}
.pk2-seat.turn .pk2-av { border-color: var(--amber); box-shadow: 0 0 0 4px rgba(224,165,70,0.22); }
.pk2-seat.dead { opacity: 0.5; }
.pk2-seat.target .pk2-av { border-color: var(--green); box-shadow: 0 0 0 4px rgba(78,154,91,0.3); cursor: pointer; }
.pk2-seat.target { cursor: pointer; }
.pk2-sname { font-size: 12px; font-weight: 700; margin-top: 3px; }
.pk2-sname b { color: var(--amber); font-weight: 700; }
.pk2-cards { font-size: 11px; color: var(--muted); margin-top: 1px; }
.pk2-mini { color: var(--amber-soft); letter-spacing: -1px; margin-right: 4px; }
.pk2-skull { font-size: 13px; }

.pk2-log { text-align: center; color: var(--amber); font-size: 13px; font-weight: 600; min-height: 16px; margin: 4px 0 0; }
.pk2-flash {
  text-align: center; font-size: 15px; font-weight: 700; line-height: 1.3;
  border-radius: 12px; padding: 9px 12px; margin: 6px 0 2px;
  animation: pop 0.25s ease both;
}
.pk2-flash.took { color: var(--green); background: rgba(78,154,91,0.14); border: 1px solid rgba(78,154,91,0.4); }
.pk2-flash.lost { color: #e8896f; background: rgba(192,57,43,0.14); border: 1px solid rgba(192,57,43,0.4); }
.pk2-flash.drew { color: var(--amber); background: rgba(224,165,70,0.12); border: 1px solid rgba(224,165,70,0.4); }
.pk2-flash b { color: var(--ink); }
.pk2-turnline { text-align: center; font-size: 15px; font-weight: 700; margin: 4px 0 8px; color: var(--muted); }
.pk2-turnline.you { color: var(--amber); }
.pk2-hint { text-align: center; font-size: 13px; color: var(--muted); min-height: 34px; margin: 0 0 6px; }
.pk2-banner { text-align: center; font-size: 15px; font-weight: 700; color: var(--green); margin: 6px 0; }
.pk2-banner b { color: var(--ink); }

/* the detail / action bar for the selected card */
.pk2-detail {
  background: linear-gradient(180deg, var(--panel-hi), var(--panel));
  border: 1px solid var(--line); border-radius: 14px; padding: 12px 14px; margin-bottom: 8px;
}
.pk2-dhead { display: flex; align-items: center; gap: 10px; }
.pk2-demoji { font-size: 24px; }
.pk2-dname { font-size: 17px; font-weight: 800; }
.pk2-ddesc { font-size: 13px; color: var(--muted); margin: 4px 0 0; line-height: 1.35; }
.pk2-note { display: block; font-size: 12px; color: var(--amber-soft); margin-top: 6px; }
.pk2-detail button { width: 100%; margin-top: 10px; }

/* the hand — cards that look like cards */
.pk2-hand {
  display: flex; justify-content: safe center; align-items: flex-end;
  padding: 8px 8px 4px; overflow-x: auto; min-height: 100px;
  scrollbar-width: none;
}
.pk2-hand::-webkit-scrollbar { display: none; }
.pk2-hand.dim { opacity: 0.4; pointer-events: none; }
.pk2-card {
  flex: 0 0 auto; width: 62px; height: 88px; margin-left: -10px; padding: 6px 4px 0;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  border-radius: 9px; background: linear-gradient(180deg, #efe2cf, #d9c6ab);
  border: 1px solid rgba(0,0,0,0.25); color: #2a1d18;
  box-shadow: 0 3px 8px rgba(0,0,0,0.4); transition: transform 0.1s;
}
.pk2-card:first-child { margin-left: 0; }
.pk2-card .pk2-cemoji { font-size: 26px; margin-top: 8px; }
.pk2-card .pk2-cname { font-size: 9px; font-weight: 800; text-align: center; line-height: 1.05; }
.pk2-card.sel { transform: translateY(-16px); box-shadow: 0 8px 16px rgba(0,0,0,0.5); }
.pk2-card.dim { opacity: 0.45; }
.pk2-card.action { border-top: 4px solid var(--amber); }
.pk2-card.crew   { border-top: 4px solid #7d62a3; }
.pk2-card.defuse { border-top: 4px solid var(--green); }
.pk2-card.keg    { border-top: 4px solid var(--red); }

/* card backs (opponent hand, steal picker) */
.pk2-back {
  flex: 0 0 auto; width: 56px; height: 80px; margin-left: -8px; border-radius: 9px;
  background: repeating-linear-gradient(135deg, #3a2820 0 7px, #2a1d18 7px 14px);
  border: 1px solid var(--line); box-shadow: 0 3px 8px rgba(0,0,0,0.4); cursor: pointer;
}
.pk2-hand.steal { flex-wrap: wrap; }

/* hide-the-keg: the draw pile laid out to pick a spot */
.pk2-decklabel {
  display: flex; justify-content: space-between;
  font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--muted); margin: 12px 2px 4px;
}
.pk2-deckrow {
  display: flex; align-items: center; gap: 0;
  overflow-x: auto; padding: 10px 4px; min-height: 74px;
  border-radius: 12px; background: rgba(0,0,0,0.22); border: 1px solid var(--line);
  scrollbar-width: thin;
}
.pk2-deckrow .pk2-back.deck {
  width: 26px; height: 48px; margin-left: -6px; padding: 0; flex: 0 0 auto;
  border-radius: 5px;
}
.pk2-deckrow .pk2-back.deck:first-child { margin-left: 0; }
.pk2-deckrow .pk2-back.deck.here { border-color: var(--red); }
.pk2-keg {
  flex: 0 0 auto; width: 34px; height: 52px; margin: 0 2px;
  display: flex; align-items: center; justify-content: center; font-size: 20px;
  border-radius: 6px; background: linear-gradient(180deg, #d24b3b, #a32d20);
  border: 2px solid #ffcf9e; box-shadow: 0 0 10px rgba(210,75,59,0.6);
  animation: pop 0.25s ease both;
}
.pk2-bottom {
  flex: 0 0 auto; height: 48px; padding: 0 10px; margin-left: 4px;
  font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); background: transparent;
  border: 1px dashed var(--line); border-radius: 6px;
}
.pk2-bottom.here { border-color: var(--red); color: var(--ink); }
