:root {
  --site-ink: #273338;
  --site-muted: #607075;
  --site-cyan: #2ebabc;
  --site-cyan-dark: #239ea0;
  --site-nav-height: 64px;
  --site-page-progress: 0;
}

html::before {
  position: fixed;
  z-index: 2147483647;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #2ebabc 0%, #42d6d2 46%, #438cff 100%);
  box-shadow:
    0 2px 9px rgba(46, 186, 188, .56),
    0 1px 5px rgba(67, 140, 255, .38);
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: scaleX(var(--site-page-progress));
  transform-origin: left center;
  transition:
    transform .3s cubic-bezier(.22, .7, .2, 1),
    opacity .16s ease;
  will-change: transform, opacity;
}

html.site-progress-active::before {
  opacity: 1;
}

html.site-progress-complete::before {
  opacity: 0;
  transition:
    transform .2s cubic-bezier(.22, .7, .2, 1),
    opacity .24s ease .1s;
}

*,
*::before,
*::after {
  letter-spacing: 0 !important;
}

body {
  opacity: 0;
}

body.site-page-ready {
  opacity: 1;
  transition: opacity .62s cubic-bezier(.22, .7, .2, 1);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 12px;
  padding: 9px 12px;
  color: #fff;
  background: #1f686b;
  font: 500 12px/1 "HarmonyOS Embedded", "HarmonyOS Sans SC Medium", "HarmonyOS Sans SC", "Microsoft YaHei UI", sans-serif;
  text-decoration: none;
  transform: translateY(-150%);
  transition: transform .16s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:where(a, button, input, [tabindex]):focus-visible {
  outline: 2px solid #178b8e;
  outline-offset: 3px;
}

.site-nav {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: minmax(0, auto) minmax(0, 1fr) minmax(0, auto);
  align-items: center;
  height: var(--site-nav-height);
  min-height: var(--site-nav-height);
  padding: 0 clamp(20px, 4vw, 68px);
  box-sizing: border-box;
  border-bottom: 1px solid rgba(39, 51, 56, .08);
  background: rgba(255, 255, 255, .78);
  backdrop-filter: blur(16px) saturate(120%);
  font-family: "HarmonyOS Embedded", "HarmonyOS Sans SC Medium", "HarmonyOS Sans SC", "Microsoft YaHei UI", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1;
}

.site-nav *,
.site-nav *::before,
.site-nav *::after {
  box-sizing: border-box;
}

.site-nav .brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  min-height: 30px;
  color: var(--site-ink);
  text-decoration: none;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
  white-space: nowrap;
}

.site-nav .brand-accessible {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.site-nav .brand-rotator {
  position: relative;
  display: inline-grid;
  align-items: center;
  min-width: 116px;
  height: 28px;
  overflow: hidden;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
}

.site-nav .brand-word {
  grid-area: 1 / 1;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.site-nav .brand-character {
  display: inline-block;
  animation-delay: calc(var(--brand-character-index) * 46ms);
  animation-duration: .48s;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(.2, .78, .18, 1);
}

.site-nav .brand-word.is-entering .brand-character {
  animation-name: brand-character-enter;
}

.site-nav .brand-word.is-leaving .brand-character {
  animation-name: brand-character-leave;
  animation-delay: calc(var(--brand-character-index) * 28ms);
  animation-duration: .32s;
}

@keyframes brand-character-enter {
  from { opacity: 0; transform: translate3d(0, 105%, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes brand-character-leave {
  from { opacity: 1; transform: translate3d(0, 0, 0); }
  to { opacity: 0; transform: translate3d(0, -105%, 0); }
}

.site-nav .nav-links {
  display: flex;
  align-items: center;
  justify-self: center;
  gap: clamp(18px, 2.6vw, 38px);
  min-width: 0;
  margin: 0;
  white-space: nowrap;
}

.site-nav .nav-links a {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  padding: 22px 0 19px;
  color: var(--site-muted);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  text-decoration: none;
  transition: color .2s ease;
  white-space: nowrap;
}

.site-nav .nav-links a small {
  color: #91a0a4;
  font-size: 9px;
  font-weight: 500;
  line-height: 1;
}

.site-nav .nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 13px;
  left: 0;
  height: 2px;
  background: var(--site-cyan);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s ease;
}

.site-nav .nav-links a:hover,
.site-nav .nav-links a.is-current,
.site-nav .nav-links a[aria-current="page"] {
  color: #1f4f55;
}

.site-nav .nav-links a:hover::after,
.site-nav .nav-links a.is-current::after,
.site-nav .nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav .nav-community {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 6px;
  padding: 9px 13px;
  border: 1px solid var(--site-cyan);
  color: #fff;
  background: var(--site-cyan);
  box-shadow: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
  white-space: nowrap;
}

.site-nav a:focus-visible {
  outline: 2px solid rgba(35, 158, 160, .6);
  outline-offset: 4px;
}

.site-nav .nav-community small {
  font-size: 9px;
  font-weight: 500;
  line-height: 1;
}

.site-nav .nav-community:hover {
  border-color: var(--site-cyan-dark);
  background: var(--site-cyan-dark);
  box-shadow: none;
  transform: none;
}

.site-nav .nav-actions {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 9px;
  min-width: 0;
}

.site-language-toggle {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid rgba(39, 51, 56, .16);
  border-radius: 0;
  color: #526368;
  background: rgba(255, 255, 255, .72);
  font: inherit;
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.site-language-toggle:hover {
  border-color: var(--site-cyan);
  color: #1f7275;
  background: #fff;
}

.site-language-toggle:focus-visible {
  outline: 2px solid rgba(35, 158, 160, .6);
  outline-offset: 3px;
}

.site-lang-text {
  display: inline;
}

html[data-site-lang="zh"] [lang="en"],
html[data-site-lang="zh"] [data-lang="en"],
html[data-site-lang="zh"] .text-en,
html[data-site-lang="zh"] .heading-en,
html[data-site-lang="zh"] .copy-en,
html[data-site-lang="zh"] .row-en,
html[data-site-lang="zh"] .lang-en,
html[data-site-lang="en"] [lang="zh-CN"],
html[data-site-lang="en"] [lang="zh"],
html[data-site-lang="en"] [data-lang="zh"],
html[data-site-lang="en"] .text-zh,
html[data-site-lang="en"] .heading-zh,
html[data-site-lang="en"] .copy-zh,
html[data-site-lang="en"] .row-zh,
html[data-site-lang="en"] .lang-zh {
  display: none !important;
}

html[data-site-lang="zh"] [data-lang="zh"],
html[data-site-lang="en"] [data-lang="en"] {
  display: revert !important;
}

html[data-site-lang="zh"] .site-lang-text[lang="zh-CN"],
html[data-site-lang="en"] .site-lang-text[lang="en"] {
  display: inline !important;
}

html[data-site-lang="zh"] .site-lang-text[lang="en"],
html[data-site-lang="en"] .site-lang-text[lang="zh-CN"] {
  display: none !important;
}

/* Keep class-only bilingual copy visible when the shared shell is used. */
html[data-site-lang="zh"] .lang-zh,
html[data-site-lang="en"] .lang-en,
html[data-site-lang="zh"] .text-zh,
html[data-site-lang="en"] .text-en,
html[data-site-lang="zh"] .heading-zh,
html[data-site-lang="en"] .heading-en,
html[data-site-lang="zh"] .copy-zh,
html[data-site-lang="en"] .copy-en {
  visibility: visible;
}

html[data-site-lang="zh"] .copy[lang="zh-CN"],
html[data-site-lang="en"] .copy[lang="en"] {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translate3d(0, 0, 0) !important;
}

/* English used to be a secondary line below Chinese. In switchable-language
   mode it must inherit the same typographic role as the Chinese copy. */
html[data-site-lang="en"] .heading-en,
html[data-site-lang="en"] .copy-en {
  max-width: none !important;
  margin-top: 0 !important;
  color: inherit !important;
  font-size: inherit !important;
  font-weight: inherit;
  line-height: inherit !important;
}

.copy-stage .subtitle-segment {
  display: inline-block;
}

html[data-site-lang="zh"] .site-nav .brand .lang-zh,
html[data-site-lang="en"] .site-nav .brand .lang-en {
  display: inline !important;
}

/* Keep content labels factual instead of repeating decorative eyebrow text. */
body.home-page .section-kicker,
body.mods-page .section-kicker,
body.history-page .section-kicker,
body.join-page .section-kicker,
body.rules-page .eyebrow {
  display: none !important;
}

body.home-page .action-link,
body.mods-page .action-link,
body.history-page .action-link,
body.join-page .action-link {
  min-height: 0;
  padding: 9px 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  color: #27575c;
  background: transparent;
  box-shadow: none;
  text-decoration: none;
  transform: none;
}

body.home-page .action-link.primary,
body.mods-page .action-link.primary,
body.history-page .action-link.primary,
body.join-page .action-link.primary {
  padding: 10px 14px;
  border-bottom: 0;
  color: #fff;
  background: var(--site-cyan);
}

body.home-page .action-link:hover,
body.mods-page .action-link:hover,
body.history-page .action-link:hover,
body.join-page .action-link:hover {
  box-shadow: none;
  transform: none;
}

body.home-page .action-link > span[aria-hidden="true"],
body.mods-page .action-link > span[aria-hidden="true"],
body.history-page .action-link > span[aria-hidden="true"],
body.join-page .action-link > span[aria-hidden="true"],
body.home-page .join-link > span[aria-hidden="true"] {
  display: none;
}

body.mods-page .mod-filter {
  padding: 9px 3px;
  border: 0;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body.mods-page .mod-filter.is-active,
body.mods-page .mod-filter:hover {
  border-bottom-color: var(--site-cyan);
  color: #1d666a;
  background: transparent;
}

body.mods-page .mod-card,
body.mods-page .adaptation-item,
body.join-page .step,
body.join-page .requirement {
  border-radius: 0;
  box-shadow: none;
}

body.rules-page .eyebrow,
body.rules-page .toc-label,
body.rules-page .warning-tag,
body.rules-page .penalty-badge {
  text-transform: none;
}

body.rules-page .enforcement-icon {
  display: none;
}

body.rules-page .pill {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body.rules-page .pill > span:first-child {
  display: none;
}

body.home-page .mod-icon-link {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body.home-page .mod-icon-link:hover {
  border-color: transparent;
  transform: none;
}

body.mods-page .mod-grid,
body.mods-page .catalog-grid {
  gap: 0;
  border: 0;
  background: transparent;
}

body.mods-page .mod-card {
  border: 0;
  border-top: 1px solid rgba(39, 51, 56, .14);
  background: transparent;
}

body.mods-page .mod-card:hover {
  background: rgba(46, 186, 188, .035);
  transform: none;
}

body.mods-page .mod-card-status,
body.mods-page .adaptation-kind {
  padding: 0;
  border: 0;
  background: transparent;
  text-transform: none;
}

body.mods-page .adaptation-panel {
  padding-right: 0;
  padding-left: 0;
  border: 0;
  border-top: 1px solid rgba(39, 51, 56, .14);
  background: transparent;
}

body.mods-page .adaptation-stats,
body.mods-page .adaptation-list {
  gap: 0;
  background: transparent;
}

body.mods-page .adaptation-stat,
body.mods-page .adaptation-item {
  border-top: 1px solid rgba(39, 51, 56, .13);
  background: transparent;
}

body.mods-page .adaptation-stat + .adaptation-stat,
body.mods-page .adaptation-item:nth-child(even) {
  border-left: 1px solid rgba(39, 51, 56, .13);
}

body.mods-page .mod-card-meta {
  gap: 0;
}

body.mods-page .mod-card-meta span + span::before {
  margin: 0 6px;
  color: #9aa6a9;
  content: "·";
}

body.mods-page .catalog-item {
  border: 0;
  border-bottom: 1px solid rgba(39, 51, 56, .13);
  background: transparent;
}

body.mods-page a.catalog-item:hover {
  background: rgba(46, 186, 188, .045);
  transform: none;
}

body.join-page .community-grid {
  gap: 0;
  border-top: 1px solid rgba(39, 51, 56, .14);
  background: transparent;
}

body.join-page .community-card {
  border: 0;
  border-bottom: 1px solid rgba(39, 51, 56, .14);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body.join-page .community-card:hover {
  background: rgba(46, 186, 188, .035);
  transform: none;
}

body.join-page .community-icon {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

body.join-page .community-step {
  display: none;
}

body.join-page .card-link > span[aria-hidden="true"] {
  display: none;
}

body.history-page .event-tags {
  gap: 0;
}

body.history-page .event-tags li {
  padding: 0;
  border: 0;
  background: transparent;
}

body.history-page .event-tags li + li::before {
  margin: 0 7px;
  color: #9aa6a9;
  content: "·";
}

body.home-page .scroll-cue,
body.mods-page .scroll-cue,
body.history-page .scroll-cue,
body.join-page .scroll-cue,
body.mods-page .mods-total-label,
body.mods-page .mod-card-status,
body.mods-page .adaptation-kind,
body.mods-page .catalog-meta,
body.history-page .event-date > span,
body.history-page .event-index,
body.history-page .hero-range,
body.join-page .step-number {
  text-transform: none !important;
}

@media (min-width: 621px) {
  body.home-page .site-section .section-heading,
  body.mods-page .site-section .section-heading,
  body.history-page .history-section .section-heading,
  body.join-page .join-section .section-heading {
    max-width: 900px;
    font-size: clamp(32px, 3.4vw, 52px);
    line-height: 1.16;
  }
}

@media (hover: none), (pointer: coarse) {
  .pointer-light,
  .click-effects,
  .rules-pointer,
  .rules-clicks {
    display: none !important;
  }
}

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

  body {
    opacity: 1 !important;
    transition: none !important;
  }

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }

  .pointer-light,
  .click-effects,
  .rules-pointer,
  .rules-clicks {
    display: none !important;
  }
}

@media print {
  body {
    opacity: 1 !important;
    transition: none !important;
  }
}

.rules-page .shell {
  padding-top: calc(var(--site-nav-height) + 38px);
}

body.rules-page .rules-backdrop {
  position: absolute;
  height: max(660px, 100svh);
  background: #fff;
}

body.rules-page .rules-pointer {
  display: none !important;
}

body.rules-page .rules-band {
  height: clamp(102px, 12vw, 178px);
  opacity: .68;
  transform: translate(-50%, -50%) rotate(20.4deg);
}

body.rules-page .rules-band-main {
  top: 47%;
}

body.rules-page .rules-band-lower {
  right: -8%;
  bottom: 0;
  left: auto;
  width: 58vw;
  height: clamp(68px, 8vw, 118px);
  transform: none;
  opacity: .58;
}

body.rules-page .shell {
  width: 100%;
  margin: 0;
  padding: var(--site-nav-height) 0 0;
}

body.rules-page .rule-tools {
  position: absolute;
  z-index: 8;
  top: calc(var(--site-nav-height) + 18px);
  right: clamp(20px, 4vw, 68px);
  margin: 0;
}

body.rules-page .hero {
  display: flex;
  box-sizing: border-box;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  width: 100%;
  min-height: max(660px, calc(100svh - var(--site-nav-height)));
  padding: clamp(80px, 10vh, 132px) clamp(28px, 7vw, 120px) 118px;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body.rules-page .hero::before,
body.rules-page .hero::after {
  display: none;
}

body.rules-page .hero h1 {
  max-width: min(960px, 76vw);
  margin: 0;
  color: #273338;
  font-size: clamp(80px, 10vw, 166px);
  font-weight: 500;
  line-height: .9;
  text-wrap: balance;
}

body.rules-page .hero .hero-copy {
  max-width: min(660px, 64vw);
  margin: clamp(24px, 3vw, 42px) 0 22px auto;
  color: #607075;
  font-size: clamp(16px, 1.35vw, 21px);
  line-height: 1.75;
}

body.rules-page .hero-meta {
  justify-content: flex-end;
  gap: 8px 18px;
  max-width: min(760px, 68vw);
  color: #39767b;
  font-size: 12px;
}

body.rules-page .layout {
  width: min(1180px, calc(100% - 48px));
  margin: clamp(72px, 8vw, 112px) auto 0;
  padding-bottom: 82px;
}

body.rules-page .toc {
  top: calc(var(--site-nav-height) + 22px);
  border: 1px solid rgba(39, 92, 98, .12);
  border-radius: 6px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 13px 30px rgba(38, 78, 84, .06);
}

body.rules-page .toc a {
  border-radius: 0;
}

body.rules-page .toc a:hover,
body.rules-page .toc a.is-current {
  color: #1f7277;
  background: rgba(46, 186, 188, .08);
  transform: none;
}

body.rules-page .warning,
body.rules-page .rule-card {
  border-radius: 6px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 13px 30px rgba(38, 78, 84, .06);
}

body.rules-page .warning {
  border-color: rgba(221, 103, 73, .24);
  background: rgba(255, 250, 247, .94);
}

body.rules-page .warning::after {
  display: none;
}

body.rules-page .rule-card {
  border-color: rgba(39, 92, 98, .12);
  transition: border-color .22s ease, box-shadow .24s ease, transform .24s ease;
}

body.rules-page .rule-card:hover {
  border-color: rgba(46, 186, 188, .3);
  box-shadow: 0 20px 42px rgba(35, 123, 132, .11);
  transform: translate3d(0, -3px, 0);
}

body.rules-page .rule-number {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(46, 186, 188, .25);
  border-radius: 5px;
  color: #127d82 !important;
  background: rgba(46, 186, 188, .09) !important;
  box-shadow: none;
  font-size: 13px;
}

body.rules-page .inline-note {
  border-radius: 3px;
  color: #227b80;
  background: rgba(46, 186, 188, .08);
}

.rule-tools {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-bottom: 28px;
}

.rule-tools button {
  font-family: inherit;
  line-height: 1;
  white-space: nowrap;
}

body.home-page .scroll-cue,
body.mods-page .scroll-cue,
body.history-page .scroll-cue,
body.join-page .scroll-cue,
body.rules-page .scroll-cue {
  right: auto;
  bottom: 26px;
  left: 50%;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transform: translateX(-50%);
  white-space: nowrap;
}

body.home-page .scroll-cue > span[aria-hidden="true"],
body.mods-page .scroll-cue > span[aria-hidden="true"],
body.history-page .scroll-cue > span[aria-hidden="true"],
body.join-page .scroll-cue > span[aria-hidden="true"],
body.rules-page .scroll-cue > span[aria-hidden="true"] {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(53, 104, 109, .26);
  border-radius: 50%;
  color: var(--site-cyan);
  font-size: 17px;
}

body.rules-page .hero {
  padding-bottom: 106px;
}

body.rules-page .scroll-cue {
  position: absolute;
  z-index: 2;
  color: #34757a;
  font-size: 10px;
  line-height: 1.2;
  text-decoration: none;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  margin: 0;
  padding: 24px clamp(24px, 6vw, 96px);
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, .07);
  color: #91a3a7;
  background: #1d272a;
  font-family: "HarmonyOS Embedded", "HarmonyOS Sans SC Medium", "HarmonyOS Sans SC", "Microsoft YaHei UI", "Microsoft YaHei", Arial, sans-serif;
  font-size: 11px;
  line-height: 1.6;
}

.site-footer a {
  color: #91a3a7;
  text-decoration: none;
  white-space: nowrap;
  transition: color .2s ease;
}

.site-footer a:hover {
  color: #77e2db;
}

.site-footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0 5px;
}

body.home-page .copy-stage,
body.mods-page .copy-stage,
body.history-page .copy-stage,
body.join-page .copy-stage,
body.home-page .copy-stage .copy,
body.mods-page .copy-stage .copy,
body.history-page .copy-stage .copy,
body.join-page .copy-stage .copy,
body.home-page .copy-stage .title,
body.mods-page .copy-stage .title,
body.history-page .copy-stage .title,
body.join-page .copy-stage .title,
body.home-page .copy-stage .subtitle,
body.mods-page .copy-stage .subtitle,
body.history-page .copy-stage .subtitle,
body.join-page .copy-stage .subtitle {
  width: 100%;
  text-align: right !important;
}

body.rules-page .hero,
body.rules-page .hero h1,
body.rules-page .hero .eyebrow,
body.rules-page .hero .hero-copy {
  text-align: right;
}

body.rules-page .hero h1,
body.rules-page .hero .hero-copy {
  margin-left: auto;
}

body.rules-page .hero .eyebrow,
body.rules-page .hero .hero-meta {
  justify-content: flex-end;
}

@media (min-width: 621px) {
  body.home-page .copy-stage .copy[lang="en"] .title,
  body.mods-page .copy-stage .copy[lang="en"] .title,
  body.history-page .copy-stage .copy[lang="en"] .title,
  body.join-page .copy-stage .copy[lang="en"] .title {
    max-width: 100%;
    font-size: clamp(58px, 7.2vw, 112px);
    white-space: nowrap;
  }

  body.home-page .copy-stage .copy[lang="en"] .subtitle,
  body.mods-page .copy-stage .copy[lang="en"] .subtitle,
  body.history-page .copy-stage .copy[lang="en"] .subtitle,
  body.join-page .copy-stage .copy[lang="en"] .subtitle {
    max-width: 100%;
    font-size: clamp(24px, 3.25vw, 48px);
    white-space: nowrap;
  }
}

@media (max-width: 900px) {
  .site-nav .nav-links { gap: 13px; }
  .site-nav .nav-links a small { display: none; }
}

@media (max-width: 620px) {
  :root {
    --site-nav-height: 58px;
    --diagonal-band-thickness: clamp(82px, 24vw, 118px);
    --lower-band-thickness: clamp(62px, 19vw, 92px);
  }

  .site-nav {
    padding: 0 12px;
  }

  .site-nav .brand-rotator {
    min-width: 92px;
    height: 24px;
    font-size: 15px;
  }
  .site-nav .nav-links { gap: 8px; }

  .site-nav .nav-links a {
    padding: 20px 0 17px;
    font-size: 10px;
  }

  .site-nav .nav-community {
    gap: 4px;
    padding: 7px 8px;
    font-size: 10px;
  }

  .site-nav .nav-actions { gap: 5px; }

  .site-language-toggle {
    width: 29px;
    height: 29px;
    font-size: 9px;
  }

  .site-nav .nav-community small,
  .site-nav .nav-community span[aria-hidden="true"] {
    display: none;
  }

  .rules-page .shell {
    padding-top: calc(var(--site-nav-height) + 24px);
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 22px 18px;
  }

  .site-footer-links {
    justify-content: flex-start;
  }

  body.home-page .copy-stage .copy[lang="en"] .title,
  body.mods-page .copy-stage .copy[lang="en"] .title,
  body.history-page .copy-stage .copy[lang="en"] .title,
  body.join-page .copy-stage .copy[lang="en"] .title {
    max-width: 100%;
    font-size: clamp(34px, 9vw, 48px);
    white-space: nowrap;
  }

  body.home-page .copy-stage .copy[lang="en"] .subtitle,
  body.mods-page .copy-stage .copy[lang="en"] .subtitle,
  body.history-page .copy-stage .copy[lang="en"] .subtitle,
  body.join-page .copy-stage .copy[lang="en"] .subtitle {
    max-width: 100%;
    font-size: clamp(18px, 5.2vw, 26px);
    white-space: normal;
    text-wrap: balance;
  }

  body.history-page .copy-stage .copy[lang="zh-CN"] .subtitle {
    max-width: 100%;
    font-size: clamp(18px, 5.6vw, 24px);
    line-height: 1.28;
    white-space: normal;
    text-wrap: balance;
  }

  body.home-page .site-section .section-heading,
  body.mods-page .site-section .section-heading,
  body.history-page .history-section .section-heading,
  body.join-page .join-section .section-heading {
    font-size: clamp(27px, 8vw, 38px);
    line-height: 1.18;
  }

  body.mods-page .adaptation-stat + .adaptation-stat,
  body.mods-page .adaptation-item:nth-child(even) {
    border-left: 0;
  }
}

/* Shared kinetic interaction language. */
:root {
  --site-blue: #327fe6;
  --site-pointer-x: 50%;
  --site-pointer-y: 50%;
  --site-sheen-shift-x: -120vw;
  --title-shadow-x: 0px;
  --title-shadow-y: 0px;
}

.pointer-light,
.rules-pointer {
  display: none !important;
}

html[data-site-pointer-active="true"] .pointer-light,
html[data-site-pointer-active="true"] .rules-pointer {
  display: block !important;
}

.action-link.site-button-fx,
.mod-card-link.site-button-fx,
.mod-filter.site-button-fx {
  --button-x: -120px;
  --button-y: -120px;
  position: relative;
  z-index: 0;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 42px !important;
  padding: 11px 20px !important;
  border: 0 !important;
  border-radius: 0 !important;
  color: #27575c !important;
  background: transparent !important;
  box-shadow: none !important;
  text-decoration: none;
  transform: translate3d(0, 0, 0);
  transition:
    color .15s linear .08s,
    transform .28s cubic-bezier(.2, .75, .2, 1),
    box-shadow .28s ease;
}

.mod-card-link.site-button-fx {
  min-height: 34px !important;
  padding: 7px 12px !important;
}

.mod-filter.site-button-fx {
  min-height: 38px !important;
  padding: 9px 13px !important;
}

.action-link.site-button-fx::before,
.mod-card-link.site-button-fx::before,
.mod-filter.site-button-fx::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: linear-gradient(125deg, #2ebabc 0%, #24b9d2 52%, var(--site-blue) 100%);
  content: "";
  transform: translate3d(0, calc(100% - 2px), 0);
  transition: transform .38s cubic-bezier(.2, .78, .18, 1);
}

.action-link.site-button-fx::after,
.mod-card-link.site-button-fx::after,
.mod-filter.site-button-fx::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: radial-gradient(
    circle 72px at var(--button-x) var(--button-y),
    rgba(255, 255, 255, .72),
    rgba(255, 255, 255, .14) 34%,
    transparent 70%
  );
  content: "";
  opacity: 0;
  transition: opacity .2s ease;
  pointer-events: none;
}

.action-link.site-button-fx:hover,
.action-link.site-button-fx:focus-visible,
.mod-card-link.site-button-fx:hover,
.mod-card-link.site-button-fx:focus-visible,
.mod-filter.site-button-fx:hover,
.mod-filter.site-button-fx:focus-visible {
  color: #fff !important;
  box-shadow:
    0 15px 30px rgba(35, 174, 195, .28),
    0 5px 12px rgba(50, 127, 230, .16) !important;
  transform: translate3d(0, -4px, 0);
}

.action-link.site-button-fx:hover::before,
.action-link.site-button-fx:focus-visible::before,
.mod-card-link.site-button-fx:hover::before,
.mod-card-link.site-button-fx:focus-visible::before,
.mod-filter.site-button-fx:hover::before,
.mod-filter.site-button-fx:focus-visible::before {
  transform: translate3d(0, 0, 0);
}

html[data-site-pointer-active="true"] .action-link.site-button-fx:hover::after,
html[data-site-pointer-active="true"] .mod-card-link.site-button-fx:hover::after,
html[data-site-pointer-active="true"] .mod-filter.site-button-fx:hover::after {
  opacity: .82;
}

.action-link.site-button-fx:active,
.mod-card-link.site-button-fx:active,
.mod-filter.site-button-fx:active {
  color: #fff !important;
  box-shadow: 0 6px 14px rgba(35, 174, 195, .24) !important;
  transform: translate3d(0, -1px, 0) scale(.985);
  transition-duration: .08s;
}

.site-nav .nav-community.site-button-fx {
  --button-x: -100px;
  --button-y: -100px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid var(--site-cyan);
  color: #1f7377;
  background: transparent;
  box-shadow: none;
  transition: color .14s linear .07s, transform .25s ease, box-shadow .25s ease;
}

.site-nav .nav-community.site-button-fx::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: linear-gradient(125deg, #2ebabc 0%, #24b9d2 56%, var(--site-blue) 100%);
  content: "";
  opacity: 1;
  transform: translate3d(0, 100%, 0);
  transition: transform .34s cubic-bezier(.2, .78, .18, 1);
  pointer-events: none;
}

.site-nav .nav-community.site-button-fx::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: radial-gradient(circle 60px at var(--button-x) var(--button-y), rgba(255,255,255,.55), transparent 72%);
  content: "";
  opacity: 0;
  transition: opacity .2s ease;
  pointer-events: none;
}

.site-nav .nav-community.site-button-fx:hover,
.site-nav .nav-community.site-button-fx:focus-visible {
  color: #fff;
  box-shadow: 0 12px 25px rgba(35, 174, 195, .3), 0 4px 10px rgba(50, 127, 230, .16);
  transform: translate3d(0, -3px, 0);
}

.site-nav .nav-community.site-button-fx:hover::before,
.site-nav .nav-community.site-button-fx:focus-visible::before {
  transform: translate3d(0, 0, 0);
}

html[data-site-pointer-active="true"] .site-nav .nav-community.site-button-fx:hover::after {
  opacity: .9;
}

.site-nav .nav-community.site-button-fx:active {
  box-shadow: 0 5px 12px rgba(35, 174, 195, .22);
  transform: translate3d(0, 0, 0) scale(.98);
}

.site-utility-fx {
  --button-x: -100px;
  --button-y: -100px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: auto !important;
  min-width: 42px;
  height: 36px !important;
  padding: 0 11px !important;
  border: 0 !important;
  border-bottom: 2px solid var(--site-cyan) !important;
  color: #476066 !important;
  background: transparent !important;
  box-shadow: none !important;
  transition: color .16s linear .06s, box-shadow .24s ease, transform .24s ease !important;
}

.site-utility-fx::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: linear-gradient(125deg, #2ebabc 0%, #24b9d2 56%, var(--site-blue) 100%);
  content: "";
  transform: translate3d(0, calc(100% - 2px), 0);
  transition: transform .34s cubic-bezier(.2, .78, .18, 1);
  pointer-events: none;
}

.site-utility-fx::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: radial-gradient(circle 52px at var(--button-x) var(--button-y), rgba(255,255,255,.58), transparent 72%);
  content: "";
  opacity: 0;
  transition: opacity .18s ease;
  pointer-events: none;
}

.site-utility-fx:hover,
.site-utility-fx:focus-visible {
  color: #fff !important;
  box-shadow: 0 10px 22px rgba(35, 174, 195, .24) !important;
  transform: translate3d(0, -2px, 0);
}

.site-utility-fx:hover::before,
.site-utility-fx:focus-visible::before {
  transform: translate3d(0, 0, 0);
}

html[data-site-pointer-active="true"] .site-utility-fx:hover::after {
  opacity: .7;
}

.site-utility-fx:active {
  box-shadow: 0 4px 10px rgba(35, 174, 195, .18) !important;
  transform: translate3d(0, 0, 0) scale(.96);
}

.site-title-shine {
  --title-base: #273338;
  --title-glint: #4f7479;
  --title-x: -1000px;
  --title-y: -1000px;
  text-shadow: none;
}

.hero-title-accent.site-title-shine {
  --title-base: #249da0;
  --title-glint: #54c9cc;
}

.rules-page .hero h1 {
  text-shadow: none;
}

html[data-site-pointer-active="true"] .site-title-shine,
html[data-site-pointer-active="true"] .rules-page .hero h1 {
  text-shadow: var(--title-shadow-x) var(--title-shadow-y) 16px rgba(37, 176, 190, .09);
}

@supports ((background-clip: text) or (-webkit-background-clip: text)) {
  .site-title-shine {
    color: transparent !important;
    background: radial-gradient(
      circle 112px at var(--title-x) var(--title-y),
      #72c9cb 0%,
      var(--title-glint) 22%,
      var(--title-base) 70%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

.diagonal-band,
.lower-band-surface,
.rules-band {
  background-size: 180% 100% !important;
  background-position: 50% 50% !important;
  background-repeat: no-repeat !important;
  transition: background-position .16s linear;
}

html[data-site-pointer-active="true"] .diagonal-band,
html[data-site-pointer-active="true"] .lower-band-surface,
html[data-site-pointer-active="true"] .rules-band {
  background-position: var(--site-pointer-x) 50% !important;
}

.diagonal-band::before,
.lower-band-surface::before {
  inset: -24% -55%;
  background: linear-gradient(
    102deg,
    transparent 24%,
    rgba(73, 212, 235, .08) 35%,
    rgba(255, 255, 255, .72) 47%,
    rgba(75, 205, 244, .2) 55%,
    transparent 70%
  );
  opacity: 0;
  mix-blend-mode: screen;
  transform: translate3d(var(--site-sheen-shift-x), 0, 0) skewX(-8deg);
  transition: transform .12s linear;
  animation: none !important;
}

.rules-band::after {
  background: linear-gradient(102deg, transparent 28%, rgba(255,255,255,.68) 48%, rgba(75,205,244,.18) 55%, transparent 70%);
  background-size: 220% 100%;
  background-position: 50% 50%;
  opacity: 0;
  transition: background-position .14s linear;
  animation: none !important;
}

html[data-site-pointer-active="true"] .rules-band::after {
  background-position: var(--site-pointer-x) 50%;
}

html[data-site-pointer-active="true"] .diagonal-band::before,
html[data-site-pointer-active="true"] .lower-band-surface::before {
  opacity: .48;
}

html[data-site-pointer-active="true"] .rules-band::after {
  opacity: .4;
}

body.home-page .mod-icon-link {
  flex: none;
  filter: drop-shadow(0 5px 8px rgba(39, 51, 56, .08));
  transition: transform .24s ease, filter .24s ease !important;
}

body.home-page .mod-icon-link:hover,
body.home-page .mod-icon-link:focus-visible {
  filter: drop-shadow(0 11px 14px rgba(35, 174, 195, .25));
  transform: translate3d(0, -5px, 0) rotate(-1deg) !important;
}

body.home-page .mod-portal-row {
  position: relative;
  box-sizing: border-box;
  padding-right: 14px;
  padding-left: 18px;
  text-decoration: none !important;
  transition: color .22s ease, background .22s ease;
}

body.home-page .mod-portal-row::before {
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 0;
  width: 3px;
  background: linear-gradient(180deg, #2ebabc, var(--site-blue));
  content: "";
  opacity: 0;
  transform: scaleY(.25);
  transition: opacity .22s ease, transform .22s ease;
}

body.home-page .mod-portal-row:hover,
body.home-page .mod-portal-row:focus-visible {
  color: #1e5d64;
  background: linear-gradient(90deg, rgba(46, 186, 188, .08), transparent 72%);
  transform: none;
}

body.home-page .mod-portal-row:hover small,
body.home-page .mod-portal-row:focus-visible small {
  color: #32676d;
}

body.home-page .mod-portal-row:hover::before,
body.home-page .mod-portal-row:focus-visible::before {
  opacity: 1;
  transform: scaleY(1);
}

body.home-page .mod-portal-row .row-en {
  margin-top: 0;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

body.home-page .mod-portal-layout {
  align-items: center !important;
}

body.home-page .mod-portal-categories {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 1.3vw, 18px);
  border: 0 !important;
}

body.home-page .mod-portal-row {
  grid-template-columns: minmax(0, 1fr) !important;
  align-content: center;
  gap: 9px !important;
  min-height: 126px;
  padding: 22px 24px !important;
  border: 1px solid rgba(39, 92, 98, .12) !important;
  border-radius: 6px;
  background: rgba(255, 255, 255, .84);
  box-shadow: 0 13px 30px rgba(38, 78, 84, .06);
}

body.home-page .mod-portal-row:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  min-height: 104px;
}

body.home-page .mod-portal-row small {
  text-align: left !important;
}

body.home-page .mod-portal-row::before {
  top: 18px;
  bottom: 18px;
}

/* Turn table-like information groups into independent, restrained cards. */
body.home-page .history-preview-facts,
body.home-page .feature-grid,
body.history-page .history-facts,
body.history-page .current-stats,
body.mods-page .mods-facts,
body.mods-page .adaptation-stats,
body.mods-page .adaptation-list,
body.mods-page .mod-grid,
body.join-page .community-grid,
body.join-page .steps,
body.join-page .requirements,
body.rules-page .penalty-grid {
  gap: clamp(11px, 1.4vw, 17px) !important;
  border: 0 !important;
  background: transparent !important;
}

body.home-page .history-preview-facts > div,
body.home-page .feature,
body.history-page .history-fact,
body.history-page .current-stat,
body.mods-page .mods-fact,
body.mods-page .adaptation-stat,
body.mods-page .adaptation-item,
body.mods-page .mod-card,
body.join-page .community-card,
body.join-page .step,
body.join-page .requirement,
body.rules-page .penalty-step {
  box-sizing: border-box;
  border: 1px solid rgba(39, 92, 98, .12) !important;
  border-radius: 6px !important;
  background: rgba(255, 255, 255, .86) !important;
  box-shadow: 0 13px 30px rgba(38, 78, 84, .065) !important;
}

body.home-page .history-preview-facts > div,
body.history-page .history-fact,
body.history-page .current-stat,
body.mods-page .mods-fact,
body.mods-page .adaptation-stat,
body.join-page .requirement,
body.rules-page .penalty-step {
  padding: clamp(18px, 2vw, 27px) !important;
}

body.home-page .feature {
  padding: clamp(20px, 2.4vw, 30px) !important;
}

body.mods-page .adaptation-panel,
body.rules-page .enforcement {
  padding-right: 0 !important;
  padding-left: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body.mods-page .mod-card,
body.join-page .community-card {
  transition: border-color .22s ease, background .22s ease, box-shadow .26s ease, transform .26s ease;
}

body.mods-page .mod-card:hover,
body.join-page .community-card:hover {
  border-color: rgba(46, 186, 188, .34) !important;
  background: #fff !important;
  box-shadow: 0 20px 42px rgba(35, 123, 132, .13) !important;
  transform: translate3d(0, -4px, 0);
}

body.mods-page .adaptation-item.is-original {
  border-color: rgba(46, 186, 188, .3) !important;
  box-shadow: 0 16px 34px rgba(35, 123, 132, .1) !important;
}

body.mods-page .adaptation-item.is-fork {
  border-color: rgba(73, 112, 119, .18) !important;
  box-shadow: 0 13px 30px rgba(38, 78, 84, .055) !important;
}

body.mods-page .adaptation-item.is-historical {
  background: rgba(249, 251, 251, .82) !important;
  box-shadow: none !important;
}

body.join-page .steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.join-page .step {
  grid-template-columns: 48px minmax(0, 1fr);
  min-height: 150px;
  padding: 22px !important;
}

body.rules-page .penalty-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

body.rules-page .penalty-step {
  min-height: 164px;
}

.history-date {
  display: flex !important;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 9px;
  font-variant-numeric: tabular-nums;
}

.history-date .history-date-day {
  color: #4d6c72;
  font-size: clamp(18px, 1.8vw, 26px) !important;
  font-weight: 500;
  line-height: 1;
}

@keyframes site-control-sheen {
  0%, 18% { transform: translate3d(-36%, 0, 0); }
  62%, 100% { transform: translate3d(36%, 0, 0); }
}

@keyframes site-title-sheen {
  0%, 28% { background-position: 100% 0; }
  70%, 100% { background-position: 0 0; }
}

@keyframes site-band-color {
  from { background-position: 0 50%; }
  to { background-position: 100% 50%; }
}

@keyframes site-band-sheen {
  0%, 12% { transform: translate3d(-32%, 0, 0) skewX(-8deg); }
  70%, 100% { transform: translate3d(34%, 0, 0) skewX(-8deg); }
}

@keyframes site-rules-band-sheen {
  0%, 12% { background-position: 100% 0; }
  70%, 100% { background-position: 0 0; }
}

@media (max-width: 620px) {
  body.rules-page .hero {
    min-height: 700px;
    padding: 72px 22px 112px;
  }

  body.rules-page .hero h1 {
    max-width: 100%;
    font-size: clamp(62px, 20vw, 92px);
  }

  body.rules-page .hero .hero-copy,
  body.rules-page .hero-meta {
    max-width: 100%;
  }

  body.rules-page .layout {
    width: min(100% - 24px, 700px);
    margin-top: 54px;
  }

  body.home-page .mod-portal-categories {
    grid-template-columns: minmax(0, 1fr);
  }

  body.home-page .mod-portal-row:last-child:nth-child(odd) {
    grid-column: auto;
  }

  body.home-page .mod-portal-row {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 16px 14px 16px 18px;
  }

  body.home-page .mod-portal-row small {
    text-align: left;
  }

  .action-link.site-button-fx {
    padding-right: 18px !important;
    padding-left: 18px !important;
  }

  .site-utility-fx {
    min-width: 38px;
    height: 32px !important;
    padding-right: 9px !important;
    padding-left: 9px !important;
    font-size: 10px !important;
  }

  body.mods-page .mods-facts,
  body.mods-page .adaptation-stats,
  body.mods-page .adaptation-list,
  body.mods-page .mod-grid,
  body.join-page .steps,
  body.join-page .requirements,
  body.rules-page .penalty-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  body.join-page .step {
    min-height: 0;
  }

  body.rules-page .penalty-step {
    min-height: 0;
  }
}

@media (max-width: 900px) {
  body.home-page .mod-portal-layout {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  body.home-page .mod-portal-layout > *,
  body.home-page #mods .section-heading,
  body.home-page #mods .mod-portal-note,
  body.home-page #mods .mod-portal-categories {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  body.rules-page .penalty-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  :root {
    --site-nav-height: 108px;
    --diagonal-band-thickness: clamp(148px, 33vw, 230px) !important;
    --lower-band-thickness: clamp(104px, 24vw, 168px) !important;
  }

  .site-nav {
    grid-template-areas:
      "brand actions"
      "links links";
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: 52px 48px;
    align-items: center;
    height: var(--site-nav-height);
    min-height: var(--site-nav-height);
    padding: 7px clamp(18px, 4.5vw, 34px) 0;
  }

  .site-nav .brand {
    grid-area: brand;
    justify-self: start;
  }

  .site-nav .brand-rotator {
    min-width: 132px;
    height: 31px;
    font-size: 20px;
  }

  .site-nav .nav-actions {
    grid-area: actions;
    gap: 10px;
  }

  .site-nav .nav-links {
    grid-area: links;
    align-self: stretch;
    justify-content: center;
    justify-self: stretch;
    gap: clamp(26px, 8vw, 54px);
  }

  .site-nav .nav-links a {
    min-height: 44px;
    padding: 14px 0 12px;
    font-size: 14px;
  }

  .site-nav .nav-links a::after {
    bottom: 5px;
  }

  .site-language-toggle {
    width: 38px;
    height: 38px;
    font-size: 11px;
  }

  .site-nav .nav-community {
    min-height: 38px;
    padding: 10px 14px;
    font-size: 13px;
  }

  body.home-page .scene,
  body.mods-page .scene,
  body.history-page .scene,
  body.join-page .scene {
    height: max(840px, 100svh) !important;
    min-height: max(840px, 100svh) !important;
  }

  body.home-page .copy-stage,
  body.mods-page .copy-stage,
  body.history-page .copy-stage,
  body.join-page .copy-stage {
    top: calc(var(--site-nav-height) + clamp(32px, 5vh, 48px)) !important;
    right: clamp(20px, 5vw, 38px) !important;
    width: calc(100vw - clamp(40px, 10vw, 76px)) !important;
  }

  body.home-page .copy-stage .title,
  body.mods-page .copy-stage .title,
  body.history-page .copy-stage .title,
  body.join-page .copy-stage .title,
  body.rules-page .hero h1 {
    max-width: 100%;
    font-size: clamp(90px, 22vw, 132px) !important;
    line-height: .92;
    white-space: normal;
    text-wrap: balance;
  }

  body.home-page .copy-stage .copy[lang="en"] .title,
  body.mods-page .copy-stage .copy[lang="en"] .title,
  body.history-page .copy-stage .copy[lang="en"] .title,
  body.join-page .copy-stage .copy[lang="en"] .title {
    max-width: 100%;
    font-size: clamp(66px, 17vw, 104px) !important;
    line-height: .96;
    white-space: normal;
    text-wrap: balance;
  }

  body.home-page .copy-stage .subtitle,
  body.mods-page .copy-stage .subtitle,
  body.history-page .copy-stage .subtitle,
  body.join-page .copy-stage .subtitle,
  body.home-page .copy-stage .copy[lang="en"] .subtitle,
  body.mods-page .copy-stage .copy[lang="en"] .subtitle,
  body.history-page .copy-stage .copy[lang="en"] .subtitle,
  body.join-page .copy-stage .copy[lang="en"] .subtitle {
    max-width: 100%;
    margin-top: clamp(24px, 5vw, 36px);
    font-size: clamp(27px, 6.6vw, 40px) !important;
    line-height: 1.25;
    white-space: normal !important;
    text-wrap: balance;
    overflow-wrap: break-word;
  }

  body.home-page .hero-note,
  body.mods-page .hero-note,
  body.history-page .hero-note,
  body.join-page .hero-note {
    right: clamp(20px, 5vw, 38px) !important;
    bottom: clamp(112px, 12vh, 148px) !important;
    left: clamp(20px, 5vw, 38px) !important;
    width: auto !important;
    max-width: none !important;
    padding-left: 16px;
    font-size: clamp(14px, 2.1vw, 16px);
    line-height: 1.68;
  }

  body.home-page .hero-note strong,
  body.mods-page .hero-note strong,
  body.history-page .hero-note strong,
  body.join-page .hero-note strong {
    margin-bottom: 5px;
    font-size: 16px;
  }

  body.home-page .hero-join-hint,
  body.mods-page .hero-join-hint,
  body.history-page .hero-join-hint,
  body.join-page .hero-join-hint {
    font-size: 13px;
  }

  body.home-page .hero-actions,
  body.mods-page .hero-actions,
  body.history-page .hero-actions,
  body.join-page .hero-actions {
    flex-wrap: wrap;
    gap: 8px 14px;
    margin-bottom: 15px;
  }

  body.home-page .hero-note .action-link,
  body.mods-page .hero-note .action-link,
  body.history-page .hero-note .action-link,
  body.join-page .hero-note .action-link {
    min-height: 46px;
    padding: 13px 17px !important;
    font-size: clamp(13px, 1.9vw, 15px);
  }

  body.home-page .scroll-cue,
  body.mods-page .scroll-cue,
  body.history-page .scroll-cue,
  body.join-page .scroll-cue,
  body.rules-page .scroll-cue {
    bottom: 24px;
    gap: 9px;
    font-size: 12px;
  }

  body.home-page .scroll-cue > span[aria-hidden="true"],
  body.mods-page .scroll-cue > span[aria-hidden="true"],
  body.history-page .scroll-cue > span[aria-hidden="true"],
  body.join-page .scroll-cue > span[aria-hidden="true"],
  body.rules-page .scroll-cue > span[aria-hidden="true"] {
    width: 38px;
    height: 38px;
    font-size: 20px;
  }

  body.rules-page .hero {
    min-height: max(840px, 100svh);
    padding: calc(var(--site-nav-height) + clamp(32px, 5vh, 48px)) clamp(20px, 5vw, 38px) 132px;
  }

  body.rules-page .hero .hero-copy,
  body.rules-page .hero-meta {
    max-width: 100%;
  }

  body.rules-page .hero .hero-copy {
    font-size: 16px;
    line-height: 1.72;
  }

  body.rules-page .hero-meta {
    font-size: 13px;
  }

  body.rules-page .rules-band {
    height: clamp(148px, 33vw, 230px);
  }

  body.rules-page .rules-band-lower {
    width: 72vw;
    height: clamp(104px, 24vw, 168px);
  }

  body.home-page .section-inner,
  body.mods-page .section-inner,
  body.history-page .section-inner,
  body.join-page .section-inner,
  body.join-page .join-inner,
  body.history-page .history-inner {
    width: calc(100% - 40px) !important;
    max-width: none !important;
  }

  body.home-page .site-section,
  body.mods-page .site-section,
  body.join-page .join-section {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  body.home-page .site-section,
  body.mods-page .site-section,
  body.history-page .history-section,
  body.join-page .join-section {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  body.home-page .site-section .section-heading,
  body.mods-page .site-section .section-heading,
  body.history-page .history-section .section-heading,
  body.join-page .join-section .section-heading {
    font-size: clamp(40px, 11vw, 62px);
    line-height: 1.12;
  }

  body.mods-page .mods-total-label,
  body.mods-page .mods-fact span {
    font-size: 12px;
  }

  body.mods-page .mods-origin p,
  body.mods-page .mod-category-heading p {
    font-size: 14px;
  }
}

@media (max-width: 420px) {
  .site-nav {
    padding-right: 16px;
    padding-left: 16px;
  }

  .site-nav .brand-rotator {
    min-width: 112px;
    font-size: 18px;
  }

  .site-nav .nav-links {
    gap: clamp(24px, 10vw, 40px);
  }

  body.home-page .copy-stage,
  body.mods-page .copy-stage,
  body.history-page .copy-stage,
  body.join-page .copy-stage {
    right: 18px !important;
    width: calc(100vw - 36px) !important;
  }

  body.mods-page .copy-stage .subtitle {
    font-size: clamp(25px, 6.2vw, 40px) !important;
  }

  body.home-page .hero-note,
  body.mods-page .hero-note,
  body.history-page .hero-note,
  body.join-page .hero-note {
    right: 18px !important;
    left: 18px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  html::before {
    transition: none !important;
  }

  .site-nav .brand-character,
  .site-title-shine,
  .diagonal-band,
  .lower-band-surface,
  .rules-band,
  .diagonal-band::before,
  .lower-band-surface::before,
  .rules-band::after,
  .site-nav .nav-community.site-button-fx::before,
  .mod-icon-track {
    animation: none !important;
  }

  .site-nav .brand-character {
    opacity: 1 !important;
    transform: none !important;
  }

  .mod-icon-track {
    transform: none !important;
  }
}
