body {
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    text-align: center;
}

#game {
    border: 2px solid green;
    background-color: #111;
    position: relative;
}

#next-piece {
    margin: 10px 0;
}

#score {
    margin: 10px 0;
}

/* Новые стили для анимации */
.explode {
    animation: explode 0.5s forwards;
}

@keyframes explode {
    0% {
        background-color: yellow;
        transform: scale(1);
    }
    100% {
        background-color: transparent;
        transform: scale(0);
    }
}