:root {
  --ink: #17121f;
  --muted: #6f6878;
  --paper: #fffaf2;
  --purple: #6f4cff;
  --pink: #ff5b9d;
  --yellow: #ffd84d;
  --line: rgba(23, 18, 31, 0.13);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100svh;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 216, 77, 0.34), transparent 26%),
    radial-gradient(circle at 90% 20%, rgba(255, 91, 157, 0.22), transparent 25%),
    linear-gradient(145deg, #fffaf2 0%, #f7f2ff 55%, #fff5fa 100%);
  font-family: Inter, "PingFang SC", "Microsoft YaHei", sans-serif;
}

a { color: inherit; text-decoration: none; }

.ambient {
  position: fixed;
  z-index: -1;
  border: 1px solid rgba(23, 18, 31, 0.08);
  pointer-events: none;
  transform: rotate(18deg);
}

.ambient-one {
  top: 34%;
  left: -80px;
  width: 210px;
  height: 210px;
  border-radius: 42px;
  background: rgba(111, 76, 255, 0.08);
}

.ambient-two {
  right: -110px;
  bottom: 4%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 216, 77, 0.16);
}

.site-header,
main,
footer {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 900;
}

.brand-dot {
  width: 28px;
  height: 28px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: radial-gradient(circle, var(--ink) 0 4px, transparent 5px);
}

.back-link {
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
  background: rgba(255, 255, 255, 0.58);
}

.hero { padding: clamp(76px, 12vw, 150px) 0 86px; }

.eyebrow,
.section-kicker,
.card-tag {
  margin: 0;
  color: var(--purple);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p { margin-top: 0; }

h1 {
  max-width: 900px;
  margin-bottom: 28px;
  font-family: Georgia, "Noto Serif SC", serif;
  font-size: clamp(55px, 9vw, 112px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

h1 em {
  color: var(--pink);
  font-weight: inherit;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.8;
}

.game-section { padding-bottom: 90px; }

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.section-heading h2 {
  margin: 8px 0 0;
  font-family: Georgia, "Noto Serif SC", serif;
  font-size: clamp(30px, 4vw, 48px);
}

.game-count {
  color: var(--muted);
  font-family: Georgia, serif;
  font-size: 34px;
}

.game-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  min-height: 390px;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 28px 80px rgba(78, 55, 101, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 34px 90px rgba(78, 55, 101, 0.18);
}

.card-art {
  position: relative;
  display: grid;
  overflow: hidden;
  place-items: center;
  background: linear-gradient(145deg, var(--purple), #9a66ff 55%, #c78cff);
}

.card-question {
  position: relative;
  z-index: 2;
  color: white;
  font-family: Georgia, serif;
  font-size: clamp(130px, 20vw, 230px);
  font-weight: 900;
  line-height: 1;
  transform: rotate(8deg);
  text-shadow: 12px 14px 0 rgba(23, 18, 31, 0.16);
}

.orbit {
  position: absolute;
  border-radius: 50%;
  background: var(--yellow);
}

.orbit-one { top: 12%; left: 11%; width: 58px; height: 58px; }
.orbit-two { right: 8%; bottom: 10%; width: 98px; height: 98px; background: var(--pink); }

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 6vw, 78px);
}

.card-content h3 {
  margin: 18px 0;
  font-family: Georgia, "Noto Serif SC", serif;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.05;
}

.card-content p {
  max-width: 520px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.play-link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 12px;
  padding: 13px 20px;
  border-radius: 999px;
  color: white;
  background: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.play-link span { font-size: 20px; transition: transform 180ms ease; }
.game-card:hover .play-link span { transform: translateX(4px); }

.more-card {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
  padding: 22px 26px;
  border: 1px dashed rgba(23, 18, 31, 0.2);
  border-radius: 20px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.34);
}

.more-card span { color: var(--pink); font-size: 30px; }
.more-card p { margin: 0; line-height: 1.6; }

footer {
  padding: 28px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

a:focus-visible { outline: 3px solid var(--pink); outline-offset: 4px; }

@media (max-width: 720px) {
  .site-header, main, footer { width: min(100% - 28px, 1120px); }
  .hero { padding: 68px 0 58px; }
  .game-card { grid-template-columns: 1fr; }
  .card-art { min-height: 260px; }
  .card-content { padding: 34px 26px 38px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
