:root {
  --ink: #1b1208;
  --ink-2: #52361c;
  --paper: #fff0bf;
  --paper-2: #fff8df;
  --mint: #dff9e4;
  --sky: #ccefff;
  --gold: #f6bd34;
  --gold-2: #d88918;
  --orange: #ff6840;
  --blue: #2588ff;
  --green: #1ed979;
  --purple: #7b36ff;
  --line: #25160a;
  --shadow: 0 8px 0 var(--line);
  --soft-shadow: 0 22px 50px rgba(42, 27, 18, 0.16);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 18% 4%, rgba(255, 255, 255, 0.84), transparent 18rem),
    radial-gradient(circle at 80% 10%, rgba(30, 217, 121, 0.18), transparent 22rem),
    linear-gradient(135deg, #fff0bd 0%, #f7e0a0 39%, #dcf8df 75%, #c8efff 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 30;
  opacity: .22;
  background-image:
    linear-gradient(rgba(33, 20, 12, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33, 20, 12, .035) 1px, transparent 1px);
  background-size: 18px 18px;
  mask-image: linear-gradient(180deg, black, transparent 75%);
}

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

img {
  display: block;
  max-width: 100%;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 64px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 0 max(22px, calc((100vw - var(--max)) / 2));
  border-bottom: 3px solid rgba(33, 20, 12, .08);
  background: rgba(255, 248, 220, .86);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  width: 168px;
}

.brand img {
  width: 168px;
  height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  filter: drop-shadow(0 3px 0 rgba(37, 22, 10, .55));
}

.topbar nav {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.topbar nav a,
.mini-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border: 3px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  color: var(--ink);
  font-size: 13px;
  font-weight: 950;
  box-shadow: 0 3px 0 var(--line);
  white-space: nowrap;
}

.mini-cta,
.button.primary {
  background: #12100d;
  color: #fff9dd;
}

.button.secondary {
  background: #fffaf0;
}

.button.primary:hover,
.button.secondary:hover,
.mini-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 0 var(--line);
}

.hero {
  width: min(100% - 40px, var(--max));
  min-height: auto;
  margin: 0 auto;
  padding: 34px 0 54px;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 30px;
  align-items: stretch;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 10px;
}

.hero-logo {
  width: min(430px, 100%);
  margin: -12px 0 8px;
  filter: drop-shadow(0 5px 0 rgba(37, 22, 10, .5));
}

.pill,
.tag {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 18px;
  padding: 7px 15px;
  border: 3px solid var(--line);
  border-radius: 999px;
  background: #fffdf1;
  color: var(--orange);
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  letter-spacing: 0;
  line-height: .88;
  text-wrap: balance;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(54px, 6.8vw, 98px);
  line-height: .82;
  text-transform: uppercase;
}

h1 span,
h1 em,
h1 strong {
  display: block;
  font-style: normal;
  font-weight: 950;
}

h1 span {
  color: var(--ink);
}

h1 em {
  color: #fff8d9;
  text-shadow:
    4px 0 var(--orange),
    -4px 0 var(--orange),
    0 4px var(--orange),
    0 -4px var(--orange),
    0 8px 0 rgba(255,107,58,.35);
}

h1 strong {
  color: var(--blue);
}

h1 strong span {
  display: block;
  color: var(--blue);
}

h1 strong span:first-child {
  font-size: .82em;
  white-space: nowrap;
}

.lede {
  max-width: 560px;
  color: var(--ink-2);
  font-size: 18px;
  line-height: 1.22;
  font-weight: 900;
}

.lede b {
  color: var(--orange);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 10px;
}

.micro-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 14px;
}

.micro-pills span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  color: var(--ink-2);
  font-size: 10px;
  font-weight: 950;
}

.micro-pills svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  fill: var(--orange);
  filter: drop-shadow(0 1px 0 rgba(33, 20, 12, .22));
}

.micro-pills span:nth-child(2) svg {
  fill: var(--green);
}

.micro-pills span:nth-child(3) svg {
  fill: var(--purple);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  max-width: 370px;
}

.hero-stats div {
  padding: 9px 10px;
  border: 3px solid rgba(33, 20, 12, .2);
  border-radius: 12px;
  background: rgba(255, 255, 255, .54);
}

.hero-stats b {
  display: block;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: 24px;
  line-height: 1;
}

.hero-stats span {
  display: block;
  margin-top: 3px;
  font-size: 8px;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-game-card {
  align-self: start;
  min-height: 690px;
  display: flex;
  flex-direction: column;
  padding: 16px;
  border: 5px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(180deg, #fff8db 0%, #ffd475 100%);
  box-shadow: var(--shadow), var(--soft-shadow);
  transform: translateY(16px) rotate(.4deg);
}

.status-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.status-row span {
  padding: 10px 12px;
  border: 3px solid var(--line);
  border-radius: 12px;
  background: #fffdf4;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.status-row b {
  color: var(--green);
}

.status-row span:last-child b {
  color: var(--orange);
}

.game-window {
  position: relative;
  flex: 1;
  height: auto;
  min-height: 460px;
  border: 5px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: #241b14;
}

.game-window img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  object-position: 50% 48%;
  filter: saturate(1.15) brightness(1.14);
}

.decision-pop {
  position: absolute;
  top: 34px;
  left: 50%;
  width: min(86%, 450px);
  transform: translateX(-50%);
  padding: 18px;
  border: 4px solid var(--line);
  border-radius: 18px;
  background: #fffaf0;
  text-align: center;
  box-shadow: 0 8px 0 rgba(33,20,12,.32);
}

.decision-pop small {
  color: var(--orange);
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.decision-pop strong {
  display: block;
  margin: 4px 0 14px;
  font-family: Georgia, serif;
  font-size: 28px;
}

.decision-pop div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.decision-pop a,
.boss-actions a {
  min-height: 42px;
  display: grid;
  place-items: center;
  border: 3px solid var(--line);
  border-radius: 10px;
  color: #101008;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.decision-pop a:first-child,
.boss-actions a:first-child {
  background: var(--green);
}

.decision-pop a:last-child,
.boss-actions a:last-child {
  background: var(--orange);
  color: #fff8df;
}

.loot-row {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: 74%;
  margin: -44px auto 0;
}

.loot-row article {
  min-height: 138px;
  padding: 10px;
  border: 4px solid var(--line);
  border-radius: 14px;
  background: #fff6d8;
  text-align: center;
  box-shadow: 0 6px 0 rgba(33,20,12,.35);
}

.loot-row img {
  width: 100%;
  height: 78px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 7px;
}

.loot-row b,
.loot-row span {
  display: block;
  font-weight: 950;
}

.loot-row span {
  color: var(--ink-2);
  font-size: 12px;
}

section {
  padding: 86px max(22px, calc((100vw - var(--max)) / 2));
}

.hook,
.roster,
footer {
  background: linear-gradient(180deg, rgba(255,255,255,.22), rgba(255,255,255,.4));
}

.hook h2,
.fantasy h2,
.moments h2,
.roster h2,
.token-strip h2,
.final-cta h2 {
  max-width: 820px;
  margin-bottom: 16px;
  color: var(--ink);
  font-size: clamp(52px, 6vw, 92px);
}

.hook > p:not(.tag),
.fantasy-copy > p,
.moments > p,
.roster > p,
.token-strip p,
.final-cta p {
  max-width: 770px;
  color: var(--ink-2);
  font-size: 19px;
  line-height: 1.34;
  font-weight: 900;
}

.hook-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.hook-grid article,
.feature-list article,
.enemy-list article,
.token-cards article {
  position: relative;
  padding: 22px;
  border: 4px solid var(--line);
  border-radius: 18px;
  background: #fffdf3;
  box-shadow: 0 6px 0 rgba(33,20,12,.18);
}

.hook-grid span {
  position: absolute;
  top: 14px;
  right: 17px;
  color: rgba(33,20,12,.16);
  font-size: 34px;
  font-weight: 950;
}

.hook-grid h3,
.feature-list span,
.enemy-list h3 {
  margin-bottom: 8px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 23px;
  line-height: 1.05;
  font-weight: 950;
}

.hook-grid p,
.feature-list p,
.enemy-list p,
.token-cards span {
  margin: 0;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 850;
}

.fantasy {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 38px;
  align-items: stretch;
  background: #fff1c5;
}

.poster {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  display: grid;
  place-items: center;
  border: 5px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(rgba(255,255,255,.66), rgba(255,255,255,.78)),
    url("assets/art/game-key-art-clean-1920x1080.png") center / cover;
  box-shadow: var(--shadow), var(--soft-shadow);
}

.poster img {
  filter: drop-shadow(0 16px 18px rgba(42,27,18,.22));
}

.poster-party {
  min-height: 560px;
  isolation: isolate;
}

.poster-party::before {
  content: "";
  position: absolute;
  inset: auto 8% 8% 8%;
  height: 24%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(30, 185, 84, .34), rgba(255, 204, 48, .24) 38%, transparent 70%);
  filter: blur(2px);
  z-index: 0;
}

.poster-party img {
  position: absolute;
  width: clamp(130px, 18vw, 245px);
  max-height: 52%;
  object-fit: contain;
  animation: floaty 4.8s ease-in-out infinite;
}

.poster-unc {
  left: 13%;
  bottom: 13%;
  z-index: 3;
}

.poster-wif {
  left: 34%;
  bottom: 11%;
  z-index: 4;
  animation-delay: -.8s;
}

.poster-troll {
  right: 12%;
  bottom: 12%;
  z-index: 3;
  animation-delay: -1.4s;
}

.poster-chill {
  right: 31%;
  top: 15%;
  z-index: 2;
  animation-delay: -2s;
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-10px) rotate(1deg);
  }
}

.fantasy-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.feature-list article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: start;
}

.feature-list b {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 3px solid var(--line);
  border-radius: 11px;
  background: var(--gold);
  font-weight: 950;
}

.feature-list span,
.feature-list p {
  grid-column: 2;
}

.moments {
  background: linear-gradient(180deg, #e8fbff, #fff5cf);
}

.moment-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 22px;
  margin-top: 34px;
  align-items: stretch;
}

.boss-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 18px;
  border: 5px solid var(--line);
  border-radius: 22px;
  background: #fff7d8;
  box-shadow: var(--shadow), var(--soft-shadow);
}

.boss-label {
  color: var(--orange);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.boss-card h3 {
  margin: 6px 0 14px;
  font-family: Georgia, serif;
  font-size: 32px;
  line-height: 1;
}

.boss-scene {
  flex: 1;
  min-height: 320px;
  position: relative;
  overflow: hidden;
  border: 4px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(rgba(255,240,179,.46), rgba(255,240,179,.2)),
    url("assets/art/game-key-art-clean-1920x1080.png") center / cover;
}

.boss-unit {
  position: absolute;
  right: 28px;
  bottom: 6px;
  width: 250px;
  filter: drop-shadow(0 12px 16px rgba(0,0,0,.28));
}

.party-mini {
  position: absolute;
  left: 22px;
  bottom: 8px;
  display: flex;
  align-items: end;
  gap: 0;
}

.party-mini img {
  width: 126px;
  margin-right: -22px;
  filter: drop-shadow(0 12px 12px rgba(0,0,0,.22));
}

.boss-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 14px;
}

.enemy-list {
  display: grid;
  gap: 14px;
  height: 100%;
}

.enemy-list article {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 16px;
  align-items: center;
}

.enemy-list img {
  width: 86px;
  height: 86px;
  object-fit: contain;
}

.roster {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 255, 255, .78), transparent 18rem),
    radial-gradient(circle at 82% 12%, rgba(32, 213, 121, .18), transparent 22rem),
    linear-gradient(135deg, #fff1c5 0%, #eefceb 48%, #d8f1ff 100%);
  color: var(--ink);
}

.roster::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .26;
  pointer-events: none;
  background:
    linear-gradient(rgba(42, 27, 18, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42, 27, 18, .045) 1px, transparent 1px);
  background-size: 34px 34px;
}

.roster .tag {
  position: relative;
  z-index: 1;
  color: #9cff3d;
  background: rgba(8, 12, 5, .82);
  border-color: rgba(156, 255, 61, .52);
}

.roster-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 32px;
  align-items: end;
  margin-bottom: 26px;
}

.roster-head h2 {
  margin: 0;
  max-width: 760px;
  color: var(--ink);
  font-size: clamp(58px, 7vw, 108px);
  text-shadow: none;
}

.roster-head p {
  max-width: 640px;
  margin-bottom: 10px;
  color: var(--ink-2);
  font-size: 20px;
  line-height: 1.3;
  font-weight: 900;
}

.party-showcase {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.party-card {
  min-height: 590px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border: 4px solid var(--line);
  background:
    radial-gradient(circle at 50% 22%, rgba(156, 255, 61, .12), transparent 38%),
    linear-gradient(180deg, #14170f, #070706);
  box-shadow: 0 8px 0 var(--line), 0 28px 80px rgba(42, 27, 18, .18);
}

.party-card:nth-child(3) {
  background:
    radial-gradient(circle at 50% 22%, rgba(139, 76, 255, .17), transparent 38%),
    linear-gradient(180deg, #211429, #080608);
}

.party-card:nth-child(4) {
  background:
    radial-gradient(circle at 50% 22%, rgba(32, 213, 121, .16), transparent 38%),
    linear-gradient(180deg, #0e2218, #070706);
}

.party-card img {
  width: min(112%, 340px);
  height: 340px;
  object-fit: contain;
  margin: -12px auto 22px;
  filter: drop-shadow(0 28px 26px rgba(0,0,0,.42));
  transform-origin: 50% 82%;
  animation: party-float 4.6s ease-in-out infinite;
  transition: filter .22s ease;
}

.party-card:nth-child(2) img {
  animation-delay: -.7s;
}

.party-card:nth-child(3) img {
  animation-delay: -1.4s;
}

.party-card:nth-child(4) img {
  animation-delay: -2.1s;
}

.party-card:hover img {
  filter: drop-shadow(0 34px 28px rgba(0,0,0,.48));
}

@keyframes party-float {
  0%, 100% {
    transform: translateY(0) rotate(-.8deg);
  }
  50% {
    transform: translateY(-11px) rotate(.8deg);
  }
}

.party-card span {
  display: block;
  color: #9cff3d;
  font-size: 18px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.party-card h3 {
  margin: 4px 0 16px;
  color: #fff5d4;
  font-size: 58px;
  line-height: .9;
  text-shadow: 0 4px 0 rgba(0,0,0,.45);
}

.party-card p {
  margin: 0;
  color: #d8ceb9;
  font-size: 21px;
  line-height: 1.32;
  font-weight: 900;
}

.token-strip {
  display: grid;
  grid-template-columns: 1fr .95fr;
  gap: 28px;
  align-items: stretch;
  background: #fff6d7;
}

.token-cards {
  display: grid;
  gap: 12px;
  height: 100%;
}

.token-cards article {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fffdf4;
}

.token-cards b {
  display: block;
  color: var(--green);
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: 38px;
  line-height: 1;
}

.final-cta {
  width: min(calc(100% - 44px), var(--max));
  margin: 86px auto;
  padding: 78px 28px;
  border: 5px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255,255,255,.82), rgba(255,241,190,.72), rgba(211,245,255,.9));
  text-align: center;
  box-shadow: var(--shadow), var(--soft-shadow);
}

.final-cta .tag,
.final-cta h2,
.final-cta p {
  margin-left: auto;
  margin-right: auto;
}

footer {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 42px 22px 54px;
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 950;
}

@media (max-width: 940px) {
  .topbar {
    grid-template-columns: auto auto;
  }

  .topbar nav {
    display: none;
  }

  .hero,
  .fantasy,
  .moment-grid,
  .token-strip {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    padding-top: 34px;
  }

  .hero-game-card {
    min-height: 0;
    transform: none;
  }

  .hook-grid,
  .party-showcase {
    grid-template-columns: repeat(2, 1fr);
  }

  .roster-head {
    grid-template-columns: 1fr;
  }

  .party-card {
    min-height: 520px;
  }
}

  @media (max-width: 620px) {
  .topbar {
    height: 58px;
    padding: 0 12px;
  }

  .brand strong {
    font-size: 12px;
  }

  .mini-cta,
  .button {
    min-height: 36px;
    padding: 0 12px;
    font-size: 12px;
  }

  .hero {
    width: min(100% - 24px, var(--max));
    gap: 24px;
  }

  h1 {
    font-size: clamp(48px, 15.4vw, 74px);
    margin-bottom: 16px;
  }

  .lede,
  .hook > p:not(.tag),
  .fantasy-copy > p,
  .moments > p,
  .roster > p,
  .token-strip p,
  .final-cta p {
    font-size: 16px;
  }

  .hero-actions,
  .decision-pop div,
  .boss-actions {
    display: grid;
  }

  .hook-grid,
  .party-showcase {
    grid-template-columns: 1fr;
  }

  .hero-stats,
  .status-row,
  .loot-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-stats {
    gap: 6px;
  }

  .hero-stats div {
    padding: 9px 7px;
  }

  .hero-stats b {
    font-size: 22px;
  }

  .hero-stats span {
    font-size: 8px;
  }

  .status-row {
    gap: 6px;
  }

  .status-row span {
    padding: 8px 6px;
    font-size: 8px;
  }

  .loot-row {
    width: 100%;
    margin: -24px auto 0;
  }

  .loot-row article {
    min-height: auto;
    display: block;
    text-align: left;
    padding: 7px;
  }

  .loot-row img {
    height: 48px;
    margin: 0 0 5px;
  }

  .loot-row b {
    font-size: 11px;
  }

  .loot-row span {
    font-size: 9px;
  }

  .game-window,
  .game-window img {
    height: 235px;
    min-height: 235px;
  }

  .decision-pop {
    top: 18px;
    padding: 14px;
  }

  .decision-pop strong {
    font-size: 22px;
  }

  section {
    padding: 62px 14px;
  }

  .hook h2,
  .fantasy h2,
  .moments h2,
  .roster h2,
  .token-strip h2,
  .final-cta h2 {
    font-size: clamp(44px, 14vw, 68px);
  }

  .poster {
    min-height: 320px;
  }

  .poster-party img {
    width: clamp(82px, 30vw, 138px);
    max-height: 58%;
  }

  .poster-unc {
    left: 8%;
    bottom: 14%;
  }

  .poster-wif {
    left: 29%;
    bottom: 10%;
  }

  .poster-troll {
    right: 6%;
    bottom: 13%;
  }

  .poster-chill {
    right: 24%;
    top: 14%;
  }

  .feature-list article {
    grid-template-columns: 38px 1fr;
  }

  .boss-scene {
    min-height: 290px;
  }

  .boss-unit {
    width: 180px;
    right: 8px;
  }

  .party-mini img {
    width: 90px;
    margin-right: -18px;
  }

  .enemy-list article {
    grid-template-columns: 70px 1fr;
  }

  .enemy-list img {
    width: 70px;
    height: 70px;
  }

  .party-card {
    min-height: 430px;
    padding: 22px;
  }

  .party-card img {
    width: min(100%, 280px);
    height: 250px;
    margin-bottom: 20px;
  }

  .party-card h3 {
    font-size: 48px;
  }

  .party-card p {
    font-size: 18px;
  }

  .final-cta {
    width: calc(100% - 28px);
    margin: 62px auto;
    padding: 56px 18px;
  }

  footer {
    flex-direction: column;
    align-items: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
