.tornado-carousel-container {
    width: 100%;
    height: 500px;
    perspective: 1000px;
    overflow: hidden;
    background: #000;
    display: flex;
    justify-content: center;
    align-content: center;
    position: relative;
}

.tornado-carousel-stage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform-style: preserve-3d;
    width: 0;
    height: 0;
}

.tornado-item {
    position: absolute;
    width: 150px;
    height: 100px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    transition: transform 0.1s linear;
    margin-left: -75px;
    margin-top: -50px;
}
