.falling-block {
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 4px;
    opacity: 0.8;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: transform 0.5s ease-out, opacity 0.5s;
    z-index: 10;
}

.falling-block.clicked {
    animation: fadeOutScale 0.5s forwards;
}

@keyframes fadeOutScale {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(0);
        opacity: 0;
    }
}

#chart-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    z-index: 5;
}

.chart-segment {
    height: 0;
    width: 40px;
    margin: 0 2px;
    transition: height 1s ease-out;
}