html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #111;
}

/* Wrapper übernimmt das Zentrieren */
#imageWrapper {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90vw;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  pointer-events: none; /* Wrapper blockiert nichts */
}

/* Bild selbst */
#funImage {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;

  cursor: pointer;
  pointer-events: auto; /* Bild bleibt klickbar */
  touch-action: manipulation;
  user-select: none;
}

/* Konfetti-Zähler */
#confettiStats {
  position: fixed;
  bottom: 14px;
  right: 16px;

  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  font-weight: 500;

  color: #ff4d4d;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 77, 77, 0.4);
  padding: 6px 10px;
  border-radius: 8px;

  z-index: 9999;
  pointer-events: none;
}

#cleaner {
  position: fixed;
  bottom: 0;
  left: -500px;                 /* ? STARTPOSITION */
  height: 120px;
  z-index: 9000;
  pointer-events: none;
  transition: transform 1.2s linear;
  transform: translateX(0);     /* ? WICHTIG */
}
