/* ===== */
/* CAR */
/* ===== */

.car-wrap {
  position: absolute;
  left: 50%;
  bottom: 24%;
  transform: translateX(-50%);
  z-index: 15;
  width: min(50vw, 210px);
  pointer-events: none;
}

.car-float {
  position: relative;
  z-index: 3;
  animation-play-state: paused;
}

.car-image {
  width: 100%;
  display: block;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.5));
}

.car-glow {
  position: absolute;
  left: 50%;
  bottom: 10%;
  transform: translateX(-50%);
  width: 180%;
  height: 150px;
  background:
    radial-gradient(
      circle,
      rgba(255, 140, 40, 0.38) 0%,
      rgba(255, 140, 40, 0.1) 38%,
      transparent 72%
    );
  filter: blur(16px);
  z-index: 1;
}

.car-shadow {
  position: absolute;
  left: 50%;
  bottom: 5%;
  transform: translateX(-50%);
  width: 78%;
  height: 22px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.42);
  filter: blur(12px);
  z-index: 2;
}