*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
body { background: #0f0f0f; color: #fff; font-family: "Apple SD Gothic Neo", "Noto Sans KR", sans-serif; }

header {
  padding: 24px 40px; display: flex; align-items: center;
  justify-content: space-between; border-bottom: 1px solid #1e1e1e;
}
.logo {
  font-size: 1.5rem; font-weight: 300; letter-spacing: 5px; color: #aaa;
  text-decoration: none; text-transform: uppercase;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  transition: color 0.2s; white-space: nowrap;
}
.logo:hover { color: #fff; }
nav { display: flex; align-items: center; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 6px; }
nav::-webkit-scrollbar { height: 10px; }
nav::-webkit-scrollbar-track { background: transparent; }
nav::-webkit-scrollbar-thumb { background: #2a2a2a; border-radius: 2px; }
nav a { color: #888; text-decoration: none; margin-left: 32px; font-size: 0.9rem; letter-spacing: 1px; transition: color 0.2s; white-space: nowrap; }
nav a:hover, nav a.active { color: #fff; }

.page-title { text-align: center; padding: 40px 20px 20px; }
.page-title h2 { font-size: 1.4rem; font-weight: 300; letter-spacing: 6px; }
.page-title p { color: #444; font-size: 0.85rem; margin-top: 8px; }

.empty { text-align: center; padding: 80px 20px; color: #444; }
.empty .icon { font-size: 3rem; margin-bottom: 16px; }

footer { text-align: center; padding: 24px; color: #333; font-size: 0.8rem; border-top: 1px solid #1a1a1a; }

@media (max-width: 640px) {
  header { padding: 12px 16px; }
}
