
/* D-Pad Controls */
#dpad-controls {
    position: fixed;
    bottom: 120px; /* Moved up to avoid covering bottom buttons */
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2000;
    pointer-events: auto;
    opacity: 0.8;
}

.dpad-middle {
    display: flex;
    gap: 40px; /* Space for the center */
}

.dpad-btn {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    touch-action: manipulation; /* Prevent double-tap zoom */
    user-select: none;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.1s;
}

.dpad-btn:active {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(0.95);
}

#dpad-up { margin-bottom: -10px; }
#dpad-down { margin-top: -10px; }

/* Adjust for small screens */
@media (max-width: 600px) {
    #dpad-controls {
        bottom: 100px;
        right: 10px;
        transform: scale(0.8);
        transform-origin: bottom right;
    }
}
