/* Shared styling for the static content pages (how-to-play, strategies,
   privacy, about). The game page (index.html) keeps its own inline copy
   of these rules so it never depends on a second network request before
   the game itself can start. */

html, body {
  margin: 0;
  min-height: 100%;
  background-color: #111424;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.05) 1.3px,
    transparent 1.3px
  );
  background-size: 26px 26px;
  color: #e7e9f5;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  line-height: 1.7;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  padding: 18px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(13, 15, 26, 0.85);
}

.site-nav a {
  color: #2ee6ff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95em;
}

.site-nav a:hover {
  text-shadow: 0 0 12px rgba(46, 230, 255, 0.6);
}

.page-wrap {
  max-width: 760px;
  margin: 28px auto 40px;
  padding: 32px 28px 48px;
  background: rgba(13, 15, 26, 0.72);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.page-wrap h1,
.page-wrap h2,
.page-wrap h3 {
  color: #2ee6ff;
  text-shadow: 0 0 12px rgba(46, 230, 255, 0.35);
}

.page-wrap h1 {
  font-size: 1.9em;
  margin-bottom: 0.3em;
}

.page-wrap h2 {
  font-size: 1.3em;
  margin-top: 1.8em;
}

.page-wrap h3 {
  font-size: 1.05em;
  margin-top: 1.4em;
  color: #b388ff;
  text-shadow: 0 0 12px rgba(179, 136, 255, 0.3);
}

.page-wrap p,
.page-wrap li {
  color: #c7cbe0;
}

.page-wrap a {
  color: #b388ff;
}

.play-cta {
  display: inline-block;
  margin-top: 28px;
  padding: 12px 26px;
  border-radius: 999px;
  border: 1px solid rgba(46, 230, 255, 0.55);
  color: #2ee6ff !important;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 0 18px rgba(46, 230, 255, 0.2);
}

.play-cta:hover {
  box-shadow: 0 0 26px rgba(46, 230, 255, 0.4);
}

.site-footer {
  max-width: 760px;
  margin: 0 auto;
  padding: 24px 28px 56px;
  color: #8b90a8;
  font-size: 0.88em;
  text-align: center;
}

.site-footer a {
  color: #8b90a8;
  margin: 0 8px;
}
