/* per-game skin — uses css/game-themes.css vars */
#stage {
  min-height: 260px;
}
.fc-top,
.fc-cascades {
  display: flex;
  gap: 0.45rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}
.fc-cell,
.fc-found,
.fc-col {
  min-width: 42px;
  min-height: 54px;
  border: 1px dashed var(--line);
  border-radius: 6px;
  padding: 2px;
  cursor: pointer;
  background: color-mix(in srgb, var(--play-cell, #fff) 88%, transparent);
}
.fc-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 120px;
}
.fc-card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 48px;
  margin: 1px 0;
  border-radius: 5px;
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 800;
  font-size: 0.78rem;
  user-select: none;
}
.fc-card.sel {
  outline: 2px solid var(--accent, #0a7a6f);
  outline-offset: 1px;
}
.fc-label {
  font-size: 0.7rem;
  opacity: 0.55;
  text-align: center;
  margin-bottom: 2px;
}
