:root {
  color-scheme: light;
  --ink: #162c25;
  --muted: #52655c;
  --green: #123b32;
  --gold: #bc914b;
  --line: #d7dfd5;
  --paper: #fbfcf8;
}
* { box-sizing: border-box; }
html { scroll-padding-top: 1.5rem; }
body { margin: 0; background: var(--paper); color: var(--ink); font: 17px/1.65 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
a { color: #17543d; text-underline-offset: .2em; overflow-wrap: anywhere; }
a:hover { color: #6e501c; }
a:focus-visible, summary:focus-visible, [tabindex]:focus-visible { outline: 3px solid var(--gold); outline-offset: 5px; }
p { margin: 0 0 1rem; }
h1, h2, h3 { line-height: 1.2; overflow-wrap: anywhere; }
h1 { letter-spacing: -.035em; font-size: clamp(2.2rem, 5vw, 3.5rem); margin: 0 0 1.2rem; }
h2 { font-size: 1.35rem; margin: 0 0 1rem; }
h3 { font-size: 1.05rem; margin: 1.5rem 0 .65rem; }
.skip-link { position: absolute; top: -100px; left: 1rem; padding: .75rem; background: white; z-index: 2; }
.skip-link:focus { top: 1rem; }
.site-header { background: var(--green); border-bottom: 3px solid var(--gold); color: white; }
.header-inner { max-width: 1040px; margin: auto; padding: 1.3rem 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.brand { color: white; text-decoration: none; letter-spacing: .12em; font-weight: 750; font-size: .95rem; }
.brand span { display: block; color: #d9e3d9; font-size: .73rem; font-weight: 400; letter-spacing: .03em; margin-top: .15rem; }
.brand:hover { color: #eed7a8; }
nav { display: flex; gap: 1.5rem; flex-wrap: wrap; }
nav a { color: #e2e9e1; text-decoration: none; padding: .3rem 0; font-size: .92rem; }
nav a:hover, nav a[aria-current="page"] { color: #ffe1a7; text-decoration: underline; }
main { max-width: 900px; margin: 0 auto; padding: 3.5rem 1.5rem; }
.intro { padding: .75rem 0 2rem; max-width: 740px; }
.intro h1 { font-size: clamp(2.6rem, 6vw, 4.5rem); line-height: 1.06; }
.intro h1 span { color: var(--green); }
.eyebrow { font-size: .75rem; letter-spacing: .15em; text-transform: uppercase; font-weight: 750; color: var(--muted); margin-bottom: 1.4rem; }
.lead { font-size: 1.2rem; color: var(--muted); margin-bottom: 1.2rem; }
.game-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.5rem; }
.game-tags span { border: 1px solid var(--line); border-radius: 4px; padding: .3rem .7rem; font-size: .85rem; }
.notice { background: #f0f3e9; border-left: 3px solid var(--gold); padding: 1.3rem 1.5rem; margin: 1.5rem 0 2.5rem; }
.notice > :last-child { margin-bottom: 0; }
.notice strong { display: block; margin-bottom: .5rem; }
.notice p { font-size: .94rem; }
.support-section { margin-top: 3rem; }
.contact-link { display: inline-block; font-weight: 650; margin: .3rem 0 1rem; }
.document-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; margin-top: 1rem; }
.document-links a { display: block; border: 1px solid var(--line); border-radius: 6px; padding: 1.2rem; text-decoration: none; }
.document-links a:hover { border-color: var(--green); }
.document-links strong { display: block; margin-bottom: .3rem; }
.document-links > a > span { color: var(--muted); font-size: .85rem; line-height: 1.5; display: block; }
.updated { font-size: .85rem; color: var(--muted); margin: 0 0 2rem; }
.legal { max-width: 920px; }
.legal article section { padding-top: 1.6rem; margin-top: 1rem; border-top: 1px solid var(--line); }
.legal article p { max-width: 80ch; }
.contents { background: #f0f3e9; border: 1px solid var(--line); padding: 1rem 1.25rem; margin: 1rem 0 2rem; border-radius: 4px; }
summary { cursor: pointer; font-weight: 650; }
.contents ol { padding-left: 1.5rem; font-size: .94rem; }
.contents li { padding: .15rem 0; }
.table-scroll { overflow-x: auto; margin: 1rem 0 1.8rem; border: 1px solid var(--line); }
table { border-collapse: collapse; width: 100%; min-width: 560px; font-size: .86rem; text-align: left; }
caption { text-align: left; padding: .8rem; font-weight: 650; }
th, td { padding: .85rem; border-top: 1px solid var(--line); vertical-align: top; }
thead th { background: #edf1e7; }
tbody th { width: 20%; }
.back-top { padding-top: 1.75rem; margin-top: 2rem; border-top: 1px solid var(--line); font-size: .9rem; }
.site-footer { max-width: 1000px; margin: 1rem auto 0; padding: 1.8rem 1.5rem 2.4rem; border-top: 1px solid var(--line); color: var(--muted); font-size: .82rem; display: flex; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.site-footer p { margin: 0; }
@media (max-width: 560px) {
  body { font-size: 16px; }
  .header-inner { padding: 1.1rem 1.25rem; gap: 1rem; }
  nav { gap: 1.3rem; }
  main { padding: 2.4rem 1.25rem; }
  .document-links { grid-template-columns: 1fr; }
  .notice { padding: 1rem 1.1rem; }
  .site-footer { display: block; padding-inline: 1.25rem; }
  .site-footer p { margin-top: 1rem; }
}
@media print {
  body { color: black; background: white; font-size: 11pt; }
  .site-header, .contents, .back-top, .skip-link { display: none; }
  main { max-width: none; padding: 0; }
  h1, h2, h3 { break-after: avoid; }
  a { color: black; }
  .notice, .site-footer { background: none; }
  .table-scroll { overflow: visible; }
  table { min-width: 0; }
}

