/* 프로토타입용 최소 스타일. 디자인 리소스가 오면 교체 예정. */
:root {
  --bg: #0e0f13;
  --panel: #171922;
  --text: #e8e8ee;
  --muted: #9a9db0;
  --accent: #6aa6ff;
  --accent-text: #0b0d12;
  --ok: #6fd18a;
  --err: #ff7b7b;
  --radius: 10px;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Noto Sans JP", "Noto Sans KR", "Noto Sans SC", sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
a { color: var(--accent); }

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid #23263100;
}
.brand { font-weight: 700; letter-spacing: 0.04em; }
.lang-switch { display: flex; gap: 6px; flex-wrap: wrap; }
.lang-switch button {
  background: transparent;
  color: var(--muted);
  border: 1px solid #2b2f3d;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 13px;
  cursor: pointer;
}
.lang-switch button.active { color: var(--text); border-color: var(--accent); }

.container {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 16px 64px;
  flex: 1;
}
section + section { margin-top: 40px; }

.markdown h1 { font-size: 2rem; margin: 0 0 8px; }
.markdown h2 { font-size: 1.3rem; margin: 24px 0 8px; }
.markdown p { margin: 0 0 12px; }
.markdown img { max-width: 100%; border-radius: var(--radius); }
.markdown ul { padding-left: 1.2em; }

.sns h2, .notify h2 { font-size: 1.15rem; margin: 0 0 12px; }
.sns-list { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.sns-list a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px 8px 12px;
  border: 1px solid #2b2f3d;
  border-radius: 999px;
  text-decoration: none;
  color: var(--text);
  background: var(--panel);
  line-height: 1;
}
.sns-list a:hover { border-color: var(--accent); }
.sns-icon { display: inline-flex; width: 18px; height: 18px; }
.sns-icon svg { width: 18px; height: 18px; fill: currentColor; }
.sns-icon:empty { display: none; }

.notify {
  background: var(--panel);
  border-radius: var(--radius);
  padding: 20px;
}
.notify-text { color: var(--muted); margin: 0 0 14px; }
.subscribe-form .row { display: flex; gap: 8px; flex-wrap: wrap; }
.subscribe-form input[type="email"] {
  flex: 1 1 220px;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #2b2f3d;
  background: #0f1118;
  color: var(--text);
  font-size: 16px;
}
.subscribe-form button {
  padding: 12px 18px;
  border-radius: 8px;
  border: 0;
  background: var(--accent);
  color: var(--accent-text);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
}
.subscribe-form button:disabled { opacity: 0.6; cursor: default; }
.turnstile { margin-top: 12px; }
.status { min-height: 1.4em; margin: 10px 0 0; font-size: 14px; }
.status.ok { color: var(--ok); }
.status.error { color: var(--err); }
.privacy { color: var(--muted); font-size: 12px; margin: 10px 0 0; }
.steam-live a {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 8px;
  background: var(--accent);
  color: var(--accent-text);
  font-weight: 700;
  text-decoration: none;
}

/* honeypot: 화면과 접근성 트리에서 숨김 */
.hp { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.footer { text-align: center; color: var(--muted); font-size: 12px; padding: 20px; }
