body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #f0f0f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

#score {
    margin: 10px;
    font-size: 1.5em;
    color: #333;
    text-align: center;
}

.waiting-message {
    color: #888;
    font-size: 0.8em;
    margin-left: 10px;
}

#balls-container {
    position: absolute;
    top: 60px; /* Отступ для счета */
    left: 0;
    width: 100%;
    height: calc(100% - 60px); /* Высота минус отступ для счета */
    overflow: hidden;
}

.ball {
    position: absolute;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease; /* Анимация лопания */
}