/* livezone9.online — 間距/字體/header/footer 基礎樣式（WF相容化用） */
:root {
  --container: 1240px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --font-editorial: 'Rajdhani', sans-serif;
  --font-mono: 'Noto Sans TC', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--clr-bg);
  color: var(--clr-text);
  font-family: 'Noto Sans TC', sans-serif;
  font-size: 16px;
  line-height: 1.7;
}
a { color: inherit; text-decoration: none; }

.site-header {
  background: var(--clr-bg-alt);
  border-bottom: 1px solid var(--clr-border);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-logo {
  font-size: 21px;
  font-weight: 900;
  color: var(--clr-text);
  text-decoration: none;
  white-space: nowrap;
}
.header-nav { display: flex; gap: 26px; }
.nav-link {
  color: var(--clr-text-muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
}
.nav-link:hover { color: var(--clr-text); }

.site-footer {
  background: var(--clr-bg-alt);
  padding: 28px 0 40px;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: var(--clr-text-muted);
}
.footer-inner a {
  color: var(--clr-text-muted);
  text-decoration: none;
  margin-left: 16px;
}
.footer-inner a:hover { color: var(--clr-accent); }
