:root {
  --bg: #0f1216;
  --bg-elev: #171d24;
  --bg-card: #1f2731;
  --line: #2f3a47;
  --text: #ecf1f7;
  --muted: #a7b2c2;
  --accent: #24c8ff;
  --accent-2: #ff8f2a;
  --chip: #263140;
  --maxw: 1140px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Sora", sans-serif;
  color: var(--text);
  background:
    radial-gradient(1000px 500px at 110% -10%, #20426d77 0%, transparent 62%),
    radial-gradient(900px 550px at -10% 8%, #76351855 0%, transparent 65%),
    var(--bg);
}

body.lightbox-open {
  overflow: hidden;
  overscroll-behavior: none;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header {
  padding: 5.9rem 1rem 3.4rem;
}

.nav-wrap {
  position: fixed;
  top: 0;
  left: 0;
  transform: none;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0.95rem 1rem 0.88rem;
  border: 0;
  border-bottom: 1px solid #1f1f1f;
  border-radius: 0;
  background: #16181c;
  z-index: 1200;
  transition: padding 200ms ease, box-shadow 200ms ease;
}

.nav-wrap.is-compact {
  padding: 0.55rem 1rem 0.5rem;
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.42);
}

.nav-wrap.is-compact .nav-links a {
  font-size: 0.94rem;
}

.nav-inner {
  width: min(100%, var(--maxw));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.2rem;
  position: relative;
}

.nav-brand {
  margin-right: auto;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}

.nav-brand img {
  height: 66px;
  width: auto;
  display: block;
  transition: height 200ms ease;
}

.nav-wrap.is-compact .nav-brand img {
  height: 44px;
}

@media (min-width: 1200px) {
  .nav-inner {
    width: min(100%, calc(var(--maxw) - 2.3rem));
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Chakra Petch", sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text);
  text-decoration: none;
}

.brand img {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: #fff;
  object-fit: cover;
}

.nav-links {
  display: flex;
  gap: 1rem;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--bg-elev);
  color: var(--text);
  padding: 0.4rem 0.65rem;
  border-radius: 0.5rem;
}

.hero {
  max-width: var(--maxw);
  margin: 3.2rem auto 0;
  display: grid;
  gap: 2.6rem;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.eyebrow {
  color: var(--accent-2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: "Chakra Petch", sans-serif;
  font-weight: 600;
  margin: 0 0 0.6rem;
}

h1,
h2,
h3 {
  font-family: "Chakra Petch", sans-serif;
  line-height: 1.08;
  margin: 0;
}

h1 {
  font-size: clamp(2rem, 6vw, 3.8rem);
}

h2 {
  font-size: clamp(1.65rem, 4vw, 2.6rem);
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}

p {
  line-height: 1.7;
  color: var(--muted);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0.9rem;
}

.hero-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.15rem;
}

.btn {
  display: inline-block;
  border-radius: 999px;
  padding: 0.7rem 1.15rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
}

.btn:hover {
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(100deg, var(--accent), #6ec1ff);
  color: #0b1118;
}

.btn-outline {
  border: 1px solid var(--line);
  color: var(--text);
}

.hero-art {
  min-height: 380px;
  position: relative;
  display: grid;
  place-items: center;
  transform-origin: 58% 67%;
  animation: rocketSway 6.8s ease-in-out infinite;
}

.hero-art img {
  width: min(100%, 460px);
  z-index: 2;
  transform-origin: 58% 67%;
  will-change: transform;
  animation: rocketVibrate 0.18s linear infinite;
  cursor: pointer;
}

.hero-art.is-paused,
.hero-art.is-paused img {
  animation-play-state: paused;
}

.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #dce6f5;
  background: #10161f;
}

.icon-btn svg {
  width: 21px;
  height: 21px;
}

.icon-btn:hover {
  color: #fff;
  border-color: #4b5f79;
  text-decoration: none;
}

.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 4.5rem 1rem 0;
}

.section-head {
  margin-bottom: 1.2rem;
}

.section-games {
  padding-top: 2rem;
}

.section-highlights {
  padding-top: 2.2rem;
}

.as-seen {
  background: linear-gradient(160deg, #141b24, #192332);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1rem;
}

.press-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.85rem;
  align-items: center;
}

.press-row a {
  color: #c6cfda;
  padding: 0;
  text-decoration: none;
}

.press-row a:hover {
  color: #f1f5fa;
}

.press-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.press-logo img {
  display: block;
  width: auto;
  height: 2rem;
  max-width: 15.5rem;
  object-fit: contain;
  opacity: 0.86;
}

.press-logo--apple img {
  height: 2.5rem;
}

.press-logo--bloomberg img {
  height: 1.3rem;
  max-width: 6.8rem;
}

.press-logo--rps img {
  height: 2.1rem;
  max-width: 7.8rem;
}

.press-logo--pocket img {
  max-width: 7.6rem;
}

.press-logo--medium img {
  height: 1.36rem;
  max-width: 7.2rem;
}

.studio-timeline {
  margin-top: 1rem;
  background: linear-gradient(160deg, #131923, #1a2635);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1rem;
}

.studio-timeline ol {
  list-style: none;
  margin: 0;
  padding: 0.2rem 0 0.1rem;
  position: relative;
}

.studio-timeline ol::before {
  content: "";
  position: absolute;
  left: 4.25rem;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #ff9f3f 0%, #ffd77a 18%, #53d7ff 52%, #2ac6ff 100%);
  border-radius: 999px;
  box-shadow: 0 0 0 1px #ffffff1a;
}

.studio-timeline li {
  display: grid;
  grid-template-columns: 3.8rem 1fr;
  gap: 1rem;
  align-items: center;
  margin: 0.72rem 0;
  position: relative;
}

.studio-timeline li span {
  font-family: "Chakra Petch", sans-serif;
  font-weight: 700;
  color: #ffb36f;
  text-align: right;
  line-height: 1;
  padding-right: 0.38rem;
}

.studio-timeline li::before {
  content: "";
  position: absolute;
  left: 4.25rem;
  top: 50%;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at 35% 35%, #fff7d5 0%, #ffd36d 45%, #ff9a2f 100%);
  border: 2px solid #0f1823;
  box-shadow: 0 0 0 2px #1d2c3f, 0 0 14px #ffb35d80;
}

.studio-timeline li::after {
  content: "";
  position: absolute;
  left: 4.25rem;
  top: 50%;
  width: 0.72rem;
  height: 2px;
  transform: translate(0.42rem, -50%);
  background: linear-gradient(90deg, #ffd78f, #7adfff);
  opacity: 0.85;
}

.studio-timeline li strong {
  color: #dce5f3;
  font-weight: 500;
  line-height: 1.45;
  background: linear-gradient(160deg, #111a25cc, #162335cc);
  border: 1px solid #2e4259;
  border-radius: 0.75rem;
  padding: 0.5rem 0.68rem 0.5rem 0.95rem;
  display: block;
  margin: 0 0 0 0.42rem;
}

.game-card {
  background: linear-gradient(160deg, #1d2630, #1a2029);
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  overflow: hidden;
  margin: 1.1rem 0;
  display: block;
}

.game-card.new-release {
  border-color: #24c8ff88;
  box-shadow: 0 0 0 1px #24c8ff22, 0 20px 40px #0a1119aa;
}

.game-content {
  padding: 1.15rem 1.15rem 1.25rem;
}

.game-heading {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.game-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid #ffffff33;
}

.chip-row {
  display: flex;
  gap: 0.55rem;
  margin: 0.8rem 0 0;
}

.chip {
  background: var(--chip);
  border: 1px solid #3e4a59;
  color: #d3dce8;
  border-radius: 999px;
  padding: 0.2rem 0.6rem;
  font-size: 0.8rem;
}

.link-row {
  margin-top: 0.95rem;
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.meta-links {
  margin: 0.8rem 0 0;
  font-size: 0.95rem;
}

.video-wrap {
  margin-top: 0.9rem;
  position: relative;
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  overflow: hidden;
}

.video-wrap img {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
}

.video-poster {
  width: 100%;
  border: 0;
  padding: 0;
  margin: 0;
  background: #000;
  cursor: pointer;
  position: relative;
  display: block;
  line-height: 0;
}

.play-badge {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: 78px;
  height: 56px;
  border-radius: 14px;
  background: #ff0033;
  box-shadow: 0 8px 20px #00000066;
  font-size: 0;
  pointer-events: none;
}

.play-badge::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-42%, -50%);
  width: 0;
  height: 0;
  border-left: 16px solid #fff;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.video-wrap iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
}

.screenshot-strip {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
}

.screenshot-strip img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 0.8rem;
  border: 1px solid #2d3a49;
  display: block;
}

.shot-gallery {
  margin-top: 0.65rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem;
}

.feature-media-row,
.footy-media-row {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 0.7rem;
  align-items: stretch;
}

.feature-media-row .video-wrap,
.footy-media-row .video-wrap {
  margin-top: 0;
  height: 100%;
}

.feature-media-row .video-wrap > img,
.feature-media-row .video-wrap > iframe,
.feature-media-row .video-wrap > .video-poster,
.footy-media-row .video-wrap > img,
.footy-media-row .video-wrap > iframe,
.footy-media-row .video-wrap > .video-poster {
  width: 100%;
  height: 100%;
}

.feature-media-row .video-wrap > img,
.footy-media-row .video-wrap > img,
.feature-media-row .video-wrap > .video-poster > img,
.footy-media-row .video-wrap > .video-poster > img {
  aspect-ratio: auto;
  object-fit: cover;
}

.shot-gallery--compact {
  margin-top: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
  height: 100%;
}

.shot-gallery--landscape {
  margin-top: 0;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(4, minmax(0, 1fr));
  gap: 0.45rem;
  height: 100%;
}

.feature-media-row--landscape {
  grid-template-columns: minmax(0, 1fr) 190px;
  align-items: start;
}

.shot-gallery--landscape .shot-thumb img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.shot-thumb {
  border: 1px solid #2d3a49;
  border-radius: 0.65rem;
  padding: 0;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
  line-height: 0;
  height: 100%;
}

.shot-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.shot-thumb:hover {
  border-color: #65d4ff;
}

.shot-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background: #000000d0;
  padding: 1rem;
  touch-action: none;
}

.shot-lightbox[hidden] {
  display: none;
}

.shot-lightbox img {
  max-width: min(92vw, 760px);
  max-height: 84vh;
  width: auto;
  height: auto;
  border-radius: 0.9rem;
  border: 1px solid #354961;
  box-shadow: 0 18px 40px #00000099;
  will-change: transform, opacity;
  transform: translateX(0);
  opacity: 1;
}

.shot-lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 1px solid #3e5169;
  border-radius: 999px;
  background: #0f1720cc;
  color: #dbe9fb;
  font-size: 1.7rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.shot-lightbox-prev {
  left: 1rem;
}

.shot-lightbox-next {
  right: 1rem;
}

.shot-lightbox-close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  border: 1px solid #3e5169;
  background: #0f1720;
  color: #dbe9fb;
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  cursor: pointer;
}

.store-row {
  margin-top: 0.95rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.95rem;
}

.store-row img {
  height: 56px;
  width: auto;
  display: block;
}

.store-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.text-link {
  font-weight: 600;
}

.site-footer {
  padding-bottom: 3rem;
}

.footer-links {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.copyright {
  margin-top: 1rem;
  font-size: 0.85rem;
}

.geocities-toggle {
  margin-top: 0.8rem;
  padding: 0.2rem 0.45rem;
  border: 1px dashed #3d4d61;
  border-radius: 999px;
  color: #95a8bf;
  background: transparent;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.42;
  cursor: pointer;
}

.geocities-toggle:hover {
  opacity: 1;
  text-decoration: none;
}

.geocities-webring {
  display: none;
  margin-top: 1rem;
  border: 3px ridge #00ffff;
  background: #000;
  color: #fff;
  padding: 0.65rem 0.8rem;
  text-align: center;
}

.geocities-webring-title {
  margin: 0;
  font-family: "Courier New", monospace;
  color: #fffb00;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.geocities-webring-links {
  margin-top: 0.45rem;
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.geocities-webring-links a {
  color: #00ffff !important;
  font-family: "Courier New", monospace;
  text-decoration: underline !important;
  font-size: 0.88rem;
}

.geocities-webring-links a:hover {
  color: #ff00ff !important;
}

.bg-dangle {
  background: radial-gradient(120% 120% at 18% 12%, #16424f 0%, #116273 36%, #0d4d61 62%, #0a3340 100%);
}

.bg-dangle h3 {
  color: #f2fbff;
}

.bg-dangle p,
.bg-dangle .meta-links {
  color: #cce6ef;
}

.bg-dangle a {
  color: #66d8ff;
}

.bg-disposition {
  background: linear-gradient(155deg, #30414f, #76889b);
}

.bg-crust {
  background: linear-gradient(155deg, #653216, #b5622c);
}

.bg-arhound {
  background: linear-gradient(155deg, #233242, #3f7f8f);
}

.bg-color {
  background: linear-gradient(155deg, #562a72, #2192b1);
}

.bg-pizza {
  background: linear-gradient(155deg, #682122, #be8b27);
}

.bg-shredded {
  background: linear-gradient(155deg, #43566b, #7a8ca1);
}

.bg-soccer {
  background: linear-gradient(155deg, #1f4a3d, #4fa57e);
}

.bg-bitnoid {
  background: linear-gradient(155deg, #203c59, #3f6f9f);
}

.bg-poker {
  background: linear-gradient(155deg, #5e1e34, #b53a63);
}

.bg-cmnd {
  background: linear-gradient(155deg, #342749, #7b64ab);
}

.bg-borderline {
  background: linear-gradient(155deg, #2c2e34, #6b7180);
}

.bg-footy {
  background: linear-gradient(155deg, #1f3d33, #2a7b56);
}

.event-hero-link {
  display: block;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.event-hero-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
  display: block;
}

.event-gif {
  width: min(100%, 560px);
  display: block;
  margin: 1rem auto;
  border-radius: 12px;
}

.fade-up {
  opacity: 0;
  transform: translateY(18px);
}

.fade-up.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.geocities-mode {
  background:
    radial-gradient(circle at 18% 24%, #ffffff 0 1px, transparent 2px),
    radial-gradient(circle at 74% 33%, #ffffff 0 1px, transparent 2px),
    radial-gradient(circle at 46% 77%, #fff799 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 10% 80%, #ffffff 0 1px, transparent 2px),
    radial-gradient(circle at 87% 12%, #b8f8ff 0 1.5px, transparent 2.5px),
    repeating-linear-gradient(45deg, #13001f 0 22px, #23003f 22px 44px, #001f3f 44px 66px, #0f3d00 66px 88px) fixed !important;
  background-size: 180px 180px, 220px 220px, 260px 260px, 320px 320px, 280px 280px, auto;
  color: #000 !important;
  font-family: "Comic Sans MS", "Chalkboard SE", cursive !important;
}

.geocities-mode .site-header,
.geocities-mode .section,
.geocities-mode .game-card,
.geocities-mode .site-footer {
  background: #fff5ccb8 !important;
  border: 3px ridge #ff00ff !important;
  box-shadow: 0 0 0 4px #00ffff !important;
}

.geocities-mode p,
.geocities-mode .meta-links,
.geocities-mode .nav-links a,
.geocities-mode h1,
.geocities-mode h2,
.geocities-mode h3 {
  color: #000 !important;
  text-shadow: 1px 1px 0 #ffff00;
}

.geocities-mode .section-head h2,
.geocities-mode .game-heading h3,
.geocities-mode h1 {
  animation: blinky 0.9s step-end infinite;
}

.geocities-mode h1,
.geocities-mode h2,
.geocities-mode h3,
.geocities-mode .eyebrow {
  font-family: Impact, Haettenschweiler, "Arial Black", "Comic Sans MS", cursive !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow: 2px 2px 0 #00ffff, -2px -2px 0 #ff00ff !important;
}

.geocities-mode .icon-btn,
.geocities-mode .nav-toggle,
.geocities-mode .store-row a {
  filter: saturate(1.8) contrast(1.2);
}

.geocities-mode .geocities-webring {
  display: block;
}

.geocities-extras {
  display: none;
}

.geocities-mode .geocities-extras {
  display: block;
  margin: 0.8rem auto 0.5rem;
  max-width: var(--maxw);
  border: 3px dashed #ff0000;
  background: #fff9;
  padding: 0.55rem;
}

.geocities-marquee {
  color: #0000ee;
  font-size: 1.05rem;
  font-weight: 700;
}

.geocities-gif-row {
  margin-top: 0.35rem;
  display: flex;
  gap: 0.55rem;
  justify-content: center;
  flex-wrap: wrap;
}

.geocities-gif-row img {
  width: 112px;
  height: 42px;
  object-fit: cover;
  border: 2px outset #999;
  background: #000;
}

@keyframes blinky {
  0%,
  49% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0.22;
  }
}


@keyframes rocketVibrate {
  0% { transform: translate(0, 0) rotate(-1.65deg); }
  20% { transform: translate(0.65px, -0.65px) rotate(-1.84deg); }
  40% { transform: translate(-0.65px, 0.65px) rotate(-1.5deg); }
  60% { transform: translate(0.65px, 0.65px) rotate(-1.79deg); }
  80% { transform: translate(-0.65px, -0.65px) rotate(-1.53deg); }
  100% { transform: translate(0, 0) rotate(-1.65deg); }
}

@keyframes rocketSway {
  0% { transform: rotate(-1.6deg); }
  50% { transform: rotate(0.7deg); }
  100% { transform: rotate(-1.6deg); }
}

@media (max-width: 950px) {
  .hero {
    grid-template-columns: 1fr;
    margin-top: 1.8rem;
  }

  .hero-art {
    min-height: 320px;
  }

  .hero-art img {
    width: min(100%, 360px);
  }
}


@media (max-width: 760px) {
  .site-header {
    padding-top: 5.2rem;
  }

  .nav-wrap {
    padding: 0.72rem 1rem;
    border-radius: 0;
  }

  .nav-wrap.is-compact {
    padding: 0.5rem 1rem;
  }

  .nav-brand img {
    height: 46px;
  }

  .nav-wrap.is-compact .nav-brand img {
    height: 34px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.55rem);
    left: 0;
    right: 0;
    background: #141a21;
    border: 1px solid var(--line);
    border-radius: 0.8rem;
    padding: 0.7rem;
    display: none;
    flex-direction: column;
  }

  .nav-links.open {
    display: flex;
  }

  .screenshot-strip {
    display: flex;
    overflow-x: auto;
    padding-bottom: 0.3rem;
  }

  .screenshot-strip img {
    width: 42%;
    min-width: 145px;
    flex: 0 0 auto;
  }

  .shot-gallery {
    grid-template-columns: repeat(4, minmax(78px, 1fr));
    gap: 0.4rem;
  }

  .feature-media-row,
  .footy-media-row {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .shot-gallery--compact {
    grid-template-columns: repeat(4, minmax(68px, 1fr));
    grid-template-rows: none;
    height: auto;
    gap: 0.38rem;
  }

  .shot-gallery--landscape {
    grid-template-columns: repeat(2, minmax(90px, 1fr));
    grid-template-rows: none;
    height: auto;
    gap: 0.38rem;
  }

  .shot-lightbox-nav {
    width: 38px;
    height: 38px;
    font-size: 1.4rem;
  }

  .store-row {
    gap: 0.6rem;
  }

  .store-row a.store-badge {
    flex: 0 1 calc(50% - 0.3rem);
    max-width: calc(50% - 0.3rem);
  }

  .store-row a.store-badge img {
    width: 100%;
    height: auto;
  }

  .press-row a {
    font-size: 0.86rem;
  }

  .press-row {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 1.2rem;
    align-items: center;
  }

  .press-logo {
    flex: 0 0 auto;
    justify-content: center;
  }

  .press-logo img {
    width: auto;
    max-width: 100%;
    height: 0.9rem;
  }

  .press-logo--apple img {
    height: 1.1rem;
  }

  .press-logo--bloomberg img {
    height: 0.85rem;
  }

  .press-logo--rps img {
    height: 0.9rem;
  }

  .press-logo--pocket img {
    height: 0.9rem;
  }

  .press-logo--medium img {
    height: 0.86rem;
  }

  .studio-timeline ol::before {
    left: 3.75rem;
  }

  .studio-timeline li {
    grid-template-columns: 3.2rem 1fr;
    gap: 0.8rem;
  }

  .studio-timeline li::before,
  .studio-timeline li::after {
    left: 3.75rem;
  }
}

@media (max-width: 1080px) {
  .feature-media-row,
  .footy-media-row {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .shot-gallery--compact {
    grid-template-columns: repeat(4, minmax(68px, 1fr));
    grid-template-rows: none;
    height: auto;
    gap: 0.4rem;
  }

  .shot-gallery--landscape {
    grid-template-columns: repeat(2, minmax(90px, 1fr));
    grid-template-rows: none;
    height: auto;
    gap: 0.4rem;
  }
}
