.shell { min-height: 100vh; display: flex; flex-direction: column; }
main { flex: 1; }

.hero { padding: 30px 0 46px; }
.hero-content { display: grid; grid-template-columns: 1.5fr 1fr; align-items: end; gap: 35px; padding-top: 45px; }
.hero h1 { margin: 24px 0 0; font: 400 clamp(38px, 5.5vw, 72px)/1.25 var(--display); letter-spacing: .015em; }
.hero h1 span { color: var(--teal-ink); }
.hero h1 em { color: var(--red); font-style: normal; }
.lead { margin: 0 0 5px; padding-left: 25px; border-left: 3px solid var(--teal); color: var(--muted); line-height: 1.9; }

.catalog { padding: 24px 0 54px; border-top: 2px solid var(--ink); }
.catalog-head { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-bottom: 22px; }
.catalog-head h2 { margin: 0; font: 400 22px/1.5 var(--display); }
.catalog-head > span { display: flex; align-items: center; gap: 7px; color: var(--muted); font-size: 12px; }
.catalog-head i { width: 7px; height: 7px; border-radius: 50%; background: var(--red); }

.grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.game-card { min-width: 0; padding: 27px 30px 0; border: 2px solid var(--ink); border-radius: 6px 16px 6px 6px; background: var(--surface); box-shadow: 5px 5px 0 var(--ink); transition: transform .18s, box-shadow .18s, background .18s; }
a.game-card:hover { transform: translate(-2px, -3px); background: #F6F8EC; box-shadow: 7px 8px 0 var(--ink); }
.card-top { display: flex; justify-content: space-between; align-items: center; gap: 14px; }
.number { color: var(--blue); font: 12px/1.5 var(--mono); letter-spacing: .06em; }
.card-tag { padding: 3px 9px; border: 1px solid var(--red); border-radius: 3px; color: #9E4450; font-size: 12px; }
.game-icon { display: grid; place-items: center; width: 62px; height: 62px; margin-top: 30px; border: 2px solid var(--ink); border-radius: 9px 5px 11px 5px; background: var(--yellow); transform: rotate(-4deg); }
.game-icon svg { width: 43px; height: 43px; }
.game-card h3 { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin: 20px 0 10px; font: 400 clamp(26px, 3vw, 38px)/1.4 var(--display); letter-spacing: .01em; }
.card-arrow { color: var(--red); font-size: 42px; font-weight: 400; }
.game-card p { min-height: 58px; margin: 0 0 26px; color: var(--muted); font-size: 16px; line-height: 1.8; }
.card-bottom { display: flex; justify-content: space-between; align-items: center; gap: 14px; padding: 17px 0; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; }
.card-bottom b { color: var(--blue); font-size: 14px; }
.card-bottom b span { margin-left: 16px; }

.future { border-style: dashed; border-color: #9A9F9A; background: transparent; box-shadow: none; }
.future .card-tag { border-color: var(--line); color: var(--muted); }
.future-icon { display: grid; place-items: center; width: 62px; height: 62px; margin-top: 30px; color: var(--teal); font-size: 52px; line-height: 1; }
.future h3 { color: var(--muted); }
.site-footer { border-top: 1px solid var(--line); }

@media (max-width: 700px) {
  .home-link { gap: 8px; white-space: nowrap; font-size: 14px; }
  .hero { padding: 26px 0 32px; }
  .eyebrow { font-size: 12px; letter-spacing: 0; }
  .eyebrow span:last-child { display: none; }
  .hero-content { grid-template-columns: 1fr; gap: 24px; padding-top: 30px; }
  .lead { padding-left: 16px; font-size: 16px; }
  .lead br { display: none; }
  .grid { grid-template-columns: 1fr; gap: 24px; }
  .game-card { padding: 22px 22px 0; }
  .game-card p { min-height: 0; }
  .catalog { padding-bottom: 36px; }
}
