:root {
  --night: #15110d;
  --panel: #1b1610;
  --parch: #e7dcc2;
  --muted: #9a875f;
  --rule: #3a2f24;
  --amber: #e8a33d;
  --ember: #b5651d;
  --blood: #7a1f1f;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--night);
  background-image: radial-gradient(ellipse 70% 55% at 50% 0%, rgba(232,163,61,0.10), rgba(21,17,13,0) 70%);
  background-attachment: fixed;
  color: var(--parch);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.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: 42px; height: 42px;
  border-radius: 9px;
  overflow: hidden;
  flex: 0 0 auto;
  border: 1px solid rgba(232,163,61,0.40);
}

header.site .logo img { width: 100%; height: 100%; display: block; }

header.site .name {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.3px;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--parch);
}

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(--parch); }
nav.site a.active { color: var(--amber); font-weight: 600; }

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

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

h3 { font-size: 16px; margin: 24px 0 6px; color: var(--parch); }

p, li { font-size: 16px; color: var(--parch); }

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

.hero {
  background: var(--panel);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 36px 28px;
  margin-bottom: 32px;
  box-shadow: inset 0 0 60px rgba(232,163,61,0.06);
}

.hero h1 { color: var(--amber); }
.hero .tagline { color: #cdbf9f; }

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

.games li {
  background: rgba(232,163,61,0.06);
  border: 1px solid rgba(232,163,61,0.18);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 14px;
  color: var(--parch);
}

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

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

.store-btn:hover { background: #f1b95b; color: var(--night); }

dl.faq dt { font-weight: 600; margin-top: 18px; color: var(--amber); }
dl.faq dd { margin: 4px 0 0; color: var(--parch); }

.contact-card {
  background: var(--panel);
  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; }
}
