body {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f0f0f0;
    font-family: sans-serif;
}
.game-container {
    position: relative;
    text-align: center;
}
canvas {
    border: 1px solid #ccc;
    background-color: #f0f0f0; /* Блідий фон */
    cursor: none; /* Ховаємо курсор на канвасі */
}
.controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
}
.controls button {
    margin: 5px;
    padding: 10px 20px;
    font-size: 20px;
    cursor: pointer;
}
.horizontal-controls {
    display: flex;
}
.horizontal-controls button {
    margin: 5px;
    padding: 10px 20px;
    font-size: 20px;
    cursor: pointer;
}
.score-container {
    position: absolute;
    top: 10px;
    left: 10px;
    color: black;
}
.input-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.input-overlay input {
    margin: 10px 0;
    padding: 10px;
    font-size: 16px;
}
.input-overlay button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}