:root {
  color-scheme: dark;
  --ink: #080d20;
  --panel: #101632;
  --pink: #ff65b7;
  --cyan: #55ecff;
  --white: #f8fbff;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 20% 0%, rgb(255 101 183 / 15%), transparent 34rem),
    radial-gradient(circle at 90% 20%, rgb(85 236 255 / 12%), transparent 30rem),
    var(--ink);
  color: var(--white);
  font-family: Arial, sans-serif;
}

main {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(56px, 9vw, 110px) 0;
}

header {
  max-width: 720px;
}

.eyebrow {
  color: var(--cyan);
  font: 800 12px/1 ui-monospace, monospace;
  letter-spacing: 0.16em;
}

h1 {
  margin: 14px 0 10px;
  font-size: clamp(42px, 8vw, 86px);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

header p {
  max-width: 620px;
  margin: 0;
  color: rgb(232 240 255 / 70%);
  font-size: clamp(16px, 2vw, 21px);
  line-height: 1.5;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 420px), 1fr));
  gap: 24px;
  margin-top: clamp(48px, 8vw, 86px);
}

.game-card {
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 26px;
  background: linear-gradient(145deg, rgb(21 29 63 / 96%), rgb(11 15 37 / 96%));
  box-shadow: 0 28px 90px rgb(0 0 0 / 28%);
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease;
}

.game-card:hover,
.game-card:focus-visible {
  border-color: rgb(255 101 183 / 70%);
  transform: translateY(-5px);
  outline: none;
}

.game-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1200 / 630;
  object-fit: cover;
}

.pulse-card-art {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1200 / 630;
  overflow: hidden;
  background:
    linear-gradient(125deg, rgb(255 45 177 / 28%), transparent 45%),
    radial-gradient(circle at 50% 45%, #7226c9, #08102f 68%);
}

.pulse-card-art::before,
.pulse-card-art::after {
  position: absolute;
  bottom: -18%;
  width: 45%;
  height: 84%;
  border: 3px solid rgb(47 239 255 / 55%);
  content: "";
  transform: perspective(420px) rotateX(58deg) rotateZ(45deg);
  box-shadow: 0 0 38px rgb(47 239 255 / 25%);
}

.pulse-card-art::after {
  width: 25%;
  height: 48%;
  border-color: rgb(255 54 184 / 72%);
}

.pulse-card-art strong {
  z-index: 2;
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: #39efff;
  color: #2b0756;
  box-shadow: 0 0 18px #fff, 0 0 60px #39efff;
  font-size: 46px;
}

.game-copy {
  padding: 24px;
}

.status {
  display: inline-block;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--pink);
  color: #25091b;
  font: 900 10px/1 ui-monospace, monospace;
  letter-spacing: 0.1em;
}

h2 {
  margin: 16px 0 8px;
  font-size: clamp(24px, 4vw, 34px);
  letter-spacing: -0.04em;
}

.game-copy p {
  margin: 0;
  color: rgb(232 240 255 / 70%);
  line-height: 1.55;
}

.game-copy small {
  display: block;
  margin-top: 24px;
  color: var(--cyan);
  font: 700 10px/1 ui-monospace, monospace;
  letter-spacing: 0.08em;
}
