:root {
  --bg: #ffffff;
  --bg-soft: #f5f7fa;
  --text: #0e1117;
  --muted: #6b7280;
  --primary: #6d5efc;
  --accent: #d946ef;
  --border: rgba(0,0,0,.08);
}

[data-theme="dark"] {
  --bg: #0b0e14;
  --bg-soft: #121826;
  --text: #e5e7eb;
  --muted: #9ca3af;
  --primary: #8b7bff;
  --accent: #f472ff;
  --border: rgba(255,255,255,.08);
}

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Pretendard",
               "Segoe UI", Roboto, "Apple SD Gothic Neo", sans-serif;
}

a { color: inherit; text-decoration: none; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
