/* bigfoot stuff */
    .gif-wrapper {
      position: fixed;
      bottom: 0px;
      left: -200px;
      width: 150px;
      z-index: 9999;
      pointer-events: auto;
    }

    .gif-wrapper img {
      width: 100%;
      display: block;
      transition: transform 0.3s ease;
    }

    .animate-right {
      animation: moveRight 10s linear forwards;
    }

    .animate-left {
      animation: moveLeft 10s linear forwards;
    }

    .animate-left img {
      transform: scaleX(-1);
    }

    .animate-right img {
      transform: scaleX(1);
    }

    .animate-right:hover,
    .animate-left:hover {
      animation-play-state: paused;
    }

    @keyframes moveRight {
      from { left: -200px; }
      to { left: 100vw; }
    }

    @keyframes moveLeft {
      from { left: 100vw; }
      to { left: -200px; }
    }

    /* Tooltip styles */
    .tooltip {
      position: absolute;
      bottom: 100%;
      left: 50%;
      transform: translateX(-50%);
      background: rgba(0, 0, 0, 0.75);
      color: white;
      padding: 6px 10px;
      border-radius: 4px;
      font-size: 14px;
      white-space: nowrap;
      opacity: 0;
      transition: opacity 0.3s ease;
      pointer-events: none;
      margin-bottom: 6px;
    }

    .gif-wrapper:hover .tooltip {
      opacity: 1;
    }
/* end bigfoot stuff */