/* Test version control */

body {
    margin: 0;
    overflow: hidden;
    font-family: 'Play', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    user-select: none; /* Prevent text selection */
    -webkit-user-select: none; /* For Safari */
    -moz-user-select: none;
    -ms-user-select: none;
    touch-action: manipulation; /* Prevent zoom on double tap */
}

canvas {
    display: block;
}

/* Apply no selection to all interactive elements */
button, 
.icon-button, 
.game-overlay, 
.restart-button,
.joystick-container,
#movementJoystickZone,
#lookJoystickZone,
#actionButtons {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    touch-action: manipulation;
}