File size: 620 Bytes
ff3dd11
 
 
 
 
c119b5c
 
ff3dd11
 
 
 
c119b5c
 
ff3dd11
 
 
c119b5c
 
ff3dd11
 
 
c119b5c
 
ff3dd11
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/* Pixel crisp rendering */
canvas {
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
}

/* Ensure full height */
html, body {
  height: 100%;
  background: #0b1021;
}

/* Hide touch controls on non-touch devices */
@media (hover: hover) and (pointer: fine) {
  #touchControls { display: none; }
}

/* Animated background shimmer (subtle) */
#bg {
  background: linear-gradient(180deg, #0b1021 0%, #0f1530 60%, #121a3a 100%);
}

/* Small responsive UI tweaks */
@media (max-width: 640px) {
  #hud .text-2xl { font-size: 1.25rem; }
  #hud .text-4xl { font-size: 2rem; }
}