@font-face {
  font-family: 'FZXIANGSU';
  src: url('/assets/fonts/FZXIANGSU24.TTF') format('truetype');
  font-weight: normal;
  font-style: normal;
}

:root {
  --bg-color: #1a1a1d;
  --pixel-yellow: #fff585;
  --pixel-green: #76ff34;
  --pixel-red: #ff4d4d;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--bg-color);
  color: #fff;
  font-family: 'FZXIANGSU', sans-serif;
  overflow: hidden;
  touch-action: none;
  image-rendering: pixelated;
  -webkit-font-smoothing: none;
  -moz-osx-font-smoothing: none;
}

.font-pixel {
  font-family: 'FZXIANGSU', sans-serif;
}

/* 强制所有文本去除默认平滑以保持像素感 */
* {
  text-rendering: optimizeSpeed;
  -webkit-font-smoothing: none;
  -moz-osx-font-smoothing: none;
}

@keyframes bounce-in {
  0% { transform: translate(-50%, -100%) scale(0.5); opacity: 0; }
  50% { transform: translate(-50%, -20%) scale(1.1); opacity: 1; }
  100% { transform: translate(-50%, -33%) scale(1); opacity: 1; }
}

.animate-bounce-in {
  animation: bounce-in 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

