@import url("https://fonts.googleapis.com/css2?family=Fredoka:wght@400;700&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: fixed;
    -webkit-overflow-scrolling: touch;
}

body {
    font-family: 'Fredoka', 'Arial', sans-serif;
    background: #FFEBEE;
    /* Prevent pull-to-refresh on mobile */
    overscroll-behavior: none;
    -webkit-user-select: none;
    user-select: none;
    touch-action: manipulation; /* Changed from 'none' to allow taps */
}

#game-container {
  width: 100vw;
  height: 100vh;
  height: 100dvh; /* Dynamic viewport height for mobile */
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}
