<!doctype html>
<html lang="es">
<head>
<meta charset="utf-8" />
<title>Coop Game - HTML</title>
<meta name="viewport" content="width=device-width,initial-scale=1" />
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="ui">
<h2>Coop Push</h2>
<div id="status">Conectando...</div>
<div>Controles: WASD o flechas para moverte — Mantén <b>Space</b> para empujar la caja cuando estés cerca</div>
</div>
<canvas id="game" width="800" height="600"></canvas>
<script src="app.js"></script>
</body>
</html>