body {
    margin: 0;
    height: 100vh;
    background: linear-gradient(#87CEEB, #cbefff 50%, #9edaff 50%, #b7e6ff);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    font-family: sans-serif;
}

.sky {
    position: absolute;
    top: 0;
    width: 100%;
    height: 50%;
    overflow: hidden;
}

.cloud {
    position: absolute;
    background: #fff;
    border-radius: 50%;
    opacity: 0.8;
    animation: moveClouds 60s linear infinite;
}

.cloud1 {
    width: 200px;
    height: 80px;
    top: 60px;
    left: -250px;
    animation-delay: 0s;
}

.cloud2 {
    width: 150px;
    height: 60px;
    top: 100px;
    left: -300px;
    animation-delay: 10s;
}

.cloud3 {
    width: 180px;
    height: 70px;
    top: 40px;
    left: -200px;
    animation-delay: 20s;
}

@keyframes moveClouds {
    0% { transform: translateX(0); }
    100% { transform: translateX(120vw); }
}

.horizon {
    position: relative;
    width: 100%;
    height: 25%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 150px;
}

.car {
    position: relative;
    width: 150px;
    height: 60px;
    cursor: pointer;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.car-body {
    width: 100%;
    height: 60%;
    background: #6b6b6b;
    border-radius: 10px 10px 0 0;
    position: absolute;
    top: 0;
}

.car-wheel {
    position: absolute;
    bottom: 0;
    width: 30px;
    height: 30px;
    background: #333;
    border-radius: 50%;
}

.wheel-left {
    left: 15px;
}

.wheel-right {
    right: 15px;
}

.car:hover {
    transform: scale(1.1);
    filter: brightness(1.3);
}

.people {
    display: flex;
    gap: 15px;
    align-items: flex-end;
    cursor: pointer;
}

.person {
    width: 10px;
    height: 40px;
    background: #222;
    border-radius: 5px;
}

.people:hover .person {
    background: #555;
    transform: scaleY(1.1);
}

.reflection {
    position: relative;
    width: 100%;
    height: 25%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 150px;
    transform: scaleY(-1);
    opacity: 0.3;
    filter: blur(1px);
}

.reflection-car {
    width: 150px;
    height: 60px;
    background: none;
}

.reflection-people {
    display: flex;
    gap: 15px;
}
