:root {
  color-scheme: dark;
  --screen-black: #070809;
  --reel-panel: #111317;
  --reel-line: #2b3038;
  --title-white: #f6f7f8;
  --credit-gray: #a8afb9;
  --projector-red: #ef3340;
}
* { box-sizing: border-box; }
html { background: var(--screen-black); }
body {
  margin: 0;
  min-width: 320px;
  color: var(--title-white);
  background: var(--screen-black);
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  line-break: strict;
  word-break: keep-all;
  overflow-wrap: break-word;
}
a { color: inherit; }
.guide-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 48px), 1180px);
  min-height: 70px;
  margin: 0 auto;
  border-bottom: 1px solid var(--reel-line);
}
.guide-brand { color: var(--title-white); font-weight: 900; letter-spacing: -.04em; text-decoration: none; }
.guide-back { color: var(--credit-gray); font-size: 14px; text-underline-offset: 4px; }
main { width: min(calc(100% - 48px), 1180px); margin: 0 auto; padding: 64px 0 80px; }
.guide-lead { max-width: 880px; margin-bottom: 68px; }
.guide-kicker { margin: 0 0 16px; color: var(--projector-red); font: 800 11px/1.2 ui-monospace, monospace; letter-spacing: .18em; }
h1, h2 { line-break: strict; word-break: keep-all; text-wrap: balance; }
h1 { max-width: 820px; margin: 0; font-size: clamp(38px, 7vw, 78px); line-height: 1.04; letter-spacing: -.055em; }
.guide-lead > p:last-child { max-width: 740px; margin: 24px 0 0; color: var(--credit-gray); font-size: clamp(16px, 2vw, 20px); line-height: 1.75; }
main > section + section { margin-top: 64px; }
h2 { margin: 0 0 20px; font-size: clamp(22px, 3vw, 32px); letter-spacing: -.035em; }
.guide-facts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--reel-line); }
.guide-facts article { min-width: 0; padding: 24px 24px 24px 0; border-bottom: 1px solid var(--reel-line); }
.guide-facts article + article { padding-left: 24px; border-left: 1px solid var(--reel-line); }
.guide-facts b { display: block; margin-bottom: 11px; font-size: 16px; }
.guide-facts p, .guide-note p { margin: 0; color: var(--credit-gray); line-height: 1.75; }
.guide-categories { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--reel-line); }
.guide-categories a { display: flex; justify-content: space-between; gap: 18px; padding: 18px 2px; border-bottom: 1px solid var(--reel-line); text-decoration: none; }
.guide-categories a:nth-child(odd) { padding-right: 24px; }
.guide-categories a:nth-child(even) { padding-left: 24px; border-left: 1px solid var(--reel-line); }
.guide-categories a:hover strong, .guide-categories a:focus-visible strong { color: var(--projector-red); }
.guide-categories span { color: var(--credit-gray); font-size: 13px; }
.guide-note { max-width: 820px; padding-left: 20px; border-left: 3px solid var(--projector-red); }
footer { display: flex; justify-content: space-between; width: min(calc(100% - 48px), 1180px); margin: 0 auto; padding: 28px 0 42px; border-top: 1px solid var(--reel-line); color: var(--credit-gray); font-size: 13px; }
body[data-site="a"] { --projector-red: #58d6a3; }
@media (max-width: 720px) {
  .guide-header, main, footer { width: min(calc(100% - 28px), 1180px); }
  main { padding: 44px 0 64px; }
  .guide-lead { margin-bottom: 50px; }
  .guide-facts, .guide-categories { grid-template-columns: 1fr; }
  .guide-facts article, .guide-facts article + article, .guide-categories a:nth-child(odd), .guide-categories a:nth-child(even) { padding: 18px 0; border-left: 0; }
  .guide-categories a { align-items: flex-start; flex-direction: column; gap: 4px; }
}
@media (prefers-reduced-motion: reduce) { * { scroll-behavior: auto !important; } }
