/* Shared styling for the /games and /news content hub pages.
   Same palette as the game + legal pages: navy, gold headings, blue links.
   No JS, no external fonts — these pages exist to load instantly. */
:root { color-scheme: dark; }
* { box-sizing: border-box; }
body { margin: 0; background: #0d1024; color: #eef0ff; font: 16px/1.65 system-ui, sans-serif; }
main { max-width: 820px; margin: 0 auto; padding: 28px 20px 64px; }
h1 { font-size: 30px; line-height: 1.2; margin: 20px 0 8px; }
h2 { font-size: 20px; margin: 34px 0 10px; color: #ffd166; }
h3 { font-size: 16px; margin: 22px 0 6px; }
p, li { color: #c9cede; }
b, strong { color: #eef0ff; }
a { color: #57b7ff; }
.lede { font-size: 18px; color: #dfe3f5; }
.updated, .byline { color: #8b93b8; font-size: 13px; }
.crumbs { font-size: 13px; color: #8b93b8; margin: 4px 0 0; }
.crumbs a { color: #8b93b8; }

header.site { display: flex; align-items: center; gap: 10px; padding: 14px 20px; border-bottom: 1px solid #232a4d; }
header.site .brand { font-weight: 800; font-size: 17px; text-decoration: none; color: #eef0ff; }
header.site nav { margin-left: auto; display: flex; align-items: center; gap: 16px; font-size: 14px; }
header.site nav a { text-decoration: none; color: #c9cede; }
header.site nav a:hover { color: #eef0ff; }
header.site nav a.cta { background: #ffd166; color: #17123a; font-weight: 800; padding: 7px 14px; border-radius: 9px; }

.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 14px; margin: 18px 0; padding: 0; list-style: none; }
.card { background: #141936; border: 1px solid #232a4d; border-radius: 14px; padding: 16px; }
.card h3 { margin: 0 0 4px; font-size: 17px; }
.card p { margin: 0 0 10px; font-size: 14px; }
.card .tag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: #8b93b8; border: 1px solid #232a4d; border-radius: 99px; padding: 2px 9px; margin-bottom: 8px; }
.card a.go { font-weight: 700; text-decoration: none; }

.callout { background: #141936; border-left: 3px solid #ffd166; border-radius: 0 10px 10px 0; padding: 12px 16px; margin: 18px 0; }
.callout p { margin: 0; }

details.faq { border-bottom: 1px solid #232a4d; padding: 10px 0; }
details.faq summary { cursor: pointer; font-weight: 700; color: #eef0ff; }
details.faq p { margin: 8px 0 2px; }

table { border-collapse: collapse; width: 100%; margin: 14px 0; font-size: 14px; }
th, td { text-align: left; padding: 8px 10px; border-bottom: 1px solid #232a4d; vertical-align: top; }
th { color: #ffd166; }

footer.site { border-top: 1px solid #232a4d; padding: 20px; color: #8b93b8; font-size: 13px; }
footer.site .cols { max-width: 820px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 24px; justify-content: space-between; }
footer.site nav { display: flex; flex-wrap: wrap; gap: 14px; }
footer.site a { color: #8b93b8; }

@media (max-width: 560px) {
  h1 { font-size: 24px; }
  header.site nav { gap: 10px; font-size: 13px; }
}
