/* theme.css — 디자인 토큰. 색은 변수로(하드코딩 금지). /api/config.theme 로 런타임 오버라이드 가능. */
:root{
  --bg:#0b0e13; --bg2:#11151d; --panel:#161b24; --panel2:#1d2430; --line:#262e3b;
  --txt:#eef2f8; --mut:#8a93a6; --acc:#12c27a; --acc2:#7c5cff; --gold:#e6c46b;
  --danger:#e5384d; --radius:14px; --hdr-h:58px; --side-w:220px;
  --font:Poppins,Pretendard,system-ui,sans-serif;
}
*{box-sizing:border-box;margin:0}
html,body{background:var(--bg);color:var(--txt);font-family:var(--font);font-size:14px;-webkit-font-smoothing:antialiased}
body{overflow-x:hidden}
a{color:inherit;text-decoration:none}
svg{width:22px;height:22px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.hidden{display:none!important}
button{font-family:inherit;cursor:pointer;border:0;background:none;color:inherit}
input{font-family:inherit;font-size:14px;color:var(--txt);background:var(--panel2);border:1px solid var(--line);border-radius:10px;padding:10px 12px;outline:none;width:100%}
input:focus{border-color:var(--acc)}
.btn{display:inline-flex;align-items:center;justify-content:center;gap:6px;background:var(--acc);color:#04130c;font-weight:600;border-radius:10px;padding:9px 16px}
.btn.ghost{background:transparent;border:1px solid var(--line);color:var(--txt)}
.btn.gold{background:linear-gradient(135deg,var(--gold),#c79b3c);color:#241a00}
.btn:active{transform:translateY(1px)}
::-webkit-scrollbar{width:9px;height:9px}::-webkit-scrollbar-thumb{background:var(--line);border-radius:6px}
