@font-face {
  font-family: "SF Pro Rounded";
  src: url("../../assets/SF-Pro-Rounded-Regular.otf") format("opentype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "SF Pro Rounded";
  src: url("../../assets/SF-Pro-Rounded-Medium.otf") format("opentype");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "SF Pro Rounded";
  src: url("../../assets/SF-Pro-Rounded-Semibold.otf") format("opentype");
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "SF Pro Rounded";
  src: url("../../assets/SF-Pro-Rounded-Bold.otf") format("opentype");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "SF Pro Rounded";
  src: url("../../assets/SF-Pro-Rounded-Black.otf") format("opentype");
  font-weight: 900;
  font-display: swap;
}

:root {
  color-scheme: light only;
  --echo-red: #f92a18;
  --echo-red-dark: #cc1f12;
  --paper: #f0f1f3;
  --cream: #fff8ef;
  --sky-top: #bed8f5;
  --sky-mid: #e4e6f8;
  --sky-bottom: #f9eee5;
  --green: #7cbf87;
  --green-dark: #5e9f72;
  --orange: #f5b018;
  --orange-dark: #d9893f;
  --gold: #f7d17b;
  --sky: #98c8e8;
  --lilac: #c4bbef;
  --pink: #f5c2cf;
  --danger: #e87370;
  --text: #61545c;
  --text-soft: rgba(97, 84, 92, 0.66);
  --text-faint: rgba(97, 84, 92, 0.48);
  --card: rgba(255, 255, 255, 0.94);
  --card-solid: #ffffff;
  --stroke: rgba(97, 84, 92, 0.11);
  --shadow: 0 18px 36px rgba(97, 84, 92, 0.14);
  --shadow-soft: 0 10px 22px rgba(97, 84, 92, 0.1);
  --radius: 5px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--sky-bottom);
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(180deg, var(--sky-top) 0%, var(--sky-mid) 34%, var(--sky-bottom) 74%, #fffaf5 100%);
  color: var(--text);
  font-family: "SF Pro Rounded", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.legal-page {
  background:
    linear-gradient(180deg, #f92a18 0, #f92a18 220px, var(--sky-top) 220px, var(--sky-mid) 56%, var(--sky-bottom) 100%);
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

p,
h1,
h2,
h3,
h4 {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

.skip-link {
  position: fixed;
  left: 14px;
  top: 14px;
  z-index: 30;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--card-solid);
  color: var(--text);
  transform: translateY(-150%);
}

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

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(249, 42, 24, 0.9);
  color: var(--paper);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 6px 0 rgba(97, 84, 92, 0.18);
  overflow: hidden;
}

.brand-mark img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand-name {
  display: grid;
  gap: 1px;
  line-height: 1;
}

.brand-name strong {
  font-size: 24px;
  color: var(--paper);
}

.brand-name span {
  color: rgba(240, 241, 243, 0.78);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  color: rgba(240, 241, 243, 0.84);
  font-size: 14px;
  font-weight: 800;
}

.site-nav a {
  opacity: 0.92;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  opacity: 1;
  color: #ffffff;
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.icon-button,
.text-button,
.app-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.icon-button:focus-visible,
.text-button:focus-visible,
.app-button:focus-visible,
.site-nav a:focus-visible,
.footer a:focus-visible {
  outline: 3px solid rgba(247, 209, 123, 0.86);
  outline-offset: 3px;
}

.icon-button {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--paper);
}

.icon-button svg {
  width: 20px;
  height: 20px;
}

.text-button {
  min-height: 44px;
  padding: 0 16px;
  background: var(--paper);
  color: var(--echo-red);
  box-shadow: 0 5px 0 rgba(97, 84, 92, 0.18);
}

.app-button {
  gap: 10px;
  min-height: 58px;
  padding: 0 24px;
  border: 0;
  background: var(--echo-red);
  color: var(--paper);
  box-shadow: 0 5px 0 var(--echo-red-dark), 0 16px 26px rgba(249, 42, 24, 0.24);
  font-size: 17px;
}

.app-button.secondary {
  background: var(--orange);
  color: #ffffff;
  box-shadow: 0 5px 0 var(--orange-dark), 0 16px 26px rgba(245, 176, 24, 0.22);
}

.app-button.light {
  background: var(--card-solid);
  color: var(--text);
  box-shadow: 0 5px 0 rgba(97, 84, 92, 0.14), 0 14px 24px rgba(97, 84, 92, 0.12);
}

.app-button svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.icon-button:hover,
.text-button:hover,
.app-button:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: 88svh;
  overflow: hidden;
  background: var(--echo-red);
  color: var(--paper);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.13) 0%, rgba(255, 255, 255, 0) 34%),
    linear-gradient(90deg, rgba(97, 84, 92, 0.2) 0%, rgba(97, 84, 92, 0) 42%, rgba(97, 84, 92, 0.14) 100%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: clamp(32px, 6vw, 76px);
  min-height: calc(88svh - 72px);
  padding: clamp(48px, 8vw, 92px) 0 clamp(28px, 6vw, 60px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: currentColor;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 5px;
  border-radius: var(--radius);
  background: currentColor;
}

.hero .eyebrow {
  color: rgba(240, 241, 243, 0.82);
}

.hero-copy {
  display: grid;
  gap: 22px;
  max-width: 600px;
}

.hero-title {
  color: #ffffff;
  font-size: clamp(70px, 12vw, 152px);
  font-weight: 900;
  line-height: 0.86;
  text-wrap: balance;
  text-shadow: 0 9px 0 rgba(97, 84, 92, 0.16);
}

.hero-tagline {
  color: #ffffff;
  font-size: clamp(25px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.02;
  text-wrap: balance;
}

.hero-text {
  max-width: 520px;
  color: rgba(240, 241, 243, 0.86);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
}

.hero-actions-row,
.actions-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.fine-print {
  color: rgba(240, 241, 243, 0.72);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.game-preview {
  position: relative;
  display: grid;
  align-items: end;
  min-height: min(620px, 68svh);
  isolation: isolate;
}

.game-preview::before {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: 2%;
  height: 38%;
  border-radius: 50% 50% 0 0 / 26% 26% 0 0;
  background: rgba(97, 84, 92, 0.14);
  transform: skewX(-5deg);
  filter: blur(1px);
  z-index: -1;
}

.cloud {
  position: absolute;
  display: block;
  width: 126px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow:
    34px -18px 0 4px rgba(255, 255, 255, 0.78),
    68px 0 0 -3px rgba(255, 255, 255, 0.78);
}

.cloud.one {
  left: 6%;
  top: 13%;
}

.cloud.two {
  right: 14%;
  top: 22%;
  transform: scale(0.74);
}

.playfield {
  position: relative;
  min-height: 560px;
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--sky-top) 0 32%, var(--sky-bottom) 32% 100%);
  box-shadow: 0 8px 0 rgba(97, 84, 92, 0.18), var(--shadow);
}

.hills {
  position: absolute;
  left: -12%;
  right: -12%;
  bottom: 17%;
  height: 34%;
  background:
    linear-gradient(14deg, transparent 0 34%, rgba(124, 191, 135, 0.55) 34% 62%, transparent 62%),
    linear-gradient(-10deg, transparent 0 28%, rgba(124, 191, 135, 0.72) 28% 64%, transparent 64%);
}

.trail {
  position: absolute;
  left: 50%;
  bottom: -12%;
  width: 62%;
  height: 76%;
  transform: translateX(-50%) perspective(620px) rotateX(56deg);
  transform-origin: bottom;
  border-radius: 24px 24px 0 0;
  background:
    linear-gradient(90deg, transparent 0 31%, rgba(255, 255, 255, 0.64) 31% 33%, transparent 33% 67%, rgba(255, 255, 255, 0.64) 67% 69%, transparent 69%),
    repeating-linear-gradient(180deg, rgba(255, 248, 239, 0.2) 0 24px, rgba(255, 248, 239, 0.52) 24px 28px),
    linear-gradient(180deg, #e9c998, #c48e5d);
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.28);
}

.trail::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 9%;
  width: 26%;
  height: 10%;
  transform: translateX(-50%);
  border-radius: var(--radius);
  background: rgba(247, 209, 123, 0.8);
  box-shadow: 0 0 0 6px rgba(247, 209, 123, 0.28);
}

.runner {
  position: absolute;
  left: 50%;
  bottom: 16%;
  width: min(46%, 300px);
  transform: translateX(-50%);
  filter: drop-shadow(0 18px 18px rgba(97, 84, 92, 0.24));
}

.runner img {
  width: 100%;
  height: auto;
}

.hud {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.hud span,
.signal-chip,
.status-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  box-shadow: 0 4px 0 rgba(97, 84, 92, 0.12);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.signal-chip {
  position: absolute;
  right: 22px;
  bottom: 26%;
  background: var(--gold);
  color: #80601d;
}

.section {
  padding: clamp(72px, 10vw, 124px) 0;
}

.section.compact {
  padding: clamp(50px, 7vw, 88px) 0;
}

.section-head {
  display: grid;
  gap: 14px;
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head.center .eyebrow {
  justify-content: center;
}

.section-title,
.page-title {
  color: var(--text);
  font-size: clamp(34px, 5.8vw, 68px);
  font-weight: 900;
  line-height: 0.98;
  text-wrap: balance;
}

.section-copy,
.page-copy,
.body-copy {
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.72;
}

.feature-grid,
.step-grid,
.support-grid,
.link-grid,
.policy-grid {
  display: grid;
  gap: 14px;
}

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.step-grid,
.support-grid,
.link-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.policy-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-card,
.step-card,
.support-card,
.link-card,
.policy-card,
.callout,
.faq-item,
.contact-panel,
.meta-panel {
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow-soft);
}

.feature-card,
.step-card,
.support-card,
.link-card,
.policy-card {
  padding: 20px;
}

.feature-card {
  min-height: 168px;
}

.step-card {
  display: grid;
  gap: 14px;
}

.tile-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  color: #ffffff;
  background: linear-gradient(180deg, var(--green), var(--green-dark));
  box-shadow: 0 5px 0 rgba(94, 159, 114, 0.35);
}

.tile-icon.orange {
  background: linear-gradient(180deg, var(--orange), var(--orange-dark));
  box-shadow: 0 5px 0 rgba(217, 137, 63, 0.35);
}

.tile-icon.sky {
  background: linear-gradient(180deg, var(--sky), #74aeda);
  box-shadow: 0 5px 0 rgba(116, 174, 218, 0.35);
}

.tile-icon.lilac {
  background: linear-gradient(180deg, var(--lilac), #9d91da);
  box-shadow: 0 5px 0 rgba(157, 145, 218, 0.35);
}

.tile-icon svg {
  width: 23px;
  height: 23px;
}

.card-number {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: var(--echo-red);
  color: #ffffff;
  box-shadow: 0 5px 0 var(--echo-red-dark);
  font-size: 18px;
  font-weight: 900;
}

.feature-card h3,
.step-card h3,
.support-card h2,
.support-card h3,
.link-card h3,
.policy-card h3,
.faq-item h3,
.contact-panel h2,
.meta-panel h2,
.content-section h2 {
  color: var(--text);
  font-size: 21px;
  font-weight: 900;
  line-height: 1.12;
}

.feature-card p,
.step-card p,
.support-card p,
.link-card p,
.policy-card p,
.faq-item p,
.contact-panel p,
.meta-panel p,
.content-section p,
.content-section li {
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.68;
}

.world-band {
  overflow: hidden;
  background: #ffffff;
}

.world-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(150px, 1fr));
  gap: 10px;
}

.world {
  min-height: 176px;
  border-radius: var(--radius);
  padding: 16px;
  color: #ffffff;
  box-shadow: var(--shadow-soft);
}

.world h3 {
  margin-bottom: 6px;
  font-size: 20px;
  font-weight: 900;
}

.world p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.45;
}

.world.meadow {
  background: linear-gradient(180deg, #87c88f, #b88a5f);
}

.world.desert {
  background: linear-gradient(180deg, #74a7e5, #d4a15f);
}

.world.city {
  background: linear-gradient(180deg, #89b5db, #5b5d66);
}

.world.blossom {
  background: linear-gradient(180deg, #c9b8ec, #da7896);
}

.world.frontier {
  background: linear-gradient(180deg, #84b7e5, #b3895f);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
}

.character-wall {
  position: relative;
  min-height: 440px;
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.38)),
    linear-gradient(135deg, var(--gold), var(--pink) 48%, var(--sky));
  box-shadow: 0 8px 0 rgba(97, 84, 92, 0.14), var(--shadow);
}

.character-wall img {
  position: absolute;
  right: -4%;
  bottom: -8%;
  width: min(92%, 520px);
  filter: drop-shadow(0 18px 22px rgba(97, 84, 92, 0.24));
}

.stat-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}

.stat {
  display: grid;
  gap: 6px;
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
}

.stat strong {
  color: var(--text);
  font-size: 28px;
  font-weight: 900;
}

.stat span {
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 800;
}

.legal-hero {
  padding: clamp(54px, 8vw, 92px) 0 clamp(46px, 7vw, 76px);
  color: var(--paper);
}

.legal-hero .eyebrow {
  color: rgba(240, 241, 243, 0.82);
}

.legal-hero .page-title,
.legal-hero .page-copy {
  color: #ffffff;
}

.legal-hero .page-copy {
  max-width: 760px;
  color: rgba(240, 241, 243, 0.84);
}

.legal-hero-inner {
  display: grid;
  gap: 18px;
  max-width: 820px;
}

.status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.status-chip {
  background: rgba(255, 255, 255, 0.16);
  color: var(--paper);
  box-shadow: none;
}

.doc-layout {
  display: grid;
  grid-template-columns: minmax(210px, 0.28fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.doc-nav {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 8px;
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.doc-nav a {
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 800;
}

.doc-nav a:hover {
  background: var(--card-solid);
  color: var(--text);
}

.doc-content {
  display: grid;
  gap: 22px;
}

.content-section {
  display: grid;
  gap: 14px;
  scroll-margin-top: 96px;
}

.content-section h2 {
  padding-top: 8px;
  font-size: clamp(26px, 3vw, 36px);
}

.content-section h3 {
  margin-top: 8px;
  color: var(--text);
  font-size: 19px;
  font-weight: 900;
}

.content-section ul,
.content-section ol {
  display: grid;
  gap: 10px;
  padding-left: 22px;
}

.content-section strong {
  color: var(--text);
}

.content-section a {
  color: var(--echo-red);
  font-weight: 900;
}

.callout {
  padding: 18px;
}

.contact-panel,
.meta-panel {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.contact-panel .app-button {
  width: fit-content;
}

.faq-stack {
  display: grid;
  gap: 12px;
}

.faq-item {
  padding: 18px;
}

.faq-item h3 {
  margin-bottom: 8px;
}

.footer {
  padding: 42px 0;
  background: rgba(97, 84, 92, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 28px;
  align-items: start;
}

.footer .brand-name strong {
  color: var(--text);
}

.footer .brand-name span,
.footer-copy {
  color: var(--text-soft);
}

.footer-copy {
  max-width: 420px;
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.6;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-heading {
  margin-bottom: 12px;
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer a {
  color: var(--text-soft);
  font-weight: 800;
}

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

.copyright {
  margin-top: 28px;
  color: var(--text-faint);
  font-size: 13px;
  font-weight: 700;
}

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

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

@media (max-width: 1000px) {
  .header-inner {
    grid-template-columns: auto auto;
  }

  .site-nav {
    display: none;
  }

  .header-actions {
    justify-self: end;
  }

  .hero-grid,
  .split,
  .doc-layout {
    grid-template-columns: 1fr;
  }

  .doc-nav {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .step-grid,
  .support-grid,
  .link-grid,
  .policy-grid {
    grid-template-columns: 1fr;
  }

  .world-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .container {
    width: min(var(--max), calc(100% - 28px));
  }

  .header-inner {
    min-height: 66px;
    gap: 12px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-mark img {
    width: 36px;
    height: 36px;
  }

  .brand-name strong {
    font-size: 21px;
  }

  .text-button {
    min-height: 40px;
    padding: 0 12px;
    font-size: 14px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    min-height: auto;
    padding-top: 40px;
  }

  .hero-actions-row,
  .actions-row {
    align-items: stretch;
  }

  .app-button {
    width: 100%;
  }

  .game-preview {
    min-height: 500px;
  }

  .playfield {
    min-height: 500px;
  }

  .hud {
    grid-template-columns: 1fr;
    right: auto;
    width: 128px;
  }

  .signal-chip {
    right: 12px;
    bottom: 24%;
  }

  .feature-grid,
  .world-strip,
  .stat-stack,
  .doc-nav {
    grid-template-columns: 1fr;
  }

  .character-wall {
    min-height: 330px;
  }

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

@media (max-width: 430px) {
  .hero-title {
    font-size: 68px;
  }

  .hero-tagline {
    font-size: 28px;
  }

  .section-title,
  .page-title {
    font-size: 36px;
  }

  .game-preview,
  .playfield {
    min-height: 440px;
  }

  .runner {
    width: 58%;
  }

  .cloud {
    transform: scale(0.72);
  }

  .cloud.two {
    display: none;
  }
}
