/* 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;

  /* 品牌色（跟 admin.css 的 --yellow / --olive-dark 同一套，前後台共用） */
  --yellow:       #FFD268;
  --yellow-deep:  #F7BD36;
  --olive-dark:   #28281e;

  /* 遊戲頁功能色 */
  --blue:       #1a90d8;  /* 主要按鈕、連結、勾選標記 */
  --blue-light: #42b8f5;  /* 燈箱關閉鈕、掃描外框 */
  --blue-sky:   #48c0ff;  /* 藍色按鈕漸層頂色 */
  --success:    #2DB56A;

  /* 文字色 */
  --text-title: #1a1a1a;  /* 燈箱標題 */
  --text-body:  #666;     /* 燈箱內文、說明文字 */
}

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;
}
