/* dashmio.app stylesheet.
   The @font-face rules live here (not in a separate file) so the browser has one render-blocking
   stylesheet instead of two. Font files: fonts/ (WOFF2 subsets, SIL OFL, see fonts/*-LICENSE.txt).
   Shipped weights: DM Sans 400/600/700 (body), Outfit 500/600/800/900 (headings). */

@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(fonts/DM-Sans-400.woff2) format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(fonts/DM-Sans-600.woff2) format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(fonts/DM-Sans-700.woff2) format('woff2');
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(fonts/Outfit-500.woff2) format('woff2');
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(fonts/Outfit-600.woff2) format('woff2');
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(fonts/Outfit-800.woff2) format('woff2');
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(fonts/Outfit-900.woff2) format('woff2');
}

:root {
  --navy: #090f26;
  --panel: #101933;
  --muted: #a7b2cd;
  --orange: #ff941c;
  --white: #f7f9ff;
  --blue: #61d6ff;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
body {
  margin: 0;
  background: var(--navy);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.65;
}
button,
input,
textarea {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  cursor: pointer;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 6px;
}
header {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6%;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 5;
  border-bottom: 1px solid #ffffff17;
}
header nav {
  display: flex;
  gap: 32px;
  font-size: 14px;
  font-weight: 600;
}
header nav a:hover {
  color: var(--orange);
}
.wordmark {
  font-family: Outfit, sans-serif;
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -1.7px;
}
.pill {
  background: var(--orange);
  color: #171327;
  border: 0;
  border-radius: 100px;
  padding: 17px 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  font-weight: 700;
  line-height: 1.3;
  transition:
    transform 0.2s,
    background 0.2s;
}
.pill:hover {
  transform: translateY(-3px);
  background: #ffb34f;
}
.pill span {
  font-size: 23px;
  font-weight: 400;
}
.pill.small {
  padding: 12px 23px;
  font-size: 14px;
}
.hero {
  min-height: 850px;
  height: min(900px, 100vh);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 130px 6% 90px;
}
.hero-back {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #090f26 5%, #090f26c9 48%, #090f2640),
    linear-gradient(0deg, #090f26 1%, transparent 65%),
    url('assets/LevelSky14.webp') 65% 40% / cover;
  opacity: 0.9;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 60%;
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 2.2px;
  font-weight: 700;
  color: var(--blue);
  margin: 0 0 23px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.line {
  width: 26px;
  height: 2px;
  background: var(--blue);
}
h1,
h2,
h3 {
  font-family: Outfit, sans-serif;
  line-height: 1.05;
  margin: 0;
  font-weight: 800;
  letter-spacing: -2px;
}
h1 {
  font-size: clamp(62px, 6.4vw, 96px);
}
em {
  font-style: normal;
  color: var(--orange);
}
.hero-copy {
  font-size: 21px;
  line-height: 1.55;
  color: #d3daed;
  margin: 26px 0;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}
.text-link {
  font-size: 14px;
  font-weight: 700;
  border-bottom: 1px solid #ffffff44;
  padding: 10px 0;
}
.text-link span {
  margin-left: 12px;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  color: var(--muted);
  margin-top: 28px;
}
.hero-meta i {
  width: 3px;
  height: 3px;
  background: var(--orange);
  border-radius: 50%;
}
.scroll {
  position: absolute;
  bottom: 25px;
  left: 6%;
  font-size: 10px;
  letter-spacing: 2px;
  display: flex;
  gap: 20px;
  align-items: center;
  color: var(--muted);
}
.scroll span {
  font-size: 22px;
  color: var(--white);
}
.ticker {
  background: var(--orange);
  color: #171627;
  overflow: hidden;
  padding: 15px 0;
  transform: rotate(-1.4deg);
  position: relative;
  z-index: 3;
  margin: 0 -0px;
}
.ticker div {
  white-space: nowrap;
  width: max-content;
  font:
    800 22px/1.4 Outfit,
    sans-serif;
  letter-spacing: 0.5px;
  animation: ticker 40s linear infinite;
}
.ticker span {
  margin: 0 35px;
}
.section {
  padding: 110px 8%;
  max-width: 1600px;
  margin: auto;
}
h2 {
  font-size: clamp(40px, 4.5vw, 65px);
}
h3 {
  font-size: 27px;
  letter-spacing: -0.6px;
}
.intro {
  text-align: center;
}
.intro .eyebrow {
  justify-content: center;
}
.intro h2 span {
  color: var(--muted);
}
.intro > p:last-of-type {
  max-width: 660px;
  margin: 26px auto 50px;
  color: var(--muted);
}
.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}
.facts > div {
  padding: 20px;
  border-right: 1px solid #ffffff20;
}
.facts > div:last-child {
  border: 0;
}
.facts b {
  display: block;
  color: var(--orange);
  font: 500 14px Outfit;
  margin-bottom: 18px;
}
.facts p {
  font-size: 15px;
  color: var(--muted);
}
.world-section {
  padding: 35px 0 0;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  align-items: end;
  margin-bottom: 50px;
}
.world-section .section-heading {
  margin: 0 8% 50px;
}
.section-heading > p {
  max-width: 370px;
  color: var(--muted);
  margin: 0;
}
.world-tabs {
  display: flex;
  margin: 0 8%;
  gap: 12px;
}
.world-tabs button {
  flex: 1;
  border: 1px solid #ffffff25;
  border-bottom: 0;
  background: transparent;
  color: var(--muted);
  padding: 24px;
  text-align: left;
  font-size: 12px;
  border-radius: 14px 14px 0 0;
}
.world-tabs button span {
  font: 600 20px Outfit;
  margin-left: 15px;
  color: white;
}
.world-tabs button[aria-selected='true'] {
  background: var(--blue);
  border-color: var(--blue);
  color: #12374f;
}
.world-tabs button[aria-selected='true'] span {
  color: #09152b;
}
.world-scene {
  position: relative;
  height: 510px;
  overflow: hidden;
  background: #031c2b;
}
.world-scene > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 0.25s;
}
.world-scene:after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #030b20d9, transparent 80%),
    linear-gradient(0deg, #090f26, transparent 60%);
}
.world-description {
  position: absolute;
  left: 8%;
  bottom: 65px;
  z-index: 1;
  max-width: 460px;
}
.world-count {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--blue);
}
.world-description h3 {
  font-size: 52px;
  margin: 20px 0;
}
.world-description p {
  color: #d5e0f6;
}
.how {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 100px;
  align-items: center;
}
.how-art {
  position: relative;
  background: radial-gradient(ellipse, #17495a88, transparent 68%);
  min-height: 620px;
  display: flex;
  justify-content: center;
}
.how-art img {
  width: 255px;
  height: auto;
  border: 5px solid #22394a;
  border-radius: 30px;
  transform: rotate(-8deg);
  object-fit: cover;
  box-shadow: 20px 30px 60px #0006;
}
.art-caption {
  position: absolute;
  bottom: 35px;
  right: -20px;
  font: 800 38px/1.05 Outfit;
  transform: rotate(7deg);
  text-shadow: 0 4px 8px #000;
}
.how h2 {
  font-size: 49px;
}
.how ol {
  list-style: none;
  padding: 0;
  margin: 35px 0;
}
.how li {
  display: flex;
  gap: 20px;
  margin: 27px 0;
}
.how li > span {
  border: 1px solid #ff941c55;
  color: var(--orange);
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 15px;
}
.how h3 {
  font-size: 23px;
}
.how li p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  margin: 8px 0;
}
.note {
  font-size: 14px;
  background: #131e36;
  border-left: 3px solid var(--orange);
  padding: 18px;
  color: #ccd6eb;
}
.play-together {
  background: #10172e;
  max-width: none;
}
.screenshot-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 840px;
  margin: 65px auto 0;
}
.screenshot-gallery figure {
  margin: 0;
}
.screenshot-gallery img {
  height: auto; /* the width/height attributes only reserve the aspect ratio */
  width: 100%;
  border-radius: 20px;
  border: 3px solid #33415b;
  box-shadow: 0 20px 35px #0004;
  transition: transform 0.3s;
}
.screenshot-gallery figure:nth-child(1) {
  transform: rotate(-5deg);
}
.screenshot-gallery figure:nth-child(2) {
  transform: translateY(-20px);
}
.screenshot-gallery figure:nth-child(3) {
  transform: rotate(5deg);
}
.screenshot-gallery img:hover {
  transform: translateY(-10px);
}
figcaption {
  font-size: 13px;
  text-align: center;
  color: var(--muted);
  margin-top: 20px;
}
.unlock {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 70px;
}
.unlock > div:first-child {
  max-width: 620px;
}
.unlock p:not(.eyebrow) {
  color: var(--muted);
  max-width: 530px;
}
.no-list {
  display: flex;
  gap: 22px;
  font-size: 14px;
  margin: 28px 0;
  color: #d9e4f8;
}
.platforms {
  display: flex;
  gap: 12px;
}
.platforms a {
  padding: 9px 18px;
  border: 1px solid #ffffff24;
  border-radius: 9px;
  font-size: 13px;
}
.unlock-numbers {
  text-align: center;
  min-width: 260px;
  transform: rotate(6deg);
}
.unlock-numbers b {
  font: 900 190px/0.9 Outfit;
  color: var(--orange);
  letter-spacing: -15px;
}
.unlock-numbers span {
  font-size: 12px;
  letter-spacing: 2px;
  display: block;
  margin-top: 25px;
}
.good {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  border-top: 1px solid #ffffff1c;
}
.good h2 {
  font-size: 52px;
}
.privacy-line {
  color: var(--muted);
  margin-top: 30px;
}
.questions details {
  border-bottom: 1px solid #ffffff20;
}
.questions summary {
  cursor: pointer;
  list-style: none;
  font-size: 17px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding: 23px 0;
}
.questions summary::-webkit-details-marker {
  display: none;
}
.questions summary span {
  color: var(--orange);
  font-size: 24px;
  line-height: 1;
}
.questions details[open] summary span {
  transform: rotate(45deg);
}
.questions details p {
  font-size: 15px;
  color: var(--muted);
  margin: 0 0 25px;
}
.outro {
  position: relative;
  height: 570px;
  overflow: hidden;
}
.outro > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.outro:after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #090f26d9, transparent), linear-gradient(0deg, #090f26, transparent 40%);
}
.outro > div {
  position: absolute;
  z-index: 1;
  left: 8%;
  top: 65px;
}
.outro h2 {
  font-size: 70px;
  margin-bottom: 30px;
}
footer {
  padding: 65px 8% 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}
footer > p {
  font-size: 14px;
  color: var(--muted);
}
.support-link {
  margin-left: auto;
  color: white;
  background: none;
  border: 0;
  border-bottom: 1px solid #7183a9;
  padding: 10px 0;
  font-size: 14px;
}
.footer-bottom {
  width: 100%;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #ffffff20;
  margin-top: 20px;
  padding-top: 24px;
  color: #8795b4;
  font-size: 12px;
}
dialog {
  border: 1px solid #344663;
  background: #101a33;
  color: var(--white);
  border-radius: 24px;
  padding: 40px;
  width: min(550px, calc(100% - 28px));
  max-height: 90vh;
  overflow: auto;
}
dialog::backdrop {
  background: #000b;
  backdrop-filter: blur(7px);
}
dialog h2 {
  font-size: 42px;
}
dialog > p:not(.eyebrow) {
  font-size: 15px;
  color: var(--muted);
}
.close {
  position: absolute;
  right: 18px;
  top: 12px;
  background: transparent;
  color: white;
  border: 0;
  font-size: 30px;
}
form label {
  display: block;
  font-size: 14px;
  margin: 16px 0 6px;
}
input,
textarea {
  width: 100%;
  padding: 11px 13px;
  background: #090f26;
  color: white;
  border: 1px solid #42516b;
  border-radius: 8px;
  resize: vertical;
}
input:focus,
textarea:focus {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}
.honey {
  display: none;
}
.form-note {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}
.submit {
  width: 100%;
  margin-top: 8px;
  font-size: 16px;
}
body.modal-open {
  overflow: hidden;
}
@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}
@media (max-width: 1000px) {
  header {
    padding: 0 5%;
  }
  header nav {
    gap: 18px;
  }
  .hero {
    min-height: 780px;
    padding-left: 5%;
  }
  .hero h1 {
    font-size: 65px;
  }
  .hero-actions {
    align-items: start;
    flex-direction: column;
    gap: 10px;
  }
  .how {
    gap: 40px;
  }
  .how-art {
    min-height: 560px;
  }
  .how-art img {
    width: 240px;
  }
  .how h2,
  .good h2 {
    font-size: 42px;
  }
  .art-caption {
    font-size: 30px;
    right: 0;
  }
  .section {
    padding: 80px 6%;
  }
  .good {
    gap: 40px;
  }
  .unlock {
    gap: 30px;
  }
  .unlock-numbers {
    min-width: 200px;
  }
  .unlock-numbers b {
    font-size: 150px;
  }
}
@media (max-width: 700px) {
  header {
    height: 80px;
  }
  .wordmark {
    font-size: 31px;
  }
  header nav {
    display: none;
  }
  .pill.small {
    padding: 10px 17px;
  }
  .hero {
    height: auto;
    min-height: 1130px;
    padding: 120px 6% 560px;
    align-items: start;
  }
  .hero-content {
    width: 100%;
  }
  .hero h1 {
    font-size: 58px;
    letter-spacing: -1.7px;
  }
  .hero .eyebrow {
    font-size: 10px;
    letter-spacing: 1.3px;
    gap: 8px;
  }
  .hero-copy {
    font-size: 19px;
  }
  .hero-actions {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
  .hero-actions .pill {
    font-size: 14px;
    padding: 15px 19px;
    gap: 10px;
  }
  .text-link {
    font-size: 12px;
  }
  .hero-meta {
    font-size: 11px;
    gap: 11px;
  }
  .scroll {
    bottom: 20px;
  }
  .hero-back {
    background:
      linear-gradient(0deg, #090f26, transparent 50%, #090f26 95%),
      url('assets/LevelSky14.webp') 50% 60% / auto 90%;
    opacity: 0.65;
  }
  .ticker {
    padding: 12px 0;
  }
  .ticker div {
    font-size: 18px;
  }
  .section {
    padding: 70px 6%;
  }
  h2 {
    font-size: 40px;
    letter-spacing: -1.4px;
  }
  .eyebrow {
    font-size: 10px;
    letter-spacing: 1.5px;
  }
  .intro > p:last-of-type {
    font-size: 16px;
  }
  .facts {
    grid-template-columns: 1fr;
    gap: 5px;
    margin-top: 25px;
  }
  .facts > div {
    border-right: 0;
    border-bottom: 1px solid #ffffff20;
    padding: 22px;
  }
  .facts b {
    margin: 0 0 12px;
  }
  .facts p {
    margin: 9px 0;
  }
  .section-heading {
    display: block;
    margin-bottom: 30px;
  }
  .section-heading > p {
    margin-top: 25px;
    font-size: 16px;
  }
  .world-section .section-heading {
    margin: 0 6% 30px;
  }
  .world-tabs {
    margin: 0 4%;
    gap: 5px;
  }
  .world-tabs button {
    padding: 14px 8px;
    font-size: 10px;
    text-align: center;
  }
  .world-tabs button span {
    font-size: 14px;
    display: block;
    margin: 4px 0 0;
  }
  .world-scene {
    height: 440px;
  }
  .world-scene > img {
    object-position: 50%;
  }
  .world-description {
    left: 6%;
    right: 6%;
    bottom: 45px;
  }
  .world-description h3 {
    font-size: 40px;
  }
  .world-description p {
    font-size: 15px;
    max-width: 310px;
  }
  .world-count {
    font-size: 10px;
  }
  .how {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .how-art {
    min-height: 510px;
    order: 2;
  }
  .how-art img {
    width: 230px;
  }
  .art-caption {
    right: 10%;
    font-size: 34px;
  }
  .how h2 {
    font-size: 40px;
  }
  .screenshot-gallery {
    gap: 17px;
    margin-top: 45px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .screenshot-gallery img {
    border-width: 2px;
    border-radius: 12px;
  }
  .screenshot-gallery figcaption {
    font-size: 11px;
    line-height: 1.4;
  }
  .unlock {
    display: block;
  }
  .unlock h2 {
    font-size: 39px;
  }
  .no-list {
    gap: 12px;
    font-size: 12px;
  }
  .unlock-numbers {
    margin-top: 50px;
  }
  .unlock-numbers b {
    font-size: 150px;
  }
  .good {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .good h2 {
    font-size: 40px;
  }
  .questions summary {
    font-size: 16px;
  }
  .outro {
    height: 510px;
  }
  .outro > div {
    left: 6%;
  }
  .outro h2 {
    font-size: 61px;
  }
  .outro .eyebrow {
    font-size: 10px;
  }
  .outro > img {
    object-position: 65%;
  }
  footer {
    padding: 45px 6% 25px;
    gap: 10px;
  }
  footer > p {
    width: 100%;
    margin: 0;
    font-size: 13px;
  }
  .support-link {
    margin: 20px 0 0;
  }
  .footer-bottom {
    gap: 15px;
    font-size: 10px;
  }
  dialog {
    padding: 32px 24px;
  }
  dialog h2 {
    font-size: 36px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}
/* Updated supplied branding, transparent hero clip, and natural phone dimensions. */
header .wordmark {
  display: flex;
  align-items: center;
}
.brand-logo {
  display: block;
  width: 190px;
  height: auto;
}
.hero-character {
  position: absolute;
  right: 2%;
  top: 50%;
  transform: translateY(-42%);
  width: 46%;
  max-width: 680px;
  z-index: 1;
  text-align: center;
}
.hero-character picture {
  display: block;
}
.hero-character img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 30px 40px #0005);
}
.how-art {
  align-items: center;
  min-height: 0;
  padding: 20px 0 35px;
}
.how-art img {
  width: 255px;
  height: auto;
  aspect-ratio: 9/19.5;
  object-fit: cover;
  object-position: center;
  align-self: center;
  flex: none;
}
.art-caption {
  bottom: 35px;
}
@media (max-width: 1000px) {
  .hero-character {
    width: 43%;
    right: 0;
  }
  .brand-logo {
    width: 165px;
  }
  .how-art img {
    width: 240px;
  }
}
@media (max-width: 700px) {
  .brand-logo {
    width: 145px;
  }
  .hero {
    min-height: 0;
    padding-bottom: 70px;
    display: flex;
    flex-direction: column;
  }
  .hero-character {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    width: 100%;
    max-width: 430px;
    margin: 30px auto 0;
  }
  .hero-content {
    z-index: 2;
  }
  .hero h1 {
    font-size: clamp(45px, 14vw, 58px);
  }
  .hero-actions {
    flex-wrap: wrap;
  }
  .how-art {
    padding-bottom: 45px;
    min-height: 0;
  }
  .how-art img {
    width: 230px;
  }
  .art-caption {
    bottom: 30px;
  }
  .scroll {
    bottom: 15px;
  }
}
footer .wordmark {
  display: flex;
  align-items: center;
}
@media (min-width: 1001px) {
  .unlock {
    display: grid;
    grid-template-columns: minmax(0, 560px) 260px;
    justify-content: start;
    column-gap: 48px;
    align-items: center;
  }
  .unlock-numbers {
    min-width: 0;
  }
}
/* Keep decorative transforms inside the viewport on phones and tablets. */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}
@supports (overflow: clip) {
  html,
  body {
    overflow-x: clip;
  }
}
.screenshot-gallery {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.screenshot-gallery > figure,
.section-heading > *,
.how > *,
.good > *,
.unlock > * {
  min-width: 0;
}
img {
  max-width: 100%;
}
@media (min-width: 701px) and (max-width: 1000px) {
  .how {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  }
  .good {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .no-list {
    flex-wrap: wrap;
    column-gap: 16px;
    row-gap: 8px;
  }
  .platforms {
    flex-wrap: wrap;
  }
}
@media (max-width: 700px) {
  .hero-meta,
  .no-list,
  .platforms {
    flex-wrap: wrap;
  }
  .world-tabs button {
    min-width: 0;
  }
  .world-tabs button span {
    overflow-wrap: anywhere;
  }
  .footer-bottom > span {
    min-width: 0;
  }
}
/* Light, playful interludes between the cinematic game worlds. */
.intro {
  background: #e0f7ff;
  color: #152c46;
  max-width: none;
}
.intro .eyebrow {
  color: #006d88;
}
.intro h2 span {
  color: #14748c;
}
.intro > p:last-of-type,
.intro .facts p {
  color: #395b70;
}
.intro .facts {
  max-width: 1344px;
  margin-left: auto;
  margin-right: auto;
}
.intro .facts > div {
  border-color: #aacddc;
}
.intro .facts b {
  color: #ad4800;
}
.play-together {
  background: #e0f7ff;
  color: #152c46;
}
.play-together .eyebrow {
  color: #006d88;
}
.play-together .section-heading > p,
.play-together figcaption {
  color: #395b70;
}
.play-together .screenshot-gallery img {
  border-color: #aacddc;
  box-shadow: 0 20px 35px #163e5825;
}
.unlock {
  background: #e0f7ff;
  color: #152c46;
  max-width: none;
}
.unlock .eyebrow {
  color: #006d88;
}
.unlock h2 em,
.unlock-numbers b {
  color: #14748c;
}
.unlock p:not(.eyebrow) {
  color: #395b70;
}
.unlock .no-list {
  color: #152c46;
}
.unlock .platforms a {
  border-color: #83b9cf;
  color: #152c46;
  background: #ffffff66;
}
.unlock-numbers span {
  color: #395b70;
}
.platforms a {
  display: inline-flex;
  align-items: center;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.platforms a:hover {
  background: #fff;
  border-color: #14748c;
}
/* 404 page */
.not-found {
  min-height: 80vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 160px 6% 80px;
}
.not-found .eyebrow {
  justify-content: center;
}
.not-found p:not(.eyebrow) {
  color: var(--muted);
  max-width: 480px;
  margin: 24px auto 36px;
}
