/* Páginas de texto (arquivo, como jogar, sobre, privacidade). Mesmas cores do jogo. */
:root { --bg: #0b1410; --card: #142019; --card2: #1b2a22; --line: #27392f; --text: #eef3ef; --muted: #93a59b; --accent: #3ddc84; }
* { box-sizing: border-box; }
html, body { margin: 0; background: var(--bg); color: var(--text); font-family: -apple-system, "Segoe UI", Roboto, Inter, sans-serif; line-height: 1.6; }
.pag { max-width: 720px; margin: 0 auto; padding: 16px 16px 40px; }
header { display: flex; justify-content: space-between; align-items: center; padding: 6px 0 18px; }
.marca { font-size: 20px; font-weight: 800; color: var(--text); text-decoration: none; }
.marca span, a, .resp { color: var(--accent); }
.btn { background: var(--accent); color: #062114; font-weight: 700; padding: 8px 16px; border-radius: 10px; text-decoration: none; }
h1 { font-size: 26px; line-height: 1.25; margin: 4px 0 12px; }
h2 { font-size: 18px; line-height: 1.35; margin: 4px 0 8px; }
.muted, small { color: var(--muted); }
.card { background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 16px 18px; margin: 14px 0; }
.card p { margin: 6px 0; }
.qnum { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .5px; }
.resp { font-weight: 700; }
.lista { list-style: none; padding: 0; }
.lista li { display: flex; justify-content: space-between; gap: 10px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.lista a { text-decoration: none; }
.lista b { color: var(--muted); margin-right: 6px; }
.navdias { display: flex; justify-content: space-between; margin: 20px 0; font-weight: 700; }
footer { border-top: 1px solid var(--line); margin-top: 28px; padding-top: 14px; color: var(--muted); font-size: 14px; }
