:root {
  --fcl-green: #55b863;
  --fcl-green-dark: #2f7d45;
  --fcl-ink: #0e1712;
  --fcl-ink-soft: #17231c;
  --fcl-paper: #f2f0e7;
  --fcl-paper-deep: #dedfd3;
  --fcl-muted: #aeb9b0;
  --fcl-line: rgba(255, 255, 255, 0.14);
  --fcl-amber: #e1af54;
  --fcl-max: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: #f6f8f4;
  background: var(--fcl-ink);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 32px 32px;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--fcl-amber);
  outline-offset: 4px;
}

::selection {
  color: var(--fcl-ink);
  background: var(--fcl-green);
}

.fcl-mast {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  min-height: 76px;
  padding: 10px max(24px, calc((100vw - var(--fcl-max)) / 2));
  border-bottom: 1px solid var(--fcl-line);
  background: rgba(14, 23, 18, 0.92);
  backdrop-filter: blur(18px);
}

.fcl-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
  text-decoration: none;
}

.fcl-brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.fcl-brand span {
  display: grid;
  line-height: 1.1;
}

.fcl-brand b {
  font-size: 18px;
}

.fcl-brand small {
  margin-top: 5px;
  color: var(--fcl-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fcl-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.fcl-nav a,
.fcl-home-link {
  position: relative;
  padding: 9px 0;
  border: 0;
  color: #dce4dd;
  background: transparent;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
}

.fcl-nav a::after,
.fcl-home-link::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--fcl-green);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.fcl-nav a:hover::after,
.fcl-home-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.fcl-get-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 16px;
  border: 1px solid var(--fcl-green);
  color: #eaffea;
  background: rgba(85, 184, 99, 0.1);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease;
}

.fcl-get-link:hover {
  color: var(--fcl-ink);
  background: var(--fcl-green);
}

.fcl-menu-toggle {
  display: none;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border: 1px solid var(--fcl-line);
  color: #fff;
  background: transparent;
  cursor: pointer;
}

.fcl-opening {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.94fr) minmax(440px, 1.06fr);
  gap: 48px 44px;
  width: min(calc(100% - 48px), 1180px);
  margin: 0 auto;
  padding: 76px 0 60px;
}

.fcl-opening::after {
  position: absolute;
  top: 24px;
  right: 0;
  z-index: -1;
  width: 260px;
  height: 260px;
  content: "";
  opacity: 0.14;
  background: repeating-conic-gradient(var(--fcl-green) 0 25%, transparent 0 50%) 0 / 42px 42px;
  transform: rotate(9deg);
}

.fcl-opening-copy {
  align-self: center;
}

.fcl-coordinate {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: #acd8b3;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.fcl-coordinate span {
  width: 8px;
  height: 8px;
  background: var(--fcl-green);
  box-shadow: 8px 8px 0 rgba(85, 184, 99, 0.4);
}

.fcl-opening h1 {
  margin: 0;
  font-size: clamp(48px, 5.2vw, 64px);
  line-height: 1.05;
}

.fcl-opening h1 span {
  display: block;
  margin: 16px 0 0;
  color: var(--fcl-green);
  font-size: clamp(22px, 2.5vw, 31px);
  font-weight: 800;
  line-height: 1.35;
}

.fcl-opening-lead {
  max-width: 620px;
  margin: 22px 0 0;
  color: #c4cec6;
  font-size: 16px;
}

.fcl-opening-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.fcl-opening-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 12px 19px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.fcl-opening-actions a:first-child {
  border-color: var(--fcl-green);
  color: #08100a;
  background: var(--fcl-green);
  font-weight: 800;
  box-shadow: 8px 8px 0 #234e2d;
}

.fcl-opening-actions a:hover {
  border-color: var(--fcl-green);
  background: rgba(85, 184, 99, 0.14);
  transform: translateY(-2px);
}

.fcl-opening-actions a:first-child:hover {
  color: #08100a;
  background: #68c875;
}

.fcl-open-source {
  margin: 25px 0 0;
  color: #96a69b;
  font-size: 12px;
}

.fcl-open-source i {
  margin-right: 6px;
  font-size: 16px;
  vertical-align: -2px;
}

.fcl-world-window {
  position: relative;
  align-self: center;
  justify-self: end;
  width: min(100%, 610px);
  margin: 0;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.21);
  background: #152219;
  box-shadow: 18px 18px 0 rgba(85, 184, 99, 0.16);
}

.fcl-world-window::before {
  position: absolute;
  right: 28px;
  bottom: -28px;
  width: 70px;
  height: 70px;
  content: "";
  border-right: 10px solid var(--fcl-amber);
  border-bottom: 10px solid var(--fcl-amber);
}

.fcl-world-window img {
  width: 100%;
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.fcl-window-edge {
  display: flex;
  gap: 6px;
  align-items: center;
  height: 25px;
}

.fcl-window-edge span {
  width: 8px;
  height: 8px;
  background: #536158;
}

.fcl-window-edge span:first-child {
  background: var(--fcl-green);
}

.fcl-window-edge span:nth-child(2) {
  background: var(--fcl-amber);
}

.fcl-world-window figcaption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 13px 2px 1px;
  color: #c7d0c9;
  font-size: 12px;
}

.fcl-world-window figcaption span {
  color: var(--fcl-green);
  font-weight: 800;
}

.fcl-trail-notes {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--fcl-line);
  border-bottom: 1px solid var(--fcl-line);
  list-style: none;
}

.fcl-trail-notes li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 14px;
  padding: 20px 24px;
  border-right: 1px solid var(--fcl-line);
}

.fcl-trail-notes li:last-child {
  border-right: 0;
}

.fcl-trail-notes b {
  grid-row: 1 / span 2;
  align-self: center;
  color: var(--fcl-green);
  font-family: Consolas, monospace;
  font-size: 23px;
}

.fcl-trail-notes span {
  font-size: 15px;
  font-weight: 800;
}

.fcl-trail-notes small {
  color: #8fa096;
  font-size: 12px;
}

.fcl-world-map {
  padding: 66px max(24px, calc((100vw - 1180px) / 2)) 74px;
  color: #101712;
  background: var(--fcl-paper);
}

.fcl-world-map > header {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  align-items: end;
  gap: 30px;
  margin-bottom: 38px;
}

.fcl-world-map > header p {
  margin: 0 0 7px;
  color: var(--fcl-green-dark);
  font-size: 13px;
  font-weight: 800;
}

.fcl-world-map h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 40px);
  line-height: 1.24;
}

.fcl-route-list {
  border-top: 2px solid #172119;
}

.fcl-route-list article {
  display: grid;
  grid-template-columns: 48px 54px minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 25px 4px;
  border-bottom: 1px solid #bdc1b6;
  transition: padding 180ms ease, background 180ms ease;
}

.fcl-route-list article:hover {
  padding-right: 16px;
  padding-left: 16px;
  background: #e2e6dc;
}

.fcl-route-number {
  color: #728076;
  font-family: Consolas, monospace;
  font-size: 13px;
}

.fcl-route-list article > i {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #0d160f;
  background: var(--fcl-green);
  font-size: 23px;
  box-shadow: 5px 5px 0 #b5cdb8;
}

.fcl-route-list h3 {
  margin: 0 0 3px;
  font-size: 20px;
}

.fcl-route-list p {
  max-width: 780px;
  margin: 0;
  color: #556059;
  font-size: 14px;
}

.fcl-route-list em {
  padding: 6px 10px;
  border: 1px solid #a2aaa2;
  color: #4b574f;
  font-size: 12px;
  font-style: normal;
  white-space: nowrap;
}

.fcl-pack {
  display: grid;
  grid-template-columns: minmax(360px, 0.85fr) minmax(460px, 1.15fr);
  gap: 66px;
  width: min(calc(100% - 48px), 1080px);
  margin: 0 auto;
  padding: 76px 0 70px;
}

.fcl-pack-intro > p:first-child {
  margin: 0 0 10px;
  color: var(--fcl-green);
  font-size: 13px;
  font-weight: 800;
}

.fcl-pack-intro h2 {
  margin: 0;
  font-size: clamp(29px, 3vw, 38px);
  line-height: 1.28;
}

.fcl-pack-intro > p:nth-of-type(2) {
  margin: 18px 0 28px;
  color: #aebbb1;
  font-size: 14px;
}

.fcl-pack-intro figure {
  max-width: 420px;
  margin: 0;
  padding: 10px;
  border: 1px solid var(--fcl-line);
  background: #131f17;
}

.fcl-pack-intro figure img {
  width: 100%;
  height: auto;
}

.fcl-pack-intro figcaption {
  padding: 10px 3px 2px;
  color: #8fa096;
  font-size: 12px;
}

.fcl-inventory {
  margin: 0;
  border-top: 1px solid var(--fcl-line);
}

.fcl-inventory > div {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 26px;
  padding: 23px 0;
  border-bottom: 1px solid var(--fcl-line);
}

.fcl-inventory dt {
  color: #f4f8f4;
  font-size: 16px;
  font-weight: 800;
}

.fcl-inventory dt i {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin-right: 10px;
  color: var(--fcl-ink);
  background: var(--fcl-green);
  font-size: 17px;
  vertical-align: -5px;
}

.fcl-inventory dd {
  margin: 0;
  color: #9eaba1;
  font-size: 14px;
}

.fcl-screenbook {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 22px;
  padding: 68px max(24px, calc((100vw - 1100px) / 2)) 76px;
  color: #101711;
  background: var(--fcl-paper-deep);
}

.fcl-screenbook-title {
  grid-column: 1 / span 4;
  align-self: center;
  padding-right: 18px;
}

.fcl-screenbook-title span {
  color: var(--fcl-green-dark);
  font-family: Consolas, monospace;
  font-size: 12px;
  font-weight: 800;
}

.fcl-screenbook-title h2 {
  margin: 12px 0 16px;
  font-size: clamp(28px, 3.2vw, 38px);
  line-height: 1.25;
}

.fcl-screenbook-title p {
  margin: 0;
  color: #566159;
  font-size: 14px;
}

.fcl-screenbook figure {
  margin: 0;
  border: 1px solid #b7bcb3;
  background: #f5f4ed;
}

.fcl-screenbook figure img {
  width: 100%;
  height: auto;
  border-bottom: 1px solid #b7bcb3;
}

.fcl-screenbook figcaption {
  padding: 13px 15px 15px;
}

.fcl-screenbook figcaption b,
.fcl-screenbook figcaption span {
  display: block;
}

.fcl-screenbook figcaption b {
  margin-bottom: 2px;
  font-size: 15px;
}

.fcl-screenbook figcaption span,
.fcl-screenbook figcaption p {
  margin: 0;
  color: #68726a;
  font-size: 12px;
}

.fcl-screen-wide {
  grid-column: 5 / -1;
}

.fcl-screen-pair {
  grid-column: 1 / span 8;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.fcl-screen-side {
  grid-column: 9 / -1;
  align-self: start;
}

.fcl-screen-side figcaption > span {
  color: var(--fcl-green-dark);
  font-weight: 800;
}

.fcl-play-stories {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  color: #16130c;
  background: var(--fcl-amber);
}

.fcl-play-stories > header {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: end;
  padding: 58px max(24px, calc((100vw - 1180px) / 2)) 34px;
  border-bottom: 1px solid rgba(21, 18, 10, 0.28);
}

.fcl-play-stories h2 {
  margin: 0;
  font-size: clamp(30px, 3.7vw, 40px);
  line-height: 1.22;
}

.fcl-play-stories > header p {
  max-width: 520px;
  margin: 0 0 3px auto;
  color: #544629;
  font-size: 14px;
}

.fcl-story {
  grid-column: span 4;
  padding: 36px max(24px, calc((100vw - 1180px) / 6));
  border-right: 1px solid rgba(21, 18, 10, 0.28);
}

.fcl-story:last-child {
  border-right: 0;
}

.fcl-story strong {
  display: inline-block;
  padding: 4px 8px;
  color: #fff;
  background: #182019;
  font-size: 12px;
}

.fcl-story h3 {
  margin: 16px 0 10px;
  font-size: 21px;
  line-height: 1.35;
}

.fcl-story p {
  margin: 0;
  color: #564827;
  font-size: 14px;
}

.fcl-player-notes {
  width: min(calc(100% - 48px), 1160px);
  margin: 0 auto;
  padding: 70px 0 76px;
}

.fcl-notes-heading {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 30px;
  align-items: end;
  margin-bottom: 30px;
}

.fcl-notes-heading p {
  margin: 0 0 6px;
  color: var(--fcl-green);
  font-size: 13px;
  font-weight: 800;
}

.fcl-notes-heading h2 {
  margin: 0;
  font-size: clamp(30px, 3.6vw, 40px);
}

.fcl-notes-disclosure {
  margin: -12px 0 28px;
  padding: 12px 15px;
  border-left: 3px solid var(--fcl-amber);
  color: #9daa9f;
  background: rgba(255, 255, 255, 0.035);
  font-size: 12px;
}

.fcl-note-columns {
  columns: 3 280px;
  column-gap: 30px;
}

.fcl-player-note {
  break-inside: avoid;
  margin: 0 0 30px;
  padding: 22px 0 0;
  border-top: 2px solid #59655c;
}

.fcl-player-note:nth-child(3n + 1) {
  border-top-color: var(--fcl-green);
}

.fcl-player-note:nth-child(3n + 2) {
  border-top-color: var(--fcl-amber);
}

.fcl-player-note blockquote {
  margin: 0;
  color: #dde5de;
  font-size: 16px;
  line-height: 1.85;
}

.fcl-player-note > p {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 18px 0 0;
}

.fcl-avatar {
  display: grid;
  place-items: center;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  color: var(--fcl-ink);
  background: #d6ded7;
  font-size: 13px;
  font-weight: 800;
}

.fcl-player-note > p > span:last-child {
  display: grid;
}

.fcl-player-note b {
  color: #abb7ad;
  font-size: 12px;
}

.fcl-player-note time {
  color: #68756b;
  font-family: Consolas, monospace;
  font-size: 10px;
}

.fcl-note-short blockquote {
  font-size: 15px;
}

.fcl-note-long blockquote {
  color: #f0f3f0;
}

.fcl-questions {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(520px, 1.25fr);
  gap: 72px;
  padding: 68px max(24px, calc((100vw - 1160px) / 2)) 74px;
  color: #101711;
  background: #eef0e9;
}

.fcl-questions aside {
  position: relative;
  align-self: start;
  padding: 24px 28px 30px;
  border-left: 8px solid var(--fcl-green);
  background: #dfe7dd;
  overflow: hidden;
}

.fcl-questions aside p {
  margin: 0 0 7px;
  color: var(--fcl-green-dark);
  font-size: 13px;
  font-weight: 800;
}

.fcl-questions aside h2 {
  margin: 0 0 12px;
  font-size: clamp(29px, 3vw, 37px);
  line-height: 1.25;
}

.fcl-questions aside span {
  display: block;
  max-width: 250px;
  color: #617066;
  font-size: 13px;
}

.fcl-questions aside > i {
  position: absolute;
  right: -12px;
  bottom: -26px;
  color: rgba(47, 125, 69, 0.16);
  font-size: 120px;
}

.fcl-question-stack {
  border-top: 1px solid #aeb7af;
}

.fcl-question-stack details {
  border-bottom: 1px solid #aeb7af;
}

.fcl-question-stack summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px 2px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.fcl-question-stack summary::-webkit-details-marker {
  display: none;
}

.fcl-question-stack summary i {
  flex: 0 0 auto;
  color: var(--fcl-green-dark);
  font-size: 23px;
  transition: transform 180ms ease;
}

.fcl-question-stack details[open] summary i {
  transform: rotate(45deg);
}

.fcl-question-stack details p {
  margin: -4px 38px 22px 2px;
  color: #59655c;
  font-size: 14px;
}

.fcl-final-camp {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 50px;
  align-items: center;
  width: min(calc(100% - 48px), 1240px);
  margin: 64px auto;
  padding: 38px 42px;
  color: #101711;
  background: var(--fcl-green);
  box-shadow: 14px 14px 0 #203c27;
}

.fcl-camp-copy {
  display: flex;
  align-items: center;
  gap: 25px;
}

.fcl-camp-copy > img {
  width: 112px;
  height: 112px;
  object-fit: contain;
  border: 1px solid rgba(8, 16, 10, 0.25);
  background: #101914;
}

.fcl-camp-copy p {
  margin: 0 0 5px;
  font-size: 13px;
  font-weight: 800;
}

.fcl-camp-copy h2 {
  margin: 0 0 8px;
  font-size: clamp(29px, 3.5vw, 40px);
  line-height: 1.2;
}

.fcl-camp-copy span {
  display: block;
  max-width: 650px;
  color: #24432b;
  font-size: 14px;
}

.fcl-download-kit {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 15px 10px 10px;
  border: 2px solid rgba(8, 16, 10, 0.7);
  background: rgba(255, 255, 255, 0.2);
}

.fcl-download-kit > img {
  width: 112px;
  height: 112px;
}

.fcl-download-kit > div {
  display: grid;
  gap: 6px;
}


.fcl-download-kit a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #0d160f;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
}


.fcl-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px 70px;
  width: min(calc(100% - 48px), 1240px);
  margin: 0 auto;
  padding: 34px 0 44px;
  border-top: 1px solid var(--fcl-line);
}

.fcl-footer .fcl-brand img {
  width: 42px;
  height: 42px;
}

.fcl-footer > div > p {
  max-width: 600px;
  margin: 13px 0 0;
  color: #839087;
  font-size: 12px;
}

.fcl-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  align-content: start;
  justify-content: flex-end;
  padding-top: 11px;
}

.fcl-footer nav a {
  color: #a9b5ab;
  font-size: 12px;
  text-decoration: none;
}

.fcl-footer nav a:hover {
  color: var(--fcl-green);
}

.fcl-trademark-note {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid var(--fcl-line);
  color: #69766d;
  font-size: 11px;
  line-height: 1.7;
}

.fcl-back-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #0a130c;
  background: var(--fcl-green);
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.35);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.fcl-back-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 1060px) {
  .fcl-opening {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 42px 32px;
  }

  .fcl-opening h1 {
    font-size: 54px;
  }

  .fcl-route-list article {
    grid-template-columns: 42px 50px minmax(0, 1fr);
  }

  .fcl-route-list em {
    grid-column: 3;
    justify-self: start;
  }

  .fcl-pack {
    gap: 42px;
  }

  .fcl-inventory > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .fcl-final-camp {
    grid-template-columns: 1fr;
  }

  .fcl-download-kit {
    width: max-content;
  }
}

@media (max-width: 900px) {
  .fcl-mast {
    grid-template-columns: 1fr auto auto;
    gap: 12px;
  }

  .fcl-get-link {
    grid-row: 1;
    grid-column: 2;
    justify-self: end;
  }

  .fcl-menu-toggle {
    grid-row: 1;
    grid-column: 3;
    display: inline-flex;
  }

  .fcl-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 16px;
    left: 16px;
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--fcl-line);
    background: #142019;
    box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.25);
  }

  .fcl-nav.is-open {
    display: grid;
  }

  .fcl-nav a,
  .fcl-home-link {
    width: 100%;
    padding: 13px 10px;
    border-bottom: 1px solid var(--fcl-line);
    text-align: left;
  }

  .fcl-nav a:last-child {
    border-bottom: 0;
  }

  .fcl-nav a::after,
  .fcl-home-link::after {
    display: none;
  }

  .fcl-opening {
    grid-template-columns: 1fr;
    gap: 44px;
    padding-top: 54px;
  }

  .fcl-opening-copy {
    max-width: 720px;
  }

  .fcl-world-window {
    width: min(88%, 610px);
    margin-left: auto;
  }

  .fcl-pack {
    grid-template-columns: 1fr;
  }

  .fcl-pack-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 28px;
  }

  .fcl-pack-intro > p,
  .fcl-pack-intro h2 {
    grid-column: 1;
  }

  .fcl-pack-intro figure {
    grid-column: 2;
    grid-row: 1 / span 3;
    align-self: center;
    width: 100%;
  }

  .fcl-inventory > div {
    grid-template-columns: 220px 1fr;
    gap: 22px;
  }

  .fcl-screenbook-title {
    grid-column: 1 / span 5;
  }

  .fcl-screen-wide {
    grid-column: 6 / -1;
  }

  .fcl-screen-pair {
    grid-column: 1 / -1;
  }

  .fcl-screen-side {
    grid-column: 1 / span 6;
  }

  .fcl-questions {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 700px) {
  html {
    scroll-padding-top: 70px;
  }

  .fcl-mast {
    min-height: 66px;
    padding: 8px 14px;
  }

  .fcl-brand img {
    width: 40px;
    height: 40px;
  }

  .fcl-brand b {
    font-size: 16px;
  }

  .fcl-brand small {
    display: none;
  }

  .fcl-menu-toggle span {
    display: none;
  }

  .fcl-get-link {
    min-height: 42px;
    justify-content: center;
    padding: 0 13px;
    font-size: 13px;
    white-space: nowrap;
  }

  .fcl-menu-toggle {
    width: 42px;
    height: 42px;
    justify-content: center;
    padding: 0;
    font-size: 20px;
  }

  .fcl-opening {
    width: min(calc(100% - 30px), var(--fcl-max));
    gap: 36px;
    padding: 42px 0 48px;
  }

  .fcl-opening::after {
    display: none;
  }

  .fcl-opening h1 {
    font-size: 38px;
  }

  .fcl-opening h1 span {
    font-size: 22px;
  }

  .fcl-opening-lead {
    margin-top: 18px;
    font-size: 14px;
  }

  .fcl-opening-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 24px;
  }

  .fcl-opening-actions a {
    min-height: 48px;
    padding: 10px 12px;
    font-size: 13px;
  }

  .fcl-opening-actions a:first-child {
    box-shadow: 5px 5px 0 #234e2d;
  }

  .fcl-open-source {
    line-height: 1.6;
  }

  .fcl-world-window {
    width: calc(94% - 8px);
    padding: 8px;
    box-shadow: 8px 8px 0 rgba(85, 184, 99, 0.16);
  }

  .fcl-world-window::before {
    display: none;
  }

  .fcl-world-window figcaption {
    display: grid;
    gap: 2px;
    font-size: 11px;
  }

  .fcl-trail-notes {
    grid-template-columns: 1fr;
  }

  .fcl-trail-notes li {
    padding: 15px 4px;
    border-right: 0;
    border-bottom: 1px solid var(--fcl-line);
  }

  .fcl-trail-notes li:last-child {
    border-bottom: 0;
  }

  .fcl-world-map {
    padding: 46px 16px 52px;
  }

  .fcl-world-map > header {
    grid-template-columns: 1fr;
    gap: 5px;
    margin-bottom: 28px;
  }

  .fcl-world-map h2 {
    font-size: 28px;
  }

  .fcl-route-list article {
    grid-template-columns: 32px 42px 1fr;
    gap: 10px;
    padding: 20px 0;
  }

  .fcl-route-list article:hover {
    padding-right: 0;
    padding-left: 0;
    background: transparent;
  }

  .fcl-route-list article > i {
    width: 36px;
    height: 36px;
    font-size: 19px;
    box-shadow: 3px 3px 0 #b5cdb8;
  }

  .fcl-route-list h3 {
    font-size: 18px;
  }

  .fcl-route-list p {
    font-size: 13px;
  }

  .fcl-route-list em {
    grid-column: 3;
  }

  .fcl-pack {
    width: min(calc(100% - 30px), 1080px);
    padding: 50px 0;
  }

  .fcl-pack-intro {
    display: block;
  }

  .fcl-pack-intro h2 {
    font-size: 28px;
  }

  .fcl-pack-intro figure {
    margin-top: 22px;
  }

  .fcl-inventory > div {
    grid-template-columns: 1fr;
    gap: 9px;
    padding: 20px 0;
  }

  .fcl-screenbook {
    display: block;
    padding: 46px 16px 52px;
  }

  .fcl-screenbook-title {
    padding: 0 0 25px;
  }

  .fcl-screenbook-title h2 {
    font-size: 27px;
  }

  .fcl-screenbook figure {
    width: 94%;
    margin-right: auto;
    margin-bottom: 15px;
    margin-left: auto;
  }

  .fcl-screen-pair {
    display: block;
  }

  .fcl-play-stories {
    display: block;
  }

  .fcl-play-stories > header {
    display: block;
    padding: 45px 16px 28px;
  }

  .fcl-play-stories h2 {
    font-size: 28px;
  }

  .fcl-play-stories > header p {
    margin: 12px 0 0;
  }

  .fcl-story {
    padding: 28px 16px;
    border-right: 0;
    border-bottom: 1px solid rgba(21, 18, 10, 0.28);
  }

  .fcl-player-notes {
    width: min(calc(100% - 30px), 1160px);
    padding: 48px 0 50px;
  }

  .fcl-notes-heading {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .fcl-notes-heading h2 {
    font-size: 28px;
  }

  .fcl-note-columns {
    columns: 1;
  }

  .fcl-player-note {
    margin-bottom: 26px;
  }

  .fcl-player-note blockquote {
    font-size: 15px;
  }

  .fcl-questions {
    gap: 26px;
    padding: 46px 16px 50px;
  }

  .fcl-questions aside {
    padding: 20px 20px 24px;
  }

  .fcl-questions aside h2 {
    font-size: 27px;
  }

  .fcl-question-stack summary {
    gap: 12px;
    padding: 18px 1px;
    font-size: 15px;
  }

  .fcl-question-stack details p {
    margin-right: 10px;
    font-size: 13px;
  }

  .fcl-final-camp {
    width: min(calc(100% - 30px), 1240px);
    gap: 28px;
    margin: 48px auto 56px;
    padding: 25px 20px;
    box-shadow: 8px 8px 0 #203c27;
  }

  .fcl-camp-copy {
    align-items: flex-start;
    gap: 14px;
  }

  .fcl-camp-copy > img {
    width: 70px;
    height: 70px;
  }

  .fcl-camp-copy h2 {
    font-size: 27px;
  }

  .fcl-download-kit {
    width: 100%;
    padding: 13px;
  }

  .fcl-download-kit > img {
    display: none;
  }

  .fcl-download-kit a {
    min-height: 44px;
    font-size: 17px;
  }

  .fcl-footer {
    grid-template-columns: 1fr;
    gap: 24px;
    width: min(calc(100% - 30px), 1240px);
  }

  .fcl-footer nav {
    justify-content: flex-start;
    padding: 0;
  }

  .fcl-back-top {
    right: 14px;
    bottom: 14px;
    width: 42px;
    height: 42px;
  }
}

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

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