.hotel-container {
    .hotel-content {
        padding-top: 0 !important;
        padding-bottom: 0 !important;

        .hotel-corridor {
        }

        .door-list {
            display: none
        }

        .scroll-container {
            position: relative;
        }

        .stage {
            position: sticky;
            top: 0;
            height: 100vh;
            display: block;
            overflow: hidden;
            background-image: url('../../../images/hotel/floor1/corridor/corridor-bg-2.jpg');
            background-repeat: no-repeat;
            background-size: cover;
            background-position: center center;
        }

        .stage-inner {
            position: relative;
            height: 100vh;
        }

        .slot {
            --w: 600px; /* base width (set same value for TARGET_W in js script) */
            width: var(--w);
            height: 540px;
            max-width: 90vw;
            position: absolute;
            left: 50%;
            top: 50%;
            transform-origin: center center;
            transform: translate(-50%, -50%) scale(0.18);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--basecolor);
            pointer-events: none; /* clickable if you want: change in JS */
            will-change: transform, opacity;
            opacity: 0;
        }

        .slot .content {
            width: 100%;
            height: 100%;

            img.corridor-door {
                max-height: 380px;
                max-width: 100%;
                position: absolute;
                bottom: 0;
                left: 50%;
                transform: translateX(-50%);
                box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0.7);
            }
            img.item1 {
                max-height: 94px;
                position: absolute;
                bottom: 35%;
                right: 0;
            }
            img.item2 {
                max-height: 94px;
                position: absolute;
                bottom: 40%;
                left: 0;
            }
        }
        .slot[data-direction="right"] .content {
            transform: perspective(400px) rotateY(-40deg);
        }
        .slot[data-direction="left"] .content {
            transform: perspective(400px) rotateY(40deg);
        }

        /* helper to create scroll space corresponding to number of items */
        .spacer {
            width: 1px
        }

        /* mobile tweak */
        @media (max-width: 700px) {
            .slot {
                --w: 320px;
                padding: 10px;
                border-radius: 9px;
            }
        }

        /* reduced motion -> static central small element */
        @media (prefers-reduced-motion: reduce) {
            .slot {
                transition: none !important;
            }
        }
    }
}
