:root {
  color-scheme: dark;
  --ink: #f6f6ef;
  --muted: #9b9ba5;
  --panel: #111116;
  --panel-soft: #17171d;
  --line: rgba(255, 255, 255, 0.13);
  --acid: #d9ff43;
  --violet: #8566ff;
  --page-x: clamp(20px, 5vw, 78px);
  --max-width: 1500px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #08080c;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 9%, rgba(113, 76, 255, 0.18), transparent 28rem),
    radial-gradient(circle at 20% 24%, rgba(217, 255, 67, 0.055), transparent 30rem),
    #08080c;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  -webkit-font-smoothing: antialiased;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

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

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--acid);
  outline-offset: 4px;
}

.page-noise {
  position: fixed;
  inset: 0;
  z-index: 30;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.86' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.cursor-light {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle, rgba(150, 116, 255, 0.1), transparent 67%);
  transform: translate3d(calc(var(--pointer-x, -600px) - 50%), calc(var(--pointer-y, -600px) - 50%), 0);
  transition: opacity 300ms ease;
}

body.has-pointer .cursor-light {
  opacity: 1;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max-width));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 96px;
  padding: 20px var(--page-x);
  border-bottom: 1px solid var(--line);
}

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

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  overflow: hidden;
  border-radius: 13px;
  background: var(--acid);
  box-shadow: 0 0 34px rgba(217, 255, 67, 0.18);
}

.brand-mark span {
  position: absolute;
  width: 24px;
  height: 24px;
  border: 3px solid #0a0a0d;
  border-radius: 50%;
}

.brand-mark span:nth-child(1) {
  transform: translateX(-9px);
}

.brand-mark span:nth-child(2) {
  transform: translateX(9px);
}

.brand-mark span:nth-child(3) {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 3px;
  background: var(--acid);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font-size: 19px;
  font-weight: 950;
  letter-spacing: -0.06em;
}

.brand-copy strong span {
  color: var(--acid);
}

.brand-copy small {
  margin-top: 6px;
  color: #777781;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.24em;
}

.header-status {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #8f8f99;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.online-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #62ff87;
  box-shadow: 0 0 14px #62ff87;
  animation: pulse 2.2s ease-in-out infinite;
}

.status-divider {
  width: 1px;
  height: 15px;
  margin-inline: 4px;
  background: var(--line);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  align-items: center;
  min-height: min(760px, calc(100vh - 96px));
  padding: clamp(70px, 9vw, 130px) var(--page-x);
  overflow: hidden;
}

.hero::after {
  position: absolute;
  right: var(--page-x);
  bottom: 0;
  left: var(--page-x);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--line), var(--line) 58%, transparent 58%, transparent 60%);
  background-size: 18px 1px;
}

.hero-copy {
  position: relative;
  z-index: 3;
}

.eyebrow,
.section-index {
  margin: 0 0 24px;
  color: #a1a1aa;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.eyebrow span {
  color: var(--acid);
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(62px, 8.2vw, 126px);
  font-weight: 950;
  line-height: 0.8;
  letter-spacing: -0.085em;
  text-transform: uppercase;
}

.outline-text {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(246, 246, 239, 0.72);
  text-stroke: 1.5px rgba(246, 246, 239, 0.72);
}

.hero-description {
  margin: 38px 0 0;
  color: #a7a7b1;
  font-size: clamp(14px, 1.35vw, 18px);
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 42px;
}

.primary-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 28px;
  min-height: 58px;
  padding: 0 22px 0 14px;
  border: 0;
  border-radius: 999px;
  color: #09090b;
  background: var(--acid);
  box-shadow: 0 8px 50px rgba(217, 255, 67, 0.11);
  cursor: pointer;
  font-size: 13px;
  font-weight: 850;
  transition: gap 300ms var(--ease), transform 300ms var(--ease), box-shadow 300ms ease;
}

.primary-button:hover {
  gap: 35px;
  box-shadow: 0 12px 60px rgba(217, 255, 67, 0.23);
  transform: translateY(-3px);
}

.button-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--acid);
  background: #09090b;
  font-size: 18px;
}

.text-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #b4b4bd;
  font-size: 12px;
  font-weight: 750;
}

.text-button span {
  color: var(--acid);
  transition: transform 250ms var(--ease);
}

.text-button:hover span {
  transform: translateY(5px);
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 490px;
  transform: translateX(4%);
}

.visual-glow {
  position: absolute;
  width: 60%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #7259ff;
  filter: blur(110px);
  opacity: 0.17;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  animation: orbit 18s linear infinite;
}

.orbit::after {
  position: absolute;
  top: -4px;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: var(--acid);
  box-shadow: 0 0 16px var(--acid);
}

.orbit-one {
  width: 420px;
  height: 420px;
}

.orbit-two {
  width: 520px;
  height: 520px;
  border-color: rgba(255, 255, 255, 0.07);
  animation-duration: 28s;
  animation-direction: reverse;
}

.orbit-two::after {
  background: #8566ff;
  box-shadow: 0 0 16px #8566ff;
}

.hero-console {
  position: relative;
  z-index: 2;
  width: min(360px, 70vw);
  aspect-ratio: 0.82;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 38px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), transparent 34%),
    rgba(19, 19, 26, 0.82);
  box-shadow:
    0 55px 100px rgba(0, 0, 0, 0.55),
    inset 0 1px rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
  transform: rotate(6deg);
  animation: float 5s ease-in-out infinite;
}

.console-topline,
.console-readout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #8f8f9c;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.console-topline {
  padding: 6px 7px 16px;
}

.console-live {
  color: var(--acid);
}

.console-art {
  display: grid;
  place-items: center;
  height: calc(100% - 58px);
  overflow: hidden;
  border-radius: 26px;
  background:
    linear-gradient(rgba(217, 255, 67, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217, 255, 67, 0.06) 1px, transparent 1px),
    radial-gradient(circle at 50% 38%, #30285c, #111118 70%);
  background-size: 18px 18px, 18px 18px, auto;
}

.gamepad {
  position: relative;
  width: 188px;
  height: 112px;
  border: 3px solid var(--ink);
  border-radius: 46% 46% 40% 40%;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.5), inset 0 0 0 7px rgba(255, 255, 255, 0.04);
  transform: rotate(-7deg);
}

.gamepad::before,
.gamepad::after {
  position: absolute;
  bottom: -25px;
  width: 62px;
  height: 72px;
  border: 3px solid var(--ink);
  border-top: 0;
  border-radius: 0 0 38px 38px;
  content: "";
  background: #1d1d28;
}

.gamepad::before {
  left: 4px;
  transform: rotate(17deg);
}

.gamepad::after {
  right: 4px;
  transform: rotate(-17deg);
}

.dpad {
  position: absolute;
  top: 23px;
  left: 31px;
  z-index: 2;
  color: var(--acid);
  font-family: Arial Black, sans-serif;
  font-size: 40px;
  line-height: 1;
}

.pad-button {
  position: absolute;
  z-index: 2;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
}

.pad-button-a {
  top: 30px;
  right: 28px;
}

.pad-button-b {
  top: 54px;
  right: 54px;
  background: #8566ff;
}

.console-readout {
  padding: 14px 8px 0;
}

.console-readout span:first-child {
  color: var(--acid);
}

.float-label {
  position: absolute;
  z-index: 3;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #b9b9c3;
  background: rgba(10, 10, 14, 0.75);
  backdrop-filter: blur(10px);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.float-label-one {
  top: 25%;
  left: 3%;
  transform: rotate(-7deg);
}

.float-label-two {
  right: -1%;
  bottom: 25%;
  transform: rotate(6deg);
}

.games-section {
  padding: clamp(85px, 9vw, 140px) var(--page-x);
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 48px;
}

.section-index {
  margin-bottom: 15px;
  color: var(--acid);
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 60px);
  font-weight: 900;
  letter-spacing: -0.055em;
}

.filters {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
}

.filter-button {
  min-width: 62px;
  padding: 9px 14px;
  border: 0;
  border-radius: 999px;
  color: #85858f;
  background: transparent;
  cursor: pointer;
  font-size: 11px;
  font-weight: 750;
  transition: color 200ms ease, background 200ms ease;
}

.filter-button:hover {
  color: var(--ink);
}

.filter-button.is-active {
  color: #09090c;
  background: var(--ink);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.game-card {
  --card-accent: var(--acid);
  grid-column: span 4;
  min-width: 0;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

.game-card:nth-child(1) {
  grid-column: span 7;
}

.game-card:nth-child(2) {
  grid-column: span 5;
}

.game-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.game-card.is-filtered {
  display: none;
}

.games-grid.is-filtered-view .game-card:not(.is-filtered) {
  grid-column: span 4;
}

.card-shell {
  position: relative;
  display: block;
  min-height: 350px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 5px;
  background: var(--panel);
  transform: perspective(1000px) rotateX(var(--rotate-x, 0deg)) rotateY(var(--rotate-y, 0deg));
  transform-style: preserve-3d;
  transition: border-color 300ms ease, transform 180ms ease-out, box-shadow 350ms ease;
}

.game-card:nth-child(-n + 2) .card-shell {
  min-height: 440px;
}

.card-shell::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, rgba(6, 6, 10, 0.02) 22%, rgba(6, 6, 10, 0.2) 54%, rgba(6, 6, 10, 0.96) 100%),
    radial-gradient(circle at var(--card-x, 50%) var(--card-y, 50%), rgba(255, 255, 255, 0.16), transparent 28%);
}

.card-shell:hover {
  border-color: color-mix(in srgb, var(--card-accent), transparent 35%);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.48), 0 0 40px color-mix(in srgb, var(--card-accent), transparent 88%);
}

.card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: var(--image-fit, cover);
  object-position: var(--image-position, 50% 50%);
  filter: saturate(0.82) contrast(1.04) brightness(0.77);
  transform: scale(1.015);
  transition: filter 600ms ease, transform 900ms var(--ease);
}

.card-image-backdrop {
  position: absolute;
  inset: 0;
  background: var(--image-background, transparent);
}

.card-shell:hover .card-image {
  filter: saturate(1.08) contrast(1.06) brightness(0.9);
  transform: scale(1.075);
}

.card-topline,
.card-content {
  position: absolute;
  right: 0;
  left: 0;
  z-index: 3;
}

.card-topline {
  top: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px;
}

.card-number,
.card-type {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  color: rgba(255, 255, 255, 0.78);
  background: rgba(8, 8, 12, 0.58);
  backdrop-filter: blur(12px);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.card-type {
  border-color: transparent;
  color: #08080c;
  background: var(--card-accent);
}

.card-content {
  bottom: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 22px;
  padding: 26px;
  transform: translateZ(28px);
}

.card-kicker {
  margin: 0 0 8px;
  color: var(--card-accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.card-title {
  margin: 0;
  font-size: clamp(25px, 2.6vw, 42px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.game-card:nth-child(n + 3) .card-title {
  font-size: clamp(22px, 2vw, 31px);
}

.card-subtitle {
  margin: 10px 0 0;
  color: #a8a8b2;
  font-size: 11px;
}

.play-button {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  color: #0a0a0d;
  background: var(--ink);
  font-size: 19px;
  transition: color 300ms ease, background 300ms ease, border-color 300ms ease, transform 350ms var(--ease);
}

.card-shell:hover .play-button {
  border-color: var(--card-accent);
  background: var(--card-accent);
  transform: rotate(-10deg) scale(1.08);
}

.empty-state {
  padding: 80px 20px;
  border: 1px dashed var(--line);
  color: var(--muted);
  text-align: center;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 150px;
  padding: 36px var(--page-x);
  border-top: 1px solid var(--line);
  color: #686872;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.footer-brand {
  color: var(--ink);
  font-family: Inter, ui-sans-serif, sans-serif;
  font-size: 17px;
  font-weight: 950;
  letter-spacing: -0.06em;
}

.footer-brand span {
  position: relative;
  top: -8px;
  margin-left: 3px;
  color: var(--acid);
  font-size: 7px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  justify-self: end;
  transition: color 180ms ease;
}

.site-footer a:hover {
  color: var(--acid);
}

.launch-screen {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  color: var(--ink);
  background: #08080c;
  opacity: 0;
  transition: visibility 0s linear 650ms, opacity 420ms ease;
}

.launch-screen.is-launching {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

.launch-glow {
  position: absolute;
  width: 45vw;
  height: 45vw;
  border-radius: 50%;
  background: rgba(133, 102, 255, 0.19);
  filter: blur(100px);
  animation: breathe 1.1s ease-in-out infinite alternate;
}

.launch-screen p,
.launch-screen h2,
.launch-screen small,
.launch-track {
  position: relative;
  z-index: 1;
}

.launch-screen p,
.launch-screen small {
  color: #84848e;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.launch-screen h2 {
  max-width: 90vw;
  margin: 14px 0 40px;
  font-size: clamp(38px, 7vw, 100px);
  line-height: 0.9;
  letter-spacing: -0.07em;
  text-align: center;
}

.launch-track {
  width: min(460px, 74vw);
  height: 2px;
  margin-bottom: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

.launch-track span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--acid);
  transform: scaleX(0);
  transform-origin: left;
}

.is-launching .launch-track span {
  animation: load 720ms var(--ease) forwards;
}

.noscript-message {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 200;
  padding: 14px 18px;
  color: #111;
  background: var(--acid);
  font-size: 13px;
  font-weight: 700;
}

@keyframes pulse {
  50% { opacity: 0.35; transform: scale(0.78); }
}

@keyframes orbit {
  to { transform: rotate(360deg); }
}

@keyframes float {
  0%, 100% { transform: rotate(6deg) translateY(0); }
  50% { transform: rotate(4.5deg) translateY(-13px); }
}

@keyframes breathe {
  to { opacity: 0.48; transform: scale(1.13); }
}

@keyframes load {
  0% { transform: scaleX(0); }
  45% { transform: scaleX(0.62); }
  100% { transform: scaleX(1); }
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) 390px;
  }

  .hero-visual {
    transform: translateX(15%);
  }

  .float-label-one {
    left: -5%;
  }

  .game-card,
  .game-card:nth-child(1),
  .game-card:nth-child(2) {
    grid-column: span 6;
  }

  .game-card:nth-child(5),
  .game-card:nth-child(6) {
    grid-column: span 6;
  }

  .games-grid.is-filtered-view .game-card:not(.is-filtered) {
    grid-column: span 6;
  }

  .game-card:nth-child(-n + 2) .card-shell,
  .card-shell {
    min-height: 390px;
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 78px;
  }

  .header-status .status-divider,
  #game-count {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 82px;
  }

  .hero h1 {
    font-size: clamp(58px, 14.5vw, 100px);
  }

  .hero-visual {
    min-height: 520px;
    margin-top: 42px;
    transform: none;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .filters {
    max-width: 100%;
    overflow-x: auto;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
  }

  .site-footer p {
    display: none;
  }
}

@media (max-width: 600px) {
  :root {
    --page-x: 18px;
  }

  .brand-copy small {
    display: none;
  }

  .header-status {
    font-size: 8px;
  }

  .hero {
    padding-top: 64px;
  }

  .hero h1 {
    font-size: clamp(54px, 18vw, 82px);
    line-height: 0.83;
  }

  .hero-description {
    margin-top: 28px;
  }

  .desktop-break {
    display: none;
  }

  .hero-actions {
    gap: 20px;
    margin-top: 32px;
  }

  .primary-button {
    gap: 13px;
    min-height: 52px;
    padding-right: 18px;
  }

  .hero-visual {
    min-height: 400px;
  }

  .hero-console {
    width: 250px;
    border-radius: 28px;
  }

  .console-art {
    border-radius: 19px;
  }

  .gamepad {
    transform: rotate(-7deg) scale(0.78);
  }

  .orbit-one {
    width: 300px;
    height: 300px;
  }

  .orbit-two {
    width: 370px;
    height: 370px;
  }

  .float-label-one {
    top: 19%;
    left: -1%;
  }

  .float-label-two {
    right: -2%;
    bottom: 19%;
  }

  .games-section {
    padding-top: 90px;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .filters {
    width: 100%;
  }

  .filter-button {
    flex: 1 0 auto;
  }

  .games-grid {
    gap: 14px;
  }

  .game-card,
  .game-card:nth-child(1),
  .game-card:nth-child(2),
  .game-card:nth-child(5),
  .game-card:nth-child(6) {
    grid-column: 1 / -1;
  }

  .games-grid.is-filtered-view .game-card:not(.is-filtered) {
    grid-column: 1 / -1;
  }

  .game-card:nth-child(-n + 2) .card-shell,
  .card-shell {
    min-height: 390px;
  }

  .card-content {
    padding: 22px;
  }

  .card-title,
  .game-card:nth-child(n + 3) .card-title {
    font-size: 30px;
  }

  .site-footer {
    min-height: 110px;
  }
}

@media (hover: none) {
  .cursor-light {
    display: none;
  }

  .card-shell {
    transform: none !important;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
