
    /* Загальні параметри анімацій під час hover / is-active */
.Cl_area {margin-top: 390px; margin-left: 20px; width: 30px; background: rgb(62, 194, 207); height: 30px; display: inline-flex}

.Cl_area_93N:hover ~ .wrapV,
.Cl_area_93N.is-active ~ .wrapV {
    transition: width 0.5s 0.5s;
    visibility: visible;
    display: flex;
    width: 380px;
}

.Cl_area_93N:hover ~ .wrapV .animateV,
.Cl_area_93N.is-active ~ .wrapV .animateV {
    animation-duration: 0.5s;
    animation-timing-function: cubic-bezier(.26, .53, .74, 1.48);
    animation-fill-mode: both;
}

/* Поп-ап */
.Cl_area_93N:hover ~ .wrapV .popV,
.Cl_area_93N.is-active ~ .wrapV .popV {
    animation-name: animate-pop;
}

/* В'їзд знизу */
.Cl_area_93N:hover ~ .wrapV .slide,
.Cl_area_93N.is-active ~ .wrapV .slide {
    animation-name: animate-slide;
}

/* В'їзд зліва */
.Cl_area_93N:hover ~ .wrapV .slide-left,
.Cl_area_93N.is-active ~ .wrapV .slide-left {
    animation-name: animate-slide-left;
}

.boxV:nth-of-type(1) {
    background: var(--red);
}
.boxV:nth-of-type(2) {
    background: var(--green);
}
.boxV:nth-of-type(3) {
    background: var(--yellow);
}
.wrapV {
    display: flex;
    visibility: hidden;
    flex-wrap: nowrap;
    justify-content: space-between;
    width: 180px;
    will-change: width;
    position: absolute; left: 220px; top: -62px; transform: skew(-5deg);
}

.boxV {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    width: 120px;
    height: 160px;
    position: relative;
    overflow: hidden;
}
.imageV {
    position: absolute;
    top: 5em;
    left: 2em;
    width: 90px;
    height: 115px;
    background: white;
}
.h2V {
    position: absolute;
    top: 10px;
    left: 15px;
    color: white;
}

.van .wrapV .popV {
    opacity: 0;
}

@keyframes animate-pop {
    0% {
        opacity: 0;
        transform: scale(0.5, 0.5);
    }
    100% {
        opacity: 1;
        transform: scale(1, 1);
    }
}

@keyframes animate-slide {
    0% {
        opacity: 0;
        transform: translate(0, 40px);
    }
    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}

@keyframes animate-slide-left {
    0% {
        opacity: 0;
        transform: translate(-40px, 0);
    }
    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}

.delay-3  { animation-delay: .6s; }
.delay-4  { animation-delay: 0.7s; }
.delay-5  { animation-delay: 0.8s; }
.delay-6  { animation-delay: .7s; }
.delay-7  { animation-delay: 0.7s; }
.delay-8  { animation-delay: 0.8s; }
.delay-9  { animation-delay: 0.9s; }
.delay-10 { animation-delay: 1s; }
.delay-11 { animation-delay: 1.9s; }
.delay-12 { animation-delay: 1.9s; }
.delay-13 { animation-delay: 1.9s; }
.delay-14 { animation-delay: 43.3s; }
.delay-15 { animation-delay: 1.9s; }

  :root {
      --red:    rgb(62, 194, 207);
      --green:  rgb(201, 218, 42);
      --yellow: rgb(252, 178, 71);
      --speed:  0.65s;
  }

/* БАЗОВИЙ СТАН */
.start_tN {
    position: relative;
    top: -480px;
    right: -50px;
    font-weight: 900;
    transform: skew(-15deg);
    margin: 0;
    padding: 0 20px;
    font-size: clamp(2rem, 1rem + 3.5vmin, 4rem);
    display: inline-flex;
    align-items: flex-start;
    flex-direction: column;
    line-height: 0.9;
    transition: right 0.35s ease;
}

.start_tN span {
    color: transparent;
    position: relative;
    clip-path: inset(-20% 0);
    padding-top: 10px;
    animation: none;
    transform: scaleX(1.9) translateX(30px);
}

/* постійна легка анімація блока */
.start_tN span::after {
    content: "";
    position: absolute;
    inset: -20% 0;
    background-color: var(--color);
    animation: block-constant-reveal 4s linear infinite;
}

/* HOVER / is-active: пересуваємо весь заголовок */
.Cl_area_011:hover ~ .start_tN,
.Cl_area_011.is-active ~ .start_tN {
    right: -280px;
}

/* HOVER / is-active: вішаємо анімацію на текст */
.Cl_area_011:hover ~ .start_tN span,
.Cl_area_011.is-active ~ .start_tN span {
    color: var(--color);
    animation:
            text-reveal var(--speed) steps(1) both
            calc((0.5 + var(--index)) * (var(--speed) / 3)),
            shimmy var(--speed) ease-out both
            calc((0.5 + var(--index)) * (var(--speed) / 3));
}

.Cl_area_011:hover ~ .start_tN span::after,
.Cl_area_011.is-active ~ .start_tN span::after {
    animation: block-reveal var(--speed) ease-out
    calc((0.5 + var(--index)) * (var(--speed) / 3))
    both;
}

.start_tN span:nth-of-type(1) {
    --color: var(--green);
    --index: 0;
}
.start_tN span:nth-of-type(2) {
    --color: var(--yellow);
    --index: 1;
}
.start_tN span:nth-of-type(3) {
    --color: var(--red);
    --index: 2;
}

@keyframes shimmy {
    0%   { transform: translateX(-1ch); }
    100% { transform: translateX(0); }
}

@keyframes text-reveal {
    0% { color: transparent; }
    50%, 100% { color: var(--color); }
}

@keyframes block-reveal {
    0%   { transform: translateX(-110%); }
    45%, 55% { transform: translateX(0); }
    100% { transform: translateX(110%); }
}

@keyframes block-constant-reveal {
    0%   { transform: translateX(-110%); }
    45%, 55% { transform: translateX(0); }
    100% { transform: translateX(110%); }
}

/* === hhh78hh зона — поворот столу/голови === */
.hhh78hh:hover ~ .van .head_container .cat-head,
.hhh78hh.is-active ~ .van .head_container .cat-head,
.hhh78hh:hover ~ .start_tN,
.hhh78hh.is-active ~ .start_tN,
.hhh78hh:hover ~ .van .desk-top,
.hhh78hh.is-active ~ .van .desk-top,
.hhh78hh:hover ~ .van .desk-bottom,
.hhh78hh.is-active ~ .van .desk-bottom {
    --angleStudio: 12deg;
    --angleStudio1: 4deg;
    --angleStudioH: -2deg;
    --angleStudioAss: 0.3,0.9,0.1, 40deg;
    --angleStudioRot: 2.3;
}

.hhh78hh:hover ~ .van .arm.back .arm__top_left,
.hhh78hh.is-active ~ .van .arm.back .arm__top_left {
    transform: rotate(-5deg) translate(-1px, -3px);
    transition: all 0.5s;
}

.hhh78hh:hover ~ .van .arm.front .arm__top_left,
.hhh78hh.is-active ~ .van .arm.front .arm__top_left {
    transform: rotate(-5deg) translate(-1px, -1px);
    transition: all 0.5s;
}

.hhh78hh:hover ~ .van .arm.back .arm__top_left > .arm__fore,
.hhh78hh.is-active ~ .van .arm.back .arm__top_left > .arm__fore {
    transform: rotate(65deg) translate(3px, -3px);
    transition: all 0.5s;
}

/* базові змінні */
:root {
    --angleStudio: 0deg;
    --angleStudioAss: 0,0,0, 0deg;
    --angleStudioRot: 2;
}

.papers, .papers:before, .papers:after  {
    background-color: #fff;
    border: 1px solid #ccc;
    box-shadow: inset 0 0 30px rgba(0,0,0,0.1), 1px 1px 3px rgba(0,0,0,0.2);
}

.papers  {
    position: relative;
    width: 80px;
    height: 100px;
    padding: 2em;
    margin: 50px auto;
    background: transparent;
}

.papers:before, .papers:after  {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: rotateZ(2.5deg) translate3D(0px, 0px, -2px);
    z-index: -1;
}

.papers:after  {
    transform: rotateZ(-2.5deg) translate3D(-5px, 0px, -5px);
}

:root {
    --talk-duration: 0.8s;
}

.cat-eye {
    transform-origin: center center;
    animation: eyeMove 3s ease-in-out infinite,
    eyeBlink 4.5s ease-in-out infinite;
}

/* Легкий рух очей (верх-вниз) */
@keyframes eyeMove {
    0%, 100% { transform: translateY(0); }
    30%      { transform: translateY(0.5px); }
    60%      { transform: translateY(-0.5px); }
}

/* Моргання */
@keyframes eyeBlink {
    0%, 5%, 10%, 100% { transform: scaleY(1); }
    7%                { transform: scaleY(0.1); }
}

.cat-head {
    position: relative;
    transform-origin: 50% 70%;
    animation: headTalk calc(var(--talk-duration) * 2) ease-in-out infinite;
}

@keyframes headTalk {
    0%   { transform: translateY(0) rotate(0deg); }
    25%  { transform: translateY(0.5px) rotate(0.3deg); }
    50%  { transform: translateY(0) rotate(0deg); }
    75%  { transform: translateY(-0.5px) rotate(-0.2deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

@keyframes muzzle-bob {
    0%, 100% {
        transform: translateX(-50%) translateY(0) scale(1);
    }
    50% {
        transform: translateX(-50%) translateY(3px) scale(1.02);
    }
}

/* зона ротика */
.stageINT  {
    width: 420px;
    height: 260px;
    margin-left: -42px;
}

/* рожевий бар */
.rabbit_checks {
    height: 3px;
    width: 64px;
    top: -2px;
    left: -26px;
    position: absolute;
}
.rabbit_checks:before {
    position: absolute;
    content: '';
    height: 10px;
    width: 25px;
    top: -2px;
    left: -2px;
    border-radius: 50%;
    background:  #F7E2D3;
}
.rabbit_checks:after{
    position: absolute;
    content: '';
    height: 10px;
    width: 25px;
    top: -2px;
    right: -2px;
    border-radius: 50%;
    background:  #F7E2D3;
}

/* базова геометрія ротика */
.mouthINT {
    position: relative;
    width: 26px;
    display: flex;
    margin-top: 88px;
    margin-left: 180px;
    height: 16px;
    transform-origin: center center;
    transition:
            transform 0.25s ease-in-out,
            border-radius 0.25s ease-in-out;
}

/* внутрішня частина */
.mouthINT .innerINT{
    position: absolute;
    left: 2.86px;
    right: 2.86px;
    bottom: 0;
    height: 70%;
    background: #9f1d2e;
    overflow: hidden;
    border-radius: 0 0 25.71px 17.14px;
    transition:
            height 0.25s ease-in-out,
            border-radius 0.25s ease-in-out,
            transform 0.25s ease-in-out;
}

/* язик */
.mouthINT .tongue {
    position: absolute;
    left: 2.29px;
    right: 2.29px;
    bottom: -3.14px;
    height: 7.86px;
    background: #dd3d59;
    border-radius: 12.86px 12.86px 0 0;
    transition:
            height 0.25s ease-in-out,
            bottom 0.25s ease-in-out,
            border-radius 0.25s ease-in-out;
}

/* ікла */
.mouthINT .teeth::before,
.mouthINT .teeth::after {
    content: "";
    position: absolute;
    top: 0;
    width: 4px;
    height: 2.57px;
    background: #fff5f0;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.mouthINT .teeth::before {
    left: 1.43px;
}

.mouthINT .teeth::after {
    right: 1.14px;
}

/* губи */
.mouthINT .lip-top,
.mouthINT .lip-bottom {
    position: absolute;
    left: -1.7px;
    right: -1.7px;
    height: 3.14px;
    border-radius: 50%;
    border-top: 0.57px solid rgba(220, 155, 125, 0.7);
    border-bottom: none;
    opacity: 0.9;
    pointer-events: none;
    transition:
            transform 0.25s ease-in-out,
            opacity 0.25s ease-in-out;
}

.mouthINT .lip-top {
    top: -0.29px;
}

.mouthINT .lip-bottom {
    bottom: -2.29px;
    border-top: none;
    border-bottom: 0.57px solid rgba(220, 155, 125, 0.7);
}

/* ----  ФОРМИ  -------------------------------------------------- */
/* 1) А / Ю / О / У – велике відкрите коло */
.shape-aou {
    transform: scaleX(0.85) scaleY(1.01);
    border-radius: 8.57px;
}

.shape-aou .innerINT {
    height: 80%;
    border-radius: 0 0 17.14px 17.14px;
}

.shape-aou .tongue {
    bottom: -1.43px;
    height: 8.57px;
}

.shape-aou .teeth {
    top: -0.71px;
}

/* 2) Е – ширший рот, менше вертикалі */
.shape-e {
    transform: scaleX(1.05) scaleY(0.9);
    border-radius: 25.71px 0.14px 25.71px 140px;
}

.shape-e .innerINT {
    height: 65%;
    border-radius: 0 0 17.14px 17.14px;
}

.shape-e .tongue {
    bottom: -2.57px;
    height: 7.14px;
    transform: rotate(-60deg) translate(0.43px, 1.43px);
}

.shape-e .teeth {
    top: -0.71px;
}

/* 3) R / Ч, Ш, Ж, Дж / Н, К,Г,Й,С,Т,Х,Дз – сильне розкриття по горизонталі */
.shape-r {
    transform: scaleX(1.25) scaleY(0.75);
    border-radius: 17.14px 17.14px 10px 10px;
}

.shape-r .innerINT {
    height: 58%;
    border-radius: 0 0 17.14px 17.14px;
}

.shape-r .tongue {
    bottom: -2.86px;
    height: 6px;
}

.shape-r .teeth {
    top: 0.14px;
    width: 21.43px;
    height: 4.29px;
    margin-left: -4.29px;
}

/* 4) Л / З / Ц – середній отвір, язик вище */
.shape-lzc {
    transform: scaleX(1.1) scaleY(0.8);
    border-radius: 15.71px 15.71px 11.43px 11.43px;
}

.shape-lzc .innerINT {
    height: 55%;
}

.shape-lzc .tongue {
    bottom: -0.86px;
    height: 5.71px;
}

.shape-lzc .teeth {
    top: 0.14px;
}

/* 5) Б / М / П – майже закритий рот, лінія */
.shape-bmp {
    transform: scaleX(1) scaleY(0.35);
    border-radius: 12.86px;
}

.shape-bmp .innerINT {
    height: 18%;
    border-radius: 0 0 12.86px 12.86px;
    transform: translateY(2.86px);
}

.shape-bmp .tongue {
    height: 3.71px;
    bottom: -2.57px;
    border-radius: 12.86px 12.86px 0 0;
}

.shape-bmp .teeth {
    height: 0;
    opacity: 0;
}

.shape-bmp .lip-top,
.shape-bmp .lip-bottom {
    opacity: 1;
}

/* 6) Ф / В – маленький "дуті" круглий отвір */
.shape-fv {
    transform: scaleX(0.6) scaleY(0.55);
    border-radius: 12.86px;
}

.shape-fv .innerINT {
    height: 65%;
    border-radius: 11.43px;
}

.shape-fv .tongue {
    bottom: -2.29px;
    height: 5.71px;
    border-radius: 12.86px 12.86px 0 0;
}

.shape-fv .teeth {
    top: 0.29px;
    height: 4.29px;
}

/* кнопочки вибору форми */
.controls {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.controls button {
    border: none;
    border-radius: 999px;
    padding: 6px 14px;
    background: #ff4b6c;
    color: #fff;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.2s;
}

.controls button:hover {
    background: #ff355b;
}

 .basebutton_activate {
      background: #cacaca;
      width: 51px;
      border-radius: 58px;
      box-shadow: 0 13px 0px 0 #777,
      0 9px 0px 0 #777,
      0 4px 0px 0 #777;
      padding: 0 4px 4px 4px;
      z-index: 9999!important;
      transform: rotateX(-76deg) rotateZ(0deg);
      position: absolute;
      height: 48px;
      opacity: 0;
  }

.button_activate {
    display: none;
    position: absolute;
    background: #d60505;
    border: 0;
    width: 43px;
    height: 41px;
    border-radius: 100%;
    position: relative;
    cursor: pointer;
    outline: none;
    z-index: 2;
    box-shadow: 0 9px 0px 0 #af0000,
    0 4px 0px 0 #af0000;
    top: -5px;
    border: 1px solid #af0000a1;
}

@keyframes pressEffect {
    0% {
        top: -5px;
        background: #d60505;
        border-bottom: none;
        box-shadow: 0 9px 0px 0 #af0000,
        0 4px 0px 0 #af0000;
    }
    20% {
        top: -1px;
        box-shadow: 0 5px 0px 0 #af0000,
        0 2px 0px 0 #af0000;
    }
    35% {
        top: -5px;
        box-shadow: 0 8px 0px 0 #af0000,
        0 5px 0px 0 #af0000;
    }
    55% {
        top: -1px;
        box-shadow: 0 4px 0px 0 #af0000,
        0 2px 0px 0 #af0000;
    }
    85% {
        top: 4px;
        background: #af0000;
        border-bottom: 1px solid #00000020;
        box-shadow: 0 2px 0px 0 #af0000,
        0 2px 0px 0 #af0000;
    }
    100% {
        top: 1px;
        background: #ff0000;
        border-bottom: 1px solid #00000020;
        box-shadow: 0 0 43px 22px #ff3c3c,
        0 0 22px 11px #ff2828;
    }
}

/* 93N – дзеркалення руки + ховання тексту */
.Cl_area_93N:hover ~ .van .arm.back .arm__top_left,
.Cl_area_93N.is-active ~ .van .arm.back .arm__top_left {
    transform: rotateX(-25deg) translate(8px, -3px);
}

.Cl_area_00:hover ~ .van .features,
.Cl_area_00.is-active ~ .van .features {
    transition: all 0.25s;
    transform: translate(15px) rotate(-3deg) !important;
}
.Cl_area_00:hover ~ .van .rabbit_checks,
.Cl_area_00.is-active ~ .van .rabbit_checks {
    transition: all 0.25s;
    transform: translateX(-2px) rotate(-3deg) rotateY(42deg) !important;
}
.Cl_area_00:hover ~ .van .rabbit-1__nose,
.Cl_area_00.is-active ~ .van .rabbit-1__nose {
    transition: all 0.25s;
    transform: translateX(2px);
}
.Cl_area_00:hover ~ .van .head.front.left,
.Cl_area_00.is-active ~ .van .head.front.left {
    transition: all 0.25s;
    transform: rotateY(105deg)!important;
}
.Cl_area_00:hover ~ .van .rabbit-1__eye1,
.Cl_area_00.is-active ~ .van .rabbit-1__eye1 {
    transition: all 0.25s;
    transform: rotateY(0deg) scale(1.1, 1.05) !important;
}
.Cl_area_00:hover ~ .van .rabbit-1__eye2,
.Cl_area_00.is-active ~ .van .rabbit-1__eye2 {
    transition: all 0.25s;
    transform: rotateY(50deg) translate(-1px, -1px) scale(0.98)!important;
    transform-origin: left!important;
}
.Cl_area_00:hover ~ .van .ear1,
.Cl_area_00.is-active ~ .van .ear1 {
    clip-path: circle(76.3% at 1% 23%);
    z-index: 999;
    transition: all 0.25s;
    left: 13px;
    transform: scale(1.3, 1.05);
}
.Cl_area_00:hover ~ .van .ear1:before,
.Cl_area_00.is-active ~ .van .ear1:before {
    transition: all 0.25s;
    transform: rotateY(55deg) rotate(2deg) scale(1.55, 0.85) translate(1px, -6px);
    transform-origin: bottom right;
}
.Cl_area_00:hover ~ .van .ear2,
.Cl_area_00.is-active ~ .van .ear2 {
    transition: all 0.25s;
    right: -4px;
    transform: rotateY(50deg) rotate(28deg) translate(-4px, -10px);
    transform-origin: top left;
}
.Cl_area_00:hover ~ .van .ear2:before,
.Cl_area_00.is-active ~ .van .ear2:before {
    transition: all 0.25s;
    transform: rotateY(55deg) rotate(-14deg) scale(1.1, 0.98) translate(3px, -5px);
    transform-origin: bottom right;
}
.Cl_area_00:hover ~ .van .head_container,
.Cl_area_00.is-active ~ .van .head_container {
    transition: all 0.25s;
    transform: translate(6px, 4px) rotate(20deg) scale(0.98);
}
.Cl_area_00:hover ~ .van .body,
.Cl_area_00.is-active ~ .van .body {
    transition: all 0.25s;
    transform: rotateY(10deg) rotate(1deg) translate(1px, -1px);
    width: 42px;
}
.Cl_area_00:hover ~ .van .inside_body2,
.Cl_area_00.is-active ~ .van .inside_body2 {
    transition: all 0.25s;
    margin-left: 5px;
    width: 69px;
    border-radius: 90px 75px 70px 40px;
}
.Cl_area_00:hover ~ .van .body__belly,
.Cl_area_00.is-active ~ .van .body__belly {
    transition: all 0.25s;
    transform: rotateY(-19deg) rotate(-2deg) translate(10px, 4px);
    border-radius: 50px 25px 50px 30px;
    box-shadow: inset -5px -5px rgba(255, 242, 205, 0.5),
    inset 15px 5px rgba(255, 242, 205, 0.5);
}
.Cl_area_00:hover ~ .van .armanfas,
.Cl_area_00.is-active ~ .van .armanfas {
    transition: all 0.25s;
    margin-left: -24px;
}
.Cl_area_00:hover ~ .van .armanfas_back,
.Cl_area_00.is-active ~ .van .armanfas_back {
    z-index: -999!important;
    transition: all 0.25s;
    transform: rotateY(0deg) rotateX(25deg) rotate(-12deg) translate(-3px,-5px);
    position:absolute;
    transition: transform 0.5s, filter 1s;
}

/* 93N — дзеркалення рук + ховання тексту */
.Cl_area_93N:hover ~ .start_tN,
.Cl_area_93N.is-active ~ .start_tN {
    display: none;
}
.Cl_area_93N:hover ~ .van .arm.front .arm__top_left > .arm__fore,
.Cl_area_93N.is-active ~ .van .arm.front .arm__top_left > .arm__fore {
    transform: rotate(-65deg);
}
.Cl_area_93N:hover ~ .van .arm.back .arm__top_left,
.Cl_area_93N.is-active ~ .van .arm.back .arm__top_left {
    transform: rotate(-5deg) rotateX(-5deg) translate(1px, -3px);
}
.Cl_area_93N:hover ~ .van .arm.back .arm__top_left > .arm__fore,
.Cl_area_93N.is-active ~ .van .arm.back .arm__top_left > .arm__fore {
    transform: rotate(-115deg);
}
.Cl_area_93N:hover ~ .van .arm.back .arm__top_left > .arm__fore:after,
.Cl_area_93N.is-active ~ .van .arm.back .arm__top_left > .arm__fore:after {
    transform: rotate(-85deg) translate(-3px, -3px) scaleY(1);
}

/* 4: червона кнопка */
.Cl_area_4:hover ~ .van .basebutton_activate,
.Cl_area_4.is-active ~ .van .basebutton_activate {
    opacity: 1;
}
.Cl_area_4:hover ~ .van .button_activate,
.Cl_area_4.is-active ~ .van .button_activate {
    display: block;
    animation: pressEffect 1.5s ease forwards infinite 0.55s;
}
.Cl_area_4:hover ~ .van .iris3INT,
.Cl_area_4.is-active ~ .van .iris3INT {
    animation: rotate_iris 0.1875s infinite alternate-reverse -0.45s!important;
}
.Cl_area_4:hover ~ .van .armanfas_back,
.Cl_area_4.is-active ~ .van .armanfas_back {
    animation: push_buttonV 1.5s infinite -0.725s;
    transition: all 0.25s;
    margin-top: -1px;
}
.Cl_area_4:hover ~ .van .armanfas_back .arm__top_left,
.Cl_area_4.is-active ~ .van .armanfas_back .arm__top_left {
    transform: scaleY(0.8);
}

@keyframes push_buttonV {
    15%, 30% { transform:rotate(-10deg); transform-origin:14px 21px; }
    0%, 22%  { transform:rotate(-11deg); transform-origin: 7px 21px; }
    60%, 82% { background: black; transform:rotate(-11deg); transform-origin: 24px 21px; }
    75%, 92% { background: black; transform:rotate(-11deg); transform-origin: 24px 21px; }
}

@keyframes cat-tus {
    0%   { transform: rotate(-10deg) translateY(0); }
    20%  { transform: rotate(-45deg) translate(-5px, -5px); }
    40%  { transform: rotate(-10deg) rotateX(10deg) translateY(0); }
    60%  { transform: rotate(-10deg) rotateX(13deg) translateY(2px); }
    80%, 85% { transform: rotateX(10deg) translateY(1px); }
}
@keyframes cat-tusX {
    0%   { transform:rotate(-35deg) rotateX(5deg) translate(-5px, -5px) translateY(0); }
    0%   { transform: rotate(-35deg) rotateX(-35deg) translate(-5px, -5px) translateY(0); }
    80%, 85% { transform: rotateX(10deg) translateY(1px); }
}

/* 20: інша поза руки */
.Cl_area_20:hover ~ .van .armanfas_back,
.Cl_area_20.is-active ~ .van .armanfas_back {
    transform: rotate(-35deg) translate(-5px, -5px);
    animation: cat-tusX 1.5s infinite;
}

/* 95: руки догори */
.Cl_area_95:hover ~ .van .arm.front .arm__top_left,
.Cl_area_95.is-active ~ .van .arm.front .arm__top_left {
    transform: rotate(115deg);
    transform-origin: 15px 8px;
    border-radius: 20%;
}
.Cl_area_95:hover ~ .van .arm.front .arm__top_left > .arm__fore,
.Cl_area_95.is-active ~ .van .arm.front .arm__top_left > .arm__fore {
    transform: rotate(97deg) scale(1.35, 1.64)!important;
}
.Cl_area_95:hover ~ .van .arm.back .arm__top_left,
.Cl_area_95.is-active ~ .van .arm.back .arm__top_left {
    transform: rotate(-115deg);
    transform-origin: 3px 5px;
    border-radius: 20%;
}
.Cl_area_95:hover ~ .van .arm.back .arm__top_left > .arm__fore,
.Cl_area_95.is-active ~ .van .arm.back .arm__top_left > .arm__fore {
    transform: rotate(-97deg) scale(1.35, 1.64)!important;
}


/* 911: кивок */
.Cl_area_911:hover ~ .van .head_inner,
.Cl_area_911.is-active ~ .van .head_inner {
    animation: cat-nod-down 1.2s ease-in-out infinite;
    transform-origin: 50% 100%;
}

@keyframes cat-nod-down {
    0%   { transform: rotateX(0deg) translateY(0); }
    20%  { transform: rotateX(1deg) translateY(2px); }
    40%  { transform: rotateX(0deg) translateY(0); }
    60%  { transform: rotateX(1deg) translateY(2px); }
    80%, 85% { transform: rotateX(0deg) translateY(1px); }
}

/* 91News: махання */
.Cl_area_91News:hover ~ .van .arm.back .arm__top_left,
.Cl_area_91News.is-active ~ .van .arm.back .arm__top_left {
    animation: armBackTopWave 0.8s ease-in-out 1 forwards;
}
.Cl_area_91News:hover ~ .van .arm.back .arm__top_left > .arm__fore,
.Cl_area_91News.is-active ~ .van .arm.back .arm__top_left > .arm__fore {
    animation: armBackForeWave 0.8s ease-in-out 1 forwards;
}
.Cl_area_91News:hover ~ .van .arm.front .arm__top_left,
.Cl_area_91News.is-active ~ .van .arm.front .arm__top_left {
    animation: armFrontTopWave 0.8s ease-in-out 1 forwards;
}
.Cl_area_91News:hover ~ .van .arm.front .arm__top_left > .arm__fore,
.Cl_area_91News.is-active ~ .van .arm.front .arm__top_left > .arm__fore {
    animation: armFrontForeWave 0.8s ease-in-out 1 forwards;
}

@keyframes armFrontTopWave {
    0%   { transform: rotateX(0deg) translate(0, 0); }
    25%  { transform: rotateX(-35deg) translate(8px, -3px); }
    50%  { transform: rotateX(0deg) translate(0, 0); }
    75%  { transform: rotateX(-35deg) translate(8px, -3px); }
    100% { transform: rotateX(-35deg) translate(8px, -3px); }
}
@keyframes armFrontForeWave {
    0%   { transform: rotate(0deg) translate(0, 0); }
    25%  { transform: rotate(-20deg) translate(3px, -3px); }
    50%  { transform: rotate(0deg) translate(0, 0); }
    75%  { transform: rotate(-20deg) translate(3px, -3px); }
    100% { transform: rotate(-20deg) translate(3px, -3px); }
}
@keyframes armBackTopWave {
    0%   { transform: rotateX(0deg) translate(0, 0); }
    25%  { transform: rotateX(-35deg) translate(-8px, -3px); }
    50%  { transform: rotateX(0deg) translate(0, 0); }
    75%  { transform: rotateX(-35deg) translate(-8px, -3px); }
    100% { transform: rotateX(-35deg) translate(-8px, -3px); }
}
@keyframes armBackForeWave {
    0%   { transform: rotate(0deg); }
    25%  { transform: rotate(45deg) translate(-2px, -2px); }
    50%  { transform: rotate(0deg); }
    75%  { transform: rotate(25deg) translate(-2px, -2px); }
    100% { transform: rotate(25deg) translate(-2px, -2px); }
}

/* 91: фіксована поза */
.Cl_area_91:hover ~ .van .arm.back .arm__top_left,
.Cl_area_91.is-active ~ .van .arm.back .arm__top_left {
    transform: rotateX(-25deg) translate(-8px, -3px);
    transition: all 0.5s;
}
.Cl_area_91:hover ~ .van .arm.back .arm__top_left > .arm__fore,
.Cl_area_91.is-active ~ .van .arm.back .arm__top_left > .arm__fore {
    transform: rotate(65deg) translate(-3px, -3px);
    transition: all 0.5s;
}
.Cl_area_91:hover ~ .van .arm.front .arm__top_left,
.Cl_area_91.is-active ~ .van .arm.front .arm__top_left {
    transform: rotateX(-25deg) translate(8px, -3px);
    transition: all 0.5s;
}
.Cl_area_91:hover ~ .van .arm.front .arm__top_left > .arm__fore,
.Cl_area_91.is-active ~ .van .arm.front .arm__top_left > .arm__fore {
    transform: rotate(-65deg) translate(3px, -3px);
    transition: all 0.5s;
}

/* 911: ротик */
.Cl_area_911:hover ~ .van .rabbit-1__mouth,
.Cl_area_911.is-active ~ .van .rabbit-1__mouth {
    transform:scaleY(0)!important;
}
.Cl_area_911:hover ~ .van .mouth_img,
.Cl_area_911.is-active ~ .van .mouth_img {
    transform:scaleY(0.2) rotate(20deg)!important;
    transition: all 0.5s;
}
.Cl_area_911:hover ~ .van .arm.back .arm__top_left,
.Cl_area_911.is-active ~ .van .arm.back .arm__top_left {
    transform: rotate(-5deg) translate(-1px, -5px);
    transition: all 0.5s;
}

/* 94: "ооо" ротик + руки в сторони */
.Cl_area_94:hover ~ .van .shape-e,
.Cl_area_94.is-active ~ .van .shape-e {
    transform: scaleX(0.9) translateY(-2px) scaleY(0.8);
    border-radius: 90px;
}
.Cl_area_94:hover ~ .van .shape-e .innerINT,
.Cl_area_94.is-active ~ .van .shape-e .innerINT {
    height: 18%;
    border-radius: 0 0 90px 90px;
    transform: scaleX(0.9) translateY(-2px) scaleY(0.4);
}
.Cl_area_94:hover ~ .van .mouth_img,
.Cl_area_94.is-active ~ .van .mouth_img {
    transform:scaleY(0.2) rotate(20deg)!important;
    transition: all 0.5s;
}
.Cl_area_94:hover ~ .van .arm.back .arm__top_left,
.Cl_area_94.is-active ~ .van .arm.back .arm__top_left {
    transform: rotate(80deg) translate(11px, -5px) scale(1.1, 1);
    border-radius: 50% 30% 20% 50%;
    transition: all 0.5s;
}
.Cl_area_94:hover ~ .van .arm.back .arm__top_left > .arm__fore,
.Cl_area_94.is-active ~ .van .arm.back .arm__top_left > .arm__fore {
    transform: rotate(95deg);
}
.Cl_area_94:hover ~ .van .arm.front .arm__top_left,
.Cl_area_94.is-active ~ .van .arm.front .arm__top_left {
    transform: rotate(5deg);
}
.Cl_area_94:hover ~ .van .arm.front .arm__top_left > .arm__fore,
.Cl_area_94.is-active ~ .van .arm.front .arm__top_left > .arm__fore {
    transform: rotate(115deg);
}
.Cl_area_94:hover ~ .van .arm.front .arm__top_left > .arm__fore:after,
.Cl_area_94.is-active ~ .van .arm.front .arm__top_left > .arm__fore:after {
    transform: rotate(85deg) translate(3px,-3px) scaleY(1);
}

/* 2143323: книги + поза */
.Cl_area_2143323:hover ~ .van .armanfas_back .arm__top_left,
.Cl_area_2143323.is-active ~ .van .armanfas_back .arm__top_left{
    transition: all 5s;
    border-radius: 40% 33% 60% 30%;
    transform-origin: bottom;
}
.Cl_area_2143323:hover ~ .book_centration,
.Cl_area_2143323.is-active ~ .book_centration {
    position: relative;
    display: block;
}
.Cl_area_2143323:hover ~ .van .head_container,
.Cl_area_2143323.is-active ~ .van .head_container {
    transform: translateX(2px) rotate(2deg);
    transition: all 1s;
    transform-origin: bottom;
}
.Cl_area_2143323:hover ~ .van .body,
.Cl_area_2143323.is-active ~ .van .body {
    transform-origin: bottom;
    transform: translateX(1px) rotate(5deg);
    transition: all 1s;
}

/* 243323: хвиля рукою + поза */
.Cl_area_243323:hover ~ .van .armanfas_back .arm__top_left,
.Cl_area_243323.is-active ~ .van .armanfas_back .arm__top_left {
    transition: all 5s;
    border-radius: 40% 33% 60% 30%;
    transform-origin: bottom;
}
.Cl_area_243323:hover ~ .van .armanfas_back .arm__top .arm__fore,
.Cl_area_243323.is-active ~ .van .armanfas_back .arm__top .arm__fore {
    transform: translateX(2px) rotate(2deg);
    animation: up_right-forearm 1s 1s forwards infinite,
    wave_right-forearm 1s 1.8s 3 forwards,
    down_right-forearm 1.5s 5s forwards;
}
@keyframes up_right-arm {
    0%   { transform: rotate(-45deg) translate(-13px, -5px); }
    100% { transform: rotate(-135deg) translate(-13px, -24px) scaleY(1.2); }
}
@keyframes down_right-arm {
    0%   { transform: rotate(-135deg) translate(-13px, -24px); }
    100% { transform: rotate(-45deg) translate(-11px, -7px) scaleX(1.1); }
}
@keyframes initial_right-forearm {
    100% { transform: rotate(85deg); }
}
@keyframes up_right-forearm {
    0%   { transform: rotate(85deg); }
    100% { transform: rotate(-65deg); }
}
@keyframes down_right-forearm {
    0%   { transform: rotate(-65deg); }
    100% { transform: rotate(85deg); }
}
@keyframes wave_right-forearm {
    0%   { transform: rotate(-65deg); }
    50%  { transform: rotate(-25deg); }
    100% { transform: rotate(-65deg); }
}

.Cl_area_243323:hover ~ .van .armanfas_back,
.Cl_area_243323.is-active ~ .van .armanfas_back {
    background: black;
    animation: up_right-arm 1s 1s forwards,
    down_right-arm 2s 5s forwards;
}
.Cl_area_243323:hover ~ .van .head_container,
.Cl_area_243323.is-active ~ .van .head_container {
    transform: translateX(2px) rotate(2deg);
    transition: all 1s;
    transform-origin: bottom;
}
.Cl_area_243323:hover ~ .van .body,
.Cl_area_243323.is-active ~ .van .body {
    transform-origin: bottom;
    transform: translateX(1px) rotate(5deg);
    transition: all 1s;
}

/* 92: інша емоція */
.Cl_area_92:hover ~ .van .rabbit-1__mouth,
.Cl_area_92.is-active ~ .van .rabbit-1__mouth {
    transform:scaleY(0)!important;
}
.Cl_area_92:hover ~ .van .mouth_img,
.Cl_area_92.is-active ~ .van .mouth_img {
    transform:scaleY(0.1) rotate(20deg)!important;
    transition: all 0.1s;
}
.Cl_area_92:hover ~ .van .head_container,
.Cl_area_92.is-active ~ .van .head_container {
    transform: rotate(8deg) translate(13px, 1px);
    transition: all 0.5s;
}
.Cl_area_92:hover ~ .van .arm.back .arm__top_left,
.Cl_area_92.is-active ~ .van .arm.back .arm__top_left {
    transform: rotateX(-15deg) translate(-8px, 0px);
}
.Cl_area_92:hover ~ .van .arm.back .arm__top_left > .arm__fore,
.Cl_area_92.is-active ~ .van .arm.back .arm__top_left > .arm__fore {
    transform: rotate(165deg) translate(3px,2px);
}
.Cl_area_92:hover ~ .van .arm.front .arm__top_left,
.Cl_area_92.is-active ~ .van .arm.front .arm__top_left {
    transform: rotateX(-25deg) translate(8px, -3px);
}
.Cl_area_92:hover ~ .van .arm.front .arm__top_left > .arm__fore,
.Cl_area_92.is-active ~ .van .arm.front .arm__top_left > .arm__fore {
    transform: rotate(-75deg) translate(3px, -3px);
}
.Cl_area_92:hover ~ .van .iris3INT,
.Cl_area_92.is-active ~ .van .iris3INT {
    transform: translate(2px, 9px)!important;
}
.Cl_area_92:hover ~ .van .rabbit-1__eye1,
.Cl_area_92.is-active ~ .van .rabbit-1__eye1 {
    transform: translate(2px, 0px)!important;
}

/* блок книг */
.book_centration {
    display: none;
    transform: scale(0.65);
    position: relative;
    top: -540px;
    left: -230px;
}

/* 1: книги */
.Cl_area_1:hover ~ .van .ear1,
.Cl_area_1.is-active ~ .van .ear1,
.Cl_area_1:hover ~ .van .ear2,
.Cl_area_1.is-active ~ .van .ear2 {
    transform-origin: 14px 19px;
    transition: all 0.65s;
}
.Cl_area_1:hover ~ .van .features,
.Cl_area_1.is-active ~ .van .features {
    transform:rotate(-3deg);
    transform-origin:14px 19px;
    transition: all 0.25s;
}
.Cl_area_1:hover ~ .book_centration,
.Cl_area_1.is-active ~ .book_centration {
    display: block;
}
.Cl_area_1:hover ~ .van .armanfas_back,
.Cl_area_1.is-active ~ .van .armanfas_back {
    transform:rotate(40deg);
    transform-origin:14px 19px;
    transition: all 0.25s;
}

/* стилі книг (як у тебе) */
.book4{ position: relative; height:35px; width:160px; margin-left:13%; background: rgb(201, 218, 42);}
.book4:before,
.book4:after{ position: absolute; content: ""; }
.book4:before{ height: 35px; width: 98px; left: 10px; border-left: 20px double #fff; border-right: 20px double #fff; }
.book4:after{ background: white; margin: 4% 0 0 37%; width: 40px; height: 20px; }
.ribbonCut4{ position: absolute; margin: 5px 0 0 127px; border-right: 10px solid transparent; border-top: 12px solid #a4d5bd; }
.ribbonCut5{ position: absolute; margin: 5px 0 0 137px; border-left: 10px solid transparent; border-top: 12px solid #a4d5bd; }
.ribbonCut6{ position: absolute; margin: 0 0 0 127px; height: 5px; width: 20px; background: #a4d5bd; }

.book5{ position: relative; height:40px; width:145px; margin-left:11.5%; background: rgb(62, 194, 207); }
.book5:before,
.book5:after{ position: absolute; content: ''; }
.book5:before{ height: 40px; width: 80px; left: 12px; border-left: 20px double #fff; border-right: 20px double #fff; }
.book5:after{ background: white; margin: 5% 0 0 39%; width: 30px; height: 20px; }

.book6{ position: relative; height:30px; width:165px; border: 5px solid rgb(68,97,173); margin-left:10.5%; border-radius: 0 10px 10px 0; border-left-style: none; background: #fffff0; }
.bookCut6{ background: white; width: 5px; height: 30px; }
.ribbon6{ height:25px; width:20px; position: absolute; background: #a4d5bd; margin: 14px 0 0 100px; }

.book7{ position: relative; height:40px; width:200px; margin-left: 90px; margin-bottom: 3px; background: #fcc800; }
.book7:before,
.book7:after{ position: absolute; content: ""; }
.book7:before{ height: 40px; width: 98px; left: 10px; border-left: 20px double #fff; }
.book7:after{ background: white; margin: 4% 0 0 82%; width: 22px; height: 22px; border-radius: 12px; }
.ribbonCut7{ position: absolute; margin: 5px 0 0 125px; border-right: 10px solid transparent; border-top: 12px solid #a4d5bd; }
.ribbonCut8{ position: absolute; margin: 5px 0 0 135px; border-left: 10px solid transparent; border-top: 12px solid #a4d5bd; }
.ribbonCut9{ position: absolute; margin: 0 0 0 125px; height: 5px; width: 20px; background: #a4d5bd; }

  .desk-top {
      position: absolute;
      left: 250px;
      top: 120px;
      width: 280px;
      height: 60px;
      margin-top: 10px;
      margin-left: -10px;
      border-radius: 30px 30px;
      background-color: #2f4375;
      overflow: hidden;
  }
.desk-top::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: #1f2d4f;
    width: 100%;
    height: 7px;
    border-radius: 0 0 50px 50px;
}

.desk-bottom {
    width: 260px;
    height: 140px;
    background-color:#233157;
    position: relative;
    overflow: hidden;
    left: 250px;
    top: 100px;
    border-radius: 0 0 50px 50px;
    z-index: -1;
}
.desk-bottom::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 180px;
    height: 150px;
    background-color: #18233d;
    border-radius: 2rem 2rem 0 0;
}
.desk-bottom::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 25%;
    transform: translateX(-50%);
    width: 30px;
    height: 10px;
}

/* 9 hover areas */
.hover {
    position: absolute;
    width: 33.3vw;
    height: 33.3vh;
    z-index: 99;
}

/* positions */
.centerEC { left: 50%; margin-left: -16.6%; }
.topEC    { top: 0; }
.bottomEC { bottom: 0; }
.middleEC { top: 33.3%; }
.leftEC   { left: 0; }
.rightEC  { right: 0; }

/* очі: top / bottom / middle / left / right / cross */
/*top*/
.Cl_area.topEC:hover ~ .van .iris7_INT,
.Cl_area.topEC.is-active ~ .van .iris7_INT,
.hover.topEC:hover ~ .van .iris7_INT{
    top: 32%;
}

/*bottom*/
.Cl_area.bottomEC:hover ~ .van .iris7_INT,
.Cl_area.bottomEC.is-active ~ .van .iris7_INT,
.hover.bottomEC:hover ~ .van .iris7_INT{
    top: 45%;
}

/*middle*/
.Cl_area.middleEC:hover ~ .van .iris7_INT,
.Cl_area.middleEC.is-active ~ .van .iris7_INT,
.hover.middleEC:hover ~ .van .iris7_INT{
    top: 40%;
}
.Cl_area.middleEC:hover ~ .van .iris3INT,
.Cl_area.middleEC.is-active ~ .van .iris3INT,
.hover.middleEC:hover ~ .van .iris3INT  {
    top: 65%;
}

/*left*/
.Cl_area.leftEC:hover ~ .van .iris7_INT,
.Cl_area.leftEC.is-active ~ .van .iris7_INT,
.hover.leftEC:hover ~ .van .iris7_INT {
    left: 10%;
}
.Cl_area.leftEC:hover ~ .van .iris3INT,
.Cl_area.leftEC.is-active ~ .van .iris3INT,
.hover.leftEC:hover ~ .van .iris3INT {
    left: 20%;
}

/*right*/
.Cl_area.rightEC:hover ~ .van .iris7_INT,
.Cl_area.rightEC.is-active ~ .van .iris7_INT,
.hover.rightEC:hover ~ .van .iris7_INT {
    left:38%;
}
.Cl_area.rightEC:hover ~ .van .iris3INT,
.Cl_area.rightEC.is-active ~ .van .iris3INT,
.hover.rightEC:hover ~ .van .iris3INT {
    left: 60%;
}

/*cross eyes*/
.Cl_area.middleEC.centerEC:hover ~ .van .leftiris7_INT,
.Cl_area.middleEC.centerEC.is-active ~ .van .leftiris7_INT,
.hover.middleEC.centerEC:hover ~ .van .leftiris7_INT{
    left:40%;
}
.Cl_area.middleEC.centerEC:hover ~ .van .rightiris7_INT,
.Cl_area.middleEC.centerEC.is-active ~ .van .rightiris7_INT,
.hover.middleEC.centerEC:hover ~ .van .rightiris7_INT {
    left:10%;
    background: grey;
}
.Cl_area.middleEC.centerEC:hover ~ .van .leftiris7_INT .iris3INT,
.Cl_area.middleEC.centerEC.is-active ~ .van .leftiris7_INT .iris3INT,
.hover.middleEC.centerEC:hover ~ .van .leftiris7_INT .iris3INT {
    left: 50%;
}
.Cl_area.middleEC.centerEC:hover  ~ .van .rightiris7_INT .iris3INT,
.Cl_area.middleEC.centerEC.is-active  ~ .van .rightiris7_INT .iris3INT,
.hover.middleEC.centerEC:hover  ~ .van .rightiris7_INT .iris3INT {
    left:20%;
}

/* ===== ARMS ===== */
.Cl_area_61:hover ~ .bodySTV .van .arm.front .arm__top_left,
.Cl_area_61.is-active ~ .bodySTV .van .arm.front .arm__top_left,
.Cl_area_7:hover ~ .bodySTV .van .arm.front .arm__top_left,
.Cl_area_7.is-active ~ .bodySTV .van .arm.front .arm__top_left {
    animation: flap-left 1.5s infinite;
    transform-origin: center top;
}
.Cl_area_61:hover ~ .bodySTV .van .arm.back .arm__top_left,
.Cl_area_61.is-active ~ .bodySTV .van .arm.back .arm__top_left,
.Cl_area_7:hover ~ .bodySTV .van .arm.back .arm__top_left,
.Cl_area_7.is-active ~ .bodySTV .van .arm.back .arm__top_left {
    animation: flap-left 1.5s infinite -0.75s;
    transform-origin: center top;
}

/* дубль 7 (якщо треба окремо) */
.Cl_area_7:hover ~ .bodySTV .van .arm.front .arm__top_left,
.Cl_area_7.is-active ~ .bodySTV .van .arm.front .arm__top_left {
    animation: flap-left 1.5s infinite;
    transform-origin: center top;
}
.Cl_area_7:hover ~ .bodySTV .van .arm.back .arm__top_left,
.Cl_area_7.is-active ~ .bodySTV .van .arm.back .arm__top_left {
    animation: flap-left 1.5s infinite;
    transform-origin: center top;
}

@keyframes flap-left-light {
    50% { transform: rotateX(-25deg); }
}
@keyframes flap-left {
    0%,100% { transform: rotate(5deg); }
    50%     { transform: rotate(-5deg); }
}

/* очі на книжки / кнопку */
.Cl_area_1:hover ~ .van .iris3INT,
.Cl_area_1.is-active ~ .van .iris3INT{
    animation: rotatineye 0.75s infinite alternate-reverse -0.45s!important;
    left: 23%;
}
.Cl_area_4:hover ~ .van .iris3INT,
.Cl_area_4.is-active ~ .van .iris3INT{
    animation: rotate_iris 0.1875s infinite alternate-reverse -0.45s!important;
}

@keyframes rotate_iris {
    to { left: 51%; }
}

:root {
    --bb-blue: pink;
    --bb-light-blue: #EBF2FA;
    --bb-middle-blue: #C4DEED;
    --bb-orange: #FDC23E;
    --bb-blue-star: #38B4C1;
    --bb-pink-star: #FF7761;
    --bb-orange-star: #FDC23E;
    --bb-size: 20px;
}



/* далі — вся твоя базова геометрія кота/кролика без змін (face, eyes, body, arms, sunglasses тощо) —
   я її не чіпала, щоб не забивати ще сильніше повідомлення.
   Вона така ж, як у тебе, тільки без :hover-селекторів. */


    :root {
        --talk-duration: 0.8s; /* синхронізуємо з ротиком */
    }
    .cat-eye {
        transform-origin: center center;
        animation: eyeMove 3s ease-in-out infinite,
        eyeBlink 4.5s ease-in-out infinite;
    }

    /* Легкий рух очей (верх-вниз) */
    @keyframes eyeMove {
        0%, 100% { transform: translateY(0); }
        30%      { transform: translateY(0.5px); }
        60%      { transform: translateY(-0.5px); }
    }

    /* Моргання */
    @keyframes eyeBlink {
        0%, 5%, 10%, 100% { transform: scaleY(1); }
        7%                { transform: scaleY(0.1); }  /* коротке моргання */
    }
    .cat-head {
        position: relative;
        transform-origin: 50% 70%; /* точка обертання десь в районі шиї */
        animation: headTalk calc(var(--talk-duration) * 2) ease-in-out infinite;
    }

    @keyframes headTalk {
        0%   { transform: translateY(0) rotate(0deg); }
        25%  { transform: translateY(0.5px) rotate(0.3deg); }
        50%  { transform: translateY(0) rotate(0deg); }
        75%  { transform: translateY(-0.5px) rotate(-0.2deg); }
        100% { transform: translateY(0) rotate(0deg); }
    }

    @keyframes muzzle-bob {
        0%, 100% {
            transform: translateX(-50%) translateY(0) scale(1);
        }
        50% {
            transform: translateX(-50%) translateY(3px) scale(1.02);
        }
    }
    /* зона ротика */
    .stageINT  {
        width: 420px;
        height: 260px;
        margin-left: -42px;
    }

    /* просто для прикладу – рожевий бар */
    .rabbit_checks {
        height: 3px;
        width: 64px;
        top: -2px;
        left: -26px;
        position: absolute;
        /*background: pink;*/
    }
    .rabbit_checks:before {
        position: absolute;
        content: '';
        height: 10px;
        width: 25px;
        top: -2px;
        left: -2px;
        position: absolute;
        border-radius: 50%;
        background:  #F7E2D3;
    }
    .rabbit_checks:after{
        position: absolute;
        content: '';
        height: 10px;
        width: 25px;
        top: -2px;
        right: -2px;
        position: absolute;
        border-radius: 50%;
        background:  #F7E2D3;
    }
    /* базова геометрія ротика */
    .mouthINT {
        position: relative;
        width: 26px;
        display: flex;
        margin-top:  88px;
        margin-left: 180px;   height: 16px;      /* 116 / 7 */
        transform-origin: center center;
        transition:
                transform 0.25s ease-in-out,
                border-radius 0.25s ease-in-out;
    }

    /* внутрішня частина */
    .mouthINT .inner {
        position: absolute;
        left: 2.86px;         /* 20 / 7 */
        right: 2.86px;        /* 20 / 7 */
        bottom: 0;
        height: 70%;
        background: #9f1d2e;
        overflow: hidden;
        border-radius: 0 0 25.71px 17.14px; /* 180/7, 120/7 */
        transition:
                height 0.25s ease-in-out,
                border-radius 0.25s ease-in-out,
                transform 0.25s ease-in-out;
    }

    /* язик */
    .mouthINT .tongue {
        position: absolute;
        left: 2.29px;         /* 16 / 7 */
        right: 2.29px;
        bottom: -3.14px;      /* -22 / 7 */
        height: 7.86px;       /* 55 / 7 */
        background: #dd3d59;
        border-radius: 12.86px 12.86px 0 0; /* 90 / 7 */
        transition:
                height 0.25s ease-in-out,
                bottom 0.25s ease-in-out,
                border-radius 0.25s ease-in-out;
    }

    /* ікла */
    .mouthINT .teeth::before,
    .mouthINT .teeth::after {
        content: "";
        position: absolute;
        top: 0;
        width: 4px;          /* 28 / 7 */
        height: 2.57px;      /* 18 / 7 */
        background: #fff5f0;
        clip-path: polygon(0 0, 100% 0, 50% 100%);
    }

    .mouthINT .teeth::before {
        left: 1.43px;        /* 10 / 7 */
    }

    .mouthINT .teeth::after {
        right: 1.14px;       /* 8 / 7 */
    }

    /* губи */
    .mouthINT .lip-top,
    .mouthINT .lip-bottom {
        position: absolute;
        left: -1.71px;       /* -12 / 7 */
        right: -1.71px;
        height: 3.14px;      /* 22 / 7 */
        border-radius: 50%;
        border-top: 0.57px solid rgba(220, 155, 125, 0.7); /* 4 / 7 */
        border-bottom: none;
        opacity: 0.9;
        pointer-events: none;
        transition:
                transform 0.25s ease-in-out,
                opacity 0.25s ease-in-out;
    }

    .mouthINT .lip-top {
        top: -0.29px;        /* -2 / 7 */
    }
    /* верхня губа/штрихи */
    .mouthINT .lip-top,
    .mouthINT .lip-bottom {
        position: absolute;
        left: -1.7px;
        right: -1.7px;
        height: 3.14px;
        border-radius: 50%;
        border-top: 0.57px solid rgba(220, 155, 125, 0.7);
        border-bottom: none;
        opacity: 0.9;
        pointer-events: none;
        transition:
                transform 0.25s ease-in-out,
                opacity 0.25s ease-in-out;
    }

    .mouthINT .lip-top {
        top: -0.29px;
    }

    .mouthINT .lip-bottom {
        bottom: -2.29px;
        border-top: none;
        border-bottom: 0.57px solid rgba(220, 155, 125, 0.7);
    }

    /* ----  ФОРМИ  -------------------------------------------------- */
    /* 1) А / Ю / О / У – велике відкрите коло */
    .shape-aou {
        transform: scaleX(0.85) scaleY(1.01);
        border-radius: 8.57px;
    }

    .shape-aou .inner {
        height: 80%;
        border-radius: 0 0 17.14px 17.14px;
    }

    .shape-aou .tongue {
        bottom: -1.43px;
        height: 8.57px;
    }

    .shape-aou .teeth {
        top: -0.71px;
    }

    /* 2) Е – ширший рот, менше вертикалі */
    .shape-e {
        transform: scaleX(1.05) scaleY(0.9);
        border-radius: 25.71px 0.14px 25.71px 140px;
    }

    .shape-e .inner {
        height: 65%;
        border-radius: 0 0 17.14px 17.14px;
    }

    .shape-e .tongue {
        bottom: -2.57px;
        height: 7.14px;
        transform: rotate(-60deg) translate(0.43px, 1.43px);
    }

    .shape-e .teeth {
        top: -0.71px;
    }

    /* 3) R / Ч, Ш, Ж, Дж / Н, К,Г,Й,С,Т,Х,Дз – сильне розкриття по горизонталі */
    .shape-r {
        transform: scaleX(1.25) scaleY(0.75);
        border-radius: 17.14px 17.14px 10px 10px;
    }

    .shape-r .inner {
        height: 58%;
        border-radius: 0 0 17.14px 17.14px;
    }

    .shape-r .tongue {
        bottom: -2.86px;
        height: 6px; /* 42/7 */
    }

    .shape-r .teeth {
        top: 0.14px;
        width: 21.43px;    /* 150/7 */
        height: 4.29px;    /* 30/7 */
        margin-left: -4.29px; /* -30/7 */
    }

    /* 4) Л / З / Ц – середній отвір, язик вище */
    .shape-lzc {
        transform: scaleX(1.1) scaleY(0.8);
        border-radius: 15.71px 15.71px 11.43px 11.43px;
    }

    .shape-lzc .inner {
        height: 55%;
    }

    .shape-lzc .tongue {
        bottom: -0.86px;
        height: 5.71px;
    }

    .shape-lzc .teeth {
        top: 0.14px;
    }

    /* 5) Б / М / П – майже закритий рот, лінія */
    .shape-bmp {
        transform: scaleX(1) scaleY(0.35);
        border-radius: 12.86px;
    }

    .shape-bmp .inner {
        height: 18%;
        border-radius: 0 0 12.86px 12.86px;
        transform: translateY(2.86px);
    }

    .shape-bmp .tongue {
        height: 3.71px;
        bottom: -2.57px;
        border-radius: 12.86px 12.86px 0 0;
    }

    .shape-bmp .teeth {
        height: 0;
        opacity: 0;
    }

    .shape-bmp .lip-top,
    .shape-bmp .lip-bottom {
        opacity: 1;
    }

    /* 6) Ф / В – маленький "дуті" круглий отвір */
    .shape-fv {
        transform: scaleX(0.6) scaleY(0.55);
        border-radius: 12.86px;
    }

    .shape-fv .inner {
        height: 65%;
        border-radius: 11.43px;
    }

    .shape-fv .tongue {
        bottom: -2.29px;
        height: 5.71px;
        border-radius: 12.86px 12.86px 0 0;
    }

    .shape-fv .teeth {
        top: 0.29px;
        height: 4.29px;
    }

    /* кнопочки вибору форми */
    .controls {
        margin-top: 16px;
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
    }

    .controls button {
        border: none;
        border-radius: 999px;
        padding: 6px 14px;
        background: #ff4b6c;
        color: #fff;
        font-size: 13px;
        cursor: pointer;
        transition: background 0.2s;
    }

    .controls button:hover {
        background: #ff355b;
    }

      .basebutton_activate {

          background: #cacaca;
          width: 51px;                 /* 257 / 5 */
          border-radius: 58px;         /* 292 / 5 */
          box-shadow: 0 13px 0px 0 #777,
          0 9px 0px 0 #777,
          0 4px 0px 0 #777;
          padding: 0 4px 4px 4px;      /* 22 / 5 */
          z-index: 9999!important;
          transform: rotateX(-76deg) rotateZ(0deg);
          position: absolute;
          height: 48px;
          opacity: 0;

      }

    .button_activate {
        display: none;
        position: absolute;

        background: #d60505;
        border: 0;
        width: 43px;                 /* 216 / 5 */
        height: 41px;                /* 205 / 5 */
        border-radius: 100%;
        position: relative;
        cursor: pointer;
        outline: none;
        z-index: 2;
        box-shadow: 0 9px 0px 0 #af0000,
        0 4px 0px 0 #af0000;
        top: -5px;
        border: 1px solid #af0000a1; /* 5 / 5 */
    }

    @keyframes pressEffect {
        0% {
            top: -5px;
            background: #d60505;
            border-bottom: none;
            box-shadow: 0 9px 0px 0 #af0000,
            0 4px 0px 0 #af0000;
        }

        20% {
            top: -1px;
            box-shadow: 0 5px 0px 0 #af0000,
            0 2px 0px 0 #af0000;
        }
        35% {
            top: -5px;
            box-shadow: 0 8px 0px 0 #af0000,
            0 5px 0px 0 #af0000;
        }

        55% {
            top: -1px;
            box-shadow: 0 4px 0px 0 #af0000,
            0 2px 0px 0 #af0000;
        }

        85% {
            top: 4px;
            background: #af0000;
            border-bottom: 1px solid #00000020;
            box-shadow: 0 2px 0px 0 #af0000,
            0 2px 0px 0 #af0000;
        }

        100% {

            top: 1px;
            background: #ff0000;
            border-bottom: 1px solid #00000020;
            box-shadow: 0 0 43px 22px #ff3c3c,
            0 0 22px 11px #ff2828;
        }
    }
    .Cl_area_93N:hover ~ .van .arm.back .arm__top_left  {
        transform: rotateX(-25deg) translate(8px, -3px);
    }

    .Cl_area_00:hover ~ .van .features {transition: all 0.25s;
        transform:  translate(15px) rotate(-3deg) !important    }
    .Cl_area_00:hover ~ .van .rabbit_checks{transition: all 0.25s;
        transform:  translateX(-2px) rotate(-3deg)   rotateY(42deg) !important   }

    .Cl_area_00:hover ~ .van .rabbit-1__nose  {transition: all 0.25s;
        transform:  translateX(2px)    }

    .Cl_area_00:hover ~ .van .head.front.left  {transition: all 0.25s;
        transform:  rotateY(105deg)!important
    }

    .Cl_area_00:hover ~ .van .rabbit-1__eye1 {transition: all 0.25s;
        transform:  rotateY(0deg) scale(1.1, 1.05) !important
    }

    .Cl_area_00:hover ~ .van .rabbit-1__eye2 {transition: all 0.25s;
        transform:  rotateY(50deg)   translate(-1px, -1px)  scale(0.98)!important;   transform-origin :  left!important
    }

    .Cl_area_00:hover ~ .van .ear1 {
        clip-path: circle(76.3% at 1% 23%);
        z-index: 999;
        transition: all 0.25s;
        left:  13px;  transform: scale(1.3, 1.05);
    }
    .Cl_area_00:hover ~ .van .ear1:before  { transition: all 0.25s;
        transform: rotateY(55deg) rotate(2deg) scale(1.55, 0.85) translate(1px, -6px) ;  transform-origin :  bottom right ;
    }

    .Cl_area_00:hover ~ .van .ear2 {
        transition: all 0.25s;
        right: -4px;
        transform:  rotateY(50deg) rotate(28deg)   translate(-4px, -10px) ;  transform-origin : top left

    }
    .Cl_area_00:hover ~ .van .ear2:before  {transition: all 0.25s;
        transform: rotateY(55deg) rotate(-14deg) scale(1.1, 0.98) translate(3px, -5px) ;  transform-origin :  bottom right ;
    }

    .Cl_area_00:hover ~ .van .head_container  {   transition: all 0.25s;
        transform: translate(6px, 4px) rotate(20deg) scale(0.98)
    }


    .Cl_area_00:hover ~ .van .body{transition: all 0.25s;
        transform: rotateY(10deg) rotate(1deg) translate(1px, -1px); width: 42px;
    }

    .Cl_area_00:hover ~ .van .inside_body2{
        transition: all 0.25s;
        margin-left: 5px;
        width: 69px;
        border-radius: 90px 75px 70px  40px;  }

    .Cl_area_00:hover ~ .van .body__belly { transition: all 0.25s;
        transform:  rotateY(-19deg) rotate(-2deg) translate(10px, 4px);

        border-radius: 50px 25px 50px 30px; box-shadow: inset -5px -5px rgba(255, 242, 205, 0.5), inset 15px 5px rgba(255, 242, 205, 0.5);   }


    .Cl_area_00:hover ~ .van .armanfas  { transition: all 0.25s;
        margin-left:  -24px;
    }

    .Cl_area_00:hover ~ .van .armanfas_back {
        z-index: -999!important;

        transition: all 0.25s;
        transform:  rotateY(0deg) rotateX(25deg)    rotate(-12deg) translate(-3px,-5px);
        position:absolute; transition: transform 0.5s, filter 1s;

    }



    /* BACK ARM – дзеркалимо по X */
    .Cl_area_93N:hover ~ .start_tN   {
        display: none}
    .Cl_area_93N:hover ~ .van .arm.front .arm__top_left > .arm__fore {
        transform: rotate(-65deg); /* було 65deg */
    }

    /* FRONT ARM – теж дзеркалимо */
    .Cl_area_93N:hover ~ .van .arm.back .arm__top_left  {
        transform: rotate(-5deg) rotateX(-5deg) translate(1px, -3px);
    }

    .Cl_area_93N:hover ~ .van .arm.back .arm__top_left > .arm__fore {
        transform: rotate(-115deg); /* було 115deg */
    }

    .Cl_area_93N:hover ~ .van .arm.back .arm__top_left > .arm__fore:after {
        transform: rotate(-85deg) translate(-3px, -3px) scaleY(1);
    }
    .Cl_area_4:hover ~ .van .basebutton_activate{
        opacity: 1;
    }
    .Cl_area_4:hover ~ .van .button_activate {
        display: block;
        animation: pressEffect 1.5s ease forwards infinite 0.55s;
    }
    .Cl_area_4:hover ~ .van .iris3INT{
        animation: rotate_iris 0.1875s infinite alternate-reverse -0.45s!important;

    }
    .Cl_area_4:hover ~ .van .armanfas_back {animation: push_buttonV 1.5s infinite -0.725s;  transition: all 0.25s;  margin-top: -1px;  }
    .Cl_area_4:hover ~ .van .armanfas_back .arm__top_left { transform: scaleY(0.8) }

    @keyframes push_buttonV {
        15%, 30%  {transform:rotate(-10deg); transform-origin:14px 21px;
        }
        0%, 22%  {transform:rotate(-11deg); transform-origin: 7px 21px;
        }
        60%, 82%   { background: black;  transform:rotate(-11deg);  transform-origin:  24px 21px;
        }
        75%, 92%   { background: black;  transform:rotate(-11deg);  transform-origin:  24px 21px;
        }
    }

    @keyframes cat-tus {
        0%   { transform: rotate(-10deg) translateY(0); }
        20%  { transform: rotate(-45deg)
        translate(-5px, -5px); }  /* голова вниз */
        40%  { transform: rotate(-10deg) rotateX(10deg) translateY(0); }     /* назад вгору */
        60%  { transform: rotate(-10deg) rotateX(13deg) translateY(2px); }  /* ще один кивок */
        80%, 85% { transform: rotateX(10deg) translateY(1px); }
    }
    @keyframes cat-tusX {
        0%   { transform:rotate(-35deg)  rotateX(5deg)  translate(-5px, -5px) translateY(0); }

        0%   { transform: rotate(-35deg)  rotateX(-35deg)  translate(-5px, -5px) translateY(0); }
        80%, 85% { transform: rotateX(10deg) translateY(1px); }
    }
    .Cl_area_20:hover ~ .van .armanfas_back{  transform: rotate(-35deg) translate(-5px, -5px);
        animation: cat-tusX 1.5s infinite;   }
    .Cl_area_95:hover ~ .van .arm.front .arm__top_left  {  transform: rotate(115deg); transform-origin: 15px 8px ; border-radius: 20%; }
    .Cl_area_95:hover ~ .van .arm.front .arm__top_left > .arm__fore {  transform: rotate(97deg) scale(1.35, 1.64)!important; }

    .Cl_area_95:hover ~ .van .arm.back  .arm__top_left  {  transform: rotate(-115deg); transform-origin: 3px 5px ; border-radius: 20%; }
    .Cl_area_95:hover ~ .van .arm.back .arm__top_left > .arm__fore {  transform: rotate(-97deg) scale(1.35, 1.64)!important; }
     .Cl_area_911:hover  ~ .van .head_inner{
        animation: cat-nod-down 1.2s ease-in-out infinite;
        transform-origin: 50% 100%; /* точка обертання — зверху, там де шия */
    }

    @keyframes cat-nod-down {
        0%   { transform: rotateX(0deg) translateY(0); }
        20%  { transform: rotateX(1deg) translateY(2px); }  /* голова вниз */
        40%  { transform: rotateX(0deg) translateY(0); }     /* назад вгору */
        60%  { transform: rotateX(1deg) translateY(2px); }  /* ще один кивок */
        80%, 85% { transform: rotateX(0deg) translateY(1px); }
    }
    .Cl_area_91News:hover ~ .van .arm.back .arm__top_left {
        animation: armBackTopWave 0.8s ease-in-out 1 forwards;
    }

    .Cl_area_91News:hover ~ .van .arm.back .arm__top_left > .arm__fore {
        animation: armBackForeWave 0.8s ease-in-out 1 forwards;
    }

    .Cl_area_91News:hover ~ .van .arm.front .arm__top_left {
        animation: armFrontTopWave 0.8s ease-in-out 1 forwards;
    }

    .Cl_area_91News:hover ~ .van .arm.front .arm__top_left > .arm__fore {
        animation: armFrontForeWave 0.8s ease-in-out 1 forwards;
    }
    @keyframes armFrontTopWave {
        0%   { transform: rotateX(0deg) translate(0, 0); }
        25%  { transform: rotateX(-35deg) translate(8px, -3px); }
        50%  { transform: rotateX(0deg) translate(0, 0); }
        75%  { transform: rotateX(-35deg) translate(8px, -3px); }
        100% { transform: rotateX(-35deg) translate(8px, -3px); }
    }

    /* FORE частина передньої руки */
    @keyframes armFrontForeWave {
        0%   { transform: rotate(0deg) translate(0, 0); }
        25%  { transform: rotate(-20deg) translate(3px, -3px); }
        50%  { transform: rotate(0deg) translate(0, 0); }
        75%  { transform: rotate(-20deg) translate(3px, -3px); }
        100% { transform: rotate(-20deg) translate(3px, -3px); }
    }

    /* TOP частина задньої руки */
    @keyframes armBackTopWave {
        0%   { transform: rotateX(0deg) translate(0, 0); }
        25%  { transform: rotateX(-35deg) translate(-8px, -3px); } /* 1-ше підняття */
        50%  { transform: rotateX(0deg) translate(0, 0); }         /* назад */
        75%  { transform: rotateX(-35deg) translate(-8px, -3px); } /* 2-ге підняття */
        100% { transform: rotateX(-35deg) translate(-8px, -3px); } /* лишаємось в позі */
    }

    /* FORE частина задньої руки */
    @keyframes armBackForeWave {
        0%   { transform: rotate(0deg)  ; }
        25%  { transform: rotate(45deg) translate(-2px, -2px); }
        50%  { transform: rotate(0deg) ; }
        75%  { transform: rotate(25deg) translate(-2px, -2px)}
        100% { transform: rotate(25deg) translate(-2px, -2px)}
    }
    .Cl_area_91:hover ~ .van  .arm.back .arm__top_left  {  transform: rotateX(-25deg) translate(-8px, -3px); ; transition: all 0.5s }
    .Cl_area_91:hover ~ .van .arm.back .arm__top_left > .arm__fore {  transform: rotate(65deg) translate(-3px, -3px); ; transition: all 0.5s}
    .Cl_area_91:hover ~ .van  .arm.front .arm__top_left  {  transform: rotateX(-25deg) translate(8px, -3px); ; transition: all 0.5s}
    .Cl_area_91:hover ~ .van .arm.front .arm__top_left > .arm__fore {  transform: rotate(-65deg) translate(3px, -3px); ; transition: all 0.5s }
    .Cl_area_911:hover ~ .van  .rabbit-1__mouth{  transform:scaleY(0)!important;   }
    .Cl_area_911:hover ~ .van  .mouth_img {  transform:scaleY(0.2) rotate(20deg)!important; transition: all 0.5s  }

    .Cl_area_911:hover ~ .van  .arm.back .arm__top_left  {  transform: rotate(-5deg)  translate(-1px, -5px);  transition: all 0.5s}

    .Cl_area_94:hover ~ .van  .shape-e {
        transform: scaleX(0.9) translateY(-2px) scaleY(0.8);
        border-radius: 90px;
    }

    .Cl_area_94:hover ~ .van  .shape-e .inner {
        height: 18%;
        border-radius: 0 0 90px 90px;
        transform: translateY(-2px);
        transform: scaleX(0.9) translateY(-2px) scaleY(0.4);

    }
    .Cl_area_94:hover ~ .van  .mouth_img {  transform:scaleY(0.2) rotate(20deg)!important; transition: all 0.5s  }

    .Cl_area_94:hover ~ .van  .arm.back .arm__top_left  {  transform: rotate(80deg)  translate(11px, -5px) scale(1.1, 1); border-radius: 50% 30% 20%  50%;  transition: all 0.5s}
    .Cl_area_94:hover ~ .van .arm.back .arm__top_left > .arm__fore {  transform: rotate(95deg) ; }
    .Cl_area_94:hover ~ .van  .arm.front .arm__top_left  {  transform: rotate(5deg)   ; }
    .Cl_area_94:hover ~ .van .arm.front .arm__top_left > .arm__fore {  transform: rotate(115deg)  ; }
    .Cl_area_94:hover ~ .van .arm.front .arm__top_left > .arm__fore:after {  transform: rotate(85deg) translate(3px,-3px)  scaleY(1) ; }
    .Cl_area_2143323:hover  ~ .van .armanfas_back .arm__top_left{
        transition: all 5s;   border-radius:  40% 33%  60% 30%;
        transform-origin: bottom
    }
    .Cl_area_2143323:hover ~  .book_centration { position: relative;   display: block; }

    .Cl_area_2143323:hover  ~ .van .head_container {
        transform: translateX(2px) rotate(2deg);
        transition: all 1s; transform-origin: bottom
    }


    .Cl_area_2143323:hover  ~ .van .body { transform-origin: bottom;
        transform: translateX(1px) rotate(5deg);transition: all 1s }
    .Cl_area_243323:hover  ~ .van .armanfas_back .arm__top_left{
        transition: all 5s;   border-radius:  40% 33%  60% 30%;
        transform-origin: bottom
    }
    .Cl_area_243323:hover  ~ .van .armanfas_back   .arm__top .arm__fore {transform: translateX(2px) rotate(2deg);

        animation: up_right-forearm 1s 1s forwards infinite, wave_right-forearm 1s 1.8s 3 forwards, down_right-forearm 1.5s 5s forwards;}
    @keyframes up_right-arm {
        0%   { transform: rotate(-45deg) translate(-13px, -5px)  }
        100%  {transform: rotate(-135deg) translate(-13px, -24px) scaleY(1.2);}
    }

    @keyframes down_right-arm {
        0%  {transform: rotate(-135deg) translate(-13px, -24px);}
        100% {transform: rotate(-45deg) translate(-11px, -7px) scaleX(1.1);}
    }

    @keyframes initial_right-forearm {
        100% {transform: rotate(85deg);}
    }

    @keyframes up_right-forearm {
        0%   {transform: rotate(85deg);}
        100%  {transform: rotate(-65deg);}
    }

    @keyframes down_right-forearm {
        0%   {transform: rotate(-65deg);}
        100%  {transform: rotate(85deg)   }
    }

    @keyframes wave_right-forearm {
        0%   {transform: rotate(-65deg);}
        50%   {transform: rotate(-25deg);}
        100%   {transform: rotate(-65deg);}
    }

    .Cl_area_243323:hover  ~ .van .armanfas_back {
        background: black;
        animation: up_right-arm 1s 1s forwards, down_right-arm 2s 5s forwards;}

    .Cl_area_243323:hover  ~ .van .head_container {
        transform: translateX(2px) rotate(2deg);
        transition: all 1s; transform-origin: bottom
    }


    .Cl_area_243323:hover  ~ .van .body { transform-origin: bottom;
        transform: translateX(1px) rotate(5deg);transition: all 1s }
    .Cl_area_92:hover ~ .van  .rabbit-1__mouth{  transform:scaleY(0)!important; }
    .Cl_area_92:hover ~ .van  .mouth_img {  transform:scaleY(0.1) rotate(20deg)!important; ; transition: all 0.1s }
    .Cl_area_92:hover ~ .van  .head_container {  transform: rotate(8deg) translate(13px, 1px);  transition: all 0.5s }
    .Cl_area_92:hover ~ .van  .arm.back .arm__top_left  {  transform: rotateX(-15deg) translate(-8px, 0px); }
    .Cl_area_92:hover ~ .van .arm.back .arm__top_left > .arm__fore {  transform: rotate(165deg) translate(3px,2px); }
    .Cl_area_92:hover ~ .van  .arm.front .arm__top_left  {  transform: rotateX(-25deg) translate(8px, -3px); }
    .Cl_area_92:hover ~ .van .arm.front .arm__top_left > .arm__fore {  transform: rotate(-75deg) translate(3px, -3px); }
    .Cl_area_92:hover ~ .van  .iris3INT {  transform: translate(2px, 9px)!important; }
    .Cl_area_92:hover ~ .van  .rabbit-1__eye1{  transform: translate(2px, 0px)!important; }



    .book_centration {display: none; transform: scale(0.65);
        position: relative; top:  -540px; left: -230px}
    .Cl_area_1:hover ~ .van .ear1,  .Cl_area_1:hover ~ .van .ear2 {
        transform-origin: 14px 19px;  transition: all 0.65s;  }
    .Cl_area_1:hover ~ .van .features{
        transform:rotate(-3deg); transform-origin:14px 19px;  transition: all 0.25s;  }
    .Cl_area_1:hover ~  .book_centration {
        display: block; }
    .Cl_area_1:hover ~ .van .armanfas_back{
        transform:rotate(40deg); transform-origin:14px 19px;  transition: all 0.25s;  }
    .book4{
        position: relative;
        height:35px;
        width:160px;
        margin-left:13%;
        background: rgb(201, 218, 42);
    }

    .book4:before,
    .book4:after{
        position: absolute;
        content: "";
    }

    .book4:before{
        height: 35px;
        width: 98px;
        left: 10px;
        border-left: 20px double #fff;
        border-right: 20px double #fff;
    }

    .book4:after{
        background: white;
        margin: 4% 0 0 37%;
        width: 40px;
        height: 20px;
    }

    .ribbonCut4{
        position: absolute;
        margin: 5px 0 0 127px;
        border-left: 0px solid #a4d5bd;
        border-right: 10px solid transparent;
        border-top: 12px solid #a4d5bd;
    }

    .ribbonCut5{
        position: absolute;
        margin: 5px 0 0 137px;
        border-left: 10px solid transparent;
        border-right: 0px solid #a4d5bd;
        border-top: 12px solid #a4d5bd;
    }

    .ribbonCut6{
        position: absolute;
        margin: 0 0 0 127px;
        height: 5px;
        width: 20px;
        background: #a4d5bd;
    }

    .book5{
        position: relative;
        height:40px;
        width:145px;
        margin-left:11.5%;
        background: rgb(62, 194, 207);
    }

    .book5:before,
    .book5:after{
        position: absolute;
        content: '';
    }

    .book5:before{
        height: 40px;
        width: 80px;
        left: 12px;
        border-left: 20px double #fff;
        border-right: 20px double #fff;
    }

    .book5:after{
        background: white;
        margin: 5% 0 0 39%;
        width: 30px;
        height: 20px;
    }

    .book6{
        position: relative;
        height:30px;
        width:165px;
        border: 5px solid rgb(68,97,173);
        margin-left:10.5%;
        border-radius: 0 10px 10px 0;
        border-left-style: none;
        background: #fffff0;

    }


    .bookCut6{
        background: white;
        width: 5px;
        height: 30px;
    }

    .ribbon6{
        height:25px;
        width:20px;
        position: absolute;
        background: #a4d5bd;
        margin: 14px 0 0 100px;
    }

    .book7{
        position: relative;
        height:40px;
        width:200px;
        margin-left: 90px;
        margin-bottom: 3px;
        background: #fcc800;   /*rgb(252, 178, 71)*/
    }

    .book7:before,
    .book7:after{
        position: absolute;
        content: "";
    }

    .book7:before{
        height: 40px;
        width: 98px;
        left: 10px;
        border-left: 20px double #fff;
    }

    .book7:after{
        background: white;
        margin: 4% 0 0 82%;
        width: 22px;
        height: 22px;
        border-radius: 12px;
    }

    .ribbonCut7{
        position: absolute;
        margin: 5px 0 0 125px;
        border-left: 0px solid #a4d5bd;
        border-right: 10px solid transparent;
        border-top: 12px solid #a4d5bd;
    }

    .ribbonCut8{
        position: absolute;
        margin: 5px 0 0 135px;
        border-left: 10px solid transparent;
        border-right: 0px solid #a4d5bd;
        border-top: 12px solid #a4d5bd;
    }

    .ribbonCut9{
        position: absolute;
        margin: 0 0 0 125px;
        height: 5px;
        width: 20px;
        background: #a4d5bd;
    }

    .desk-top {position: absolute; left: 0}
    .desk-top {
        width: 280px;
        height: 60px;
        margin-top: 10px;
        margin-left: -10px;
        border-radius:  30px 30px;
        background-color:
                #2f4375;
        position: relative;
        overflow: hidden;
        left: 250px;
        top: 120px;
    }
    .desk-top::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        background-color:  #1f2d4f;
        width: 100%;
        height: 7px;
        border-radius: 0 0 50px 50px;
    }


    .desk-bottom {
        width: 260px;
        height: 140px;
        background-color:#233157;
        position: relative;
        overflow: hidden;
        left: 250px;
        top: 100px;
        border-radius: 0 0 50px 50px; z-index: -1 }
    .desk-bottom::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        width: 180px;
        height: 150px;
        background-color: #18233d;
        border-radius: 2rem 2rem 0 0;
    }
    .desk-bottom::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 25%;
        transform: translateX(-50%);
        width: 30px;
        height: 10px;
    }
    /*9 hover areas*/
    .hover {
        position: absolute;
        width: 33.3vw;
        height: 33.3vh;
        z-index: 99;
    }

    /*positions*/
    .centerEC {
        left: 50%;
        margin-left: -16.6%;
    }
    .topEC {
        top: 0;
    }
    .bottomEC {
        bottom: 0;
    }
    .middleEC {
        top: 33.3%;
    }
    .leftEC {
        left: 0;
    }
    .rightEC {
        right: 0;
    }

    /*hover animation*/
    /*top*/
    .Cl_area.topEC:hover ~ .van .iris7_INT,  .hover.topEC:hover ~ .van .iris7_INT{
        top: 32%;
    }

    /*bottom*/
    .Cl_area.bottomEC:hover ~ .van .iris7_INT,  .hover.bottomEC:hover ~ .van .iris7_INT{
        top: 45%;
    }

    /*middle*/
    .Cl_area.middleEC:hover ~ .van .iris7_INT, .hover.middleEC:hover ~ .van .iris7_INT{
        top: 40%;
    }
    .Cl_area.middleEC:hover ~ .van .iris3INT, .hover.middleEC:hover ~ .van .iris3INT  {
        top: 65%;
    }
    /*left*/
    .Cl_area.leftEC:hover ~ .van .iris7_INT,  .hover.leftEC:hover ~ .van .iris7_INT {
        left: 10%;
    }
    .Cl_area.leftEC:hover ~ .van .iris3INT, .hover.leftEC:hover ~ .van .iris3INT {
        left: 20%;
    }
    /*right*/
    .Cl_area.rightEC:hover ~ .van .iris7_INT, .hover.rightEC:hover ~ .van .iris7_INT {
        left:38%;
    }
    .Cl_area.rightEC:hover ~ .van .iris3INT, .hover.rightEC:hover ~ .van .iris3INT {
        left: 60%;
    }
    /*cross eyes*/
    .Cl_area.middleEC.centerEC:hover ~ .van .leftiris7_INT, .hover.middleEC.centerEC:hover ~ .van .leftiris7_INT{
        left:40%;
    }
    .Cl_area.middleEC.centerEC:hover ~ .van .rightiris7_INT, .hover.middleEC.centerEC:hover ~ .van .rightiris7_INT {
        left:10%;
        background: grey;
    }
    .Cl_area.middleEC.centerEC:hover ~ .van .leftiris7_INT .iris3INT, .hover.middleEC.centerEC:hover ~ .van .leftiris7_INT .iris3INT {
        left: 50%;
    }
    .Cl_area.middleEC.centerEC:hover  ~ .van .rightiris7_INT .iris3INT, .hover.middleEC.centerEC:hover  ~ .van .rightiris7_INT .iris3INT {
        left:20%;
    }



    /* ===== ARMS ===== */
    .Cl_area_61:hover ~  .bodySTV  .van .arm.front .arm__top_left,  .Cl_area_7:hover ~  .bodySTV  .van .arm.front .arm__top_left {
        animation: flap-left 1.5s infinite;
        transform-origin: center top;
    }
    .Cl_area_61:hover ~  .bodySTV  .van .arm.back .arm__top_left,  .Cl_area_7:hover ~  .bodySTV  .van .arm.back .arm__top_left {
        animation: flap-left 1.5s infinite -0.75s; /* зсув фази */
        transform-origin: center top;
    }
    .Cl_area_7:hover ~  .bodySTV  .van .arm.front .arm__top_left {
        animation: flap-left 1.5s infinite;
        transform-origin: center top;
    }

    .Cl_area_7:hover ~  .bodySTV  .van .arm.back .arm__top_left {
        animation: flap-left 1.5s infinite ; /* зсув фази */
        transform-origin: center top;
    }
    @keyframes flap-left-light {

        50% {
            transform: /* translateX(-0.5px) */ rotateX(-25deg);
        }
    }
    /* Якщо у тебе ще немає цих кейфреймів — додаю базову “плескаючу” анімацію */
    @keyframes flap-left {
        0%,100% { transform: rotate(5deg); }
        50%     { transform: rotate(-5deg); }
    }


    .Cl_area_1:hover ~ .van .iris3INT{
        animation: rotatineye 0.75s infinite alternate-reverse -0.45s!important;
        left: 23%;

    }

    .Cl_area_4:hover ~ .van .iris3INT{
        animation: rotate_iris 0.1875s infinite alternate-reverse -0.45s!important;

    }

    @keyframes rotate_iris {
        to {left: 51%;
        }
    }


    :root {
        --bb-blue: pink;
        --bb-light-blue: #EBF2FA;
        --bb-middle-blue: #C4DEED;
        --bb-orange: #FDC23E;
        --bb-blue-star: #38B4C1;
        --bb-pink-star: #FF7761;
        --bb-orange-star: #FDC23E;
        --bb-size: 20px;

    }

    .van {
        /* background: blue;*/
        position: absolute;
        width: 100px;
        height: 235px;
        /*width: 106px; height: 95px;*/
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        /*margin: auto;*/
        /*
         animation: front-body-walk var(--speed-walk) infinite linear;*/
    }

    .head_container{
        position: absolute;
        width: 100px;
    }
    .head {
        position: absolute;
        width: 50px;
        height: 90px;
        overflow: hidden;
        transform-origin: 100% 0%;

    }
    .face {
        position: absolute;
        width: 48px;
        height: 86px;
        background:  linear-gradient( #FBF3D9, #F9ECD5, #F5D7D1 );
        bottom:  4px;
        right: 0;

        border-right: 0;
    }
    .face{
        border-radius: 100% 0% 0% 100% / 67% 0% 100% 33%  ;

    }


    .head.right {
        transform: rotateY(180deg);
    }
    .head.right .face {
        background:  linear-gradient(-155deg, #FBF3D9, #F9ECD5, #F5D7D1 );
    }

    .head.front .face{
        bottom: 5px;

        border: 0;
    }
    .head.front .face:before {
        border: 0;
    }
    .head.front {
        transform: rotateY(90deg);
    }
    .features {
        position: absolute;
        top: -10px;
        bottom: 0;
        left: 0;
        right: 0;
    }

    .rabbit-1__eye1 {
        /*top:7px; left: 10px;*/

        background: #eddbd7;
        border-radius: 58% 42% 33% 67% / 80% 77% 23% 20% ;
        transform-origin: bottom center;
        /*transform: rotate(6deg) translate(-1px,2px);*/
    }

    .rabbit-1__eye2 {
        /*top: 20px; left: 51px;*/
        background: #eddbd7; /*#eddbc4;/*#eeddc8;*/
        /*background: #bbb1d6;*/
        border-radius: 47% 53% 57% 43% / 80% 77% 23% 20%  ;
        transform-origin: bottom center;
        /*transform: translate(5px,-9px)  rotate(2deg);*/
    }

    .eyeINT {
        position: absolute; top: 34px;
        /**/height: 36px; width: 27px;
        margin: auto;
    }

    .eyeINT.left {
        left: 12%;
        right: 58%;
    }

    .eyeINT.left:before {
        transform: rotate(45deg);
    }

    .eyeINT.left:after {
        transform: rotate(135deg);
    }

    .eyeINT.right {
        left: 58%;
        right: 12%;
    }

    .mouth {
        position: absolute;
        left: 0;
        right: 0;
        margin: auto;
        width: 22px;
        height: 18px;
        border-radius: 3px;
        background: black;

    }


    .rabbit-1__mouth {
        top: 70px;
        transform:  scale(0.8, 0.05) rotate(-5deg);

    }
    .rabbit-1__mouth:before {
        top: 0px; left: 1px;
        width: 19px; height: 3px;
        background: #82172A;
        border-radius:  0 0 3px 3px;
        box-shadow: inset 55px 50px 0 -52px #fffff8, inset -55px 50px 0 -52px #fffff8;
        z-index: 1;
    }
    .rabbit-1__mouth:after {
        top: -21px; left: -14px;
        width: 51px; height: 22px;
        background: linear-gradient( 180deg, #f8e8d4, #f7e0d3);
        border-radius: 50%;
        z-index: 1;

    }
    .rabbit-1__mouth > div {
        top: 0; left: 0;/* зона ротика */

        width: 22px; height: 18px;
        background: #82172A;
        border-radius: 4px 4px 12px 10px;
        overflow: hidden;
    }
    .rabbit-1__mouth > div:before {
        top: 13px; left: 9px;
        width: 15px; height: 20px;
        border-radius: 50%;
        background: #e16858;
    }


    .ojos3_lINT_fin30r , .ojos3_lINT_fin30l, .ojos3_lINT_in30r , .ojos3_lINT_in30l{
        position: absolute;
        width: 100%;
        height: 36px;
    }

    .ojos3_lINT {
        border-radius: 50% 50% 50% 50% /72% 69%  28% 31%;
        background: #C2AEC0;

    }


    .ojos3_lINT:before {
        content: "";
        position: absolute;
        top: 12%;
        left: 3%;
        border-radius: 42% 58% 42% 58% / 58% 72% 28% 42% ;
        background-image: linear-gradient(to top,
        #FFDB32 0%, #FF794F 100%);  /* білок */
        width: 95%;
        height: 88%;
    }

    .iris3INT {
        position: absolute;
        width: 20%;
        height: 20%;
        border-radius: 100%;
        background: white;
        left: 55%; top: 10%;
        animation: brilla_INT 0.9s alternate infinite;
    }


    .iris7_INT {
        position: absolute;
        left: 26%;
        bottom: 3%;
        width: 62% ;
        height: 55%;
        border-radius: 100%;
        background: #9B7B97;
        animation: shake_INT 0.7s alternate infinite;
    }

    .iris7_INT::before {
        content: "";
        position: absolute;
        width: 96%;
        height: 96%;
        border-radius: 100%;
        background-image: linear-gradient(to top,
        #51657F 0%, #412245 60%);  /* #422444білок */
        left: 2%;
        bottom: 2%;
    }
    @keyframes brilla_INT {
        0% {
            transform: scale(1) rotate(5deg);
        }
        50% {
            transform: scale(0.9) rotate(3deg);
        }
    }

    @keyframes shake_INT {
        0% {
            transform: scale(1);
        }
        50% {
            transform: scale(0.97);
        }
        75% {
            transform: scale(1);
        }
    }
    .muzzleINT {
        position: absolute;
        top: -16px; left: -99%;
        width: 50px;
        height: 30px;
        z-index: 999;
    }
    .rabbit-1__nose {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-left: 6px;
        margin-top: -2px;

        width:12px; height: 4px;
        background: #ff908c;
        border-radius: 50%;
        transform: rotate(2deg);
        z-index: 999;
    }
    .rabbit-1__nose:before {
        top: -4px; left: 0px;
        width: 30%; height: 60%;
        background-image: linear-gradient(-45deg, #ff908c 50%, transparent 50%);
        border-radius: 4px;
        transform: rotate(45deg);
    }
    .rabbit-1__nose:after {
        display: block;
        content: '';
        position: absolute;
        top: 0px; left: 40%;
        width: 40%; height: 35%;
        background: white;
        border-radius: 4px;
        opacity: 0.5;

    }

    .ear2{
        border-radius: 67% 33% 33% 67% / 83% 97% 3% 17%;
        background:  #f8e8d4 ;
        height: 38px;
        width: 35px;
        position: absolute;
        top: -8px;
        right: 0px;
        transform: rotate(28deg);
        z-index: -100;
    }

    .ear2:before{
        content: '';
        position: absolute;
        top: 7%;
        left: 5%;
        width: 80%;
        height: 90%;
        background: linear-gradient(#E4878F, #E8878F,#CC7288, #C56D87);
        border-radius: 67% 33% 33% 67% / 83% 77% 23% 17%;
        z-index: -11;
        /*transform: rotateY(65deg) rotate(-15deg) scale(1.1, 0.98) translate(6px, -4px);/**/
        transform-origin: bottom right;
    }
    .ear1{

        border-radius:  23% 97%  7% 3%  / 93% 97% 3% 7%;
        background: #f8e8d4 ;
        height: 38px;
        width: 27px;
        position: absolute;
        top: -10px;
        right: 66px;
        transform: rotate(-4deg);
        z-index: -1;
    }
    .ear1:before{
        content: '';
        position: absolute;
        top: 5%;
        left: 5%;
        width: 75%;
        height: 99%;
        transform: rotate(1deg);
        background: linear-gradient(#E4878F, #E8878F,#CC7288, #C56D87);
        border-radius: 23% 97% 7% 3%   / 93% 97% 3% 7%;
        z-index: -11;

    }

    .pelvis {
        width: 58px;
        height: 50px;
        margin-left: -20px;
        border-radius: 0 0 70% 70%;
        /*transform: rotateZ(10deg);*/
        z-index: 2;
        margin-top: -18px;
    }


    .inside_body2 {
        z-index: 1;
        position: absolute;
        top: 8px;
        left: -12px;
        width: 73px;
        height: 135%;
        /*  background: url('https://new.gerelo.com/storage/uploads/lqNQgn9QmfQ3PPgA4inycT6T1SCzsuDm5V3dXhO8.svg');
         */ background:  linear-gradient(-155deg, #FBF3D9, #F9ECD5, #f5e4d1 );
        border-radius: 40px;/*border-radius: 25px 25px 20px 20px;
border-radius: 51% 49% 47% 53% / 64% 65% 35% 36%  ;*/ background-repeat: no-repeat;

    }

    .body {
        position: relative;
        height: 68px;
        width: 48px;
        margin-top: 69px;
        z-index: -1;
        margin: 87px auto 0 auto;
        /*animation: lambada var(--speed-walk) infinite linear;
       margin-left: 21px;*/
        /* animation: front-body-walk var(--speed-walk) infinite linear; */
        animation-delay: var(--delay); /* animation: lambada var(--speed-walk) infinite linear;
         /* animation: front-body-leg-walk 1.5s infinite linear; усталость */

    }

    @keyframes front-body-walk {
        20% { transform: rotateY(-10deg)}
        80% { transform: rotateY(10deg) }
        0%, 100% { transform: rotateY(0deg) }
    }

    .body__belly {
        transform-style: preserve-3d;
        z-index: 99;
        width: 100%;
        height: 110%;
        background: rgba(252, 245, 218, 0.8);
        position: absolute;
        margin: 10px auto; border-radius: 40px;
        top: 8px;
        /* top: 26px;
        border-radius: 40px 40px 150px 40px;
        right: -15px;
        transform: scale(0.5, 1.25);*/
    }

    :root {
        --delay: -0.75s;
        --speed-walk: 1.5s;
    }

    .taz {

        /* */
        width: 68px;
        margin-left: -8px;
        margin-top:25px ;
        height: 27px;
        border-radius: 50%;
        background:  linear-gradient(-155deg, Lemonchiffon, #FBF3D9, #F9ECD5, #F5D7D1, #F5D7D1 );
        /*  animation: lambada var(--speed-walk) infinite linear;
        animation: front-body-leg-walk var(--speed-walk) infinite linear;*/
    }


    @keyframes front-body-walk{

        20% { transform: rotateY(-10deg)}
        80% { transform: rotateY(10deg)    }
        0%, 100% { transform: rotateY(0deg)    }
    }


    .arm {
        position: absolute;
        width: 40px;
        height: 0px;
        z-index: 9999999999999!important;
        top: 80px;
        left: 40px;
        transform-origin: 50% 0 ;
        transform-style: preserve-3d;
        /* z-index: -99;*/

    }

    .armanfas {transform: rotate(7deg) rotateX(20deg);
        margin-left: -41px;
    }
    .armanfas_back {transform: rotate(-7deg) rotateX(25deg);
        margin-left: 23px;
    }


    .arm__top {
        width: 18px;
        height: 40px;
        background: #F9ECD5 ;
        position: absolute;
        left: 10px;
        top: 10px;
        border-radius: 3px 12px 6px 6px;
        /*transform: rotateX(-60deg);*/
        transform-origin: 50% -5px;
        box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
        z-index: -1;
    }
    .arm__fore {
        width: 16px;
        height: 28px;
        position: absolute;
        left: 1px;
        top: 30px;
        border-radius: 33% 40% 30% 60%;
        background:  linear-gradient(5deg, #FBF3D9, #F9ECD5, #F8E7D4 ); /*background:#F4DBCC;green ;/*#F4DBCC;*/
        /* transform: rotateX(-10deg);*/
        transform-origin: 50% 5px;
        z-index: -6;
        box-shadow: -1px 1px 2px 0px rgba(0, 0, 0, 0.1);
        /* animation: front-upper-leg-walk 1.5s infinite linear;
       animation: bend_arm 1.5s ease-in-out alternate infinite;*/
    }

    .armanfas .arm__fore {

        border-radius: 33% 40% 30% 60%;
    }
    .armanfas_back .arm__fore  {

        border-radius:  40% 33%  60% 30%;
    }

    .armanfas_back  {
        /*  z-index: -9999999!important;*/
    }

    .arm__fore:after {
        content: "";
        display: block;
        background:  #F8E7D4;
        height: 14px;
        width: 16px;
        border-radius: 40%;
        position: absolute;
        bottom: -8px; left: 1px;
        transform-origin: 50% 5px;
        box-shadow: -1px 1px 2px 0px rgba(0, 0, 0, 0.1);
        transform-style: preserve-3d;
        /*  animation: front-upper-leg-walk 1.5s infinite linear;*/
        /*  animation: hand_man 1.5s ease-in-out alternate infinite;*/
    }

    .arm.back {
        /* background: red!important;
         width: 50px;
         height: 80px;*/
    }

    .arm.back .arm__top_right{
        /*   animation: swing_back var(--speed-walk) ease-in-out alternate infinite;*/
    }

    .arm.back .arm__fore {
        /*  animation: bend_back 1.5s ease-in-out alternate infinite;*/
    }

    .arm.front .arm__top_right {

        /* animation: swing_arm var(--speed-walk) ease-in-out alternate infinite;*/
    }

    .arm.back .arm__top_left{

        /* animation: flap-left var(--speed-walk) infinite;*/
        /* transform:  translateX(-0.5px)  rotateX(-25deg);*/
        border-radius:3px 90%   6px 6px;
        transform-origin: center top;
        /*  animation-delay: var(--delay);*/
    }


    .arm.front .arm__top_left{
        /* animation: flap-left var(--speed-walk) infinite;*/
        /*  transform:  translateX(-0.5px) rotateX(-25deg); */
        border-radius:90% 3px  6px 6px;
        transform-origin: top  ;


    }
    /*   .arm.front .arm__top_left {
     animation: front-upper-leg-walk 1.5s infinite linear;/*piano start
 } animation: leg_fore 1.5s ease-in-out forwards infinite;набирать подарок */
    /*  animation: foot_front 1.5s ease-in-out forwards infinite; knife */
    /*  animation:  front-downer-leg-walk 1.5s infinite linear; packing*/
    /* animation: front-paw-walk 1.5s infinite linear;*/



    @keyframes flap-left {

        50% {
            transform: /* translateX(-0.5px) */ rotateX(-25deg);
        }
    }


    .arm.back .arm__top_clear{
        animation: front-lower-leg-walk 1.5s infinite linear;
    }
    .arm.front .arm__top_clear {
        animation: front-lower-leg-walk 1.5s infinite linear;
    }

    @keyframes swing_arm {
        0%, 100% {
            transform: rotateX(115deg);
        }
        50% {
            transform: rotateX(-15deg);
        }
    }
    @keyframes swing_back {
        0%, 100% {
            transform: rotate(-115deg);
        }
        50% {
            transform: rotate(15deg);
        }
    }
    @keyframes bend_arm {
        0%, 100% {
            transform: rotate(-10deg);
        }
        50% {
            transform: rotate(-20deg);
        }
    }
    @keyframes hand {
        0%, 100% {
            transform: rotate(15deg);
        }
        50% {
            transform: rotate(-10deg);
        }
    }


    @keyframes bend_back {
        0%, 100% {
            transform: rotate(-20deg);
        }
        50% {
            transform: rotate(-10deg);
        }
    }

    .pelvis {
        width: 58px;
        height: 50px;
        border-radius: 0 0 70% 70%;
        /*transform: rotateZ(10deg);*/
        z-index: 2;
        margin: -18px auto 0 auto;
    }




    .cover-sunglasses {
        display: none; position: absolute; transform: scale(2,2.45 );
        top: 107px; left: -275px; z-index: 99;
    }
    .right-sunglasses {
        animation: sunglasses-wink 0.6s linear .9s 1,
        sunglasses-sustained 5.5s linear 5s infinite;
    }

    @keyframes sunglasses-wink {
        20% {
            transform: translateY(-5px);
        }
        40% {
            transform: translateY(-4px);
        }
        60% {
            transform: translateY(-6px);
        }
        80% {
            transform: translateY(-3px);
        }
        100% {
            transform: translateY(0px);
        }
    }

    @keyframes sunglasses-sustained {
        3% {
            transform: translateY(-5px);
        }
        5% {
            transform: translateY(-4px);
        }
        7% {
            transform: translateY(-6px);
        }
        9% {
            transform: translateY(-3px);
        }
        10%, 100% {
            transform: translateY(0px);
        }
    }


