* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body, html {
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: 'Arial', sans-serif;
    background-color: #111;
  }
  
  .scene {
    width: 100vw;
    height: 100vh;
    perspective: 1000px;
    overflow: hidden;
    position: relative;
  }
  
  .shop-door {
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #222, #000);
    position: absolute;
    transform: translateZ(0px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: enterShop 5s ease-out forwards;
  }
  
  .shop-name {
    font-size: 3.5em;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 12px red;
    opacity: 0;
    animation: fadeIn 2s ease-in 1s forwards;
  }
  
  .car-row {
    display: flex;
    gap: 100px;
    opacity: 0;
    animation: fadeInCars 2s ease-in 2s forwards;
  }
  
  .car {
    width: 300px;
    height: auto;
    transition: transform 0.5s ease;
  }
  
  .car:hover {
    transform: scale(1.1);
  }
  
  /* Light effect */
  .shop-door::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    animation: lightFlash 5s ease-in-out infinite;
    pointer-events: none;
  }
  
  /* Keyframes */
  
  @keyframes enterShop {
    0% {
      transform: translateZ(0px) scale(1);
    }
    100% {
      transform: translateZ(-500px) translateY(-100px) scale(1.5);
    }
  }
  
  @keyframes fadeIn {
    to {
      opacity: 1;
    }
  }
  
  @keyframes fadeInCars {
    to {
      opacity: 1;
    }
  }
  
  @keyframes lightFlash {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.3; }
  }