#paw-game {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 70;
}

.paw-print {
  position: absolute;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.95), rgba(41, 121, 255, 0.35));
  box-shadow: 0 15px 35px rgba(15, 17, 32, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #1b2f5e;
  pointer-events: auto;
  cursor: pointer;
  animation: pawFloat 6s ease-in-out infinite;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

@media (max-width: 720px) {
  .paw-print {
    width: 46px;
    height: 46px;
    font-size: 1.4rem;
  }
}

.paw-print:hover {
  transform: scale(1.1);
  box-shadow: 0 25px 45px rgba(41, 121, 255, 0.45);
}

.paw-print.caught {
  animation: pawPop 450ms ease forwards;
}

.paw-print.appearing {
  animation: pawAppear 600ms ease forwards;
}

@keyframes pawFloat {
  0% {
    transform: translate3d(0, 0, 0);
    opacity: 0.9;
  }
  50% {
    transform: translate3d(12px, -18px, 0);
    opacity: 1;
  }
  100% {
    transform: translate3d(-6px, 5px, 0);
    opacity: 0.9;
  }
}

@keyframes pawPop {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  80% {
    transform: scale(1.35);
    opacity: 0.3;
  }
  100% {
    transform: scale(0.5);
    opacity: 0;
  }
}

@keyframes pawAppear {
  0% {
    transform: translateY(-30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.paw-confetti {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #ffcb40;
  border-radius: 2px;
  opacity: 0;
  pointer-events: none;
  animation: confettiFall 900ms ease-out forwards;
}

.paw-confetti:nth-child(2n) {
  background: #5c9aff;
}

.paw-confetti:nth-child(3n) {
  background: #f37acf;
}

@keyframes confettiFall {
  0% {
    transform: translateY(0) scale(0.6);
    opacity: 1;
  }
  100% {
    transform: translateY(60px) scale(1.2);
    opacity: 0;
  }
}

.game-hud {
  position: absolute;
  bottom: 1.5rem;
  right: 1.25rem;
  display: flex;
  flex-direction: column-reverse;
  gap: 0.75rem;
  align-items: flex-end;
  pointer-events: none;
  z-index: 90;
}

.game-sound-toggle {
  pointer-events: auto;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(12, 16, 34, 0.65);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 15px 30px rgba(9, 12, 33, 0.5);
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.game-sound-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(9, 12, 33, 0.55);
  background: rgba(12, 16, 34, 0.85);
}

.game-sound-icon {
  font-size: 1.25rem;
}

.game-sound-toggle.muted {
  background: rgba(15, 17, 32, 0.35);
  border-color: rgba(255, 255, 255, 0.25);
}

.game-promo {
  pointer-events: none;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 350ms ease, transform 350ms ease;
  background: rgba(15, 17, 32, 0.82);
  color: #fff;
  border-radius: 18px;
  padding: 1.25rem;
  max-width: 280px;
  margin-top: 0.25rem;
  box-shadow: 0 30px 60px rgba(9, 12, 33, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.game-promo.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.game-promo-title {
  margin: 0 0 0.35rem;
  font-weight: 700;
  font-size: 1rem;
}

.game-promo-copy {
  margin: 0 0 0.85rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

.game-promo-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.promo-cta,
.promo-close {
  border: none;
  border-radius: 14px;
  padding: 0.55rem 1rem;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.promo-cta {
  flex: 1 1 auto;
  background: linear-gradient(120deg, #2979ff, #9969e8);
  color: #fff;
  box-shadow: 0 15px 35px rgba(41, 121, 255, 0.4);
}

.promo-close {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.promo-cta:hover,
.promo-close:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.25);
}

@media (max-width: 640px) {
  .game-hud {
    right: 0.75rem;
    left: auto;
    bottom: 1rem;
  }

  .game-promo {
    width: min(320px, calc(100vw - 1.5rem));
    max-width: none;
  }
}
