body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  font-family: 'Press Start 2P', 'Consolas', monospace, sans-serif;
  background: #181d29;
  height: 100vh;
}

/* 星空背景容器，像素化並可加模糊 */
#star-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  image-rendering: pixelated;
  filter: blur(3px) contrast(1.2); /* 推薦像素模糊 */
}

/* 主要內容區塊 */
.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  text-align: center;
  color: #fff;
  text-shadow: 2px 2px 0 #222, 0 0 8px #fff8;
}

/* 正確引入像素字型 */
@font-face {
  font-family: 'BoutiqueBitmap9x9';
  src: url('/fonts/BoutiqueBitmap9x9/BoutiqueBitmap9x9_1.92.ttf') format('truetype');
  font-display: swap;
}

h1 {
  font-size: 2.5rem;
  font-family: 'BoutiqueBitmap9x9', 'Consolas', monospace, sans-serif;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
  filter: contrast(2) drop-shadow(0 0 4px #fff8);
}

.hero p {
  font-size: 1.2rem;
  font-family: 'BoutiqueBitmap9x9', 'Consolas', monospace, sans-serif;
  letter-spacing: 0.1em;
}

p {
  font-size: 1.2rem;
  letter-spacing: 0.1em;
}