:root {
  --bg: #0c0b09;
  --panel: #15120e;
  --panel2: #1e1912;
  --text: #eee7d8;
  --muted: #b8aa90;
  --gold: #d7a23a;
  --gold2: #f0c66a;
  --line: rgba(215,162,58,.34);
  --shadow: 0 18px 50px rgba(0,0,0,.45);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--text);
  background:
    radial-gradient(circle at 50% -10%, rgba(215,162,58,.10), transparent 32rem),
    linear-gradient(#0c0b09, #100e0b 45%, #090806);
  line-height: 1.65;
}
a { color: var(--gold2); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; }
header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(12,11,9,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 68px; }
.brand { display: flex; align-items: center; gap: .7rem; font-weight: 700; letter-spacing: .04em; color: var(--text); }
.brand img { width: 42px; height: 42px; border-radius: 10px; }
nav ul { display: flex; gap: 1rem; list-style: none; padding: 0; margin: 0; flex-wrap: wrap; }
nav a { color: var(--text); font-size: .96rem; }
nav a:hover { color: var(--gold2); text-decoration: none; }
.hero { padding: 3rem 0 2rem; }
.hero-art { width: 100%; border-radius: 18px; display: block; border: 1px solid var(--line); box-shadow: var(--shadow); }
.kicker { color: var(--gold2); text-transform: uppercase; letter-spacing: .18em; font-size: .8rem; }
h1, h2, h3 { line-height: 1.15; margin-top: 0; }
h1 { font-size: clamp(2.2rem, 5vw, 4.4rem); margin-bottom: .8rem; }
h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); color: #f4e7c7; }
h3 { color: #f1ddb0; }
.lead { max-width: 760px; font-size: 1.18rem; color: #d5c9b3; }
.actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.4rem; }
.button { display: inline-block; padding: .72rem 1rem; border: 1px solid var(--gold); border-radius: 10px; color: #fff1c8; background: linear-gradient(#2a2114,#17120c); box-shadow: inset 0 0 0 1px rgba(255,255,255,.03); }
.button:hover { text-decoration: none; background: linear-gradient(#372915,#1b150c); }
.button.secondary { border-color: #6d5c3b; color: #d9ccb4; }
section { padding: 2.2rem 0; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.card { background: linear-gradient(145deg, rgba(30,25,18,.96), rgba(18,15,11,.96)); border: 1px solid var(--line); border-radius: 14px; padding: 1.2rem; box-shadow: 0 12px 30px rgba(0,0,0,.25); }
.card p:last-child { margin-bottom: 0; }
.game-card { display: grid; grid-template-columns: 220px 1fr; gap: 1.5rem; align-items: center; }
.game-card img { width: 100%; border-radius: 16px; border: 1px solid var(--line); }
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: .8rem; }
.gallery img { width: 100%; border-radius: 12px; border: 1px solid var(--line); box-shadow: 0 8px 24px rgba(0,0,0,.28); }
.prose { max-width: 840px; }
.prose h2 { margin-top: 2.2rem; }
.prose h3 { margin-top: 1.7rem; }
.prose p, .prose li { color: #d8cebb; }
.notice { border-left: 3px solid var(--gold); padding: .8rem 1rem; background: rgba(215,162,58,.07); color: #ddd0b8; border-radius: 0 8px 8px 0; }
footer { margin-top: 3rem; border-top: 1px solid var(--line); padding: 1.8rem 0 2.4rem; color: var(--muted); font-size: .92rem; }
.footer-row { display:flex; justify-content:space-between; gap:1rem; flex-wrap:wrap; }
@media (max-width: 800px) {
  .nav { align-items:flex-start; padding:.7rem 0; }
  nav ul { justify-content:flex-end; }
  .card-grid { grid-template-columns: 1fr; }
  .game-card { grid-template-columns: 1fr; }
  .game-card img { max-width: 300px; }
  .gallery { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 520px) {
  .nav { flex-direction: column; }
  nav ul { gap: .75rem; }
  .hero { padding-top: 1.5rem; }
  .gallery { grid-template-columns: 1fr; }
}
