.scene {
    width: 800px;
    height: 650px;
    position: relative;
    perspective: 1000px;
    margin-top: -50px;
}


.carousel {
    width: 100%;
    height: 100%;
    position: absolute;
    transform-style: preserve-3d;
    transition: transform 1s;
}


.carousel__cell {
    position: absolute;
    width: 800px;
    height: 650px;
    left: 10px;
    top: 10px;
    line-height: 1.4;
    font-weight: bold;
    color: white;
    text-align: center;
    transition: transform 1s, opacity 1s, filter 1s;
    opacity: 0.5;
    filter: blur(2px);
}


.carousel__cell.is-selected {
    opacity: 1;
    filter: blur(0);
}


.carousel__cell-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transform-style: preserve-3d;
}


.carousel__cell-front {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    box-sizing: border-box;
    border: 1px solid #f86c14;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(12, 12, 8, 0.8);
    color: #FEF9F6;
}


.carousel__cell-front h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 3;
}


.carousel__cell-front p {
    font-size: 1.4rem;
    max-width: 85%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 3;
}


.scroll-indicator {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}


.scroll-indicator.hidden {
    opacity: 0;
}


.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid #f86c14;
    border-radius: 15px;
    position: relative;
}


.wheel {
    width: 4px;
    height: 10px;
    background: #f86c14;
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}


@keyframes scroll {
    0% {
        top: 10px;
        opacity: 1;
    }
    100% {
        top: 30px;
        opacity: 0;
    }
}
