:root {
  --felt: #1e6b3a;
  --felt-dark: #14532b;
  --cream: #f6f1e4;
  --ink: #1c1a17;
  --muted: #5a5650;
  --rule: #e2dccb;
  --accent: #b03a2e;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--felt); text-decoration: underline; text-underline-offset: 2px; }
a:hover { color: var(--felt-dark); }

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

header.site {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 32px;
}

header.site .logo {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: var(--felt);
  display: flex; align-items: center; justify-content: center;
  color: var(--cream);
  font-weight: 700;
  font-size: 18px;
  font-family: Georgia, "Times New Roman", serif;
}

header.site .name {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.2px;
}

nav.site {
  margin-left: auto;
  display: flex;
  gap: 18px;
  font-size: 14px;
}

nav.site a { text-decoration: none; color: var(--muted); }
nav.site a:hover { color: var(--ink); }
nav.site a.active { color: var(--ink); font-weight: 600; }

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  line-height: 1.15;
  margin: 0 0 12px;
  color: var(--ink);
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  margin: 36px 0 10px;
}

h3 {
  font-size: 16px;
  margin: 24px 0 6px;
}

p, li { font-size: 16px; }

.tagline {
  font-size: 18px;
  color: var(--muted);
  margin: 0 0 28px;
}

.hero {
  background: var(--felt);
  color: var(--cream);
  border-radius: 14px;
  padding: 36px 28px;
  margin-bottom: 32px;
}

.hero h1 { color: var(--cream); }
.hero .tagline { color: #d8e6dc; }

.games {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
  margin: 18px 0 4px;
  padding: 0;
  list-style: none;
}

.games li {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 14px;
}

.stores {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.store-btn {
  display: inline-block;
  background: var(--cream);
  color: var(--ink);
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}

.store-btn:hover { background: #fff; color: var(--felt-dark); }

dl.faq dt {
  font-weight: 600;
  margin-top: 18px;
}

dl.faq dd {
  margin: 4px 0 0;
  color: #2c2a26;
}

.contact-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 20px 22px;
  margin: 22px 0;
}

.contact-card .email {
  font-size: 18px;
  font-weight: 600;
}

footer.site {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
  font-size: 13px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

@media (max-width: 540px) {
  h1 { font-size: 30px; }
  .hero { padding: 28px 20px; }
}
