:root {
  color-scheme: dark;
  --void: #000000;
  --surface: rgba(255, 255, 255, 0.035);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #f7f3ee;
  --text-soft: rgba(247, 243, 238, 0.72);
  --text-muted: #a69b90;
  --orange: #f0873e;
  --orange-hot: #ffb06a;
  --orange-deep: #c85f18;
  --peri: #a8b4ff;
  --leaf: #7ed99f;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --display: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --body: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --label: "Archivo", "Noto Sans SC", "PingFang SC", sans-serif;
  --header-h: 72px;
}
html.light {
  color-scheme: light;
  --void: #faf6ef;
  --surface: rgba(150, 84, 20, 0.05);
  --line: rgba(120, 66, 10, 0.14);
  --line-strong: rgba(120, 66, 10, 0.26);
  --text: #241407;
  --text-soft: rgba(36, 20, 7, 0.74);
  --text-muted: #776457;
  --orange: #b64e13;
  --orange-hot: #99400d;
  --orange-deep: #b05309;
  --peri: #6b7cff;
  --leaf: #3d9955;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* ---------- 滚动条：与主站同一副手艺 ---------- */
:root {
  --sb-thumb: rgba(255, 255, 255, .14);
  --sb-thumb-hover: rgba(240, 135, 62, .62);
}
html.light {
  --sb-thumb: rgba(120, 66, 10, .22);
  --sb-thumb-hover: rgba(229, 111, 30, .55);
}
@supports not selector(::-webkit-scrollbar) {
  html { scrollbar-width: thin; scrollbar-color: var(--sb-thumb) transparent; }
}
html::-webkit-scrollbar { width: 12px; height: 12px; }
html::-webkit-scrollbar-track { background: transparent; }
html::-webkit-scrollbar-thumb {
  background: var(--sb-thumb);
  border: 3px solid transparent;
  border-radius: 999px;
  background-clip: content-box;
}
html::-webkit-scrollbar-thumb:hover { background: var(--sb-thumb-hover); background-clip: content-box; }
html::-webkit-scrollbar-corner { background: transparent; }

/* 软吸附保留，但吸附点对齐到页头下方，区块开头不会被固定导航压住 */
html { scroll-snap-type: y proximity; scroll-padding-top: var(--header-h); }
body {
  margin: 0;
  min-width: 0;
  background: var(--void);
  color: var(--text);
  font-family: var(--body);
  overflow-x: hidden;
  transition: background .45s ease;
}
body::selection { background: var(--orange); color: #000; }
html.light body::selection { color: #fff; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button:focus-visible, a:focus-visible {
  outline: 2px solid var(--orange-hot);
  outline-offset: 4px;
}

/* ---------- WebGL 画布：固定在内容之下 ---------- */
#gl {
  position: fixed;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.space-noise {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.045;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
html.light .space-noise { opacity: 0.05; }

/* ---------- 头部 ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  padding: 18px clamp(18px, 4vw, 40px);
  background: linear-gradient(to bottom, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 55%, transparent 100%);
  transition: background .45s ease;
}
html.light .site-header {
  background: linear-gradient(to bottom, rgba(250,246,239,0.92) 0%, rgba(250,246,239,0.5) 55%, transparent 100%);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  margin: 0 auto;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: var(--display);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.logo-word { color: var(--text); }
.logo-sup {
  margin-left: 6px;
  padding: 2px 7px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--orange);
  font-family: var(--label);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  vertical-align: 2px;
}
.logo-mark { display: inline-flex; width: 28px; height: 28px; flex: none; }
.logo-mark svg { width: 100%; height: 100%; display: block; filter: drop-shadow(0 0 8px rgba(240,135,62,.35)); }
.nav-right { display: flex; align-items: center; gap: clamp(16px, 3vw, 36px); }
.nav-status, .nav-links a {
  font-family: var(--label);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
}
.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange-hot);
  box-shadow: 0 0 0 4px rgba(240, 135, 62, 0.18);
  animation: pulse 2.4s ease-in-out infinite;
  flex: none;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 4px rgba(240, 135, 62, 0.18); }
  50% { opacity: 0.7; box-shadow: 0 0 0 7px rgba(240, 135, 62, 0.08); }
}
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a {
  position: relative;
  line-height: 1;
  padding: 6px 2px;
  color: var(--text-soft);
  text-decoration: none;
  transition: color .25s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s var(--ease-out);
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a span { color: var(--orange); }
.theme-btn {
  display: grid;
  place-items: center;
  width: 30px; height: 30px;
  padding: 0;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--text-soft);
  cursor: pointer;
  transition: color .25s ease, border-color .25s ease, transform .3s var(--ease-out);
}
.theme-btn:hover { color: var(--orange-hot); border-color: var(--orange); transform: rotate(18deg); }
.theme-btn svg { width: 15px; height: 15px; }    .page { position: relative; z-index: 2; }

/* ---------- 首屏：左文右橙，与主站互为镜像 ---------- */
.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  align-items: center;
  padding: calc(var(--header-h) + 24px) clamp(20px, 5vw, 48px) 48px;
  overflow: hidden;
  scroll-snap-align: start;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(260px, 0.88fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  width: min(var(--max), 100%);
  margin: 0 auto;
}
.hero-copy { position: relative; z-index: 2; min-width: 0; max-width: 620px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  padding: 7px 12px 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  color: var(--text-soft);
  font-family: var(--label);
  font-size: 0.73rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  max-width: 100%;
}
html.light .eyebrow { background: rgba(255,255,255,0.5); }
.hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.02;
  text-wrap: balance;
}
.hero h1 .line { display: block; white-space: nowrap; }
.hero h1 em {
  font-style: normal;
  background: linear-gradient(120deg, #fff 0%, #ffd9a3 42%, var(--orange) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
html.light .hero h1 em {
  background: linear-gradient(120deg, #241407 0%, #b05309 55%, var(--orange) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
.hero-lede {
  max-width: 40ch;
  margin: 24px 0 0;
  color: var(--text-soft);
  font-size: clamp(0.98rem, 1.2vw, 1.1rem);
  line-height: 1.75;
  text-wrap: pretty;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 46px;
}
.hero-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #050505;
  font-family: var(--label);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.2), 0 10px 40px rgba(255,255,255,0.08);
}
html.light .hero-cta {
  background: #241407;
  color: #faf6ef;
  box-shadow: 0 0 0 1px rgba(36,20,7,0.1), 0 12px 36px rgba(229,111,30,0.22);
}
.hero-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(240,135,62,0.35), transparent);
  transform: translateX(-120%);
  transition: transform 0.55s var(--ease-out);
}
.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.35), 0 14px 50px rgba(240,135,62,0.18);
}
html.light .hero-cta:hover { box-shadow: 0 0 0 1px rgba(229,111,30,0.4), 0 16px 50px rgba(229,111,30,0.3); }
.hero-cta:hover::before { transform: translateX(120%); }
.hero-cta span { position: relative; }
.hero-stage {
  position: relative;
  z-index: 1;
  aspect-ratio: 1;
  width: min(100%, 560px);
  justify-self: end;
  margin-inline: auto;
  pointer-events: none;
}
.hero-stage-caption {
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  color: var(--text-muted);
  font-family: var(--label);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero-stage-caption::before,
.hero-stage-caption::after {
  content: "";
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong));
}
.hero-stage-caption::after {
  background: linear-gradient(90deg, var(--line-strong), transparent);
}
/* WebGL 不可用时的 CSS 橙子（降级方案） */
.stage-fallback {
  display: none;
  position: absolute;
  inset: 14%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 30%, rgba(255,255,255,0.55), transparent 26%),
    radial-gradient(circle at 50% 50%, #f89a2e 0%, #ef801b 52%, #b8530e 100%);
  box-shadow: 0 30px 80px rgba(240, 135, 62, 0.3), inset -18px -24px 60px rgba(120, 40, 0, 0.35);
  animation: fallbackBreathe 5s ease-in-out infinite;
}
@keyframes fallbackBreathe {
  0%, 100% { transform: scale(0.98); }
  50% { transform: scale(1.02); }
}
body.no-webgl .stage-fallback { display: block; }
body.no-webgl #gl { display: none; }

/* ---------- 通用 section ---------- */
.section {
  position: relative;
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 96px clamp(20px, 5vw, 48px) 120px;
  min-height: 100svh;
  scroll-snap-align: start;
}
.section-intro {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: end;
  margin-bottom: 40px;
}
.section-kicker {
  margin: 0 0 14px;
  color: var(--orange);
  font-family: var(--label);
  font-size: 0.73rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.section-heading {
  margin: 0;
  max-width: 14ch;
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
  text-wrap: balance;
}
.section-heading em {
  font-style: normal;
  color: transparent;
  background: linear-gradient(120deg, #fff, var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
}
html.light .section-heading em {
  background: linear-gradient(120deg, #241407, var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
}
.section-summary {
  max-width: 28ch;
  margin: 0;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.75;
}    /* ---------- 玩法区：手势说明书 ---------- */
.how-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 720px;
}
.how-card {
  padding: 20px 22px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(160deg, rgba(255,255,255,0.05), transparent 40%),
    rgba(255,255,255,0.025);
  backdrop-filter: blur(6px);
  transition: border-color .3s ease, transform .35s var(--ease-out);
}
html.light .how-card {
  background: rgba(255,255,255,0.62);
  box-shadow: 0 10px 30px rgba(150, 84, 20, 0.07);
}
.how-card:hover { border-color: var(--line-strong); transform: translateY(-3px); }
.how-key {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  font-family: var(--label);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange-hot);
}
html.light .how-key { color: var(--orange); }
.how-key kbd {
  display: inline-block;
  padding: 3px 8px;
  border: 1px solid var(--line-strong);
  border-bottom-width: 2px;
  border-radius: 7px;
  background: var(--surface);
  font-family: var(--label);
  font-size: 0.7rem;
  color: var(--text);
}
.how-card p { margin: 0; color: var(--text-soft); font-size: 0.88rem; line-height: 1.7; }

/* ---------- 作品区：橙瓣菜单 + 信息面板 ---------- */
.panel--segments { overflow: visible; }
.seg-wrap {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 24px;
  min-height: 52vh;
  align-items: center;
}
.seg-stage { min-height: 40vh; pointer-events: none; }
.seg-info {
  position: relative;
  z-index: 3;
  padding: 24px 24px 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(160deg, rgba(255,255,255,0.05), transparent 40%),
    rgba(10, 6, 2, 0.55);
  backdrop-filter: blur(14px);
  transition: border-color .3s ease;
  min-height: 240px;
}
html.light .seg-info {
  background: rgba(255, 252, 247, 0.8);
  box-shadow: 0 18px 50px rgba(150, 84, 20, 0.1);
}
.seg-info.hot { border-color: rgba(240, 135, 62, 0.45); }
.seg-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--text-muted);
  font-family: var(--label);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.seg-name {
  margin: 0 0 4px;
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.seg-index {
  color: var(--orange);
  font-family: var(--label);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
}
.seg-desc {
  margin: 12px 0 16px;
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.75;
  min-height: 3.4em;
}
.seg-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.seg-tag {
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text-muted);
  font-family: var(--label);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.seg-tag.web { color: var(--orange-hot); border-color: rgba(240,135,62,0.4); }
html.light .seg-tag.web { color: var(--orange); }
.seg-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-family: var(--label);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--line-strong);
  transition: color .25s ease, border-color .25s ease;
}
.seg-link:hover { color: var(--orange-hot); border-color: var(--orange); }
html.light .seg-link:hover { color: var(--orange); }
.seg-hint {
  margin: 14px 0 0;
  color: var(--text-muted);
  font-size: 0.78rem;
  line-height: 1.6;
}

/* ---------- 卡片栅格：移动端与降级时启用，血统沿用主站 ---------- */
.project-grid {
  display: none;
  position: relative;
  z-index: 2;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.project-card {
  position: relative;
  display: flex;
  min-height: 240px;
  flex-direction: column;
  padding: 24px 24px 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(160deg, rgba(255,255,255,0.05), transparent 40%),
    rgba(255,255,255,0.025);
  overflow: hidden;
  isolation: isolate;
  transition: border-color 0.3s ease, transform 0.35s var(--ease-out), box-shadow 0.35s ease;
}
html.light .project-card {
  background: rgba(255,255,255,0.66);
  box-shadow: 0 10px 30px rgba(150, 84, 20, 0.06);
}
.project-card::before {
  content: "";
  position: absolute;
  inset: -40% auto auto -20%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240,135,62,0.2), transparent 68%);
  opacity: 0.75;
  transition: opacity 0.35s ease, transform 0.5s var(--ease-out);
  pointer-events: none;
}
.project-card:hover {
  border-color: rgba(240, 135, 62, 0.4);
  transform: translateY(-4px);
}
.project-card:hover::before { opacity: 1; transform: translate(14%, 10%) scale(1.15); }
.card-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--text-muted);
  font-family: var(--label);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px 0 10px;
}
.card-name { margin: 0; font-size: 1.18rem; font-weight: 600; letter-spacing: -0.01em; }
.card-desc {
  margin: 0 0 16px;
  color: var(--text-soft);
  font-size: 0.88rem;
  line-height: 1.75;
  flex: 1;
}
.card-btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--text);
  font-family: var(--label);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .28s var(--ease-out);
}
.card-btn:hover { background: var(--orange); border-color: var(--orange); color: #000; }

/* ---------- 关于 ---------- */
.about-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}
.about-copy p { color: var(--text-soft); line-height: 1.85; margin: 0 0 18px; max-width: 52ch; }
.about-copy p strong { color: var(--text); font-weight: 600; }

/* ---------- 页脚 ---------- */
.panel--footer {
  position: relative;
  padding: 120px clamp(20px, 5vw, 48px) 40px;
  min-height: 62svh;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: min(var(--max), 100%);
  margin: 0 auto;
}
.footer-big {
  margin: 0 0 40px;
  font-family: var(--label);
  font-weight: 700;
  font-size: clamp(2rem, 7.2vw, 6.2rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px var(--line-strong);
  transition: color .5s ease;
}
.footer-big:hover { color: rgba(240, 135, 62, 0.12); }
.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--text-muted);
  font-size: 0.82rem;
}
.footer-links { display: flex; gap: 20px; }
.footer-links a {
  color: var(--text-soft);
  text-decoration: none;
  font-family: var(--label);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color .25s ease;
}
.footer-links a:hover { color: var(--orange-hot); }
html.light .footer-links a:hover { color: var(--orange); }    /* ---------- HUD 与气泡 ---------- */
.hud {
  position: fixed;
  left: clamp(18px, 4vw, 40px);
  bottom: 22px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  color: var(--text-soft);
  font-family: var(--label);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  pointer-events: none;
  opacity: 0;
  transition: opacity .6s ease;
}
html.light .hud { background: rgba(250, 246, 239, 0.7); }
body.ready .hud { opacity: 1; }
.hud.bump { animation: hudBump .4s var(--ease-out); }
@keyframes hudBump {
  0% { transform: scale(1); }
  35% { transform: scale(1.12); border-color: rgba(240,135,62,0.6); }
  100% { transform: scale(1); }
}
.toast-wrap {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 46;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  pointer-events: none;
}
.toast {
  padding: 9px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(8, 5, 2, 0.78);
  backdrop-filter: blur(12px);
  color: var(--text);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
  animation: toastIn .32s var(--ease-out);
}
html.light .toast { background: rgba(36, 20, 7, 0.86); color: #faf6ef; }
.toast.out { animation: toastOut .3s ease forwards; }
@keyframes toastIn {
  from { opacity: 0; transform: translateY(12px) scale(0.96); }
  to { opacity: 1; transform: none; }
}
@keyframes toastOut {
  to { opacity: 0; transform: translateY(8px) scale(0.97); }
}
.toast b { color: var(--orange-hot); font-weight: 600; }
html.light .toast b { color: #ffbd86; }
.ghost-hint {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 28;
  padding: 14px 24px;
  border: 1px dashed var(--line-strong);
  border-radius: 18px;
  color: var(--text-muted);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(6px);
  display: none;
  pointer-events: none;
}
html.light .ghost-hint { background: rgba(250,246,239,0.75); }
.ghost-hint kbd {
  padding: 2px 7px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  font-family: var(--label);
  font-size: 0.74rem;
  color: var(--orange-hot);
}
html.light .ghost-hint kbd { color: var(--orange); }

/* ---------- 开屏：从事件视界到果实 ---------- */
#intro {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: #000;
  display: grid;
  place-items: center;
  transition: opacity .7s ease;
}
html.light #intro { background: #faf6ef; }
html.light .intro-line { color: #8a7461; }
html.light .intro-skip { color: #6b5a4b; border-color: #d9cbb8; }
#intro.gone { opacity: 0; visibility: hidden; pointer-events: none; }
#intro.never { display: none; }
#introFx { position: absolute; inset: 0; width: 100%; height: 100%; }
.intro-line {
  position: absolute;
  bottom: 18%;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  color: rgba(244, 245, 247, 0.5);
  font-family: var(--label);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  white-space: nowrap;
}
.intro-skip {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  color: rgba(244, 245, 247, 0.28);
  font-family: var(--label);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: skipBlink 2.2s ease-in-out infinite;
}
@keyframes skipBlink { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }

/* Shared gutters keep the fruit stage aligned with the editorial grid. */
:root {
  --max: 1328px;
  --gutter: clamp(24px, 4.5vw, 64px);
  /* Panel heights follow the viewport WIDTH. The old rule tied every section
     to 100svh, so a tall narrow window stretched each one into a mostly empty
     band. Deriving the height from the content width keeps the composition
     proportional, and the viewport height only caps it on short windows. */
  --hero-h: min(100svh, calc(100vw * 0.78));
  --panel-h: min(100svh, calc(100vw * 0.5));
  --footer-h: min(58svh, calc(100vw * 0.42));
}
.hero { min-height: var(--hero-h); }
.section { min-height: var(--panel-h); }
.panel--footer { min-height: var(--footer-h); }
button { font: inherit; }
a, button, summary { touch-action: manipulation; }
[hidden] { display: none !important; }
:focus-visible { outline: 2px solid var(--orange-hot); outline-offset: 5px; }
.skip-link { position: fixed; z-index: 80; left: 24px; top: 12px; padding: 12px 18px; color: var(--void); background: var(--text); transform: translateY(-160%); border-radius: 8px; }
.skip-link:focus { transform: none; }
.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;
}
.site-header { padding: 12px var(--gutter); background: rgba(0,0,0,.76); backdrop-filter: blur(16px); border-bottom: 1px solid var(--line); }
html.light .site-header { background: rgba(250,246,239,.85); }
.logo { white-space: nowrap; }
.logo-sup { font-size: 10px; }
.nav-links a { min-height: 44px; min-width: 44px; display: inline-flex; align-items: center; justify-content: center; white-space: nowrap; font-size: 12px; }
.nav-links { gap: 12px; }
.nav-links a::after { bottom: 4px; }
.theme-btn { width: 44px; height: 44px; flex: none; }
.theme-btn svg { width: 18px; height: 18px; }
.nav-status { font-size: 11px; letter-spacing: .12em; }
.hero { padding: 112px var(--gutter) 96px; }
.hero-grid { grid-template-columns: minmax(0, .98fr) minmax(0, 1.02fr); gap: 28px; max-width: 1200px; }
.hero h1 { font-size: clamp(42px, 4.7vw, 68px); line-height: 1.16; font-weight: 600; letter-spacing: -.055em; }
.hero h1 em { background: none; color: var(--orange); }
html.light .hero h1 em { background: none; color: var(--orange); }
.eyebrow { border: 0; border-radius: 0; padding: 0; background: none; backdrop-filter: none; font-size: 11px; letter-spacing: .18em; margin-bottom: 28px; }
html.light .eyebrow { background: none; }
.hero-lede { font-size: 16px; line-height: 1.95; margin-top: 26px; }
.hero-actions { margin-top: 32px; gap: 28px; }
.hero-cta { background: var(--orange); color: #170d05; box-shadow: none; min-height: 50px; font-size: 13px; letter-spacing: .01em; }
.hero-cta:hover { box-shadow: 0 10px 32px rgba(240,135,62,.15); }
html.light .hero-cta { background: #c55819; color: #fff; box-shadow: none; }
.hero-cta:disabled { opacity: .45; cursor: default; }
.text-link { font-size: 13px; text-decoration: none; min-height: 44px; display: inline-flex; gap: 18px; align-items: center; }
.text-link:hover { color: var(--orange-hot); }
.hero-playground { min-width: 0; touch-action: none; }
.hero-stage { width: 100%; height: auto; max-width: 540px; aspect-ratio: 1.12; position: relative; inset: auto; pointer-events: auto; touch-action: none; outline-offset: -4px; border-radius: 50%; }
.stage-orbit { position: absolute; inset: 4%; border: 1px solid var(--line); border-radius: 50%; transform: rotate(-22deg); pointer-events: none; }
.stage-orbit::after { content: ''; position: absolute; top: 15%; left: 14%; width: 5px; height: 5px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 12px rgba(240,135,62,.6); }
.stage-label { position: absolute; top: 4px; right: 18px; font: 10px var(--label); color: var(--text-muted); letter-spacing: .15em; }
.hero-stage-caption { font-size: 10px; letter-spacing: .15em; bottom: 3%; }
.fruit-controls { position: relative; z-index: 3; display: flex; width: fit-content; max-width: 100%; margin: 8px auto 0; border: 1px solid var(--line-strong); border-radius: 100px; padding: 3px; background: rgba(10,8,6,.76); backdrop-filter: blur(12px); }
html.light .fruit-controls { background: rgba(255,252,247,.9); }
.fruit-controls button { display: inline-flex; gap: 10px; align-items: center; justify-content: center; border: 0; border-radius: 100px; padding: 0 15px; min-height: 44px; color: var(--text-soft); background: transparent; cursor: pointer; font-size: 12px; transition: background .2s, color .2s; }
.fruit-controls button:hover { color: var(--text); background: var(--surface); }
.fruit-controls button span { color: var(--orange); font-size: 16px; }
.fruit-controls button:disabled { opacity: .4; cursor: default; }
.fruit-help { text-align: center; font-size: 11px; color: var(--text-muted); line-height: 1.8; margin: 12px 0 0; }
.hero-bottom { position: absolute; bottom: 30px; left: var(--gutter); right: var(--gutter); max-width: 1200px; margin: auto; display: flex; justify-content: space-between; padding-top: 20px; border-top: 1px solid var(--line); color: var(--text-muted); font-size: 11px; letter-spacing: .06em; }
.hero-bottom a { display: inline-flex; align-items: center; gap: 28px; color: var(--text-soft); text-decoration: none; min-height: 32px; margin-top: -8px; }
.section { padding: 104px var(--gutter) 96px; scroll-snap-align: start; }
.section-heading { font-size: clamp(32px, 3.6vw, 50px); line-height: 1.2; letter-spacing: -.04em; }
.section-heading em { background: none; color: var(--orange); }
html.light .section-heading em { background: none; color: var(--orange); }
.section-kicker { font-size: 11px; letter-spacing: .15em; margin-bottom: 18px; }
.section-summary { font-size: 14px; line-height: 1.9; max-width: 30ch; }
.section-intro { margin-bottom: 40px; }
/* 玩法区：标题在左上，六条说明在右，橙子单独占一条居中的玩台 */
.how-top { display: grid; grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr); gap: clamp(32px, 5vw, 72px); align-items: start; }
.how-head { position: relative; }
.how-summary { margin: clamp(18px, 2.4vw, 30px) 0 0; color: var(--text-soft); font-size: 14px; line-height: 1.9; }
.how-stage {
  position: relative;
  width: min(880px, 96%);
  margin: clamp(18px, 2.6vw, 38px) auto clamp(26px, 3.6vw, 52px);
  aspect-ratio: 1.95;
  min-height: 0;
}
/* 玩法区底部的分界条：和首屏那条同款，只有翻页切开的时候亮一下 */
.how-bottom {
  position: relative;
  margin-top: auto;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--line);
  color: var(--text-muted);
  font-size: 11px;
  letter-spacing: .06em;
  transition: border-color .45s var(--ease-out), box-shadow .45s var(--ease-out);
}
.how-bottom a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 32px;
  color: var(--text-soft);
  text-decoration: none;
}
.how-bottom.glowing {
  border-top-color: var(--orange);
  box-shadow: 0 -2px 22px rgba(240, 135, 62, .38);
}

/* 玩法区把上边距收窄，整块更矮，留给玩台；用 flex 列让底栏能钉到最底部 */
#how.section { display: flex; flex-direction: column; padding-top: clamp(56px, 5.5vw, 84px); }
#how .section-heading { font-size: clamp(30px, 3.2vw, 46px); }
#how .how-summary { margin-top: clamp(14px, 1.8vw, 22px); }
/* 两行三列，比原来的两列更矮，给下面的玩台让出高度 */
.how-grid { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 0 24px; max-width: none; }
.how-card { border: 0; border-top: 1px solid var(--line-strong); border-radius: 0; padding: 22px 0 26px; background: none; backdrop-filter: none; }
html.light .how-card { background: none; box-shadow: none; }
.how-card:hover { transform: none; border-color: var(--orange); }
.how-key { font-size: 12px; }
.how-key kbd { font-size: 11px; }
.how-card p { font-size: 13px; line-height: 1.85; }
.about-stage { position: relative; min-height: 340px; }
.stage-caption { position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%); white-space: nowrap; font: 10px var(--label); letter-spacing: .16em; color: var(--text-muted); }
.touch-hint { display: none; }
.seg-wrap { grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr); gap: 64px; min-height: 390px; }
.seg-stage { position: relative; min-height: 360px; height: 390px; pointer-events: none; }
.seg-info { border-radius: 4px; background: rgba(12,10,8,.84); backdrop-filter: blur(12px); border-color: var(--line); padding: 30px; min-height: 268px; }
html.light .seg-info { background: rgba(255,252,247,.85); box-shadow: none; }
.seg-info.hot { border-color: var(--line-strong); }
.seg-meta, .seg-index { font-size: 10px; }
.seg-name { font-size: 26px; margin-top: 14px; }
.seg-desc { font-size: 14px; margin-bottom: 20px; line-height: 1.9; min-height: 3.8em; }
.seg-tags { margin-bottom: 14px; }
.seg-tag { font-size: 10px; letter-spacing: .06em; }
.seg-link { min-height: 44px; font-size: 12px; gap: 24px; }
#segmentNumbers { position: absolute; inset: 0; }
.segment-number { position: absolute; left: calc(50% + var(--x) * var(--seg-ring, 163px)); top: calc(50% + var(--y) * var(--seg-ring, 163px)); transform: translate(-50%,-50%); font: 10px var(--label); color: var(--text-muted); width: 26px; height: 26px; display: grid; place-items: center; border-radius: 50%; transition: background .2s; }
.segment-number.active { color: #120a04; background: #f0873e; }
.project-index { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 0 20px; margin-top: 28px; border-top: 1px solid var(--line-strong); }
.project-choice { display: flex; gap: 14px; align-items: center; padding: 14px 0; min-height: 48px; border: 0; border-bottom: 1px solid var(--line); background: transparent; color: var(--text-soft); font-size: 12px; text-align: left; cursor: pointer; transition: color .2s; }
.project-choice span { font: 10px var(--label); color: var(--text-muted); }
.project-choice[aria-pressed="true"], .project-choice:hover { color: var(--orange-hot); }
.project-choice[aria-pressed="true"] { border-bottom-color: var(--orange); }
.project-choice[aria-pressed="true"] span { color: var(--orange-hot); }
.colophon > summary { display: flex; justify-content: space-between; align-items: center; min-height: 48px; list-style: none; cursor: pointer; color: var(--text-soft); font-size: 12px; border-bottom: 1px solid var(--line); }
.colophon > summary::-webkit-details-marker { display: none; }
details[open] > summary > span { transform: rotate(45deg); }
.project-grid { display: none; grid-template-columns: repeat(3,minmax(0,1fr)); }
.project-card { border-radius: 8px; min-height: 220px; }
.project-card::before { display: none; }
.card-meta { font-size: 10px; }
.card-btn { min-height: 44px; }
.about-grid { align-items: center; }
#about { min-height: auto; }
.about-copy p { font-size: 15px; line-height: 2; }
.about-copy a { color: var(--orange-hot); text-decoration-thickness: 1px; text-underline-offset: 5px; }
.colophon { margin-top: 32px; max-width: 48ch; }
.colophon p { margin-top: 16px; font-size: 13px; }
.about-stage { min-height: 340px; }
.panel--footer { padding: 100px var(--gutter) 110px; min-height: 58svh; scroll-snap-align: none; }
.footer-big { font-size: clamp(40px,7vw,100px); line-height: 1.07; -webkit-text-stroke-color: var(--text-muted); }
.footer-links a { display: inline-flex; align-items: center; min-height: 44px; font-size: 12px; }
/* 备案号：按规定展示在页脚最下面 */
.footer-icp { margin: 10px 0 0; font-size: 11px; letter-spacing: .04em; }
.footer-icp a { color: var(--text-muted); text-decoration: none; }
.footer-icp a:hover { color: var(--text-soft); }
.hud { transition: opacity .3s ease, visibility .3s ease; bottom: 18px; left: 24px; padding: 3px 4px 3px 14px; gap: 12px; pointer-events: auto; font: 11px var(--body); letter-spacing: .01em; background: rgba(12,10,8,.9); }
.hud-divider { width: 1px; height: 12px; background: var(--line-strong); }
.hud button { min-height: 34px; padding: 0 12px; border-radius: 40px; border: 0; color: var(--text-soft); background: var(--surface); cursor: pointer; font-size: 11px; }
.hud button:hover { color: var(--orange-hot); }
.hud button:disabled { cursor: default; }
body.hero-away .hud { opacity: 0; visibility: hidden; pointer-events: none; }
.toast-wrap { bottom: 78px; max-width: calc(100% - 32px); width: max-content; }
.toast { white-space: normal; text-align: center; line-height: 1.8; border-radius: 14px; font-size: 12px; }
.ghost-hint { top: auto; bottom: 144px; transform: translateX(-50%); font-size: 12px; max-width: calc(100% - 32px); width: max-content; }
.intro-line { font-size: 10px; letter-spacing: .18em; }
.intro-skip { color: #b7aca2; background: transparent; border: 1px solid #4c3c30; border-radius: 40px; padding: 0 20px; min-height: 44px; cursor: pointer; font: 12px var(--body); animation: none; }
.space-noise { opacity: .025; }
.stage-fallback { inset: 16% 18%; }
.stage-fallback::before { content: ''; position: absolute; top: -9%; left: 50%; width: 29%; height: 17%; border-radius: 4% 100% 5% 100%; background: linear-gradient(25deg,#304020,#709343); transform: rotate(-26deg); }
.stage-fallback::after { content: ''; position: absolute; inset: 0; border-radius: inherit; background-image: radial-gradient(#85401c66 .5px,transparent 1px); background-size: 4px 4px; opacity: .35; }
body.no-webgl .seg-wrap, body.no-webgl .project-index, body.no-webgl .how-stage, body.no-webgl .about-stage { display: none; }
body.no-webgl .project-grid { display: grid; margin-top: 24px; }
body.no-webgl .how-layout { display: block; }
body.no-webgl .fruit-controls { opacity: .4; }
.no-script { padding: 20px var(--gutter); }
.motion-paused { scroll-behavior: auto; scroll-snap-type: none; }
.motion-paused *, .motion-paused *::before, .motion-paused *::after { animation: none !important; transition-duration: .01ms !important; }

@media (max-width: 1100px) {
  .nav-status { display: none; }
  .seg-wrap { gap: 28px; }
  .project-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 860px) {
  .desktop-hint { display: none; }
  .touch-hint { display: inline; }
  html { scroll-snap-type: none; }
  .hero { padding-top: 104px; padding-bottom: 90px; }
  .hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-copy { max-width: 580px; }
  .hero h1 { font-size: clamp(40px,7vw,60px); }
  .hero-playground { width: min(440px, 100%); justify-self: center; }
  .hero-stage { width: 100%; height: auto; aspect-ratio: 1.22; }
  .hero-stage-caption { display: flex; }
  .hero-bottom { bottom: 24px; }
  .section { min-height: auto; padding-top: 80px; padding-bottom: 80px; }
  .how-top { grid-template-columns: 1fr; gap: 28px; }
  .seg-wrap { grid-template-columns: minmax(0, .9fr) minmax(0,1.1fr); gap: 24px; }
  .seg-stage { height: 280px; min-height: 280px; }
  .segment-number { left: calc(50% + var(--x) * var(--seg-ring, 112px)); top: calc(50% + var(--y) * var(--seg-ring, 112px)); }
  .seg-info { padding: 22px; min-height: 300px; }
  .seg-name { font-size: 22px; }
  .about-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .about-stage { min-height: 280px; }
}
@media (max-width: 600px) {
  :root { --gutter: 22px; }
  .site-header { padding: 10px 16px; }
  .logo { font-size: 14px; gap: 7px; }
  .logo-mark { width: 24px; height: 24px; }
  .logo-sup { display: none; }
  .nav-right { gap: 4px; }
  .nav-links { gap: 0; }
  .nav-links a { font: 11px var(--body); letter-spacing: 0; }
  .wormhole-link { display: none !important; }
  .theme-btn { border: 0; }
  .hero { padding-top: 108px; min-height: auto; }
  .hero-grid { gap: 20px; }
  .eyebrow { font-size: 9px; letter-spacing: .13em; margin-bottom: 22px; }
  .hero h1 { font-size: clamp(35px,9.7vw,54px); }
  .hero-lede { font-size: 14px; line-height: 1.85; margin-top: 20px; }
  .hero-actions { margin-top: 22px; gap: 24px; }
  .hero-cta { min-height: 48px; padding-inline: 20px; font-size: 12px; }
  .hero-stage { aspect-ratio: 1.42; }
  .stage-label { top: 8px; right: 0; font-size: 9px; }
  .stage-orbit { inset: 4% 8%; }
  .hero-stage-caption { bottom: 0; font-size: 9px; }
  .fruit-controls { margin-top: 10px; }
  .fruit-controls button { padding-inline: 12px; gap: 7px; }
  .fruit-help { font-size: 10px; margin-top: 9px; }
  .hero-bottom { font-size: 10px; }
  .hero-bottom a { min-height: 44px; margin-top: -14px; gap: 12px; }
  .section-intro { flex-direction: column; align-items: start; gap: 20px; margin-bottom: 28px; }
  .section-heading { font-size: 34px; }
  .section-kicker { font-size: 10px; margin-bottom: 16px; }
  .section-summary { font-size: 13px; }
  .how-grid { grid-template-columns: 1fr 1fr; gap: 0 22px; }
  .how-card { padding: 18px 0 22px; }
  .how-card p { font-size: 14px; }
  .how-key { gap: 4px; font-size: 11px; }
  .how-key kbd { font-size: 10px; padding: 3px 5px; }
  .seg-wrap { display: flex; flex-direction: column; gap: 24px; min-height: auto; }
  .seg-stage { width: 100%; height: 300px; min-height: 300px; }
  .segment-number { left: calc(50% + var(--x) * var(--seg-ring, 132px)); top: calc(50% + var(--y) * var(--seg-ring, 132px)); }
  .seg-info { width: 100%; min-height: 282px; padding: 24px; }
  .seg-desc { font-size: 14px; }
  .project-index { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 0 18px; margin-top: 20px; }
  .project-choice { font-size: 13px; gap: 8px; padding-block: 12px; }
  .project-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-stage { display: none; }
  .about-copy p { font-size: 14px; }
  .panel--footer { min-height: 420px; padding-top: 50px; padding-bottom: 108px; }
  .footer-big { font-size: clamp(32px,8.6vw,52px); }
  .footer-row { font-size: 11px; gap: 8px; }
  .footer-links { gap: 24px; }
  .hud { left: 50%; transform: translateX(-50%); bottom: max(10px,env(safe-area-inset-bottom)); width: max-content; max-width: calc(100% - 24px); padding-left: 12px; gap: 9px; font-size: 10px; }
  .hud button { min-height: 44px; font-size: 10px; }
  .toast-wrap { bottom: 74px; }
  .intro-line { font-size: 9px; letter-spacing: .08em; }
  .stage-fallback { inset: 10% 24%; }
}
@media (max-width: 360px) {
  .logo-mark { display: none; }
  :root { --gutter: 18px; }
  .fruit-controls button { padding-inline: 11px; }
}
@media (min-width: 600px) and (max-width: 1000px) and (max-height: 500px) {
  .hero { padding-top: 100px; padding-bottom: 36px; }
  .hero-grid { grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 28px; }
  .hero h1 { font-size: clamp(30px,4.7vw,42px); }
  .eyebrow { margin-bottom: 18px; font-size: 9px; }
  .hero-lede { margin-top: 16px; font-size: 13px; line-height: 1.8; }
  .hero-actions { margin-top: 18px; gap: 18px; }
  .hero-playground { width: min(320px,100%); }
  .hero-stage { aspect-ratio: 1.65; }
  .hero-bottom { display: none; }
  .fruit-controls button { padding-inline: 10px; }
  .fruit-help { font-size: 9px; }
  .fruit-help { visibility: hidden; }
  .hud { left: auto; right: var(--gutter); bottom: 6px; }
  .hud-divider, #clipboardStatus { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; scroll-snap-type: none; }
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
}
