/* LVLONE Gaming — shared site styles. Brand: deep navy ground, signal-orange accent,
   warm cream type. System stack only (no font CDNs). */
:root {
  --navy: #0c1120;
  --navy-2: #131b30;
  --panel: #182238;
  --line: #26304b;
  --orange: #f0512a;
  --orange-soft: #ff7a4d;
  --cream: #f2ede4;
  --sub: #93a4c2;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--navy);
  color: var(--cream);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--orange-soft); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { max-width: 960px; margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 720px; }

header.site {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
header.site .wrap { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
.brand {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: .14em;
  color: var(--cream);
}
.brand em { font-style: normal; color: var(--orange); }
nav.site a { font-size: 13px; letter-spacing: .08em; color: var(--sub); margin-left: 22px; }
nav.site a:hover { color: var(--cream); text-decoration: none; }

.hero { padding: 88px 0 64px; text-align: center; }
.hero h1 {
  font-size: clamp(34px, 6vw, 56px);
  font-weight: 800;
  letter-spacing: .04em;
  line-height: 1.12;
  text-wrap: balance;
}
.hero h1 em { font-style: normal; color: var(--orange); }
.hero p.lede { margin: 18px auto 0; max-width: 54ch; color: var(--sub); font-size: 17px; }

.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  color: var(--orange);
  text-transform: uppercase;
}

.game-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--navy-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  margin: 26px 0 64px;
}
.game-card .art { min-height: 300px; background-size: cover; background-position: center; }
.game-card .body { padding: 40px 36px; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; gap: 14px; }
.game-card h2 { font-size: 28px; font-weight: 800; letter-spacing: .02em; }
.game-card p { color: var(--sub); font-size: 15px; }
.badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid var(--orange);
  color: var(--orange);
}
.btn {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .05em;
  padding: 12px 26px;
  border-radius: 8px;
  margin-top: 8px;
}
.btn:hover { background: var(--orange-soft); text-decoration: none; }
.btn.ghost { background: transparent; border: 1px solid var(--line); color: var(--cream); }

.soon {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin: 26px 0 80px;
}
.soon .cell {
  border: 1px dashed var(--line);
  border-radius: 12px;
  padding: 30px 26px;
  color: var(--sub);
}
.soon .cell strong { color: var(--cream); display: block; margin-bottom: 6px; letter-spacing: .04em; }

.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; margin: 40px 0; }
.features .f { background: var(--navy-2); border: 1px solid var(--line); border-radius: 12px; padding: 24px 22px; }
.features .f h3 { font-size: 14px; letter-spacing: .1em; color: var(--orange); margin-bottom: 8px; }
.features .f p { font-size: 14px; color: var(--sub); }

.shots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 8px 0 56px; }
.shots img { width: 100%; border-radius: 10px; border: 1px solid var(--line); display: block; }
@media (max-width: 700px) {
  .game-card { grid-template-columns: 1fr; }
  .shots { grid-template-columns: 1fr; }
}

/* policy documents */
article.doc { padding: 56px 0 80px; }
article.doc h1 { font-size: 30px; font-weight: 800; letter-spacing: .02em; margin-bottom: 4px; }
article.doc .updated { color: var(--sub); font-size: 13px; margin-bottom: 34px; }
article.doc h2 { font-size: 19px; font-weight: 700; margin: 34px 0 10px; letter-spacing: .02em; }
article.doc p, article.doc li { color: #cfd6e4; font-size: 15px; }
article.doc ul { padding-left: 22px; margin: 10px 0; }
article.doc li { margin: 6px 0; }
article.doc strong { color: var(--cream); }
article.doc table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 14px; }
article.doc th, article.doc td { text-align: left; padding: 9px 12px; border: 1px solid var(--line); vertical-align: top; }
article.doc th { background: var(--navy-2); color: var(--cream); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; }
article.doc td { color: #cfd6e4; }
.doc-wrap-table { overflow-x: auto; }

footer.site {
  border-top: 1px solid var(--line);
  padding: 30px 0 44px;
  color: var(--sub);
  font-size: 13px;
}
footer.site .wrap { display: flex; flex-wrap: wrap; gap: 10px 28px; align-items: baseline; justify-content: space-between; }
footer.site a { color: var(--sub); }
footer.site a:hover { color: var(--cream); }
