/* Blade Flip — only what is specific to this game.
   Shared chrome: /games/game-shell.css */

.hud .combo { color: #7dffc4; font-weight: 700; min-width: 34px; }

.shop {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 8px;
  margin: 16px 0 6px;
}

.skin {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #0f1230;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 10px;
  font: inherit;
  color: var(--fg-dim);
  cursor: pointer;
  text-align: left;
}

.skin b { font-size: 13px; color: var(--fg); display: block; }

.skin i { font-size: 11px; font-style: normal; }

.skin.on { border-color: #7dffc4; }

.skin.deny { animation: deny .4s; }

@keyframes deny { 25% { transform: translateX(-5px); } 75% { transform: translateX(5px); } }

.chip { width: 14px; height: 14px; border-radius: 4px; flex: none; }
