/* D-pad container */
.dpad {
    position: absolute;
    bottom: 20px;
    left: 16%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0px;
    z-index: 10;
}

/* D-pad buttons */
.dpad-btn {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: background-color 0.3s;
}

.dpad-btn:active {
    background-color: rgba(0, 0, 0, 0.9);
}

/* Aligning left and right buttons side by side */
.dpad > div {
    display: flex;
    gap: 40px;
}
