/* LAPGO × FUTURE STARS — 共用樣式 */
/* 設計基準：390 × 844px (iPhone 標準) */

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

:root {
  --max-w: 390px;
  --font: 'cwTeX Yen', 'Noto Sans TC', -apple-system, "PingFang TC", "Helvetica Neue", sans-serif;
}

html, body {
  width: 100%;
  min-height: 100vh;
  font-family: var(--font);
  background: #0a0a1a;
  color: #fff;
  overflow-x: hidden;
}

/* 最大寬度容器，置中 */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}
