:root {
  --ink: #193d2d;
  --muted: #637064;
  --paper: #f6f4e9;
  --green: #287147;
  --line: #d9dfcd;
  --yellow: #f3cc56;
  --coral: #ec7658;
  --radius: 28px;
  font-family:
    Pretendard,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
}
body.dialog-open {
  overflow: hidden;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
video {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible,
video:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid #d0682c;
  outline-offset: 5px;
}
p {
  line-height: 1.75;
  word-break: keep-all;
  margin: 0 0 1.1em;
}
h1,
h2,
h3 {
  word-break: keep-all;
  letter-spacing: -0.05em;
  margin: 0;
  font-weight: 850;
  line-height: 1.16;
}
h2 {
  font-size: clamp(34px, 4.4vw, 60px);
}
h3 {
  font-size: 32px;
}
em {
  font-style: normal;
  color: var(--green);
}
button {
  color: inherit;
}
figure {
  margin: 0;
}
[hidden] {
  display: none !important;
}
.wrap {
  width: min(1200px, calc(100% - 80px));
  margin-inline: auto;
}
.section {
  padding-block: 110px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 100;
  background: var(--ink);
  color: white;
  padding: 15px;
  border-radius: 10px;
}
.skip:focus {
  top: 12px;
}
.eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.header {
  height: 88px;
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(246, 244, 233, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.header-inner {
  width: min(1360px, calc(100% - 64px));
  height: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.wordmark {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.06em;
  flex-shrink: 0;
}
.wordmark img {
  width: 40px;
  image-rendering: auto;
}
.wordmark small {
  display: block;
  font-size: 8px;
  letter-spacing: 0.08em;
  margin-top: 4px;
  font-weight: 700;
}
.header nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 700;
}
.header nav a {
  transition: color 0.2s;
}
.header nav a:hover {
  color: #568b4f;
}
.nav-pill {
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 12px 20px;
}
.nav-pill span {
  padding-left: 8px;
}
.menu-toggle {
  display: none;
}
.hero {
  padding-top: 32px;
}
.hero-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}
.hero-topline .eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  letter-spacing: 0.08em;
}
.eyebrow i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}
.release-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
}
.release-label span {
  margin-left: 12px;
  color: var(--ink);
}
.hero-art {
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
  box-shadow: 0 2px 0 #193d2d12;
}
.hero-art > img {
  width: 100%;
  aspect-ratio: 1672/941;
  object-fit: cover;
}
.art-label {
  position: absolute;
  right: 18px;
  bottom: 14px;
  font-size: 9px;
  background: #fbf5e3d6;
  padding: 5px 8px;
  border-radius: 12px;
}
.hero-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 0 34px;
  gap: 24px;
}
.hero h1 {
  font-size: clamp(26px, 3vw, 40px);
}
.hero-bottom p {
  font-size: 15px;
  color: var(--muted);
  margin: 12px 0 0;
}
.mobile-break {
  display: none;
}
.actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.button {
  padding: 16px 23px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  font-weight: 750;
  border-radius: 14px;
  transition:
    transform 0.2s,
    background 0.2s;
  min-height: 50px;
}
.button:hover {
  transform: translateY(-3px);
}
.primary {
  background: var(--ink);
  color: var(--paper);
}
.primary:hover {
  background: var(--green);
}
.secondary {
  border: 1px solid #b6c4ac;
}
.quick-facts {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.quick-facts > span {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 9px;
  font-size: 12px;
  color: var(--muted);
  border-right: 1px solid var(--line);
}
.quick-facts > span:last-child {
  border: 0;
}
.quick-facts strong {
  font-size: 27px;
  color: var(--ink);
  font-weight: 850;
  letter-spacing: -0.06em;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.story-copy {
  max-width: 465px;
}
.story-copy .lead {
  font-size: 23px;
  font-weight: 750;
  line-height: 1.5;
  margin-top: 30px;
}
.story-copy > p:not(.eyebrow):not(.lead) {
  font-size: 16px;
  color: var(--muted);
}
.story-copy p.story-last {
  font-weight: 750;
  color: var(--ink) !important;
}
.text-link {
  display: inline-block;
  font-weight: 800;
  font-size: 13px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 7px;
  margin-top: 12px;
}
.text-link span {
  margin-left: 25px;
}
.story-scene {
  height: 640px;
  position: relative;
  overflow: hidden;
  border-radius: 46% 46% 28px 28px;
  background: #7a945b;
}
.story-background {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
}
.flame-note {
  position: absolute;
  left: 28px;
  top: 70px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: white;
  font-size: 12px;
  line-height: 1.6;
  text-shadow: 0 2px 8px #152c27;
}
.flame-note img {
  width: 64px;
  height: 80px;
  object-fit: contain;
}
.flame-note strong {
  font-size: 18px;
}
.identity-bubble {
  position: absolute;
  right: 30px;
  top: 43%;
  background: #fffdf0;
  border-radius: 24px 24px 0 24px;
  padding: 22px 28px;
  font-size: 18px;
  box-shadow: 0 8px 25px #17362620;
}
.identity-bubble strong {
  font-size: 31px;
  line-height: 1.6;
  letter-spacing: -0.05em;
}
.identity-bubble span {
  display: block;
  font-size: 10px;
  color: var(--muted);
  margin-top: 8px;
}
.story-kong {
  position: absolute;
  left: 17%;
  bottom: 48px;
  width: 190px;
  transform: rotate(-12deg);
  filter: drop-shadow(0 16px 8px #0f3a4a35);
}
.scene-caption {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  color: white;
  text-align: center;
  font-size: 10px;
  text-shadow: 0 1px 6px #000;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 48px;
}
.section-heading > p {
  font-size: 15px;
  color: var(--muted);
  margin: 0;
  padding-bottom: 4px;
}
.worlds {
  padding-top: 30px;
}
.world-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 18px;
}
.world-tabs button {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 20px;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 16px;
  background: transparent;
  font-size: 11px;
  color: var(--muted);
  font-weight: 700;
}
.world-tabs span {
  font-size: 17px;
  color: var(--ink);
  font-weight: 850;
  letter-spacing: -0.04em;
}
.world-tabs button[aria-selected="true"] {
  background: var(--ink);
  color: #a7c5a5;
  border-color: var(--ink);
}
.world-tabs button[aria-selected="true"] span {
  color: white;
}
.world-panel {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  overflow: hidden;
  border-radius: var(--radius);
  background: #e7ecd9;
  min-height: 530px;
}
.world-panel.school {
  background: #f4e3d0;
}
.world-panel.sea {
  background: #d9eced;
}
.world-picture {
  position: relative;
  overflow: hidden;
  min-height: 530px;
}
.world-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  object-position: 50% 64%;
}
.world-picture > span {
  position: absolute;
  bottom: 26px;
  left: 28px;
  border-radius: 8px;
  background: #fffdf0eb;
  font-size: 10px;
  letter-spacing: 0.14em;
  padding: 10px 14px;
  font-weight: 850;
}
.world-description {
  padding: 46px 44px;
  align-self: center;
}
.chapter-tag {
  display: block;
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--green);
}
.world-description h3 {
  font-size: 40px;
}
.world-description > p {
  font-size: 14px;
  color: #4c6155;
  margin: 20px 0;
}
.episode {
  border-block: 1px solid #8ba28b5c;
  padding: 17px 0;
}
.episode span {
  display: block;
  font-size: 10px;
  opacity: 0.8;
  margin-bottom: 7px;
}
.episode strong {
  font-size: 14px;
}
.world-description p.places {
  font-size: 11px;
  line-height: 1.9;
  margin: 18px 0 0;
}
.world-footnote {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin: 22px 0 0;
}
.world-footnote span {
  color: #c4a344;
  padding-right: 8px;
}
.play {
  background: #e9eddf;
}
.play-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.play-card {
  border-radius: 24px;
  min-height: 625px;
  position: relative;
  overflow: hidden;
  padding: 30px 28px;
}
.jump-card {
  background: #f7f6ed;
}
.combo-card {
  background: #f4d975;
}
.boss-card {
  background: #dbdfef;
}
.feature-number {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  display: block;
  margin-bottom: 20px;
}
.feature-copy h3 {
  font-size: 29px;
}
.feature-copy p {
  font-size: 13px;
  line-height: 1.8;
  margin: 18px 0 0;
}
.tilted-screen {
  position: absolute;
  top: 320px;
  right: 35px;
  width: 205px;
  transform: rotate(12deg);
  border: 6px solid #fcfaf0;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 14px 26px #15382420;
}
.tilted-screen img {
  width: 100%;
  height: auto;
}
.card-link {
  position: absolute;
  left: 28px;
  bottom: 26px;
  font-size: 12px;
  font-weight: 800;
  background: #f7f6edee;
  padding: 11px 15px;
  border-radius: 20px;
  z-index: 2;
}
.combo-art {
  margin-top: 20px;
  text-align: center;
  position: relative;
}
.stars {
  color: #fff6bf;
  font-size: 50px;
  letter-spacing: 4px;
  text-shadow: 0 3px #df9847;
}
.combo-counter {
  font-size: 81px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.08em;
  transform: rotate(-7deg);
}
.combo-counter span {
  display: block;
  font-size: 23px;
  letter-spacing: 0.02em;
}
.boost-track {
  margin: 6px auto 0;
  width: 124px;
  position: relative;
  transform: rotate(12deg);
  border-radius: 100px 100px 0 0;
  background: linear-gradient(#fffcd580, transparent);
  padding-bottom: 50px;
}
.boost-track img {
  width: 124px;
  transform: rotate(-20deg);
}
.boost-track span {
  position: absolute;
  right: -50px;
  bottom: 32px;
  font-size: 20px;
  font-weight: 900;
  color: #bb551f;
  font-style: italic;
}
.card-detail {
  position: absolute;
  bottom: 27px;
  left: 28px;
  right: 28px;
  font-size: 12px;
  margin: 0;
  font-weight: 700;
}
.feature-screen {
  width: 210px;
  position: absolute;
  top: 310px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 23px 23px 0 0;
  overflow: hidden;
  border: 6px solid #fffef7;
  box-shadow: 0 14px 26px #15382420;
}
.dungeon {
  margin-top: 24px;
  border-radius: var(--radius);
  background: radial-gradient(
    ellipse at 72% 44%,
    #445969 0,
    #233e43 50%,
    #1b3036 85%
  );
  color: #f7f5df;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  padding: 64px 80px;
  align-items: center;
  overflow: hidden;
}
.dungeon .eyebrow {
  color: #c5d19c;
}
.dungeon h3 {
  font-size: 52px;
}
.dungeon h3 em {
  color: #eacf77;
}
.dungeon-copy > p:not(.eyebrow) {
  font-size: 15px;
  color: #c0cecb;
  margin: 22px 0;
}
.dungeon-rule {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 14px 0;
  border-block: 1px solid #65848466;
}
.dungeon-rule > strong {
  font-size: 62px;
  letter-spacing: -0.06em;
  color: #eacf77;
}
.dungeon-rule small {
  font-size: 20px;
  margin-left: 5px;
}
.dungeon-rule > span {
  font-size: 12px;
  line-height: 1.8;
}
.dungeon-copy p.dungeon-aside {
  font-size: 12px;
  margin-bottom: 0;
}
.dungeon-screen {
  justify-self: center;
  width: 230px;
  transform: rotate(5deg);
}
.dungeon-screen img {
  border: 6px solid #68817a;
  border-radius: 24px;
  box-shadow: 0 16px 50px #111b2280;
}
.dungeon-screen figcaption {
  font-size: 10px;
  text-align: center;
  margin-top: 14px;
  color: #bbc9c2;
}
.friends-lineup {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 55px;
}
.friend {
  display: grid;
  grid-template-rows: auto 220px auto;
  justify-items: center;
  text-align: center;
  background: #eeeede;
  border-radius: 50% 50% 24px 24px;
  padding: 40px 25px 30px;
}
.friend:nth-child(2) {
  background: #f4e5df;
}
.friend:nth-child(3) {
  background: #e4eceb;
}
.friend-badge {
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.03em;
  display: block;
}
.friend img {
  height: 220px;
  width: 220px;
  object-fit: contain;
  transition: transform 0.3s;
}
.friend:hover img {
  transform: translateY(-12px) rotate(-6deg);
}
.friend h3 {
  font-size: 27px;
}
.friend p {
  font-size: 12px;
  color: var(--muted);
  margin: 9px 0 0;
}
.collect-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  margin-top: 60px;
  align-items: center;
}
.collect-numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.collect-numbers > div {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 27px 32px;
}
.collect-numbers strong {
  display: block;
  font-size: 53px;
  font-weight: 850;
  letter-spacing: -0.07em;
}
.collect-numbers span {
  font-size: 12px;
  color: var(--muted);
}
.collect-copy h3 {
  font-size: 31px;
  margin-bottom: 20px;
}
.collect-copy p {
  font-size: 14px;
  color: var(--muted);
}
.collect-copy small {
  font-size: 10px;
  color: var(--muted);
}
.journey-loop {
  margin-top: 44px;
  padding: 22px 28px;
  background: var(--ink);
  color: #e8efd7;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 12px;
}
.journey-loop b {
  color: #b3c384;
  font-size: 10px;
  margin-right: 9px;
}
.journey-loop i {
  font-style: normal;
  color: #7d997e;
}
.screens {
  background: #eae9df;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px 25px;
}
.screen-link {
  display: block;
  min-width: 0;
}
.screen-link img {
  border-radius: 21px;
  border: 5px solid #fffdf2;
  box-shadow: 0 6px 16px #32473612;
  transition: transform 0.25s;
  width: 100%;
  height: auto;
}
.screen-link:hover img {
  transform: translateY(-6px);
}
.screen-link > span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 750;
  padding: 16px 3px 2px;
}
.screen-link b {
  font-size: 10px;
  color: var(--muted);
  font-weight: 500;
}
.media-note {
  margin: 25px 0 0;
  font-size: 11px;
  color: var(--muted);
  line-height: 1.8;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.video-frame {
  background: #193531;
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  justify-content: center;
}
.video-frame video {
  width: 100%;
  height: 520px;
  object-fit: contain;
  background: #193531;
  display: block;
}
.video-description {
  padding: 23px 0 0;
}
.video-description > span {
  font-size: 9px;
  letter-spacing: 0.09em;
  color: var(--muted);
  font-weight: 750;
}
.video-description h3 {
  font-size: 23px;
  letter-spacing: -0.04em;
  margin: 12px 0;
}
.video-description p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 0;
}
.release {
  background: #e4eacb;
}
.release-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}
.release .lead {
  font-size: 18px;
  margin: 24px 0;
  color: #53634e;
}
.platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
}
.platforms span {
  border: 1px solid #adb998;
  border-radius: 30px;
  padding: 8px 14px;
  font-size: 11px;
  font-weight: 700;
}
.faq {
  align-self: center;
}
.faq details {
  padding: 23px 0;
  border-bottom: 1px solid #bdc9a7;
}
.faq details:first-child {
  border-top: 1px solid #bdc9a7;
}
.faq summary {
  cursor: pointer;
  font-size: 15px;
  font-weight: 750;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  line-height: 1.5;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary:after {
  content: "+";
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
}
.faq details[open] summary:after {
  content: "−";
}
.faq p {
  font-size: 13px;
  color: #56684e;
  margin: 16px 20px 0 0;
}
.footer {
  padding-block: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}
.footer .wordmark {
  font-size: 17px;
  letter-spacing: -0.04em;
}
.footer p {
  font-size: 11px;
  color: var(--muted);
  margin: 0;
}
.footer > div {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 10px;
  color: var(--muted);
}
#screen-dialog {
  border: 0;
  background: #12291ff7;
  color: #fffef1;
  padding: 50px 34px 20px;
  border-radius: 20px;
  max-width: min(94vw, 680px);
  max-height: 94dvh;
  overflow: auto;
  box-shadow: 0 20px 100px #0008;
}
#screen-dialog::backdrop {
  background: #081912da;
  backdrop-filter: blur(8px);
}
#screen-dialog figure {
  display: flex;
  align-items: center;
  flex-direction: column;
}
#screen-full {
  height: calc(85dvh - 125px);
  width: auto;
  max-width: 100%;
  object-fit: contain;
  border-radius: 12px;
}
#screen-caption {
  text-align: center;
  font-size: 12px;
  margin-top: 18px;
  line-height: 1.6;
}
.dialog-close {
  position: absolute;
  right: 16px;
  top: 12px;
  border: 0;
  background: none;
  color: #fffef1;
  padding: 5px;
  font-size: 12px;
}
.dialog-close span {
  font-size: 20px;
  padding-left: 12px;
}
.dialog-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 18px;
  font-size: 11px;
}
.dialog-nav button {
  border: 1px solid #65766b;
  background: transparent;
  color: inherit;
  border-radius: 20px;
  padding: 9px 14px;
  font-size: 11px;
}
@media (min-width: 1450px) {
  .hero-art {
    max-height: 610px;
  }
  .hero-art > img {
    height: 610px;
    object-position: center 48%;
  }
}
@media (max-width: 1050px) {
  .wrap {
    width: calc(100% - 56px);
  }
  .header nav {
    gap: 17px;
  }
  .header-inner {
    width: calc(100% - 48px);
  }
  .story-grid {
    gap: 50px;
  }
  .story-scene {
    height: 600px;
  }
  .story-kong {
    width: 160px;
    left: 10%;
  }
  .identity-bubble {
    right: 20px;
    padding: 18px 20px;
  }
  .world-description {
    padding: 35px;
  }
  .play-grid {
    gap: 15px;
  }
  .play-card {
    padding: 28px 22px;
  }
  .feature-copy h3 {
    font-size: 27px;
  }
  .dungeon {
    padding: 55px;
    gap: 40px;
  }
  .collect-grid {
    gap: 45px;
  }
  .release-grid {
    gap: 55px;
  }
  .video-frame video {
    height: 460px;
  }
  .hero-bottom {
    align-items: flex-start;
  }
  .actions {
    flex-direction: column;
  }
  .button {
    padding: 14px 19px;
  }
  .gallery {
    gap: 22px 18px;
  }
  .screen-link > span {
    font-size: 11px;
    gap: 6px;
  }
}
@media (max-width: 800px) {
  .section {
    padding-block: 76px;
  }
  .header {
    height: 76px;
  }
  .header-inner {
    width: calc(100% - 40px);
  }
  .wordmark {
    font-size: 22px;
  }
  .header nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--paper);
    padding: 14px 24px 24px;
    display: none;
    box-shadow: 0 14px 20px #193d2d12;
    border-bottom: 1px solid var(--line);
  }
  .header nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .header nav a {
    padding: 14px 10px;
  }
  .nav-pill {
    margin-top: 8px;
    text-align: center;
  }
  .menu-toggle {
    display: flex;
    border: 1px solid var(--line);
    background: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
  }
  .menu-toggle span {
    width: 17px;
    height: 2px;
    background: var(--ink);
    transition: transform 0.2s;
  }
  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }
  .hero {
    padding-top: 25px;
  }
  .hero-topline .eyebrow {
    font-size: 10px;
  }
  .release-label {
    font-size: 10px;
  }
  .hero-bottom {
    gap: 20px;
  }
  .hero h1 {
    font-size: 30px;
  }
  .hero-bottom p {
    font-size: 13px;
  }
  .story-grid {
    gap: 35px;
  }
  .story-copy .lead {
    font-size: 20px;
  }
  .story-copy > p:not(.eyebrow):not(.lead) {
    font-size: 14px;
  }
  .story-scene {
    height: 530px;
  }
  .story-kong {
    width: 140px;
  }
  .flame-note {
    left: 18px;
    top: 60px;
  }
  .identity-bubble {
    padding: 17px;
    font-size: 16px;
  }
  .identity-bubble strong {
    font-size: 26px;
  }
  .identity-bubble span {
    font-size: 9px;
  }
  .scene-caption {
    font-size: 9px;
  }
  .section-heading {
    gap: 24px;
    margin-bottom: 35px;
  }
  .section-heading > p {
    font-size: 12px;
  }
  .worlds {
    padding-top: 12px;
  }
  .world-tabs button {
    padding: 16px 14px;
    gap: 9px;
  }
  .world-tabs span {
    font-size: 14px;
  }
  .world-panel,
  .world-picture {
    min-height: 500px;
  }
  .world-description {
    padding: 28px;
  }
  .world-description h3 {
    font-size: 32px;
  }
  .world-description > p {
    font-size: 13px;
  }
  .places br {
    display: none;
  }
  .play-grid {
    grid-template-columns: 1fr 1fr;
  }
  .play-card {
    min-height: 605px;
  }
  .boss-card {
    grid-column: 1/-1;
    min-height: 350px;
    display: flex;
  }
  .boss-card .feature-copy {
    width: 50%;
    max-width: 400px;
  }
  .boss-card .feature-screen {
    left: auto;
    right: 40px;
    top: 28px;
    transform: rotate(5deg);
    width: 210px;
  }
  .boss-card .card-link {
    left: 22px;
    bottom: 26px;
  }
  .dungeon {
    padding: 38px;
    gap: 28px;
  }
  .dungeon h3 {
    font-size: 42px;
  }
  .dungeon-copy > p:not(.eyebrow) {
    font-size: 13px;
  }
  .dungeon-screen {
    width: 195px;
  }
  .friends-lineup {
    gap: 15px;
  }
  .friend {
    padding: 32px 12px 24px;
    grid-template-rows: auto 170px auto;
  }
  .friend img {
    height: 170px;
    width: 170px;
  }
  .collect-grid {
    gap: 28px;
  }
  .collect-numbers > div {
    padding: 23px;
  }
  .collect-numbers strong {
    font-size: 45px;
  }
  .collect-copy h3 {
    font-size: 27px;
  }
  .collect-copy p {
    font-size: 13px;
  }
  .journey-loop {
    font-size: 10px;
    padding: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .journey-loop b {
    margin-right: 5px;
  }
  .gallery {
    gap: 28px 18px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .screen-link > span {
    font-size: 10px;
    display: block;
    line-height: 1.5;
  }
  .screen-link b {
    margin-right: 4px;
  }
  .video-grid {
    gap: 18px;
  }
  .video-frame video {
    height: 385px;
  }
  .video-description h3 {
    font-size: 20px;
  }
  .video-description p {
    font-size: 12px;
  }
  .video-description p br {
    display: none;
  }
  .video-description > span {
    font-size: 8px;
    letter-spacing: 0;
  }
  .release-grid {
    gap: 40px;
  }
  .release .lead {
    font-size: 16px;
  }
  .faq summary {
    font-size: 14px;
  }
  .footer > div {
    width: 100%;
    justify-content: space-between;
  }
  .mobile-break {
    display: initial;
  }
}
@media (max-width: 600px) {
  .wrap {
    width: calc(100% - 36px);
  }
  .section {
    padding-block: 64px;
  }
  .header {
    height: 70px;
  }
  .header nav {
    top: 70px;
  }
  .header-inner {
    width: calc(100% - 36px);
  }
  .wordmark img {
    width: 34px;
  }
  .wordmark small {
    font-size: 7px;
  }
  .hero {
    padding-top: 21px;
  }
  .hero-topline {
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 16px;
  }
  .hero-topline .eyebrow {
    font-size: 9px;
  }
  .release-label {
    font-size: 9px;
  }
  .release-label span {
    margin-left: 6px;
  }
  .hero-art {
    border-radius: 18px;
  }
  .art-label {
    font-size: 7px;
    right: 10px;
    bottom: 8px;
    padding: 4px 6px;
  }
  .hero-bottom {
    display: block;
    padding: 25px 0;
  }
  .hero h1 {
    font-size: 31px;
    line-height: 1.25;
  }
  .hero-bottom p {
    font-size: 14px;
  }
  .actions {
    flex-direction: row;
    margin-top: 22px;
    gap: 8px;
  }
  .actions .button {
    flex: 1;
    font-size: 12px;
    padding: 14px 12px;
    gap: 8px;
  }
  .quick-facts {
    padding: 20px 0;
  }
  .quick-facts > span {
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-size: 9px;
  }
  .quick-facts strong {
    font-size: 26px;
  }
  .eyebrow {
    font-size: 10px;
    margin-bottom: 19px;
  }
  h2 {
    font-size: 37px;
  }
  .story-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .story-copy {
    max-width: none;
  }
  .story-copy h2 br:nth-of-type(1) {
    display: none;
  }
  .story-copy .lead {
    font-size: 20px;
    margin-top: 24px;
  }
  .story-scene {
    height: 480px;
    max-width: 420px;
    width: 100%;
    justify-self: center;
  }
  .flame-note {
    left: 28px;
    top: 57px;
  }
  .identity-bubble {
    right: 27px;
    top: 39%;
    font-size: 18px;
    padding: 20px 25px;
  }
  .identity-bubble strong {
    font-size: 30px;
  }
  .story-kong {
    width: 160px;
    left: 15%;
    bottom: 42px;
  }
  .scene-caption {
    font-size: 9px;
  }
  .section-heading {
    display: block;
    margin-bottom: 28px;
  }
  .section-heading > p {
    font-size: 13px;
    margin-top: 20px;
  }
  .worlds {
    padding-top: 8px;
  }
  .world-tabs {
    gap: 5px;
    margin-bottom: 12px;
  }
  .world-tabs button {
    display: block;
    padding: 12px 7px;
    text-align: center;
    font-size: 9px;
    line-height: 1.6;
  }
  .world-tabs span {
    display: block;
    font-size: 11px;
  }
  .world-panel {
    grid-template-columns: 1fr;
    border-radius: 20px;
  }
  .world-picture {
    height: 330px;
    min-height: 0;
  }
  .world-picture img {
    object-position: center 72%;
  }
  .world-picture > span {
    font-size: 8px;
    bottom: 20px;
    left: 20px;
    padding: 9px 11px;
  }
  .world-description {
    padding: 28px;
  }
  .world-description h3 {
    font-size: 34px;
  }
  .world-description p.places {
    font-size: 11px;
  }
  .world-footnote {
    font-size: 11px;
    line-height: 1.8;
    padding-inline: 10px;
  }
  .play-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .play-card {
    min-height: 570px;
    padding: 28px;
  }
  .feature-copy h3 {
    font-size: 32px;
  }
  .feature-copy p {
    font-size: 14px;
    max-width: 380px;
  }
  .feature-number {
    margin-bottom: 17px;
  }
  .tilted-screen {
    top: 285px;
    right: 45px;
    width: 215px;
  }
  .combo-card {
    min-height: 550px;
  }
  .combo-art {
    margin-top: 8px;
  }
  .stars {
    font-size: 44px;
  }
  .combo-counter {
    font-size: 68px;
  }
  .boost-track {
    width: 108px;
  }
  .boost-track img {
    width: 108px;
  }
  .boss-card {
    min-height: 565px;
    display: block;
  }
  .boss-card .feature-copy {
    width: 100%;
  }
  .boss-card .feature-screen {
    top: 292px;
    right: 45px;
    width: 210px;
  }
  .boss-card .card-link {
    left: 28px;
  }
  .dungeon {
    padding: 34px 28px;
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .dungeon h3 {
    font-size: 43px;
  }
  .dungeon-copy > p:not(.eyebrow) {
    font-size: 14px;
  }
  .dungeon-copy p.dungeon-aside {
    font-size: 12px;
  }
  .dungeon-screen {
    width: 225px;
    transform: rotate(3deg);
    margin: 5px 0 10px;
  }
  .friends-lineup {
    gap: 8px;
    margin-top: 34px;
  }
  .friend {
    padding: 24px 7px 18px;
    grid-template-rows: auto 115px auto;
    border-radius: 60px 60px 18px 18px;
  }
  .friend-badge {
    font-size: 7px;
    letter-spacing: -0.03em;
  }
  .friend img {
    height: 115px;
    width: 115px;
  }
  .friend h3 {
    font-size: 22px;
  }
  .friend p {
    font-size: 9px;
    line-height: 1.6;
    max-width: 80px;
  }
  .collect-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 30px;
  }
  .collect-numbers > div {
    padding: 24px;
  }
  .collect-numbers strong {
    font-size: 49px;
  }
  .collect-copy h3 {
    font-size: 29px;
  }
  .collect-copy p {
    font-size: 14px;
  }
  .journey-loop {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    font-size: 11px;
    padding: 25px 22px;
    margin-top: 30px;
  }
  .journey-loop i {
    display: none;
  }
  .journey-loop b {
    font-size: 9px;
    display: block;
    margin-bottom: 7px;
  }
  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 23px 13px;
  }
  .screen-link img {
    border-width: 4px;
    border-radius: 17px;
  }
  .screen-link > span {
    font-size: 11px;
    display: flex;
    padding: 12px 2px 0;
    gap: 5px;
  }
  .screen-link b {
    font-size: 8px;
  }
  .media-note {
    font-size: 10px;
    margin-top: 24px;
  }
  .video-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .video-frame {
    width: min(100%, 340px);
    margin: auto;
  }
  .video-frame video {
    height: 540px;
  }
  .video-description {
    padding: 20px 2px 0;
  }
  .video-description > span {
    font-size: 9px;
    letter-spacing: 0.06em;
  }
  .video-description h3 {
    font-size: 26px;
  }
  .video-description p {
    font-size: 14px;
  }
  .release-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .release .lead {
    font-size: 17px;
  }
  .release .button {
    font-size: 13px;
  }
  .faq details {
    padding: 22px 0;
  }
  .faq summary {
    font-size: 14px;
  }
  .footer {
    gap: 18px;
    padding-block: 32px;
  }
  .footer .wordmark {
    font-size: 16px;
  }
  .footer p {
    font-size: 10px;
    width: 100%;
  }
  .footer > div {
    gap: 12px;
    font-size: 9px;
  }
  #screen-dialog {
    padding: 50px 16px 18px;
    border-radius: 15px;
    max-width: 94vw;
  }
  #screen-full {
    height: calc(84dvh - 125px);
  }
  #screen-caption {
    font-size: 10px;
    max-width: 270px;
  }
  .dialog-nav {
    gap: 20px;
  }
}
@media (max-width: 350px) {
  .wrap {
    width: calc(100% - 28px);
  }
  .hero-topline {
    display: block;
  }
  .release-label {
    display: block;
    margin-top: 8px;
  }
  .hero h1 {
    font-size: 29px;
  }
  .quick-facts > span {
    font-size: 8px;
  }
  .section-heading h2,
  h2 {
    font-size: 32px;
  }
  .world-tabs span {
    font-size: 10px;
  }
  .world-description {
    padding: 25px;
  }
  .feature-copy h3 {
    font-size: 29px;
  }
  .play-card {
    padding: 25px;
  }
  .feature-copy p {
    font-size: 13px;
  }
  .friend {
    grid-template-rows: auto 100px auto;
    padding-inline: 5px;
  }
  .friend img {
    width: 100px;
    height: 100px;
  }
  .friend p {
    font-size: 8px;
  }
  .screen-link > span {
    font-size: 10px;
    gap: 4px;
  }
  .video-frame video {
    height: 500px;
  }
  .journey-loop {
    font-size: 10px;
  }
  .dungeon {
    padding: 30px 24px;
  }
  .dungeon-screen {
    width: 210px;
  }
  .footer > div {
    font-size: 8px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}

/* The same artwork and sections, with room for all seven writing systems. */
:root {
  font-family: Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Noto Sans", "Noto Sans Devanagari", "Kohinoor Devanagari", "Nirmala UI", sans-serif;
}
select { font: inherit; color: inherit; }
select:focus-visible { outline: 3px solid #d0682c; outline-offset: 4px; }
.header-inner { gap: 16px; }
.header .wordmark { order: 0; }
.header #navigation { order: 1; margin-left: auto; gap: clamp(12px, 1.5vw, 25px); }
.language-switch { order: 2; flex: 0 0 auto; }
.language-switch select {
  width: 118px;
  min-height: 44px;
  padding: 9px 25px 9px 11px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 12px;
  cursor: pointer;
}
.menu-toggle { order: 3; flex-shrink: 0; }
.language-links {
  display: flex; flex-wrap: wrap; gap: 12px 22px; width: 100%;
  padding-top: 20px; border-top: 1px solid var(--line); font-size: 13px;
}
.language-links a { padding: 8px 0; }
.language-links [aria-current="page"] { font-weight: 800; text-decoration: underline; text-underline-offset: 5px; }
.media-language { font-weight: 700; margin-top: 8px; }
.identity-bubble .identity-lead { display: inline; font-size: inherit; color: inherit; margin: 0; }
html:not([lang="ko"]) p,
html:not([lang="ko"]) h1,
html:not([lang="ko"]) h2,
html:not([lang="ko"]) h3 { word-break: normal; overflow-wrap: break-word; }
html:not([lang="ko"]) :is(.world-tabs button, .button, .friend, .screen-link, .section-heading > *, .hero-bottom > *) { min-width: 0; }
html:not([lang="ko"]) .button { text-align: center; white-space: normal; line-height: 1.5; }
html:not([lang="ko"]) .world-tabs button { gap: 10px; }
html:not([lang="ko"]) .world-tabs span { font-size: clamp(12px, 1.3vw, 17px); }
html:not([lang="ko"]) .play-card { display: flex; flex-direction: column; min-height: 0; }
html:not([lang="ko"]) .feature-copy { width: 100%; }
html:not([lang="ko"]) .feature-copy p { hyphens: auto; }
html:not([lang="ko"]) .tilted-screen,
html:not([lang="ko"]) .boss-card .feature-screen {
  position: relative; top: auto; right: auto; left: auto; flex-shrink: 0;
  width: min(205px, 85%); height: 260px; margin: 32px auto 25px;
}
html:not([lang="ko"]) .boss-card .feature-screen { transform: none; }
html:not([lang="ko"]) .card-link { position: relative; left: auto; bottom: auto; align-self: flex-start; margin-top: auto; }
html:not([lang="ko"]) .card-detail { position: static; margin-top: auto; }
html:not([lang="ko"]) .identity-bubble { max-width: min(78%, 310px); top: 35%; }
html:not([lang="ko"]) .identity-bubble strong { font-size: clamp(23px, 2.3vw, 30px); }
html:not([lang="ko"]) .identity-bubble span:not(.identity-lead) { line-height: 1.6; }
html:not([lang="ko"]) .story-kong { bottom: 72px; }
html:not([lang="ko"]) .flame-note { right: 24px; }
html:not([lang="ko"]) .flame-note img { flex-shrink: 0; }
html:not([lang="ko"]) .flame-note strong { font-size: 16px; }
html:not([lang="ko"]) .quick-facts > span { text-align: center; white-space: normal; line-height: 1.6; }
html:not([lang="ko"]) .quick-facts strong { display: block; margin: 0; }
html:not([lang="ko"]) .hero h1 { font-size: clamp(30px, 3.8vw, 49px); }
html:not([lang="ko"]) .art-label { max-width: 80%; text-align: right; }
html:not([lang="ko"]) .friend p { overflow-wrap: anywhere; }
html[lang="hi"] :is(h1, h2, h3) { letter-spacing: 0; line-height: 1.35; }
html[lang="hi"] .eyebrow { letter-spacing: 0.01em; }
@media (max-width: 1100px) {
  .header { height: 76px; }
  .header-inner { width: calc(100% - 40px); gap: 12px; }
  .header .language-switch { margin-left: auto; }
  .header #navigation {
    display: none; position: absolute; top: 76px; left: 0; right: 0;
    margin: 0; background: var(--paper); padding: 14px 24px 24px;
    border-bottom: 1px solid var(--line); box-shadow: 0 14px 20px #193d2d12;
    max-height: calc(100dvh - 76px); overflow-y: auto;
  }
  .header #navigation.is-open { display: flex; flex-direction: column; align-items: stretch; gap: 0; }
  .header #navigation a { padding: 14px 10px; }
  .nav-pill { margin-top: 8px; text-align: center; }
  .menu-toggle {
    display: flex; width: 44px; height: 44px; border: 1px solid var(--line);
    background: none; border-radius: 50%; flex-direction: column;
    justify-content: center; align-items: center; gap: 5px;
  }
  .menu-toggle span { width: 17px; height: 2px; background: var(--ink); }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
}
@media (max-width: 600px) {
  .header-inner { width: calc(100% - 28px); gap: 9px; }
  .header .wordmark { font-size: 18px; gap: 7px; }
  .header .wordmark img { width: 32px; }
  .header .wordmark small { font-size: 6px; letter-spacing: 0; }
  .language-switch select { width: 91px; font-size: 11px; padding-left: 8px; padding-right: 13px; }
  .menu-toggle { width: 40px; height: 40px; }
  html:not([lang="ko"]) .hero-topline { align-items: flex-start; flex-wrap: wrap; }
  html:not([lang="ko"]) .hero h1 { font-size: 30px; }
  html:not([lang="ko"]) .story-scene { height: 600px; }
  html:not([lang="ko"]) .identity-bubble { right: 22px; padding: 20px; }
  html:not([lang="ko"]) .friends-lineup { grid-template-columns: 1fr; max-width: 360px; margin-inline: auto; }
  html:not([lang="ko"]) .friend { grid-template-rows: auto 170px auto; padding: 28px 22px; border-radius: 55px 55px 22px 22px; }
  html:not([lang="ko"]) .friend img { width: 170px; height: 170px; }
  html:not([lang="ko"]) .friend-badge { font-size: 12px; }
  html:not([lang="ko"]) .friend p { font-size: 14px; max-width: 240px; }
  html:not([lang="ko"]) .world-tabs button { padding-inline: 4px; }
  html:not([lang="ko"]) .world-tabs span { font-size: 11px; }
  html:not([lang="ko"]) .screen-link > span { flex-wrap: wrap; line-height: 1.6; }
  html:not([lang="ko"]) .journey-loop { grid-template-columns: 1fr; font-size: 13px; }
  html:not([lang="ko"]) .journey-loop b { display: inline; margin-right: 8px; }
  .language-links { gap: 5px 20px; font-size: 12px; }
}
html:not([lang="ko"]) .quick-facts > span { flex-direction: column; align-items: center; gap: 0; padding-inline: 6px; }
@media (max-width: 600px) {
  html:not([lang="ko"]) .quick-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 18px; }
  html:not([lang="ko"]) .quick-facts > span { font-size: 12px; }
  html:not([lang="ko"]) .quick-facts > span:nth-child(2) { border-right: 0; }
}

/* One shared, uncut trailer across all seven language pages. */
.video-grid.trailer-grid { grid-template-columns: minmax(0, 1fr); }
.trailer-card {
  display: grid;
  grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(24px, 5vw, 64px);
  width: 100%;
  max-width: 940px;
  margin-inline: auto;
}
.trailer-card .video-frame { width: 100%; max-width: 360px; margin: auto; background: #000; }
.trailer-card .video-frame video { width: 100%; height: auto; aspect-ratio: 9 / 16; background: #000; }
.trailer-card .video-description { min-width: 0; padding: 0; }
.trailer-card .video-description h3 { font-size: clamp(25px, 3vw, 38px); line-height: 1.25; }
.trailer-card .video-description p { font-size: 16px; line-height: 1.8; }
.trailer-card .video-description > span { font-size: 11px; line-height: 1.8; }
@media (max-width: 700px) {
  .trailer-card { grid-template-columns: minmax(0, 1fr); gap: 24px; }
  .trailer-card .video-frame { max-width: 340px; }
  .trailer-card .video-description { max-width: 440px; margin-inline: auto; }
}
