body, html {
    margin: 0;
    padding: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
    background-color: #000;
}

canvas {
    display: block;
    position: fixed; /* Asegura que el canvas no interfiera con el joystick */
    top: 0;
    left: 0;
}

#joystick-zone {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    /* background: rgba(255, 255, 255, 0.2); */ /* Descomentar para depurar la zona */
    z-index: 10;
    display: none; /* Ocultar inicialmente */
}


#container {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#startButton {
    padding: 20px;
    font-size: 24px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#startButton:hover {
    background-color: #45a049;
}