/* reset.css - 리셋 + 공통 변수 */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --green: #00C853;
  --green-dark: #009624;
  --bg: #0a0a0a;
  --bg2: #111111;
  --bg3: #1a1a1a;
  --border: #1e1e1e;
  --border2: #333333;
  --text: #f0f0f0;
  --text2: #aaaaaa;
  --text3: #666666;
  --text4: #444444;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Apple SD Gothic Neo', 'Noto Sans KR', sans-serif;
  line-height: 1.8;
}

a { text-decoration: none; }

/* 공통 nav */
.kfcta-nav { display:flex; align-items:center; justify-content:space-between; padding:16px 32px; background:var(--bg); border-bottom:1px solid var(--border); position:sticky; top:0; z-index:100; }
.nav-logo a { font-size:1.2rem; font-weight:800; color:var(--green); text-decoration:none; }
.nav-links a { color:var(--text2); text-decoration:none; margin-left:24px; font-size:.9rem; transition:color .2s; }
.nav-links a:hover { color:var(--green); }
