/* BURST GEAR 法的情報ページ共通スタイル（ゲーム本体とは独立した静的ページ） */
:root {
  --bg: #0b0d12;
  --panel: #0f1620;
  --border: #25384a;
  --text: #dfe9f2;
  --muted: #9fb6c8;
  --accent: #5fd1e6;
  --gold: #ffd24a;
  --warn-bg: #2a1d10;
  --warn-border: #6b4a1f;
  --warn-text: #ffce8a;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Share Tech Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, "Noto Sans JP", sans-serif;
  line-height: 1.8;
  -webkit-text-size-adjust: 100%;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: 28px 20px 80px;
}

header.site {
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
  padding-bottom: 16px;
}
header.site .brand {
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
  color: #eaf6ff;
  font-size: 18px;
}
header.site .back { font-size: 13px; color: var(--muted); display: inline-block; margin-bottom: 10px; }

h1 {
  font-family: "Orbitron", sans-serif;
  font-size: 24px;
  color: #eaf6ff;
  margin: 8px 0 6px;
  letter-spacing: 1px;
}
h2 {
  font-size: 17px;
  color: var(--accent);
  margin: 30px 0 8px;
  border-left: 3px solid var(--accent);
  padding-left: 10px;
}
p, li { font-size: 14px; }
.muted { color: var(--muted); }
.small { font-size: 12px; }
.updated { color: var(--muted); font-size: 12px; margin-top: 2px; }

.notice {
  background: var(--warn-bg);
  border: 1px solid var(--warn-border);
  color: var(--warn-text);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 13px;
  margin: 18px 0;
}
.placeholder {
  color: var(--gold);
  background: rgba(255, 210, 74, 0.1);
  border: 1px dashed rgba(255, 210, 74, 0.5);
  border-radius: 4px;
  padding: 1px 6px;
  font-size: 13px;
}

table.kv {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
table.kv th, table.kv td {
  text-align: left;
  vertical-align: top;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
table.kv th {
  width: 32%;
  color: var(--muted);
  font-weight: 400;
  background: #0c121a;
}
table.kv tr:last-child th, table.kv tr:last-child td { border-bottom: none; }

table.price { width: 100%; border-collapse: collapse; margin: 12px 0; }
table.price th, table.price td {
  border: 1px solid var(--border);
  padding: 8px 12px;
  font-size: 14px;
  text-align: right;
}
table.price th { background: #0c121a; color: var(--muted); font-weight: 400; }
table.price td.l, table.price th.l { text-align: left; }

ul.links { list-style: none; padding: 0; }
ul.links li { margin: 8px 0; }
ul.links a { font-size: 15px; }

footer.site {
  margin-top: 48px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 12px;
}
footer.site a { color: var(--muted); }
