/* GOBLINCOIN 复刻站 — 自定义增强样式
   仅补充原站被中和的 JS 交互所需的动效；不改动原站视觉。
   goblin-hop / goblin-bonk / float-up 关键帧沿用原站 CSS 中已存在的同名定义。 */

/* 英雄区哥布林：待机上下浮动 + 可点击手势 */
.goblin-hop {
  position: relative;
  display: inline-block;
}
.goblin-hop img {
  display: block;
  transform-origin: center bottom;
  animation: goblin-hop 1.8s ease-in-out infinite;
}
.goblin-hop:active {
  cursor: pointer;
}

/* 点击哥布林时冒出的 +1 文字 */
.goblin-plus {
  position: absolute;
  left: 50%;
  top: 8px;
  transform: translateX(-50%);
  color: #7CFC00;
  font-weight: bold;
  font-size: 20px;
  pointer-events: none;
  text-shadow: 2px 2px 0 #000;
  animation: float-up 0.9s ease forwards;
}

/* 复制按钮点击反馈（不改变布局） */
.copied-flash {
  filter: brightness(1.15);
}
