/*! 蛇蛇單字冒險 Snake Word Adventure
 *  © 2026 小魚爹學習樂園 All Rights Reserved.
 *  https://nickblog.space | nickpower0511@gmail.com
 *  未經授權禁止複製、修改或散佈。
 */
/* ════════════════════════════════════════════
   style.css — 蛇蛇單字冒險
   ════════════════════════════════════════════ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #0d0d1a;
  font-family: 'Segoe UI', 'PingFang TC', 'Microsoft JhengHei', sans-serif;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
}

#game-container {
  position: relative;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
}

#gameCanvas {
  display: block;
  max-width: 100%;
  max-height: 100vh;
}
