/* ==========================================================================
   css/reset.css - 기본 리셋 및 테마 CSS 변수
   ========================================================================== */

:root {
  /* 시그니처 테마 컬러 */
  --primary: #FF8FAB;
  --primary-dark: #FB7185;
  --secondary: #A78BFA;
  --secondary-dark: #8B5CF6;
  --accent: #FDE047;
  --ticket-gold: #F59E0B;

  /* 배경 및 텍스트 톤 (놀이동산 밤하늘) */
  --bg-night: #0F172A;
  --bg-card: #1E293B;
  --text-main: #F8FAFC;
  --text-muted: #94A3B8;

  /* 폰트 패밀리 */
  --font-base: 'Noto Sans KR', sans-serif;
  --font-hand: 'Gaegu', cursive;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

body {
  font-family: var(--font-base);
  background-color: var(--bg-night);
  color: var(--text-main);
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

.handwriting {
  font-family: var(--font-hand);
}

button {
  font-family: inherit;
}
