/* gam119-tools 공통 스타일 — 본사이트(gam119.com/site.css) 디자인 토큰 승계 */
:root {
  --ink: #1b1d21;
  --orange: #f4581c;
  --orange-deep: #c2410c;
  --concrete: #ecece9;
  --steel: #6b6e73;
  --line: #d8d9db;
  --white: #ffffff;
  --ok: #1d7a3e;
  --warn: #b45309;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family:
    "Noto Sans KR",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}
a {
  color: inherit;
}
.display {
  font-family: "Black Han Sans", "Noto Sans KR", sans-serif;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}
.hazard {
  height: 10px;
  background: repeating-linear-gradient(
    -45deg,
    var(--ink) 0,
    var(--ink) 16px,
    var(--orange) 16px,
    var(--orange) 32px
  );
}
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--orange);
  margin-bottom: 14px;
}

/* ── 상단바 ── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  gap: 10px;
}
.logo {
  font-family: "Black Han Sans", sans-serif;
  font-size: 21px;
  text-decoration: none;
  color: var(--ink);
  flex: none;
}
.logo span {
  color: var(--orange);
}
.logo small {
  font-family: "Noto Sans KR", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--steel);
  margin-left: 8px;
  letter-spacing: 0.02em;
}
.gnav {
  display: flex;
  gap: 16px;
  font-size: 14.5px;
  font-weight: 500;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
}
.gnav::-webkit-scrollbar {
  display: none;
}
.gnav a {
  text-decoration: none;
  color: #44474c;
  padding: 6px 2px;
}
.gnav a:hover {
  color: var(--orange-deep);
}
.gnav a.on {
  color: var(--orange-deep);
  font-weight: 700;
  border-bottom: 2px solid var(--orange);
}
.topbar a.btn-s {
  flex: none;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--white);
  background: var(--orange);
  padding: 8px 14px;
  text-decoration: none;
}
.topbar a.btn-s:hover {
  background: var(--orange-deep);
}

/* ── 버튼 ── */
.btn {
  display: inline-block;
  padding: 15px 26px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--orange-deep);
}
.btn-dark {
  background: var(--ink);
  color: var(--white);
}
.btn-dark:hover {
  background: #34373c;
}
.btn-ghost {
  border: 2px solid var(--ink);
  color: var(--ink);
  background: transparent;
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--white);
}

/* ── 섹션 ── */
.sect {
  padding: 64px 0;
}
.sect.tight {
  padding: 40px 0;
}
.sect.grey {
  background: var(--concrete);
}
.sect-head h2 {
  font-size: clamp(24px, 3.4vw, 34px);
}
.sect-head .lead {
  margin-top: 12px;
  color: var(--steel);
  max-width: 680px;
}

/* ── 카드/폼 ── */
.card {
  background: var(--concrete);
  border-top: 4px solid var(--orange);
  padding: 24px 22px;
}
label {
  font-size: 14px;
  font-weight: 700;
  display: block;
}
input,
select,
textarea {
  width: 100%;
  margin-top: 6px;
  padding: 12px 13px;
  border: 1.5px solid #f0a985;
  font-family: inherit;
  font-size: 15px;
  background: #fff4ee;
  color: var(--ink);
}
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--orange);
  outline-offset: 0;
  border-color: var(--orange);
}

/* ── 고지문 ── */
.notice {
  background: #fff4ee;
  border-left: 4px solid var(--orange);
  padding: 16px 18px;
  font-size: 14px;
  color: #44474c;
}
.notice b {
  color: var(--orange-deep);
}
.legal {
  font-size: 12.5px;
  color: var(--steel);
  line-height: 1.65;
}

/* ── CTA 밴드 ── */
.ctaband {
  background: var(--ink);
  color: var(--white);
  padding: 48px 0;
}
.ctaband h2 {
  color: var(--white);
  font-size: clamp(21px, 3vw, 30px);
}
.ctaband p {
  color: #c9cbce;
  margin-top: 10px;
  font-size: 15px;
}
.cta-row {
  margin-top: 26px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── 푸터 ── */
.foot {
  background: #111316;
  color: #8a8d92;
  padding: 34px 0;
  font-size: 13px;
}
.foot a {
  color: #c9cbce;
}
.foot .fl {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

@media (max-width: 760px) {
  .sect {
    padding: 44px 0;
  }
  .wrap {
    padding: 0 16px;
  }
}
