.app-shell {
  min-height: 100vh;
  padding: var(--space-4) 0 0;
  display: flex;
  flex-direction: column;
}

.site-footer {
  margin-top: auto;
  padding: var(--space-6) 0 var(--space-5);
  text-align: center;
}

.site-footer__copy {
  margin: 0;
  font-size: 0.78rem;
  color: var(--text-muted, #94a3b8);
  letter-spacing: 0.01em;
}

.container {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
}

.page-shell {
  display: block;
  flex: 1;
}

/* ── Game page hero (shared) ── */
/* ── 게임 카드 내부 상단 타이틀 영역 ── */
.game-card-hero {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-bottom: var(--space-4);
  margin-bottom: var(--space-4);
  border-bottom: 1px solid rgba(23, 32, 51, 0.07);
}

.game-card-hero .hero-note {
  align-self: flex-start;
  margin-bottom: 2px;
}

.game-hero__title {
  margin: 0;
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.2;
}

.game-hero__body {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 560px;
}

@media (min-width: 768px) {
  .app-shell {
    padding-top: var(--space-6);
  }

  .container {
    width: min(calc(100% - 48px), var(--max-width));
  }
}
