body {
    margin: 0;
    padding: 0;
    background-color: #1a1a2e; /* Dark blue/purple background */
    color: #e94560; /* Neon red/pink */
    font-family: 'Press Start 2P', cursive;
    overflow: hidden; /* Prevent scroll */
    touch-action: none; /* Disable default touch actions */
}

#game-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify_content: center;
    align_items: center;
}

canvas {
    display: block;
    box-shadow: 0 0 20px rgba(233, 69, 96, 0.5); /* Neon glow */
}

#hiddenInput {
    position: absolute;
    opacity: 0;
    top: -1000px;
    left: -1000px;
}
