* { box-sizing: border-box; }

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: "Noto Sans SC", "PingFang SC", sans-serif;
  color: #fff6df;
  background: #16110c;
}

.site {
  min-height: 100dvh;
  background:
    radial-gradient(70% 40% at 50% 0%, rgba(255, 196, 110, 0.14), transparent 55%),
    linear-gradient(180deg, #2a1c12, #14100c 72%);
}

.site-bar {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-family: "Cinzel", serif;
  font-size: 22px;
  color: #3d220c;
  background: linear-gradient(180deg, #ffe08a, #d7a03c);
  border: 2px solid #7a4814;
}

.brand p {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: #e8c36a;
}

.brand strong {
  display: block;
  font-size: 20px;
}

.site-bar nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.site-bar nav a {
  color: #fff6df;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 230, 180, 0.28);
}

.hero {
  width: min(1280px, calc(100% - 32px));
  margin: 28px auto 8px;
  text-align: center;
}

.kicker,
.hall-label {
  margin: 0;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 12px;
  color: #e8c36a;
}

.hero h1 {
  margin: 10px 0 0;
  font-size: clamp(34px, 6vw, 60px);
  line-height: 1.1;
}

.lede,
.site-foot p {
  margin: 12px auto 0;
  max-width: 36em;
  color: #f0d7b0;
  line-height: 1.65;
}

.hall {
  width: min(1280px, calc(100% - 32px));
  margin: 28px auto 0;
}

.hall-group {
  margin-bottom: 42px;
  scroll-margin-top: 18px;
}

.hall-group-head {
  margin-bottom: 16px;
}

.hall-label {
  margin-bottom: 6px;
}

.hall-group-title {
  margin: 0;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
}

.hall-group-copy {
  margin: 8px 0 0;
  color: #f0d7b0;
  font-weight: 700;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.game-card {
  position: relative;
  min-height: min(48vh, 440px);
  overflow: hidden;
  border-radius: 28px;
  text-decoration: none;
  color: inherit;
  border: 3px solid #3d2412;
  box-shadow: 0 16px 0 #0c0806, 0 22px 40px rgba(0, 0, 0, 0.35);
}

.game-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-card.fishing img { object-position: center 18%; }
.game-card.archery img { object-position: center 40%; }
.game-card.hospital { background: #9fe6d8; }
.game-card.hospital img { object-position: center 20%; }
.game-card.checkout { background: #d5e6d8; }
.game-card.checkout img { object-position: center 18%; }
.game-card.wardrobe { background: #f3d6e4; }
.game-card.wardrobe img { object-position: center 30%; }
.game-card.phonics { background: linear-gradient(160deg, #1d4d5c, #3f8ea3 55%, #e7b85a); }

.card-art {
  position: absolute;
  inset: 0;
}

.phonics-art {
  display: grid;
  grid-template-columns: 1fr 1fr;
  place-items: center;
  gap: 12px;
  padding: 36px 28px 140px;
  font-family: "Cinzel", "Noto Sans SC", serif;
  font-size: clamp(28px, 4vw, 42px);
}

.phonics-art span {
  display: grid;
  place-items: center;
  min-width: 72px;
  min-height: 72px;
  padding: 8px 12px;
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.92);
  color: #1d4d5c;
  border: 3px solid #0f3340;
}

.game-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px 22px 24px;
  background: linear-gradient(180deg, transparent, rgba(12, 8, 5, 0.9) 38%);
}

.tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: #3d220c;
  background: #f0c85c;
}

.game-copy h2 {
  margin: 10px 0 0;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.15;
}

.fishing h2,
.checkout h2,
.wardrobe h2 { font-family: "Fredoka", "Noto Sans SC", sans-serif; }
.archery h2,
.phonics h2 { font-family: "Cinzel", "Noto Sans SC", serif; }
.hospital h2 { font-family: "Noto Sans SC", sans-serif; }

.game-copy p {
  margin: 10px 0 0;
  max-width: 30em;
  color: #f0d7b0;
  line-height: 1.55;
}

.game-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.game-copy li {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 13px;
  background: rgba(20, 12, 8, 0.45);
  border: 1px solid rgba(255, 230, 180, 0.2);
}

.game-copy strong {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #0d7a74;
  border: 2px solid #083c38;
}

.archery .game-copy strong {
  background: #9a4a1c;
  border-color: #4a220c;
}

.hospital .game-copy strong {
  background: #117b75;
  border-color: #0a4542;
}

.checkout .game-copy strong {
  background: #2f8d62;
  border-color: #1f6046;
}

.phonics .game-copy strong {
  background: #285f74;
  border-color: #143844;
}

.wardrobe .game-copy strong {
  background: #c45a7a;
  border-color: #6d2a40;
}

.game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 0 #0c0806, 0 28px 48px rgba(0, 0, 0, 0.4);
}

.site-foot {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 36px;
  text-align: center;
}

@media (max-width: 1100px) {
  .game-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .game-grid { grid-template-columns: 1fr; }
  .game-card { min-height: 420px; }
  .site-bar { flex-wrap: wrap; }
}
