
.cg-donate-floating{
  position: fixed;
  right: 14px;
  bottom: 110px;
  z-index: 999999;
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
}
@keyframes cg-donate-wiggle {
  0%, 92%, 100% { transform: translate3d(0,0,0) rotate(0deg); }
  94% { transform: translate3d(0,0,0) rotate(-10deg); }
  96% { transform: translate3d(0,0,0) rotate(10deg); }
  98% { transform: translate3d(0,0,0) rotate(-8deg); }
}
.cg-donate-btn{
  all: unset;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  user-select: none;
}
.cg-donate-btn img{
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
  background: #fff;
  transform-origin: 50% 90%;
  animation: cg-donate-wiggle 4.2s ease-in-out infinite;
}
.cg-donate-btn.cg-donate-opened img{ animation: none; }
.cg-donate-title{
  display: inline-block;
  max-width: 130px;
  text-align: center;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.68);
  color: #fff;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.cg-donate-modal{ position: fixed; inset: 0; z-index: 1000000; display: none; }
.cg-donate-modal.is-open{ display:block; }
.cg-donate-overlay{ position: absolute; inset: 0; background: rgba(0,0,0,.55); }
.cg-donate-panel{
  position: relative;
  width: min(92vw, 420px);
  margin: 8vh auto 0;
  background: #fff;
  border-radius: 16px;
  padding: 18px 18px 16px;
  box-shadow: 0 20px 70px rgba(0,0,0,.35);
}
.cg-donate-x{
  position: absolute; top: 8px; right: 10px;
  width: 36px; height: 36px;
  border: 0; border-radius: 10px;
  background: rgba(0,0,0,.06);
  cursor: pointer; font-size: 22px; line-height: 36px;
}
.cg-donate-qr{ display:flex; justify-content:center; align-items:center; padding: 6px 0 10px; }
.cg-donate-qr img{
  width: min(72vw, 280px);
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
}
.cg-donate-h{ font-size: 18px; font-weight: 800; margin: 6px 0 8px; text-align: center; }
.cg-donate-content{ font-size: 14px; line-height: 1.6; color: #222; }
html.cg-donate-lock, html.cg-donate-lock body{ overflow: hidden !important; }
@media (max-width: 480px){
  .cg-donate-floating{ right: 10px; bottom: 96px; }
  .cg-donate-title{ max-width: 120px; font-size: 11px; }
}
@media (prefers-reduced-motion: reduce){
  .cg-donate-btn img{ animation: none !important; }
}
