body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #000;
}

#game-container {
    position: relative;
    width: 100vw;
    height: 100vh;
}

#ui {
    position: absolute;
    top: 20px;
    left: 20px;
    color: white;
    font-size: 24px;
    z-index: 10;
}

#start-screen, #game-over {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 20;
}

#start-screen button, #game-over button {
    font-size: 20px;
    padding: 10px 20px;
    cursor: pointer;
}

#game-canvas {
    background: url('../images/background.jpg') no-repeat center center;
    background-size: cover;
    width: 100%;
    height: 100%;
    cursor: default; /* === НОВОЕ: по умолчанию обычный курсор === */
}

/* === НОВОЕ: скрываем курсор только во время игры === */
#game-canvas.playing {
    cursor: none;
}
