.game{
    overflow: hidden;
    background: url(../images/forest_bg.png) no-repeat center/cover;
    align-items: end !important;
    position: relative;
}

.fruit {
    position: absolute;
    top: 0;
    left: 0;
    width: 56px;
    height: 56px;
    pointer-events: none;
    will-change: transform;
}
.bottom{
    position: absolute;
    bottom: 3%;
    width: 100%;
    height: 30%;
    display: flex;
    align-items: center;
}
.control-area{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: auto;
    gap: 10px;
    width: auto;
    height: 100%;
}

.chip-area{
    position: absolute;
    left: 7%;
    width: auto;
    height: auto;
    padding: 5px;

    p{
      font-size: 12px;
      margin-top: 8px;
      color: rgba(255, 255, 255, 0.814);
    }
}

.knife-con{
    background: rgba(0, 0, 0, 0.205);
    width: 150px;
    height: 150px;
    border-radius: 50%;
    transform-origin: bottom center;
    border: 2px solid #ffffff18;
}

.knife {
    width: 23px;
    height: 130px;
}


.controls {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
    user-select: none;

    &.arrow-1 {
        background: url(../images/arrow-1.png) no-repeat center/contain;
    }
    &.arrow-2 {
        background: url(../images/arrow0.png) no-repeat center/contain;
        width: 50px;
        height: 50px;
    }
    &.arrow-3 {
        background: url(../images/arrow1.png) no-repeat center/contain;
    }
}


/* .arrow.active {
    background: #00ff99;
    color: #000;
} */


.hit {
    animation: pop 0.25s forwards;
}

@keyframes pop {
    to {
        transform: scale(0);
        opacity: 0;
    }
}


.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: red;
    border-radius: 50%;
    pointer-events: none;
    animation: explode 500ms forwards;
}

@keyframes explode {
    to {
        transform: translate(var(--x), var(--y));
        opacity: 0;
    }
}