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

:root {
  --bg: #0a0a0f;
  --surface: #111118;
  --surface2: #18181f;
  --border: #222230;
  --border-light: #2a2a3a;
  --primary: #4f7cff;
  --primary-dim: #1a2a5e;
  --text: #eceef4;
  --text-muted: #6b7080;
  --text-sub: #9298a8;
  --green: #2dd4a0;
  --red: #f0706a;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Pretendard', -apple-system, 'Apple SD Gothic Neo', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  word-break: keep-all;
}

#app {
  width: 100%;
  min-height: 100vh;
}

h1, h2, h3, h4 {
  font-family: 'Pretendard', sans-serif;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  word-break: keep-all;
}

p { margin: 0; word-break: keep-all; }
button { cursor: pointer; font-family: inherit; }
a { text-decoration: none; color: inherit; }

/* 스크롤 애니메이션 공통 */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
</style>
