.car-card {
  perspective: 1000px;
}

.car-card__inner {
  background: rgba(10, 10, 10, 0.9);
  border-radius: 24px;
  padding: 24px;
  color: #fff;
  transform-style: preserve-3d;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}

.car-card__image {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 16px;
  transform: translateZ(40px);
}

.car-card__title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
  transform: translateZ(60px);
}

.car-card__text {
  font-size: 14px;
  opacity: 0.85;
  transform: translateZ(40px);
}