html, body {
  margin: 0;
  padding: 0;
  background: #fbf6ee;
  color: #2b2118;
  font-family: Georgia, "Iowan Old Style", serif;
}
.stage {
  max-width: 480px;
  margin: 0 auto;
  padding: 24px 16px 40px;
  text-align: center;
}
h1 { margin: 0 0 8px; color: #8a5a2b; }
.muted { color: #6b5b48; }
.capy-wrap {
  position: relative;
  display: inline-block;
  margin: 24px 0;
}
#capy {
  background: #f4ead8;
  border: 3px solid #c98f5a;
  border-radius: 50%;
  width: 220px;
  height: 220px;
  cursor: pointer;
  font: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 80ms ease-out;
  padding: 0;
  outline-offset: 4px;
}
#capy:active { transform: scale(0.95); }
#capy:hover { background: #f1dfb8; }
.capy { font-size: 6rem; line-height: 1; user-select: none; }
.counter {
  font-size: 2rem;
  margin: 8px 0 4px;
  color: #2b2118;
}
.counter #count { font-weight: bold; color: #8a5a2b; }
.best { color: #6b5b48; }
#floaters {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.floater {
  position: absolute;
  font-size: 1.6rem;
  animation: rise 900ms ease-out forwards;
  color: #c98f5a;
  user-select: none;
}
@keyframes rise {
  0%   { transform: translate(-50%, 0) scale(0.5); opacity: 1; }
  100% { transform: translate(-50%, -80px) scale(1.4); opacity: 0; }
}
.link {
  background: none;
  border: none;
  color: #8a5a2b;
  font: inherit;
  text-decoration: underline;
  cursor: pointer;
}
