        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .container {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            padding: 20px;
        }

        .scene {
            position: relative;
            width: 100%;
            max-width: 500px;
            height: 500px;
            overflow: hidden;
            cursor: pointer;
        }

        /* Фон */
        .background {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
            transition: filter 0.3s;
        }

        /* Мальчик */
        .boy {
            position: absolute;
            bottom: 50px;
            left: -200px;
            height: 300px;
            z-index: 3;
            transition: left 3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* Палка с мельницей */
        .stick {
            position: absolute;
            bottom: 135px;
            left: 35%;
            height: 120px;
            left: 90%;
            z-index: 2;
            transform: rotate(30deg);
        }

        .windmill {
            position: absolute;
            top: 0;
            width: 80px;
            height: 80px;
            z-index: 5;
            transition: transform 0.3s ease;
        }

        .blades {
            position: absolute;
            width: 128px;
            height: 128px;
            z-index: 5;
            background-image: url('toy5.png');
            transform-origin: center center;
        }

        /* Анимация бега при наведении */
        .scene:hover .boy {
            left: calc(100% - 100px);
        }

        /* Анимация вращения мельницы при зажатии */
        .scene:active .blades {
            animation: spin 0.5s linear infinite;
        }

        .scene:active .windmill {
            transform: translateX(-50%) scale(1.1);
        }

        /* Анимации */
        @keyframes spin {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }
