:root {
  color-scheme: dark;
  font-family: Arial, Helvetica, sans-serif;
  background: #071321;
  color: #eaf4fc;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: radial-gradient(ellipse at 85% 0, #123447 0, transparent 45%);
}
a {
  color: #85dcfc;
  text-underline-offset: 4px;
}
a:hover {
  color: white;
}
a:focus-visible {
  outline: 3px solid #85dcfc;
  outline-offset: 5px;
}
header,
main,
footer {
  width: min(960px, calc(100% - 48px));
  margin: auto;
}
header {
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #638da244;
}
header img {
  max-width: 150px;
  object-fit: contain;
}
.play {
  display: inline-block;
  background: #dff4ff;
  color: #071321;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 800;
  padding: 18px 24px;
}
.play:hover {
  background: #82dafa;
  color: #071321;
}
main {
  padding: 64px 0;
}
.eyebrow {
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 3px;
  color: #78d5f7;
}
h1 {
  font-size: clamp(44px, 8vw, 88px);
  line-height: 0.98;
  letter-spacing: -3px;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  margin: 24px 0;
}
h2 {
  font-size: 27px;
  margin: 40px 0 15px;
  letter-spacing: -0.5px;
}
.intro {
  font-size: 21px;
  line-height: 1.6;
  color: #c3d8e7;
  max-width: 760px;
}
.hero {
  width: 100%;
  height: auto;
  margin: 24px 0 10px;
  border: 1px solid #45647a;
}
article {
  max-width: 760px;
  margin-bottom: 42px;
}
article p,
li {
  font-size: 17px;
  line-height: 1.8;
  color: #bacfdf;
}
li {
  padding: 5px 0;
}
table {
  border-collapse: collapse;
  width: 100%;
  font-size: 15px;
  line-height: 1.6;
}
th {
  text-align: left;
  color: #8edcfc;
}
td,
th {
  padding: 14px 16px;
  border-bottom: 1px solid #42617c55;
}
td:first-child {
  font-weight: 700;
  color: #edf6ff;
  min-width: 135px;
}
td {
  color: #c5d9e7;
}
.table-wrap {
  overflow: auto;
  background: #10233680;
}
.note {
  font-size: 14px;
  color: #8cabbe;
}
footer {
  padding: 28px 0 40px;
  border-top: 1px solid #638da244;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
footer p {
  font-size: 12px;
  color: #8aabbd;
  margin-top: 28px;
}
@media (max-width: 500px) {
  header,
  main,
  footer {
    width: calc(100% - 32px);
  }
  header img {
    width: 116px;
  }
  header .play {
    padding: 14px;
    font-size: 11px;
  }
  main {
    padding: 38px 0;
  }
  h1 {
    letter-spacing: -1.5px;
  }
  .intro {
    font-size: 18px;
  }
  article p,
  li {
    font-size: 16px;
  }
  footer nav {
    gap: 14px;
  }
}

/* Editorial pages share the game-information shell. */
.skip-link { position: absolute; top: -100px; left: 16px; padding: 14px; background: #dff4ff; color: #071321; z-index: 10; }
.skip-link:focus { top: 8px; }
.blog h1 { font-size: clamp(40px, 6vw, 68px); line-height: 1.05; max-width: 880px; }
.blog-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px; margin-top: 38px; }
.blog-card { margin: 0; padding-bottom: 22px; border-bottom: 1px solid #638da244; }
.blog-card img { width: 100%; height: auto; display: block; border: 1px solid #45647a; }
.blog-card h2 { margin: 14px 0; line-height: 1.2; }
.blog .post-meta { color: #9bb6c9; font-size: 14px; line-height: 1.6; }
.blog-back { display: inline-flex; align-items: center; min-height: 48px; margin: 8px 0; }
.blog footer a { min-height: 44px; display: inline-flex; align-items: center; }
.blog .table-wrap:focus-visible { outline: 3px solid #85dcfc; outline-offset: 4px; }
@media (max-width: 640px) { .blog-list { grid-template-columns: 1fr; gap: 24px; } }
