body {
    margin: 0;
    padding: 20px 0;
    font-family: Arial, sans-serif;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    user-select: none;
}

/* Контейнер для SCORE і BEST SCORE */
.header {
    width: calc(256px * 3);
    /* ширина = 3 * canvas ширина */
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 10px;
    box-sizing: border-box;
    padding: 0 10px;
}

/* SCORE зліва */
.score {
    width: 256px;
    /* ширина канваса */
    text-align: left;
}

/* BEST SCORE справа */
.best-score {
    width: 256px;
    /* ширина канваса */
    text-align: right;
}

#myCanvas {
    border: 1px solid #ccc;
    display: block;
    margin-bottom: 10px;
}

/* PAUSE по центру під canvas */
.pause {
    font-weight: bold;
    font-size: 16px;
    width: 256px;
    /* ширина канваса */
    text-align: center;
}