/* 정보 페이지(소개/개인정보처리방침/문의) 공용 스타일.
   게임 화면(style.css)과 같은 다크 톤을 쓰되, 읽기 위주라 폭과 행간을 넉넉히 잡는다. */
* { box-sizing: border-box; }

body {
  margin: 0;
  padding: 0;
  background: #0e131c;
  color: #d8dee8;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR",
    "Malgun Gothic", sans-serif;
  line-height: 1.75;
  -webkit-text-size-adjust: 100%;
}

.page-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 32px 20px 80px;
}

/* ---- 상단 내비게이션 ---- */
.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  padding: 18px 0 24px;
  border-bottom: 1px solid #262d3d;
  margin-bottom: 36px;
}
.site-nav .brand {
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  font-size: 1.05rem;
  margin-right: auto;
}
.site-nav a {
  color: #9aa4b5;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.15s;
}
.site-nav a:hover { color: #5b8cff; }
.site-nav a.current { color: #fff; }

/* ---- 본문 ---- */
h1 {
  font-size: 1.9rem;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.35;
}
.page-sub {
  color: #7a8494;
  font-size: 0.92rem;
  margin: 0 0 40px;
}
h2 {
  font-size: 1.2rem;
  color: #fff;
  margin: 40px 0 14px;
  padding-left: 12px;
  border-left: 3px solid #5b8cff;
}
h3 {
  font-size: 1rem;
  color: #cfd6e2;
  margin: 26px 0 10px;
}
p { margin: 0 0 16px; }
ul, ol { margin: 0 0 16px; padding-left: 22px; }
li { margin-bottom: 8px; }
a { color: #5b8cff; }
strong { color: #eef1f6; }

table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 20px;
  font-size: 0.94rem;
}
th, td {
  border: 1px solid #262d3d;
  padding: 11px 13px;
  text-align: left;
  vertical-align: top;
}
th {
  background: #161b26;
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
}

.notice {
  background: #161b26;
  border: 1px solid #262d3d;
  border-radius: 12px;
  padding: 18px 20px;
  margin: 0 0 24px;
}
.notice p:last-child { margin-bottom: 0; }

.play-cta {
  display: inline-block;
  margin-top: 12px;
  padding: 14px 30px;
  background: #5b8cff;
  color: #fff;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.15s;
}
.play-cta:hover { background: #4a7bee; }

/* ---- 하단 ---- */
.site-footer {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid #262d3d;
  color: #6b7280;
  font-size: 0.86rem;
}
.site-footer a { color: #7a8494; text-decoration: none; margin-right: 16px; }
.site-footer a:hover { color: #5b8cff; }
.site-footer .copyright { margin-top: 12px; }

@media (max-width: 520px) {
  h1 { font-size: 1.5rem; }
  .page-wrap { padding: 20px 16px 60px; }
  th, td { padding: 9px 10px; }
}
