@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&display=swap');

body {
  margin: 0;
  padding: 0;
  background-color: #0F172A;
  color: #F8FAFC;
  font-family: 'Space Mono', monospace;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  overflow: hidden;
}

#game-container {
  position: relative;
  box-shadow: 0 0 50px rgba(139, 92, 246, 0.2);
  border-radius: 8px;
  overflow: hidden;
}

canvas {
  display: block;
  background-color: #0F172A;
}

/* Touch Controls Overlay */
#touch-controls {
  display: none; /* Controlled by JS or media query */
  position: absolute;
  bottom: 20px;
  right: 20px;
  gap: 10px;
}

.btn {
  background: rgba(139, 92, 246, 0.2);
  border: 2px solid #8B5CF6;
  color: #fff;
  padding: 15px;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  cursor: pointer;
  user-select: none;
  touch-action: manipulation;
}

.btn:active {
  background: rgba(139, 92, 246, 0.5);
}

@media (max-width: 768px) {
  #touch-controls {
    display: flex;
  }
}
