@font-face {
    font-family: 'PressStart2P';
    src: url('../PressStart2P-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    padding: 0;
    margin: 0;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100vh;

    user-select: none;
    touch-action: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    outline: none;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}

canvas {
    width: 70%;
}

.controls {
    margin-top: 150px;
}

#jump-button {
    width: 350px;
    max-width: 90vw;
    padding: 30px 60px;
    font-size: 24px;
    font-family: 'PressStart2P', cursive;
}

/* Mobile adjustments: hide button and let canvas use full width */
@media (max-width: 768px) {
    .controls { display: none; }
    canvas { width: 100%; }
}