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

body {
  overflow: hidden;
  background: #0a0a1a;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  cursor: grab;
}

body:active {
  cursor: grabbing;
}

canvas {
  display: block;
}

#info {
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  text-align: center;
  z-index: 10;
  pointer-events: none;
  text-shadow: 0 0 20px rgba(0,0,0,0.8);
  user-select: none;
}

#info h1 {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 50%, #4facfe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
}

#info p {
  margin-top: 8px;
  font-size: 1rem;
  opacity: 0.7;
  letter-spacing: 1px;
}

#fps {
  position: fixed;
  bottom: 20px;
  right: 20px;
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
  font-family: monospace;
  z-index: 10;
  pointer-events: none;
}
