:root {
  --games-navy: #17212a;
  --games-cream: #fffaf0;
  --games-muted: #64625d;
  --game-accent-text: #b93816;
}

.games-body {
  background: transparent;
}

.games-body .page-frame {
  overflow: hidden;
}

.games-body .brand span {
  color: var(--orange);
  font-weight: 650;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--paper);
  font-weight: 800;
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

.games-main {
  background: var(--paper);
}

.games-main h1,
.games-main h2,
.games-main h3 {
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.games-main h1 {
  font-size: clamp(52px, 7.8vw, 112px);
}

.games-main h2 {
  font-size: clamp(38px, 5vw, 68px);
}

.games-main h3 {
  font-size: clamp(25px, 3vw, 38px);
}

.games-main .eyebrow {
  color: var(--game-accent-text);
  font-size: 12px;
  font-weight: 840;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.games-main .lede {
  max-width: 700px;
  margin-top: 24px;
  color: var(--game-muted, var(--muted));
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.45;
}

.games-section {
  padding: 96px 64px;
}

.games-section + .games-section {
  border-top: 1px solid var(--game-line, var(--line));
}

.games-section-heading {
  max-width: 800px;
  margin-bottom: 48px;
}

.games-section-heading h2 {
  margin-top: 16px;
}

.collection-hero {
  position: relative;
  display: grid;
  min-height: 700px;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.collection-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 88px 64px;
}

.collection-hero h1 {
  max-width: 780px;
  margin-top: 22px;
}

.collection-hero h1 em {
  color: var(--orange);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.collection-hero-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 21px;
}

.collection-hero .button {
  align-self: flex-start;
  margin-top: 34px;
}

.collection-stage {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-left: 1px solid var(--line);
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.9), transparent 24%),
    linear-gradient(145deg, #fff4df 0%, #ffb267 35%, #ff4a24 70%, #ff1c05 100%);
}

.collection-stack {
  position: relative;
  width: min(390px, 78%);
  aspect-ratio: 1;
}

.collection-stack .game-icon {
  position: absolute;
  width: 43%;
}

.collection-stack .game-icon:nth-child(1) { top: 2%; left: 6%; transform: rotate(-8deg); }
.collection-stack .game-icon:nth-child(2) { top: 7%; right: 4%; transform: rotate(7deg); }
.collection-stack .game-icon:nth-child(3) { bottom: 5%; left: 3%; transform: rotate(6deg); }
.collection-stack .game-icon:nth-child(4) { right: 7%; bottom: 1%; transform: rotate(-5deg); }

.collection-intro {
  max-width: 800px;
}

.collection-intro h2 {
  margin-top: 17px;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 52px;
}

.game-card {
  --card-accent: #ff4a1f;
  --card-accent-2: #0a8f91;
  --card-bg: #fff7e7;
  --card-ink: #17212a;
  display: flex;
  min-height: 640px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 15, 0.14);
  border-radius: 12px;
  padding: 34px;
  background: var(--card-bg);
  color: var(--card-ink);
}

.game-card.card-pour {
  --card-accent: #c64e3a;
  --card-accent-text: #a43e2f;
  --card-accent-2: #718f68;
  --card-bg: #fff2dc;
  --card-ink: #3b2118;
  border-radius: 44px;
  font-family: Georgia, "Times New Roman", serif;
}

.game-card.card-magnet {
  --card-accent: #0b55d4;
  --card-accent-2: #ed3f3b;
  --card-bg: #f8f5d8;
  --card-ink: #10213a;
  border-radius: 18px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.game-card.card-memory {
  --card-accent: #9c3d2b;
  --card-accent-2: #668b59;
  --card-bg: #f8efd6;
  --card-ink: #153b31;
  border-radius: 5px 28px 8px 22px;
  font-family: Georgia, "Times New Roman", serif;
}

.game-card-topline {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: color-mix(in srgb, var(--card-ink), transparent 38%);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.game-card .game-icon {
  align-self: center;
  width: min(270px, 64%);
  margin: 44px 0;
}

.game-card-copy {
  margin-top: auto;
}

.game-card-copy h3 {
  margin-bottom: 14px;
  font-family: inherit;
}

.game-card-copy > p {
  max-width: 500px;
  color: color-mix(in srgb, var(--card-ink), transparent 30%);
}

.store-name {
  margin: -4px 0 16px;
  color: var(--card-accent-text, var(--card-accent, var(--game-accent-text)));
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.game-card-actions,
.game-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.game-card .button:first-child {
  background: var(--card-ink);
  color: var(--card-bg);
}

.game-card .button.secondary {
  border-color: color-mix(in srgb, var(--card-ink), transparent 76%);
  background: transparent;
  color: var(--card-ink);
}

.fair-play {
  margin: 0 64px 96px;
  padding: 64px;
  border-radius: 12px;
  background: var(--games-navy);
  color: var(--games-cream);
}

.fair-play .eyebrow {
  color: #ffc04f;
}

.fair-play h2 {
  max-width: 800px;
  margin-top: 16px;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.principle-grid p {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.principle-grid span {
  color: rgba(255, 250, 240, 0.7);
}

.game-icon {
  position: relative;
  display: block;
  aspect-ratio: 1;
  flex: none;
  overflow: hidden;
  isolation: isolate;
  border: 3px solid currentColor;
  background: var(--icon-bg, #fff);
  color: var(--icon-ink, #17212a);
  box-shadow: 12px 14px 0 var(--icon-shadow, rgba(0, 0, 0, 0.12));
}

.game-icon .icon-letter {
  position: absolute;
  z-index: 3;
  right: 10%;
  bottom: 7%;
  font-size: clamp(18px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 1;
}

.game-icon .motif {
  position: absolute;
  display: block;
}

.game-icon-parcel {
  --icon-bg: #f4e4ba;
  --icon-ink: #172532;
  --icon-shadow: #07898c;
  border-radius: 8px;
  background:
    repeating-linear-gradient(0deg, transparent 0 20px, rgba(23, 37, 50, 0.08) 20px 22px),
    var(--icon-bg);
}

.game-icon-parcel::before,
.game-icon-parcel::after {
  position: absolute;
  z-index: 1;
  width: 7px;
  height: 130%;
  background: #172532;
  content: "";
}

.game-icon-parcel::before { top: -15%; left: 48%; transform: rotate(45deg); }
.game-icon-parcel::after { top: -15%; left: 52%; transform: rotate(-45deg); }
.game-icon-parcel .motif-a { top: 10%; left: 9%; width: 28%; aspect-ratio: 1; border: 3px solid #172532; background: #f25c1f; }
.game-icon-parcel .motif-b { top: 11%; right: 8%; width: 25%; aspect-ratio: 1; border: 3px solid #172532; border-radius: 50%; background: #0a8f91; }

.game-icon-pour {
  --icon-bg: #f8dfba;
  --icon-ink: #3b2118;
  --icon-shadow: #748e65;
  border-color: #7c4331;
  border-radius: 28%;
  background: radial-gradient(circle at 50% 34%, #fff6e8 0 14%, transparent 15%), #e99170;
}

.game-icon-pour::before {
  position: absolute;
  top: 25%;
  left: 27%;
  width: 46%;
  height: 48%;
  border: 4px solid #6d3929;
  border-radius: 8px 8px 32px 32px;
  background: linear-gradient(#67412f 0 21%, #e7c39d 21% 52%, #fff3dd 52% 78%, #d8795e 78%);
  content: "";
}

.game-icon-pour::after {
  position: absolute;
  top: 35%;
  right: 16%;
  width: 20%;
  height: 24%;
  border: 4px solid #6d3929;
  border-left: 0;
  border-radius: 0 50% 50% 0;
  content: "";
}

.game-icon-magnet {
  --icon-bg: #f9ef55;
  --icon-ink: #10213a;
  --icon-shadow: #0b55d4;
  border-radius: 18px;
  background:
    linear-gradient(90deg, transparent 48%, rgba(16, 33, 58, 0.09) 49% 51%, transparent 52%),
    linear-gradient(transparent 48%, rgba(16, 33, 58, 0.09) 49% 51%, transparent 52%),
    var(--icon-bg);
  background-size: 34px 34px;
}

.game-icon-magnet::before {
  position: absolute;
  top: 19%;
  left: 19%;
  width: 49%;
  height: 49%;
  border: 18px solid #ed3f3b;
  border-top-color: #0b55d4;
  border-radius: 50%;
  transform: rotate(42deg);
  content: "";
}

.game-icon-magnet::after {
  position: absolute;
  top: 23%;
  right: 17%;
  width: 15%;
  aspect-ratio: 1;
  border: 3px solid #10213a;
  border-radius: 50%;
  background: #fff;
  content: "";
}

.game-icon-memory {
  --icon-bg: #f5e8c9;
  --icon-ink: #153b31;
  --icon-shadow: #668b59;
  border-color: #1d5143;
  border-radius: 5px 22px 7px 18px;
  background:
    repeating-linear-gradient(0deg, transparent 0 24px, rgba(21, 59, 49, 0.09) 24px 26px),
    var(--icon-bg);
}

.game-icon-memory::before,
.game-icon-memory::after {
  position: absolute;
  width: 34%;
  aspect-ratio: 0.78;
  border: 3px solid #153b31;
  border-radius: 4px;
  content: "";
}

.game-icon-memory::before { top: 15%; left: 16%; background: #d57b5e; transform: rotate(-8deg); }
.game-icon-memory::after { top: 23%; right: 18%; background: #f2c75a; transform: rotate(8deg); }

/* Individual game pages */
.game-theme-parcel {
  --game-page: #f4e7c4;
  --game-surface: #fff5d8;
  --game-ink: #172532;
  --game-muted: #5f6057;
  --game-accent: #ef5b1f;
  --game-accent-2: #07898c;
  --game-accent-text: #a83c12;
  --game-accent-2-text: #36b6b8;
  --game-line: rgba(23, 37, 50, 0.2);
  --game-radius: 7px;
  --game-display: Arial Black, Arial, Helvetica, sans-serif;
  --game-body: Inter, ui-sans-serif, system-ui, sans-serif;
}

.game-theme-pour {
  --game-page: #faecd0;
  --game-surface: #fff7e8;
  --game-ink: #3b2118;
  --game-muted: #755c4e;
  --game-accent: #bf4c38;
  --game-accent-2: #718f68;
  --game-accent-text: #a43e2f;
  --game-accent-2-text: #8faa81;
  --game-line: rgba(59, 33, 24, 0.19);
  --game-radius: 38px;
  --game-display: Georgia, "Times New Roman", serif;
  --game-body: Georgia, "Times New Roman", serif;
}

.game-theme-magnet {
  --game-page: #f6f5e4;
  --game-surface: #fffef0;
  --game-ink: #10213a;
  --game-muted: #586577;
  --game-accent: #0b55d4;
  --game-accent-2: #ed3f3b;
  --game-accent-text: #0b55d4;
  --game-accent-2-text: #ff6b67;
  --game-line: rgba(16, 33, 58, 0.19);
  --game-radius: 17px;
  --game-display: "Arial Narrow", Arial, Helvetica, sans-serif;
  --game-body: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.game-theme-memory {
  --game-page: #f5ecd2;
  --game-surface: #fffaf0;
  --game-ink: #153b31;
  --game-muted: #5a685d;
  --game-accent: #9c3d2b;
  --game-accent-2: #668b59;
  --game-accent-text: #9c3d2b;
  --game-accent-2-text: #a8c88b;
  --game-line: rgba(21, 59, 49, 0.2);
  --game-radius: 5px 24px 7px 19px;
  --game-display: Georgia, "Times New Roman", serif;
  --game-body: Georgia, "Times New Roman", serif;
}

.game-theme .games-main {
  background: var(--game-page);
  color: var(--game-ink);
  font-family: var(--game-body);
}

.game-theme .games-main h1,
.game-theme .games-main h2,
.game-theme .games-main h3 {
  font-family: var(--game-display);
}

.game-theme .site-header {
  background: color-mix(in srgb, var(--game-page), transparent 8%);
}

.game-theme .nav-cta {
  background: var(--game-ink);
  color: var(--game-page);
}

.game-theme .nav-links a[aria-current="page"] {
  color: var(--game-accent-text);
  font-weight: 800;
}

.game-hero {
  display: grid;
  min-height: 690px;
  grid-template-columns: minmax(0, 1.04fr) minmax(380px, 0.96fr);
  border-bottom: 1px solid var(--game-line);
}

.game-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 84px 64px;
}

.game-hero h1 {
  margin-top: 20px;
}

.game-hero .store-name {
  margin: 15px 0 0;
  color: var(--game-accent-text);
}

.game-tagline {
  max-width: 680px;
  margin-top: 22px;
  color: var(--game-ink);
  font-size: clamp(24px, 3vw, 37px);
  font-weight: 760;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.game-hero-actions .button:first-child {
  background: var(--game-ink);
  color: var(--game-page);
}

.game-hero-actions .button.secondary {
  border-color: var(--game-line);
  background: var(--game-surface);
  color: var(--game-ink);
}

.game-stage {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-left: 1px solid var(--game-line);
  background: var(--game-stage);
}

.game-stage .game-icon {
  width: min(340px, 66%);
}

.stage-caption {
  position: absolute;
  right: 34px;
  bottom: 28px;
  left: 34px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stage-caption span {
  padding: 6px 9px;
  border: 1px solid var(--game-line);
  border-radius: 999px;
  background: var(--game-surface);
  color: var(--game-ink);
}

.game-theme-parcel .game-stage {
  --game-stage: repeating-linear-gradient(0deg, transparent 0 38px, rgba(23, 37, 50, 0.07) 38px 40px), #e8ce8d;
}

.game-theme-pour .game-stage {
  --game-stage: radial-gradient(circle at 76% 18%, #fff7e8 0 12%, transparent 13%), linear-gradient(145deg, #efb494, #c76551);
}

.game-theme-pour .game-hero {
  grid-template-columns: minmax(380px, 0.9fr) minmax(0, 1.1fr);
}

.game-theme-pour .game-stage {
  grid-column: 1;
  grid-row: 1;
  border-right: 1px solid var(--game-line);
  border-left: 0;
}

.game-theme-pour .game-hero-copy {
  grid-column: 2;
}

.game-theme-magnet .game-stage {
  --game-stage: linear-gradient(90deg, transparent 48%, rgba(16, 33, 58, 0.08) 49% 51%, transparent 52%), linear-gradient(transparent 48%, rgba(16, 33, 58, 0.08) 49% 51%, transparent 52%), #f5e953;
  background-size: 52px 52px;
}

.game-theme-memory .game-stage {
  --game-stage: repeating-linear-gradient(0deg, transparent 0 35px, rgba(21, 59, 49, 0.08) 35px 37px), #ddcc9e;
}

.loop-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.loop-steps li {
  min-height: 250px;
  border: 1px solid var(--game-line);
  border-radius: var(--game-radius);
  padding: 28px;
  background: var(--game-surface);
}

.loop-steps span {
  display: block;
  color: var(--game-accent-text);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.loop-steps p {
  margin-top: 78px;
  font-size: 20px;
  font-weight: 650;
}

.reward-panel {
  display: grid;
  grid-template-columns: minmax(250px, 0.78fr) minmax(0, 1.22fr);
  gap: 60px;
  border-radius: var(--game-radius);
  padding: 54px;
  background: var(--game-ink);
  color: var(--game-page);
}

.reward-panel .eyebrow {
  color: var(--game-accent-2-text);
}

.reward-panel h2 {
  margin-top: 16px;
}

.reward-panel dl {
  margin: 0;
}

.reward-panel dl div {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid color-mix(in srgb, var(--game-page), transparent 78%);
}

.reward-panel dt {
  color: color-mix(in srgb, var(--game-page), transparent 32%);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 11px;
  font-weight: 830;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reward-panel dd {
  margin: 0;
}

.game-center-panel {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.gc-mark {
  display: grid;
  width: 116px;
  aspect-ratio: 1;
  place-items: center;
  border: 3px solid var(--game-ink);
  border-radius: 28%;
  background: var(--game-accent-2);
  color: var(--game-surface);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.08em;
  box-shadow: 10px 10px 0 var(--game-accent);
}

.game-center-panel h2 {
  margin-top: 15px;
}

.game-center-panel p:last-child {
  max-width: 820px;
  margin-top: 20px;
  color: var(--game-muted);
  font-size: 19px;
}

.game-switcher {
  padding: 44px 64px 74px;
  border-top: 1px solid var(--game-line);
}

.game-switcher > p {
  color: var(--game-muted);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.game-switcher-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.game-switcher a {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 13px;
  border: 1px solid var(--game-line);
  border-radius: 9px;
  padding: 9px 13px;
  background: var(--game-surface);
  font-size: 13px;
  font-weight: 730;
}

.game-switcher a[aria-current="page"] {
  border-color: var(--game-accent);
}

.game-switcher .game-icon {
  width: 38px;
  border-width: 1px;
  border-radius: 9px;
  box-shadow: none;
}

.game-switcher .game-icon::before,
.game-switcher .game-icon::after,
.game-switcher .game-icon .motif {
  display: none;
}

.game-switcher .icon-letter {
  right: 20%;
  bottom: 20%;
  font-size: 11px;
}

/* Support and privacy documents */
.document-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 54px;
  align-items: center;
  padding: 86px 64px 66px;
  border-bottom: 1px solid var(--game-line);
}

.document-hero h1 {
  max-width: 920px;
  margin-top: 18px;
  font-size: clamp(46px, 6.2vw, 86px);
}

.document-hero .game-icon {
  width: 190px;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.support-card {
  min-height: 210px;
  border: 1px solid var(--game-line);
  border-radius: var(--game-radius);
  padding: 30px;
  background: var(--game-surface);
}

.support-card h2 {
  font-size: 27px;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.support-card p {
  margin-top: 18px;
  color: var(--game-muted);
}

.reset-panel,
.contact-panel {
  display: grid;
  gap: 28px;
  border-radius: var(--game-radius);
  padding: 46px;
}

.reset-panel {
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  background: var(--game-ink);
  color: var(--game-page);
}

.reset-panel .eyebrow {
  color: var(--game-accent-2-text);
}

.reset-panel h2,
.contact-panel h2 {
  margin-top: 14px;
  font-size: 38px;
}

.reset-panel ol {
  margin: 0;
  padding-left: 22px;
}

.reset-panel > p {
  grid-column: 2;
  color: color-mix(in srgb, var(--game-page), transparent 25%);
}

.contact-panel {
  grid-template-columns: minmax(220px, 0.65fr) minmax(0, 1.35fr);
  border: 1px solid var(--game-line);
  background: var(--game-surface);
}

.contact-panel a,
.policy-copy a {
  color: var(--game-accent-text);
  font-weight: 760;
  text-decoration: underline;
}

#your-choices {
  scroll-margin-top: 110px;
}

.contact-panel .response-note {
  grid-column: 2;
  color: var(--game-muted);
  font-size: 14px;
}

.privacy-snapshot {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--game-line);
  border-radius: var(--game-radius);
  overflow: hidden;
  background: var(--game-line);
}

.privacy-snapshot p {
  display: flex;
  min-height: 190px;
  flex-direction: column;
  gap: 12px;
  padding: 26px;
  background: var(--game-surface);
}

.privacy-snapshot span {
  color: var(--game-muted);
  font-size: 15px;
}

.policy-copy {
  max-width: 900px;
  margin: 0 auto;
  padding: 96px 64px;
}

.policy-copy section + section {
  margin-top: 58px;
  padding-top: 58px;
  border-top: 1px solid var(--game-line);
}

.policy-copy h2 {
  font-size: clamp(29px, 3.5vw, 42px);
  line-height: 1.08;
}

.policy-copy p,
.policy-copy li {
  color: var(--game-muted);
  font-size: 17px;
  line-height: 1.66;
}

.policy-copy h2 + p,
.policy-copy h2 + ul,
.policy-copy p + p,
.policy-copy p + ul,
.policy-copy ul + p {
  margin-top: 20px;
}

.policy-copy ul {
  padding-left: 25px;
}

.policy-copy address {
  margin-top: 20px;
  color: var(--game-muted);
  font-style: normal;
}

.games-footer-note {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 12px;
}

@media (max-width: 1120px) {
  .collection-hero,
  .game-hero,
  .game-theme-pour .game-hero {
    grid-template-columns: 1fr;
  }

  .collection-stage,
  .game-stage,
  .game-theme-pour .game-stage {
    min-height: 560px;
    grid-column: 1;
    grid-row: auto;
    border-top: 1px solid var(--game-line, var(--line));
    border-right: 0;
    border-left: 0;
  }

  .game-theme-pour .game-hero-copy {
    grid-column: 1;
    grid-row: 1;
  }

  .game-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .principle-grid,
  .loop-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .privacy-snapshot,
  .game-switcher-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .games-section,
  .collection-hero-copy,
  .game-hero-copy,
  .document-hero,
  .policy-copy {
    padding-right: 20px;
    padding-left: 20px;
  }

  .collection-hero h1,
  .games-main h1 {
    font-size: 50px;
  }

  .collection-stage,
  .game-stage,
  .game-theme-pour .game-stage {
    min-height: 430px;
  }

  .game-card {
    min-height: 570px;
    padding: 24px;
  }

  .fair-play {
    margin: 0 20px 64px;
    padding: 36px 24px;
  }

  .principle-grid,
  .loop-steps,
  .privacy-snapshot,
  .game-switcher-links,
  .reward-panel,
  .game-center-panel,
  .document-hero,
  .reset-panel,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .loop-steps li {
    min-height: 190px;
  }

  .loop-steps p {
    margin-top: 48px;
  }

  .reward-panel,
  .reset-panel,
  .contact-panel {
    gap: 24px;
    padding: 34px 24px;
  }

  .reward-panel dl div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .document-hero .game-icon {
    width: 150px;
  }

  .reset-panel > p,
  .contact-panel .response-note {
    grid-column: 1;
  }

  .game-switcher {
    padding: 38px 20px 58px;
  }
}

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

  .game-icon,
  .collection-stack .game-icon {
    transform: none !important;
  }
}
