/* Pretty Smile follower image (Konami code) */
.idkfa {
  position: absolute;
  pointer-events: none;
  z-index: 10000;
  width: 32px;
  height: 32px;
  left: -100px;
  top: -100px;
  will-change: left, top;
  transform: none !important;
}
/* Secrets: Pretty Smile Mode, cursor, cheat toast */
body.pretty-smile-mode {
  position: relative;
  filter: saturate(140%) contrast(120%) hue-rotate(-18deg) brightness(1.05);
  animation: crtFlicker 2.8s infinite steps(2, end);
}
body.pretty-smile-mode .container {
  animation: crtWarp 3.8s ease-in-out infinite;
}
body.pretty-smile-mode::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0) 58%,
    rgba(0, 0, 0, 0.35) 100%
  );
}
body.pretty-smile-mode::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  background: repeating-linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06) 0px,
    rgba(255, 255, 255, 0.06) 2px,
    rgba(0, 0, 0, 0.05) 2px,
    rgba(0, 0, 0, 0.05) 4px
  );
  mix-blend-mode: overlay;
  animation: scanScroll 6s linear infinite, gigaScan 17s steps(1, end) infinite;
}
.cheat-toast {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%) translateY(10px);
  background: rgba(18, 21, 26, 0.9);
  color: var(--text);
  border: 1px solid var(--border);
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  z-index: 3000;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.cheat-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.pretty-smile-cursor {
  position: fixed;
  left: -9999px;
  top: -9999px;
  z-index: 4000;
  pointer-events: none;
  width: 16px;
  height: 16px;
  margin-left: -8px;
  margin-top: -8px;
  border: 2px solid rgba(110, 231, 247, 0.95);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(110, 231, 247, 0.6),
    0 0 18px rgba(167, 139, 250, 0.35);
  mix-blend-mode: screen;
}
.pretty-smile-cursor::before,
.pretty-smile-cursor::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: rgba(110, 231, 247, 0.95);
}
.pretty-smile-cursor::before {
  width: 2px;
  height: 18px;
  box-shadow: 0 0 6px rgba(110, 231, 247, 0.6);
}
.pretty-smile-cursor::after {
  width: 18px;
  height: 2px;
  box-shadow: 0 0 6px rgba(110, 231, 247, 0.6);
}
.pretty-smile-cursor.active {
  animation: cursorPulse 0.12s ease-out;
}
@keyframes cursorPulse {
  0% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
.pretty-smile-cursor.hover {
  border-color: rgba(167, 139, 250, 0.95);
  box-shadow: 0 0 12px rgba(167, 139, 250, 0.6),
    0 0 20px rgba(110, 231, 247, 0.35);
}
.pretty-smile-ripple {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  z-index: 3500;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(110, 231, 247, 0.7) 0%,
    rgba(110, 231, 247, 0) 70%
  );
  transform: translate(-50%, -50%) scale(1);
  opacity: 0.9;
  animation: ripple 0.28s ease-out forwards;
}
@keyframes ripple {
  to {
    transform: translate(-50%, -50%) scale(8);
    opacity: 0;
  }
}
.pretty-smile-ghost {
  position: fixed;
  left: -9999px;
  top: -9999px;
  z-index: 3500;
  pointer-events: none;
  width: 16px;
  height: 16px;
  margin-left: -8px;
  margin-top: -8px;
  border: 2px solid rgba(110, 231, 247, 0.35);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(110, 231, 247, 0.2);
}
.pretty-smile-ghost::before,
.pretty-smile-ghost::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: rgba(110, 231, 247, 0.3);
}
.pretty-smile-ghost::before {
  width: 2px;
  height: 18px;
}
.pretty-smile-ghost::after {
  width: 18px;
  height: 2px;
}
@media (prefers-reduced-motion: reduce) {
  .pretty-smile-ripple {
    animation: none;
    opacity: 0.6;
  }
  .pretty-smile-ghost {
    display: none;
  }
}
