:root {
  --home-bg: #070504;
  --home-panel: rgba(18, 12, 9, 0.94);
  --home-panel-soft: rgba(24, 16, 11, 0.9);
  --home-line: rgba(225, 170, 82, 0.34);
  --home-line-strong: rgba(241, 188, 99, 0.72);
  --home-gold: #e8b867;
  --home-gold-bright: #ffd48c;
  --home-cream: #f8e8c8;
  --home-muted: rgba(248, 232, 200, 0.68);
  --home-shadow: 0 22px 72px rgba(0, 0, 0, 0.62);
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--home-bg);
}

body {
  color: var(--home-cream);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

.page,
.chess-drift {
  display: none !important;
}

.home-v2-root,
.home-v2-root * {
  box-sizing: border-box;
}

.home-v2-root {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 560px;
  overflow: hidden;
  isolation: isolate;
  background-color: var(--home-bg);
}

.home-v2-root::after {
  content: "";
  position: absolute;
  inset: 68px 0 auto;
  height: 1px;
  background: rgba(232, 184, 103, 0.18);
  pointer-events: none;
  z-index: 80;
}

.home-v2-root .top-nav {
  position: absolute;
  inset: 0 0 auto;
  translate: none;
  z-index: 90;
  width: 100%;
  max-width: none;
  height: 68px;
  padding: 0 clamp(20px, 3vw, 48px);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: nowrap;
  background: rgba(7, 5, 4, 0.92);
  opacity: 1;
  visibility: visible;
}

.home-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  color: var(--home-cream);
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(17px, 1.45vw, 23px);
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.home-brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: drop-shadow(0 7px 14px rgba(0, 0, 0, 0.48));
}

.home-v2-root .menu-links {
  position: static;
  inset: auto;
  width: auto;
  max-width: none;
  translate: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 1.7vw, 28px);
  min-width: 0;
  flex-wrap: nowrap;
}

.home-v2-root .menu-link,
.home-v2-root .auth-submit,
.home-v2-root .register-link {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(248, 232, 200, 0.76);
  text-decoration: none;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: none;
}

.home-v2-root .menu-link:hover,
.home-v2-root .auth-submit:hover,
.home-v2-root .register-link:hover {
  color: var(--home-gold-bright);
}

.home-v2-root .auth-inline {
  display: flex;
  align-items: center;
  gap: 18px;
}

.home-v2-root .top-download {
  width: auto;
  flex: 0 0 auto;
  min-height: 38px;
  padding: 0 18px;
  border: 1px solid rgba(255, 225, 167, 0.88);
  border-radius: 999px;
  color: #130c06;
  background: linear-gradient(135deg, #d99d42 0%, #f7d18b 52%, #e4ad55 100%);
  box-shadow:
    0 0 0 1px rgba(255, 232, 190, 0.16) inset,
    0 9px 25px rgba(218, 154, 65, 0.26),
    0 0 22px rgba(232, 184, 103, 0.1);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.home-v2-root .top-download:hover,
.home-v2-root .top-download:focus-visible {
  color: #0d0804;
  border-color: #ffe2ac;
  background: linear-gradient(135deg, #e5aa4f 0%, #ffe0a4 52%, #ecb85f 100%);
  box-shadow:
    0 0 0 1px rgba(255, 242, 214, 0.22) inset,
    0 12px 30px rgba(218, 154, 65, 0.36),
    0 0 28px rgba(232, 184, 103, 0.18);
  transform: translateY(-1px);
  outline: none;
}

.home-v2-root .language-switch {
  position: relative;
  inset: auto;
  z-index: 120;
}

.home-v2-root .lang-toggle {
  min-height: 38px;
  border-color: var(--home-line);
  background: rgba(18, 12, 9, 0.9);
  color: var(--home-cream);
}

.home-v2-hero {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.home-piece-rain {
  position: absolute;
  z-index: 3;
  inset: 68px 0 0;
  overflow: hidden;
  pointer-events: none;
}

.home-piece-rain img {
  position: absolute;
  top: -14vh;
  left: var(--rain-x);
  width: var(--rain-size);
  height: auto;
  opacity: var(--rain-opacity);
  filter: sepia(1) saturate(0.72) brightness(1.3) drop-shadow(0 8px 14px rgba(0, 0, 0, 0.5));
  animation: home-piece-fall var(--rain-duration) linear var(--rain-delay) infinite;
  will-change: translate, rotate;
}

@keyframes home-piece-fall {
  0% {
    translate: -50% -14vh;
    rotate: 0deg;
  }
  48% {
    translate: calc(-50% + var(--rain-sway)) 49vh;
    rotate: var(--rain-spin);
  }
  100% {
    translate: -50% 116vh;
    rotate: 0deg;
  }
}

.home-copy {
  position: absolute;
  z-index: 32;
  top: clamp(82px, 9.4vh, 106px);
  left: 50%;
  width: min(900px, 88vw);
  translate: -50% 0;
  text-align: center;
  pointer-events: none;
  transition: opacity 260ms ease, translate 260ms ease;
}

.hero-sales-eyebrow {
  margin: 0 0 6px;
  color: var(--home-muted);
  font-size: clamp(10px, 0.9vw, 13px);
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-sales-title {
  display: block;
  width: max-content;
  max-width: 100%;
  margin: 0;
  margin-inline: auto;
  color: var(--home-gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 4.8vw, 70px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-shadow: 0 16px 42px rgba(0, 0, 0, 0.82);
}

.hero-sales-lead {
  display: block;
  width: max-content;
  max-width: 100%;
  margin: 8px auto 0;
  color: var(--home-cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(19px, 2.15vw, 32px);
  font-weight: 600;
  line-height: 1.08;
  white-space: nowrap;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.78);
}

.orbit-stage {
  position: absolute;
  z-index: 10;
  inset: clamp(170px, 20vh, 196px) 0 80px;
  overflow: visible;
}

.orbit-track {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  width: min(82vw, 1180px);
  height: min(52vh, 450px);
  translate: -50% -50%;
  border: 1px solid var(--home-line);
  border-radius: 50%;
  box-shadow: 0 0 52px rgba(218, 144, 48, 0.08);
  opacity: 0.92;
  transition: opacity 240ms ease;
  transform-origin: center;
  animation: orbit-track-drift 24s ease-in-out infinite;
  will-change: transform;
}

.orbit-track::after {
  content: "";
  position: absolute;
  inset: 18px 42px;
  border: 1px solid rgba(232, 184, 103, 0.12);
  border-radius: 50%;
  transform-origin: center;
  animation: orbit-inner-drift 29s ease-in-out infinite;
}

@keyframes orbit-track-drift {
  0%, 100% {
    transform: rotate(-1deg) scale(0.994);
  }
  50% {
    transform: rotate(1.2deg) scale(1.014);
  }
}

@keyframes orbit-inner-drift {
  0%, 100% {
    transform: rotate(1.4deg) scale(1.012);
  }
  50% {
    transform: rotate(-1.6deg) scale(0.986);
  }
}

.centerpiece {
  position: absolute;
  z-index: 8;
  left: 50%;
  top: 50%;
  width: min(38vw, 530px);
  max-width: 530px;
  min-width: 300px;
  translate: -50% -50%;
  transition: opacity 260ms ease, scale 260ms ease, filter 260ms ease;
  pointer-events: none;
  animation: centerpiece-drift 17s ease-in-out infinite;
  will-change: translate, scale;
}

@keyframes centerpiece-drift {
  0%, 100% {
    translate: -50% -50%;
    scale: 1;
  }
  36% {
    translate: calc(-50% - 4px) calc(-50% - 5px);
    scale: 1.008;
  }
  72% {
    translate: calc(-50% + 5px) calc(-50% + 2px);
    scale: 1.014;
  }
}

.centerpiece img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 58vh;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
  filter: drop-shadow(0 28px 54px rgba(0, 0, 0, 0.7));
  scale: 1;
  transition: scale 220ms ease, filter 220ms ease;
}

.home-v2-hero:has(.orbit-module:hover) .centerpiece img,
.home-v2-hero:has(.orbit-module:focus-visible) .centerpiece img {
  scale: 1.018;
  filter: drop-shadow(0 30px 58px rgba(0, 0, 0, 0.76)) drop-shadow(0 0 22px rgba(232, 184, 103, 0.22));
}

.orbit-layer {
  position: absolute;
  inset: 0;
  z-index: 14;
  pointer-events: none;
  transition: opacity 240ms ease;
}

.orbit-slot {
  position: absolute;
  left: 0;
  top: 0;
  width: clamp(158px, 15vw, 228px);
  pointer-events: auto;
  will-change: transform;
}

.orbit-module {
  position: relative;
  width: 100%;
  min-height: 64px;
  padding: 9px 15px 9px 11px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--home-line-strong);
  border-radius: 999px;
  background-color: var(--home-panel-soft);
  color: var(--home-cream);
  font: inherit;
  cursor: pointer;
  box-shadow: var(--home-shadow), inset 0 1px 0 rgba(255, 229, 184, 0.08);
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease, scale 180ms ease, box-shadow 180ms ease;
}

.orbit-module::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(255, 212, 140, 0.72);
  border-radius: inherit;
  opacity: 0;
  pointer-events: none;
}

.orbit-module:hover::after,
.orbit-module:focus-visible::after {
  animation: module-gold-pulse 1.9s ease-out infinite;
}

@keyframes module-gold-pulse {
  0% {
    opacity: 0;
    scale: 0.97;
  }
  24% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
    scale: 1.11;
  }
}

.orbit-module:hover,
.orbit-module:focus-visible {
  scale: 1.045;
  border-color: var(--home-gold-bright);
  background-color: #24160e;
  color: var(--home-gold-bright);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.74), 0 0 28px rgba(232, 184, 103, 0.16);
  outline: none;
}

.orbit-module__icon-wrap {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(232, 184, 103, 0.42);
  border-radius: 50%;
  background-color: rgba(8, 6, 5, 0.58);
}

.orbit-module__icon {
  width: 27px;
  height: 27px;
  object-fit: contain;
  filter: sepia(1) saturate(0.9) brightness(1.28) drop-shadow(0 5px 10px rgba(0, 0, 0, 0.42));
}

.orbit-module [data-module-label] {
  display: block;
  min-width: 0;
  text-align: left;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(15px, 1.28vw, 20px);
  font-weight: 700;
  line-height: 1.02;
}

.orbit-slot--trainers {
  width: clamp(190px, 17vw, 246px);
}

.orbit-module--trainers {
  min-height: 88px;
  border-radius: 30px;
}

.orbit-slot--engines {
  width: clamp(205px, 18.5vw, 270px);
}

.orbit-slot--details {
  width: clamp(205px, 18vw, 265px);
}

.orbit-slot--bases {
  width: clamp(230px, 21vw, 310px);
}

.orbit-module--engines,
.orbit-module--details {
  min-height: 96px;
  border-radius: 30px;
}

.orbit-slot,
.orbit-slot--trainers,
.orbit-slot--engines,
.orbit-slot--details,
.orbit-slot--bases {
  width: clamp(250px, 19vw, 280px);
}

.orbit-module,
.orbit-module--trainers,
.orbit-module--engines,
.orbit-module--details {
  height: 116px;
  min-height: 116px;
  border-radius: 30px;
}

.orbit-module__copy {
  width: 0;
  flex: 1 1 auto;
  min-width: 0;
  display: grid;
  gap: 5px;
}

.trainer-mini-list,
.engine-mini-list,
.feature-mini-list {
  width: 100%;
  display: grid;
  color: rgba(248, 232, 200, 0.58);
  font-size: clamp(7px, 0.56vw, 9px);
  font-weight: 750;
  letter-spacing: 0.035em;
  line-height: 1.12;
  text-align: left;
}

.trainer-mini-list span,
.engine-mini-list span,
.feature-mini-list span {
  display: block;
  padding: 2px 0 1px;
  border-top: 1px solid rgba(232, 184, 103, 0.15);
  white-space: nowrap;
}

.feature-mini-list [data-detail-mini="basesFormats"] {
  white-space: normal;
}

.hero-actions {
  position: absolute;
  z-index: 38;
  left: 50%;
  bottom: 15px;
  translate: -50% 0;
  display: grid;
  justify-items: center;
  gap: 7px;
  transition: opacity 240ms ease, translate 240ms ease;
}

body:has(#cc-analytics-consent) .home-v2-root .hero-actions {
  bottom: 82px;
}

#cc-analytics-consent {
  max-width: min(1180px, calc(100% - 32px)) !important;
  padding: 10px 14px !important;
  font-size: 12px !important;
}

#cc-analytics-consent button {
  min-height: 36px !important;
}

.hero-sales-primary {
  min-width: 280px;
  min-height: 52px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 215, 146, 0.78);
  border-radius: 999px;
  background-color: var(--home-gold);
  color: #17100a;
  text-decoration: none;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.02em;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 245, 220, 0.65);
  transition: translate 180ms ease, background-color 180ms ease;
}

.hero-sales-primary:hover,
.hero-sales-primary:focus-visible {
  translate: 0 -2px;
  background-color: var(--home-gold-bright);
  outline: none;
}

.hero-trust {
  margin: 0;
  color: rgba(248, 232, 200, 0.56);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.module-viewer {
  position: absolute;
  z-index: 60;
  inset: 76px clamp(14px, 2.8vw, 44px) 16px;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--home-line);
  border-radius: 22px;
  background-color: rgba(7, 5, 4, 0.98);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.84);
  opacity: 0;
  visibility: hidden;
  scale: 0.985;
  transition: opacity 240ms ease, visibility 240ms ease, scale 240ms ease;
}

.module-viewer__bar {
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 4px 0 10px;
}

.module-viewer__heading {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.module-viewer__title-row {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.module-viewer__eyebrow {
  color: var(--home-muted);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.module-viewer__title {
  margin: 0;
  color: var(--home-cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1;
}

.module-viewer__cinema-more {
  min-height: 29px;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 11px;
  border: 1px solid rgba(232, 184, 103, 0.36);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(164, 107, 39, 0.22), rgba(232, 184, 103, 0.07));
  color: var(--home-gold-bright);
  font-size: 9px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.module-viewer[data-module]:not([data-module=""]) .module-viewer__cinema-more {
  display: inline-flex;
  animation: module-more-invite 3.4s ease-in-out infinite;
}

.module-viewer__cinema-more:hover,
.module-viewer__cinema-more:focus-visible {
  border-color: rgba(255, 214, 139, 0.76);
  background: linear-gradient(135deg, rgba(190, 126, 47, 0.34), rgba(232, 184, 103, 0.14));
  transform: translateY(-1px);
  outline: none;
}

.module-viewer__more-arrow {
  display: inline-block;
  font-size: 12px;
  transform-origin: center;
  animation: module-more-arrow 3.4s ease-in-out infinite;
}

@keyframes module-more-invite {
  0%, 56%, 100% {
    border-color: rgba(232, 184, 103, 0.36);
    box-shadow: 0 0 0 0 rgba(232, 184, 103, 0);
  }
  67% {
    border-color: rgba(255, 214, 139, 0.82);
    box-shadow: 0 0 0 4px rgba(232, 184, 103, 0.12), 0 0 22px rgba(232, 184, 103, 0.2);
  }
  78% {
    border-color: rgba(232, 184, 103, 0.48);
    box-shadow: 0 0 0 8px rgba(232, 184, 103, 0), 0 0 0 rgba(232, 184, 103, 0);
  }
}

@keyframes module-more-arrow {
  0%, 56%, 78%, 100% { transform: translateX(0); }
  64% { transform: translateX(3px); }
  70% { transform: translateX(0); }
  74% { transform: translateX(2px); }
}

.trainer-switcher {
  display: none;
  align-items: center;
  gap: 7px;
  margin-left: auto;
}

.module-viewer[data-module="trainers"] .trainer-switcher {
  display: flex;
}

.trainer-switcher button,
.module-viewer__close {
  min-height: 38px;
  border: 1px solid rgba(232, 184, 103, 0.25);
  border-radius: 999px;
  background-color: rgba(24, 16, 11, 0.92);
  color: rgba(248, 232, 200, 0.72);
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.trainer-switcher button {
  padding: 0 13px;
}

.trainer-switcher button.is-active,
.trainer-switcher button:hover,
.trainer-switcher button:focus-visible,
.module-viewer__close:hover,
.module-viewer__close:focus-visible {
  border-color: var(--home-gold-bright);
  color: var(--home-gold-bright);
  outline: none;
}

.module-viewer__close {
  width: 40px;
  flex: 0 0 40px;
  margin-left: 2px;
  padding: 0;
  font-size: 20px;
}

.module-viewer__frame {
  position: relative;
  min-height: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(232, 184, 103, 0.18);
  border-radius: 14px;
  background-color: #050403;
}

.module-viewer__media {
  position: relative;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  outline: none;
  transition: box-shadow 180ms ease, border-color 180ms ease;
}

.module-viewer__media:focus-visible {
  border-color: rgba(255, 214, 139, 0.82);
  box-shadow: inset 0 0 0 2px rgba(255, 214, 139, 0.72), 0 0 0 3px rgba(232, 184, 103, 0.14);
}

@media (hover: hover) {
  .module-viewer__media:hover {
    box-shadow: inset 0 0 0 1px rgba(255, 214, 139, 0.38);
  }

  .module-viewer__media:hover .module-viewer__image.is-ready {
    transform: scale(1.008);
  }
}

.cinema-story {
  display: none;
}

.module-viewer[data-module="cinema"] .module-viewer__frame {
  padding: clamp(14px, 1.8vw, 24px);
}

.module-viewer[data-module="cinema"].has-cinema-story .module-viewer__frame {
  grid-template-columns: minmax(230px, 300px) minmax(0, 1fr);
  gap: clamp(18px, 2vw, 28px);
  align-items: center;
}

.module-viewer[data-module="cinema"].has-cinema-story .cinema-story {
  align-self: stretch;
  min-height: 0;
  display: grid;
  grid-template-rows: minmax(190px, 1fr) auto;
  overflow: hidden;
  border: 1px solid rgba(232, 184, 103, 0.22);
  border-radius: 16px;
  background-color: rgba(18, 12, 9, 0.9);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.44);
}

.cinema-story__portrait {
  min-height: 0;
  overflow: hidden;
  background-color: #0b0806;
}

.cinema-story__portrait img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  object-position: 50% 16%;
  filter: sepia(0.12) saturate(0.84) brightness(0.88) contrast(1.05);
}

.cinema-story__copy {
  display: grid;
  gap: 7px;
  padding: 16px 17px 18px;
  border-top: 1px solid rgba(232, 184, 103, 0.18);
}

.cinema-story__eyebrow {
  color: var(--home-gold);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.cinema-story__name {
  margin: 0;
  color: var(--home-cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1;
}

.cinema-story__short,
.cinema-story__long {
  margin: 0;
}

.cinema-story__short {
  color: var(--home-gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.28;
}

.cinema-story__long {
  color: rgba(248, 232, 200, 0.72);
  font-size: 11px;
  line-height: 1.48;
}

.cinema-story__more {
  width: 100%;
  min-height: 34px;
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 7px 8px 7px 11px;
  border: 1px solid rgba(232, 184, 103, 0.42);
  border-radius: 9px;
  background: linear-gradient(135deg, rgba(164, 107, 39, 0.24), rgba(232, 184, 103, 0.08));
  color: var(--home-cream);
  font-family: inherit;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.025em;
  text-align: left;
  text-decoration: none;
  opacity: 1;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.cinema-story__more:hover,
.cinema-story__more:focus-visible {
  border-color: rgba(255, 214, 139, 0.76);
  background: linear-gradient(135deg, rgba(190, 126, 47, 0.34), rgba(232, 184, 103, 0.14));
  transform: translateY(-1px);
  outline: none;
}

.cinema-story__more-status {
  flex: 0 0 auto;
  padding: 3px 6px;
  border: 1px solid rgba(232, 184, 103, 0.24);
  border-radius: 999px;
  color: var(--home-gold-bright);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.module-viewer[data-module="cinema"] .module-viewer__media {
  justify-self: center;
  align-self: center;
  width: 100%;
  height: 100%;
  max-height: 100%;
  aspect-ratio: auto;
}

.module-viewer[data-module="cinema"] .module-viewer__image {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  aspect-ratio: 3834 / 2082;
  object-fit: contain;
  overflow: hidden;
  border: 1px solid rgba(232, 184, 103, 0.2);
  border-radius: 12px;
  background-color: #050403;
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.58);
}

.module-viewer__image {
  display: block;
  width: auto;
  height: auto;
  max-width: calc(100% - 16px);
  max-height: calc(100% - 16px);
  object-fit: contain;
  object-position: center;
  opacity: 0;
  transition: opacity 180ms ease, transform 220ms ease;
}

@media (min-width: 901px) {
  .module-viewer:is([data-module="editor"], [data-module="online"]) .module-viewer__image {
    width: calc(100% - 16px);
    height: calc(100svh - 198px);
    max-width: calc(100% - 16px);
    max-height: none;
  }
}

.module-viewer[data-module="bases"] .module-viewer__media,
.module-viewer[data-module="trainers"] .module-viewer__media {
  box-sizing: border-box;
  padding: 0;
  overflow: hidden;
}

.module-viewer[data-module="bases"] .module-viewer__image,
.module-viewer[data-module="trainers"] .module-viewer__image {
  position: absolute;
  inset: 8px;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center;
}

.module-viewer[data-module="engines"] .module-viewer__media {
  box-sizing: border-box;
  padding: 0;
}

.module-viewer[data-module="engines"] .module-viewer__image {
  position: absolute;
  inset: clamp(8px, 1.2vw, 18px);
  margin: auto;
  width: auto;
  height: auto;
  max-width: 50%;
  max-height: calc(100% - clamp(16px, 2.4vw, 36px));
  object-fit: contain;
}

@media (max-width: 900px) {
  .module-viewer[data-module="engines"] .module-viewer__media {
    height: auto;
    padding: 6px;
  }

  .module-viewer[data-module="engines"] .module-viewer__image {
    position: static;
    inset: auto;
    margin: 0 auto;
    width: min(100%, 823px);
    height: auto;
    max-width: 100%;
    max-height: none;
  }
}

.module-viewer__image.is-ready {
  opacity: 1;
}

.module-viewer__loading {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--home-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.module-viewer__image.is-ready + .module-viewer__loading {
  display: none;
}

.home-v2-hero.is-showing-module .module-viewer {
  opacity: 1;
  visibility: visible;
  scale: 1;
}

.home-v2-hero.is-showing-module .home-copy,
.home-v2-hero.is-showing-module .orbit-track,
.home-v2-hero.is-showing-module .centerpiece,
.home-v2-hero.is-showing-module .orbit-layer,
.home-v2-hero.is-showing-module .hero-actions {
  opacity: 0;
  pointer-events: none;
}

.home-v2-hero.is-showing-module .home-copy {
  translate: -50% -8px;
}

.home-v2-hero.is-showing-module .orbit-track,
.home-v2-hero.is-showing-module .orbit-track::after,
.home-v2-hero.is-showing-module .centerpiece,
.home-v2-hero.is-showing-module .home-piece-rain img {
  animation-play-state: paused;
}

@media (max-width: 1050px) {
  .home-v2-root .menu-links {
    gap: 13px;
  }

  .home-v2-root .menu-link,
  .home-v2-root .auth-submit,
  .home-v2-root .register-link {
    font-size: 10px;
  }

  .orbit-slot {
    width: clamp(210px, 24vw, 240px);
  }

  .orbit-module {
    height: 104px;
    min-height: 104px;
  }

  .orbit-module__icon-wrap {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .orbit-module__icon {
    width: 23px;
    height: 23px;
  }
}

@media (max-width: 760px) {
  .home-v2-root {
    min-height: 520px;
  }

  .home-v2-root::after {
    top: 58px;
  }

  .home-v2-root .top-nav {
    height: 58px;
    padding: 0 12px;
    gap: 10px;
  }

  .home-piece-rain {
    inset: 58px 0 0;
  }

  .home-brand {
    gap: 7px;
    max-width: 48vw;
    font-size: 13px;
    overflow: hidden;
  }

  .home-brand img {
    width: 29px;
    height: 29px;
  }

  .home-v2-root .menu-links {
    gap: 10px;
  }

  .home-v2-root .menu-link:not(.top-download),
  .home-v2-root .auth-inline {
    display: none;
  }

  .home-v2-root .top-download {
    min-height: 34px;
    padding: 0 13px;
    font-size: 9px;
  }

  .home-v2-root .lang-toggle {
    min-height: 34px;
  }

  .home-copy {
    top: 72px;
    width: 94vw;
  }

  .hero-sales-eyebrow {
    margin-bottom: 4px;
    font-size: 8px;
  }

  .hero-sales-title {
    font-size: clamp(31px, 9.2vw, 46px);
  }

  .hero-sales-lead {
    margin-top: 5px;
    font-size: clamp(16px, 4.6vw, 23px);
  }

  .orbit-stage {
    inset: 170px 0 69px;
  }

  .orbit-track {
    width: 94vw;
    height: min(46vh, 360px);
  }

  .orbit-track::after {
    inset: 12px 20px;
  }

  .centerpiece {
    width: min(67vw, 390px);
    min-width: 224px;
  }

  .orbit-slot {
    width: clamp(118px, 34vw, 150px);
  }

  .orbit-module {
    min-height: 46px;
    padding: 6px 9px 6px 7px;
    gap: 7px;
  }

  .orbit-module__icon-wrap {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .orbit-module__icon {
    width: 20px;
    height: 20px;
  }

  .orbit-module [data-module-label] {
    font-size: clamp(11px, 3.1vw, 14px);
  }

  .orbit-slot--trainers {
    width: clamp(148px, 39vw, 174px);
  }

  .orbit-module--trainers {
    min-height: 76px;
    border-radius: 24px;
  }

  .orbit-slot--engines {
    width: clamp(172px, 48vw, 200px);
  }

  .orbit-slot--details {
    width: clamp(156px, 44vw, 178px);
  }

  .orbit-slot--bases {
    width: clamp(176px, 49vw, 198px);
  }

  .orbit-slot,
  .orbit-slot--trainers,
  .orbit-slot--engines,
  .orbit-slot--details,
  .orbit-slot--bases {
    width: clamp(166px, 45vw, 178px);
  }

  .orbit-module--engines,
  .orbit-module--details {
    min-height: 80px;
    border-radius: 24px;
  }

  .orbit-module,
  .orbit-module--trainers,
  .orbit-module--engines,
  .orbit-module--details {
    height: 90px;
    min-height: 90px;
    border-radius: 24px;
  }

  .trainer-mini-list,
  .engine-mini-list,
  .feature-mini-list {
    gap: 0;
    font-size: 6.5px;
  }

  .trainer-mini-list span,
  .engine-mini-list span,
  .feature-mini-list span {
    padding-top: 1px;
  }

  .hero-actions {
    bottom: 9px;
  }

  .hero-sales-primary {
    min-width: 220px;
    min-height: 44px;
    padding: 0 20px;
    font-size: 13px;
  }

  .hero-trust {
    font-size: 8px;
  }

  .module-viewer {
    inset: 64px 7px 7px;
    gap: 6px;
    padding: 7px;
    border-radius: 16px;
  }

  .module-viewer__bar {
    min-height: 50px;
    gap: 7px;
    padding-left: 5px;
  }

  .module-viewer__heading {
    margin-right: auto;
  }

  .module-viewer__title {
    font-size: 20px;
  }

  .module-viewer__title-row {
    gap: 6px;
  }

  .module-viewer__cinema-more {
    min-height: 24px;
    gap: 5px;
    padding: 0 7px;
    font-size: 7px;
  }

  .module-viewer[data-module="cinema"] .module-viewer__frame,
  .module-viewer[data-module="cinema"].has-cinema-story .module-viewer__frame {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    align-content: start;
    gap: 8px;
    padding: 8px;
  }

  .module-viewer[data-module="cinema"] {
    inset: 64px 7px auto;
    height: auto;
    max-height: calc(100svh - 71px);
  }

  .module-viewer[data-module="cinema"].has-cinema-story .cinema-story {
    align-self: auto;
    grid-template-columns: 82px minmax(0, 1fr);
    grid-template-rows: auto;
    border-radius: 12px;
  }

  .cinema-story__portrait img {
    min-height: 0;
    height: 116px;
    object-position: 50% 13%;
  }

  .cinema-story__copy {
    align-content: center;
    gap: 3px;
    padding: 8px 9px;
    border-top: 0;
    border-left: 1px solid rgba(232, 184, 103, 0.18);
  }

  .cinema-story__eyebrow {
    font-size: 7px;
    letter-spacing: 0.11em;
  }

  .cinema-story__name {
    font-size: 16px;
  }

  .cinema-story__short {
    font-size: 10px;
    line-height: 1.22;
  }

  .cinema-story__long {
    display: -webkit-box;
    overflow: hidden;
    font-size: 8px;
    line-height: 1.25;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
  }

  .cinema-story__more {
    min-height: 24px;
    margin-top: 1px;
    gap: 5px;
    padding: 3px 4px 3px 7px;
    border-radius: 7px;
    font-size: 8px;
  }

  .cinema-story__more-status {
    padding: 2px 4px;
    font-size: 5px;
  }

  .module-viewer[data-module="cinema"] .module-viewer__media {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: none;
    aspect-ratio: 3834 / 2082;
  }

  .module-viewer[data-module="cinema"] .module-viewer__image {
    width: 100%;
    height: auto;
    max-height: none;
  }

  .trainer-switcher {
    position: absolute;
    left: 8px;
    right: 56px;
    top: 61px;
    z-index: 2;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .module-viewer[data-module="trainers"] .module-viewer__frame {
    padding-top: 48px;
  }

  .trainer-switcher button {
    min-height: 34px;
    flex: 0 0 auto;
    padding: 0 11px;
    font-size: 10px;
  }
}

@keyframes mobile-centerpiece-drift {
  0%, 100% {
    translate: 0 0;
    scale: 1;
  }
  45% {
    translate: -3px -5px;
    scale: 1.008;
  }
  75% {
    translate: 4px 2px;
    scale: 1.014;
  }
}

@media (max-width: 900px) {
  html {
    height: auto;
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior-y: auto;
  }

  body {
    height: auto;
    min-height: 100svh;
    overflow: visible;
    overscroll-behavior-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  body:has(.home-v2-hero.is-showing-module) {
    overflow: hidden;
  }

  .home-v2-root {
    height: auto;
    min-height: 100svh;
    overflow: visible;
  }

  .home-v2-root::after {
    display: none;
  }

  .home-v2-hero {
    height: auto;
    min-height: 100svh;
    overflow: visible;
    padding:
      calc(60px + env(safe-area-inset-top))
      0
      max(24px, env(safe-area-inset-bottom));
  }

  .home-v2-root .top-nav {
    position: fixed;
    height: calc(60px + env(safe-area-inset-top));
    padding:
      env(safe-area-inset-top)
      max(12px, env(safe-area-inset-right))
      0
      max(12px, env(safe-area-inset-left));
    gap: 10px;
    border-bottom: 1px solid rgba(232, 184, 103, 0.18);
    background: rgba(7, 5, 4, 0.96);
    backdrop-filter: blur(14px);
  }

  .home-v2-root .menu-link:not(.top-download),
  .home-v2-root .auth-inline {
    display: none;
  }

  .home-v2-root .top-download {
    min-height: 44px;
  }

  .home-v2-root .lang-toggle {
    height: 44px;
    min-height: 44px;
  }

  .home-piece-rain {
    position: fixed;
    inset: calc(60px + env(safe-area-inset-top)) 0 0;
    opacity: 0.72;
  }

  .home-piece-rain img:nth-child(even) {
    display: none;
  }

  .home-copy {
    position: relative;
    top: auto;
    left: auto;
    width: min(100% - 24px, 720px);
    translate: none;
    margin: clamp(20px, 4vw, 34px) auto 12px;
    padding: 0 4px;
  }

  .hero-sales-eyebrow {
    margin-bottom: 7px;
    font-size: clamp(8px, 1.8vw, 11px);
    line-height: 1.35;
  }

  .hero-sales-title {
    width: auto;
    font-size: clamp(38px, 10vw, 60px);
    line-height: 0.96;
    text-wrap: balance;
  }

  .hero-sales-lead {
    width: auto;
    max-width: 640px;
    margin-top: 9px;
    font-size: clamp(16px, 4.2vw, 25px);
    line-height: 1.13;
    white-space: normal;
    text-wrap: balance;
  }

  .orbit-stage {
    position: relative;
    inset: auto;
    width: min(100%, 760px);
    min-height: 0;
    display: grid;
    justify-items: center;
    gap: 8px;
    margin: 0 auto;
    padding: 0 10px;
  }

  .orbit-track {
    left: 50%;
    top: clamp(130px, 31vw, 190px);
    width: min(88vw, 500px);
    height: min(52vw, 290px);
    opacity: 0.48;
  }

  .orbit-track::after {
    inset: 12px 22px;
  }

  .centerpiece {
    position: relative;
    left: auto;
    top: auto;
    width: min(76vw, 390px);
    max-width: none;
    min-width: 0;
    translate: none;
    margin: -2px auto 2px;
    grid-row: 1;
    animation: mobile-centerpiece-drift 17s ease-in-out infinite;
  }

  .centerpiece img {
    max-height: none;
  }

  .orbit-layer {
    position: relative;
    inset: auto;
    width: 100%;
    grid-row: 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 0;
    pointer-events: auto;
  }

  .orbit-slot,
  .orbit-slot--trainers,
  .orbit-slot--engines,
  .orbit-slot--details,
  .orbit-slot--bases {
    position: static;
    width: 100%;
    transform: none !important;
    will-change: auto;
  }

  .orbit-module,
  .orbit-module--trainers,
  .orbit-module--engines,
  .orbit-module--details {
    width: 100%;
    height: 118px;
    min-height: 118px;
    align-items: center;
    gap: 9px;
    padding: 10px;
    border-radius: 19px;
    touch-action: manipulation;
  }

  .orbit-module:hover,
  .orbit-module:focus-visible {
    scale: 1.018;
  }

  .orbit-module__icon-wrap {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .orbit-module__icon {
    width: 22px;
    height: 22px;
  }

  .orbit-module__copy {
    gap: 5px;
  }

  .orbit-module [data-module-label] {
    min-height: 28px;
    display: flex;
    align-items: flex-end;
    font-size: clamp(13px, 3.2vw, 17px);
    line-height: 1.03;
    text-wrap: balance;
  }

  .trainer-mini-list,
  .engine-mini-list,
  .feature-mini-list {
    gap: 0;
    font-size: clamp(7px, 1.75vw, 9px);
    line-height: 1.12;
  }

  .trainer-mini-list span,
  .engine-mini-list span,
  .feature-mini-list span,
  .feature-mini-list [data-detail-mini="basesFormats"] {
    padding: 2px 0 1px;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .hero-actions,
  body:has(#cc-analytics-consent) .home-v2-root .hero-actions {
    position: relative;
    left: auto;
    bottom: auto;
    translate: none;
    margin: 18px auto 0;
    padding: 0 12px;
  }

  .hero-sales-primary {
    min-width: min(280px, calc(100vw - 30px));
    min-height: 48px;
    padding: 0 22px;
    font-size: 14px;
    touch-action: manipulation;
  }

  .module-viewer,
  .module-viewer[data-module="cinema"] {
    position: fixed;
    inset:
      calc(66px + env(safe-area-inset-top))
      max(7px, env(safe-area-inset-right))
      max(7px, env(safe-area-inset-bottom))
      max(7px, env(safe-area-inset-left));
    height: auto;
    max-height: none;
    overflow: auto;
    overscroll-behavior: contain;
  }

  .module-viewer__frame {
    overflow: auto;
  }

  .module-viewer[data-module="bases"] {
    bottom: auto;
    height: auto;
    max-height: calc(100svh - 73px - env(safe-area-inset-top));
    grid-template-rows: auto auto;
  }

  .module-viewer[data-module="trainers"] {
    bottom: auto;
    height: auto;
    max-height: calc(100svh - 73px - env(safe-area-inset-top));
    grid-template-rows: auto auto;
  }

  .module-viewer[data-module="trainers"] .module-viewer__bar {
    position: relative;
    padding-right: 52px;
    flex-wrap: wrap;
  }

  .module-viewer[data-module="trainers"] .module-viewer__close {
    position: absolute;
    top: 4px;
    right: 4px;
    margin: 0;
  }

  .module-viewer[data-module="trainers"] .trainer-switcher {
    position: static;
    order: 3;
    width: 100%;
    flex: 0 0 100%;
    margin: 0;
    padding: 0;
  }

  .module-viewer[data-module="bases"] .module-viewer__frame {
    width: 100%;
    min-height: 0;
    aspect-ratio: 3840 / 2088;
    overflow: hidden;
  }

  .module-viewer[data-module="bases"] .module-viewer__image {
    inset: 4px;
    width: calc(100% - 8px);
    height: calc(100% - 8px);
  }

  .module-viewer[data-module="trainers"] .module-viewer__frame {
    width: 100%;
    min-height: 0;
    padding-top: 0;
    aspect-ratio: 3830 / 2082;
    overflow: hidden;
  }

  .module-viewer[data-module="trainers"] .module-viewer__image {
    inset: 4px;
    width: calc(100% - 8px);
    height: calc(100% - 8px);
  }

  .module-viewer[data-module="trainers"] .trainer-switcher {
    scrollbar-width: none;
  }

  .module-viewer[data-module="trainers"] .trainer-switcher::-webkit-scrollbar {
    display: none;
  }

  .module-viewer__close {
    width: 44px;
    min-height: 44px;
    flex-basis: 44px;
  }

  .module-viewer__cinema-more {
    min-height: 34px;
    font-size: 8px;
  }

  .cinema-story__more {
    min-height: 36px;
    font-size: 9px;
  }

  .trainer-switcher button {
    min-height: 40px;
  }
}

@media (hover: none) and (pointer: coarse) {
  .orbit-module:hover {
    scale: 1;
  }

  .orbit-module:hover::after {
    animation: none;
  }
}

@media (max-width: 520px) {
  .home-brand__text {
    display: none;
  }

  .home-brand {
    max-width: none;
    overflow: visible;
  }
}

@media (max-width: 359px) {
  .home-copy {
    margin-top: 17px;
  }

  .hero-sales-title {
    font-size: clamp(35px, 12vw, 42px);
  }

  .orbit-stage {
    padding-inline: 12px;
  }

  .centerpiece {
    width: min(82vw, 285px);
  }

  .orbit-layer {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .orbit-module,
  .orbit-module--trainers,
  .orbit-module--engines,
  .orbit-module--details {
    height: 96px;
    min-height: 96px;
  }

  .orbit-module [data-module-label] {
    min-height: 0;
    font-size: 15px;
  }

  .trainer-mini-list,
  .engine-mini-list,
  .feature-mini-list {
    font-size: 8px;
  }
}

@media (max-width: 900px) and (max-height: 500px) and (orientation: landscape) {
  .home-copy {
    margin: 10px auto 8px;
  }

  .hero-sales-eyebrow {
    margin-bottom: 3px;
    font-size: 8px;
  }

  .hero-sales-title {
    font-size: 42px;
  }

  .hero-sales-lead {
    margin-top: 4px;
    font-size: 17px;
  }

  .orbit-stage {
    width: min(100%, 820px);
    grid-template-columns: minmax(245px, 0.82fr) minmax(0, 1.18fr);
    align-items: center;
    gap: 10px;
    padding-inline: 14px;
  }

  .orbit-track {
    left: 18%;
    top: 50%;
    width: min(34vw, 300px);
    height: min(24vw, 205px);
  }

  .centerpiece {
    width: min(35vw, 285px);
    grid-column: 1;
    grid-row: 1;
    margin: 0 auto;
  }

  .orbit-layer {
    grid-column: 2;
    grid-row: 1;
    gap: 7px;
  }

  .orbit-module,
  .orbit-module--trainers,
  .orbit-module--engines,
  .orbit-module--details {
    height: 94px;
    min-height: 94px;
    padding: 8px;
  }

  .orbit-module [data-module-label] {
    min-height: 23px;
    font-size: 14px;
  }

  .trainer-mini-list,
  .engine-mini-list,
  .feature-mini-list {
    font-size: 7px;
  }

  .hero-actions,
  body:has(#cc-analytics-consent) .home-v2-root .hero-actions {
    margin-top: 12px;
  }
}

@media (max-height: 700px) and (min-width: 901px) {
  .home-copy {
    top: 76px;
  }

  .hero-sales-title {
    font-size: 44px;
  }

  .hero-sales-lead {
    font-size: 21px;
  }

  .orbit-stage {
    inset: 142px 0 68px;
  }

  .centerpiece {
    width: min(34vw, 390px);
  }

  .orbit-track {
    height: min(48vh, 330px);
  }

  .orbit-module {
    height: 96px;
    min-height: 96px;
  }

  .hero-sales-primary {
    min-height: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-v2-root *,
  .home-v2-root *::before,
  .home-v2-root *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .orbit-track,
  .orbit-track::after,
  .centerpiece {
    animation: none !important;
  }

  .home-piece-rain {
    display: none !important;
  }

  .module-viewer__cinema-more,
  .module-viewer__more-arrow {
    animation: none !important;
  }
}

/* Module cards: keep the supporting copy comfortably readable at every size. */
.home-piece-rain img {
  scale: 2.5;
  opacity: min(var(--rain-opacity), 0.085);
}

.orbit-module,
.orbit-module--trainers,
.orbit-module--engines,
.orbit-module--details {
  height: 132px;
  min-height: 132px;
}

.orbit-module__copy {
  gap: 4px;
}

.orbit-module [data-module-label] {
  font-size: clamp(19px, 1.5vw, 23px);
  line-height: 1.05;
}

.trainer-mini-list,
.engine-mini-list,
.feature-mini-list {
  color: rgba(248, 232, 200, 0.78);
  font-size: clamp(11px, 0.78vw, 12px);
  letter-spacing: 0.015em;
  line-height: 1.08;
}

.trainer-mini-list span,
.engine-mini-list span,
.feature-mini-list span {
  padding: 1px 0;
}

@media (max-width: 900px) {
  .home-piece-rain img {
    scale: 1.85;
  }

  .orbit-module,
  .orbit-module--trainers,
  .orbit-module--engines,
  .orbit-module--details {
    height: 138px;
    min-height: 138px;
  }

  .orbit-module [data-module-label] {
    min-height: 32px;
    font-size: clamp(16px, 4.2vw, 19px);
    line-height: 1.05;
  }

  .trainer-mini-list,
  .engine-mini-list,
  .feature-mini-list {
    font-size: clamp(10px, 2.6vw, 11.5px);
    line-height: 1.1;
  }
}

@media (max-width: 359px) {
  .orbit-module,
  .orbit-module--trainers,
  .orbit-module--engines,
  .orbit-module--details {
    height: 124px;
    min-height: 124px;
  }
}

@media (max-width: 900px) and (max-height: 500px) and (orientation: landscape) {
  .home-piece-rain img {
    scale: 1.55;
  }

  .orbit-module,
  .orbit-module--trainers,
  .orbit-module--engines,
  .orbit-module--details {
    height: 104px;
    min-height: 104px;
  }

  .orbit-module [data-module-label] {
    min-height: 24px;
    font-size: 15px;
  }

  .trainer-mini-list,
  .engine-mini-list,
  .feature-mini-list {
    font-size: 9px;
  }
}

@media (max-height: 700px) and (min-width: 901px) {
  .orbit-module,
  .orbit-module--trainers,
  .orbit-module--engines,
  .orbit-module--details {
    height: 112px;
    min-height: 112px;
  }

  .orbit-module [data-module-label] {
    font-size: 18px;
  }

  .trainer-mini-list,
  .engine-mini-list,
  .feature-mini-list {
    font-size: 10px;
  }
}
