:root {
  color-scheme: light;
  --bg: #f7f7f2;
  --panel: #ffffff;
  --text: #181b21;
  --muted: #5d6472;
  --line: #dfe3e8;
  --accent: #2f7a67;
  --accent-2: #c46a32;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header,
.site-footer {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
}

.site-footer {
  border-top: 1px solid var(--line);
  border-bottom: 0;
}

.wrap {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
}

.brand {
  font-weight: 800;
  color: var(--text);
}

.nav-links,
.footer-links,
.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding: 0;
  list-style: none;
}

.hero {
  padding: 56px 0 24px;
}

.hero p,
.lede {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
}

h1 {
  max-width: 880px;
  margin: 0 0 14px;
  font-size: clamp(2rem, 6vw, 4.2rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h2 {
  margin: 0 0 14px;
  font-size: 1.55rem;
  line-height: 1.2;
}

h3 {
  margin: 18px 0 6px;
  font-size: 1.08rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 22px 0 42px;
}

.card,
.content-section {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 20px;
}

.card p,
.content-section p {
  color: var(--muted);
}

.meta {
  color: var(--muted);
  font-size: 0.92rem;
}

.game-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
  gap: 22px;
  align-items: start;
  margin-bottom: 44px;
}

.placeholder-art {
  display: grid;
  min-height: 220px;
  place-items: center;
  border: 1px dashed #aeb7c2;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(47, 122, 103, 0.14), transparent),
    linear-gradient(45deg, rgba(196, 106, 50, 0.14), transparent);
  color: var(--muted);
  text-align: center;
  padding: 24px;
}

.section-list {
  padding-left: 20px;
}

.faq details {
  border-top: 1px solid var(--line);
  padding: 14px 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
}

.ad-slot {
  margin: 22px 0;
  border: 1px dashed #c8ced6;
  border-radius: 8px;
  padding: 16px;
  color: var(--muted);
  text-align: center;
}

main {
  padding-bottom: 46px;
}

@media (max-width: 760px) {
  .nav,
  .game-layout {
    display: block;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    margin-top: 0;
  }
}
.card-image,
.hero-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  background: #f4f7fb;
  border: 1px solid #dfe3e8;
}

.card-image {
  margin-bottom: 14px;
}
