:root {
  --bg: #1e1612;
  --bg-card: #2a2019;
  --gold: #d6b060;
  --gold-dim: #a6844a;
  --text: #e8ddcc;
  --text-dim: #b3a48d;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", -apple-system, system-ui, sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: 760px; margin: 0 auto; padding: 3rem 1.5rem 5rem; }
header.site {
  display: flex; align-items: center; gap: 0.9rem;
  padding: 1.1rem 1.5rem; border-bottom: 1px solid #3a2d21;
}
header.site img { width: 40px; height: 40px; border-radius: 9px; }
header.site a.brand {
  font-family: "Cinzel", serif; font-size: 1.25rem; letter-spacing: 0.14em;
  color: var(--gold); text-decoration: none;
}
header.site nav { margin-left: auto; display: flex; gap: 1.2rem; flex-wrap: wrap; }
header.site nav a { color: var(--text-dim); text-decoration: none; font-size: 0.85rem; letter-spacing: 0.05em; }
header.site nav a:hover { color: var(--gold); }
h1 {
  font-family: "Cinzel", serif; font-weight: 600; color: var(--gold);
  letter-spacing: 0.1em; font-size: 1.9rem; margin-bottom: 0.4rem;
}
.updated { color: var(--text-dim); font-size: 0.85rem; margin-bottom: 2.2rem; }
h2 {
  font-family: "Cinzel", serif; font-weight: 600; color: var(--gold);
  letter-spacing: 0.06em; font-size: 1.15rem; margin: 2.2rem 0 0.6rem;
}
p, li { color: var(--text); margin-bottom: 0.8rem; font-size: 0.97rem; }
ul { padding-left: 1.3rem; margin-bottom: 1rem; }
a { color: var(--gold); }
.rule {
  display: flex; align-items: center; gap: 0.6rem; margin: 1.4rem 0 2rem;
}
.rule::before, .rule::after { content: ""; flex: 1; height: 1px; background: #4a3a28; }
.rule span { width: 9px; height: 9px; background: var(--gold-dim); transform: rotate(45deg); }
footer {
  border-top: 1px solid #3a2d21; padding: 1.6rem; text-align: center;
  color: var(--text-dim); font-size: 0.8rem;
}
footer a { color: var(--text-dim); margin: 0 0.6rem; }
/* landing */
.hero { text-align: center; padding: 3.5rem 1.5rem 2rem; }
.hero img.mark { width: 148px; height: 148px; border-radius: 30px; box-shadow: 0 12px 40px rgba(0,0,0,0.5); }
.hero h1 { font-size: 2.6rem; margin-top: 1.6rem; }
.hero .tag { color: var(--text-dim); letter-spacing: 0.28em; font-size: 0.8rem; text-transform: uppercase; margin-top: 0.5rem; }
.games {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1rem; max-width: 900px; margin: 2.5rem auto 0; padding: 0 1.5rem;
}
.game {
  background: var(--bg-card); border: 1px solid #3a2d21; border-radius: 12px; padding: 1.1rem 1.2rem; text-align: left;
}
.game b { color: var(--gold); font-family: "Cinzel", serif; letter-spacing: 0.04em; }
.game small { color: var(--text-dim); display: block; margin-top: 0.25rem; font-size: 0.82rem; }
.cta { margin: 2.6rem 0 1rem; color: var(--text-dim); font-size: 0.9rem; }
