:root {
  color-scheme: light;
  --bg: #fffefa;
  --paper: #ffffff;
  --ink: #171717;
  --muted: #6f6a64;
  --line: #e8e2d9;
  --soft: #f7f1e8;
  --red: #e43d30;
  --red-dark: #b9271f;
  --shadow: 0 24px 60px rgba(28, 20, 13, 0.12);
  --radius: 8px;
  --content: 1120px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(247, 241, 232, 0.65) 0, rgba(255, 254, 250, 0) 520px),
    var(--bg);
  color: var(--ink);
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 18px 28px;
  background: rgba(255, 254, 250, 0.82);
  border-bottom: 1px solid rgba(232, 226, 217, 0.7);
  backdrop-filter: blur(18px);
}

.brand,
.header-actions,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 760;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  overflow: hidden;
  border-radius: 7px;
}

.brand-mark img {
  width: 100%;
  height: 100%;
}

.nav-links {
  gap: 26px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 620;
}

.nav-links a:hover {
  color: var(--ink);
}

.header-actions {
  gap: 10px;
}

.language-toggle {
  min-width: 58px;
  height: 36px;
  padding: 0 12px;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 7px;
  cursor: pointer;
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 7px;
  font-size: 15px;
  font-weight: 760;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(28, 20, 13, 0.12);
}

.button-dark {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.button-light {
  background: var(--paper);
  color: var(--ink);
}

.button-small {
  min-height: 36px;
  padding: 0 14px;
  font-size: 14px;
}

.section-shell {
  width: min(100% - 40px, var(--content));
  margin: 0 auto;
}

.hero {
  padding: 82px 0 58px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red-dark);
  font-size: 13px;
  font-weight: 820;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  color: var(--ink);
  letter-spacing: 0;
}

h1 {
  max-width: 860px;
  margin: 0 auto;
  font-size: clamp(50px, 7vw, 86px);
  line-height: 0.96;
}

h2 {
  font-size: clamp(34px, 4.6vw, 62px);
  line-height: 1;
}

p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.58;
}

.hero-copy {
  max-width: 680px;
  margin: 24px auto 0;
  font-size: 21px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.compact-actions {
  margin-top: 14px;
}

.microcopy {
  margin: 16px auto 0;
  color: #827a72;
  font-size: 14px;
}

.demo-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: min(100%, 680px);
  margin: 26px auto 0;
  padding: 9px 13px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(28, 20, 13, 0.06);
}

.demo-note span {
  color: var(--red-dark);
  font-size: 13px;
  font-weight: 820;
}

.demo-note small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.product-frame {
  overflow: hidden;
  margin: 32px 0 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-frame {
  margin-top: 44px;
}

.interactive-demo {
  --demo-paper: #faf8f4;
  --demo-raised: #fffdf9;
  --demo-ink: #2d2a26;
  --demo-muted: #85807a;
  --demo-red: #e53935;
  --demo-rust: #bc412b;
  --demo-latte: #ebe2d3;
  --demo-amber: #c59745;
  --demo-rule: #d9cec0;
  text-align: left;
  font-family: Georgia, "Times New Roman", "PingFang SC", "Microsoft YaHei", serif;
}

.demo-titlebar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: var(--demo-paper);
  border-bottom: 1px solid var(--demo-rule);
}

.window-dots {
  display: flex;
  gap: 7px;
}

.window-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--demo-rule);
}

.window-dots span:first-child {
  background: var(--demo-red);
}

.demo-url,
.demo-status {
  min-width: 0;
  color: #756f68;
  font-size: 13px;
  font-weight: 680;
}

.demo-url {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.demo-status {
  padding: 6px 10px;
  background: var(--demo-raised);
  border: 1px solid var(--demo-rule);
  border-radius: 999px;
}

.demo-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 368px;
  gap: 0;
  min-height: 584px;
  background: var(--demo-paper);
}

.demo-main {
  display: grid;
  grid-template-rows: minmax(292px, 1fr) auto;
  gap: 10px;
  padding: 22px;
  border-right: 1px solid var(--demo-rule);
}

.demo-video {
  overflow: hidden;
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 306px;
  background: #1f1d1b;
  border-radius: 8px;
}

.demo-video-scene {
  position: relative;
  display: grid;
  place-items: center;
  background:
    linear-gradient(140deg, rgba(229, 57, 53, 0.24), transparent 38%),
    linear-gradient(28deg, #22201e 0 48%, #302c28 48% 100%);
}

.demo-video-scene::before,
.demo-video-scene::after {
  content: "";
  position: absolute;
  bottom: 46px;
  width: 32%;
  height: 28%;
  border-radius: 8px 8px 0 0;
  background: rgba(255, 255, 255, 0.08);
}

.demo-video-scene::before {
  left: 10%;
}

.demo-video-scene::after {
  right: 14%;
  height: 38%;
}

.demo-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 8px 11px;
  color: #fff;
  background: rgba(0, 0, 0, 0.36);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 760;
}

.demo-play {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  color: #fff;
  background: var(--demo-red);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 27px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.demo-progress {
  height: 12px;
  background: #393633;
}

.demo-progress span {
  display: block;
  width: 38%;
  height: 100%;
  background: var(--demo-red);
  transition: width 260ms ease;
}

.interactive-demo.is-playing .demo-progress span {
  width: 68%;
}

.interactive-demo.is-replaying .demo-progress span {
  width: 18%;
}

.demo-now-panel {
  display: grid;
  grid-template-rows: minmax(112px, auto) auto;
  gap: 10px;
  padding: 14px;
  background: var(--demo-raised);
  border: 1px solid var(--demo-rule);
  border-radius: 8px;
}

.demo-current-sentence {
  display: grid;
  align-content: end;
  min-height: 108px;
  text-align: center;
}

.demo-hanzi {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  gap: 3px;
  color: var(--demo-ink);
  font-size: clamp(22px, 2.85vw, 34px);
  font-weight: 800;
  line-height: 1.12;
}

.demo-hanzi button {
  display: grid;
  gap: 2px;
  padding: 0 3px 5px;
  color: inherit;
  background: transparent;
  border: 0;
  border-bottom: 2px dotted rgba(229, 57, 53, 0.55);
  cursor: pointer;
  font: inherit;
}

.demo-hanzi button span {
  min-height: 14px;
  color: var(--demo-muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.demo-hanzi button strong {
  font: inherit;
}

.demo-hanzi i {
  font-style: normal;
  padding-bottom: 5px;
}

.demo-hanzi button:hover,
.demo-hanzi button.active {
  color: var(--demo-red);
  border-bottom-color: var(--demo-red);
}

.demo-english {
  min-height: 21px;
  margin-top: 8px;
  color: var(--demo-muted);
  font-size: 15px;
  font-weight: 600;
}

.demo-video-progress {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
}

.demo-video-progress span {
  color: var(--demo-muted);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
}

.demo-video-progress span:last-child {
  text-align: right;
}

.demo-video-progress div {
  overflow: hidden;
  height: 5px;
  background: var(--demo-latte);
  border-radius: 999px;
}

.demo-video-progress b {
  display: block;
  width: 32%;
  height: 100%;
  background: var(--demo-red);
  border-radius: inherit;
}

.demo-controls {
  display: grid;
  grid-template-columns: repeat(5, 34px) 1fr repeat(3, minmax(34px, auto));
  align-items: center;
  gap: 8px;
}

.demo-controls button {
  min-width: 34px;
  height: 34px;
  padding: 0 9px;
  color: var(--demo-ink);
  background: var(--demo-raised);
  border: 1px solid var(--demo-rule);
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
  font-weight: 800;
}

.demo-controls button.primary {
  color: #fff;
  background: var(--demo-red);
  border-color: var(--demo-red);
}

.demo-controls button.selected {
  color: var(--demo-red);
  background: rgba(229, 57, 53, 0.1);
  border-color: rgba(229, 57, 53, 0.32);
}

.demo-side {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px;
  background: var(--demo-paper);
}

.demo-context-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
}

.demo-tabs {
  display: flex;
  gap: 4px;
  padding: 3px;
  background: var(--demo-latte);
  border-radius: 8px;
}

.demo-tabs span {
  padding: 6px 10px;
  color: var(--demo-muted);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
}

.demo-tabs span:first-child {
  color: var(--demo-ink);
  background: var(--demo-raised);
}

.demo-context-header small {
  color: var(--demo-muted);
  font-size: 12px;
  font-weight: 700;
}

.demo-context-header button {
  width: 32px;
  height: 32px;
  color: var(--demo-ink);
  background: var(--demo-raised);
  border: 1px solid var(--demo-rule);
  border-radius: 8px;
}

.demo-cue {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 8px;
  width: 100%;
  padding: 10px 12px;
  text-align: left;
  background: var(--demo-raised);
  border: 1px solid var(--demo-rule);
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
}

.demo-cue.active {
  background: var(--demo-latte);
  border-color: var(--demo-red);
  border-width: 1.5px;
}

.demo-cue time {
  color: var(--demo-muted);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
}

.cue-body,
.cue-body strong,
.cue-body small,
.cue-body em,
.cue-body i {
  display: block;
}

.cue-body em {
  min-height: 15px;
  color: var(--demo-muted);
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cue-body strong {
  color: var(--demo-ink);
  font-size: 14px;
  line-height: 1.32;
}

.demo-cue.active .cue-body strong {
  font-size: 15px;
  font-weight: 800;
}

.cue-body i {
  display: none;
  overflow: hidden;
  height: 4px;
  margin: 7px 0;
  background: var(--demo-paper);
  border-radius: 999px;
}

.demo-cue.active .cue-body i {
  display: block;
}

.cue-body i::before {
  content: "";
  display: block;
  width: 46%;
  height: 100%;
  background: var(--demo-red);
  border-radius: inherit;
}

.cue-body small {
  color: var(--demo-muted);
  font-size: 12px;
  line-height: 1.3;
}

.demo-cue-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 8px 10px;
  background: rgba(229, 57, 53, 0.06);
  border-top: 1px solid rgba(229, 57, 53, 0.14);
  border-radius: 8px;
}

.demo-cue-actions button {
  min-height: 30px;
  padding: 0 9px;
  color: var(--demo-red);
  background: transparent;
  border: 0;
  border-radius: 6px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 800;
}

.demo-lookup-card {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: min(320px, calc(100% - 44px));
  padding: 14px 16px 16px;
  background: rgba(255, 253, 249, 0.97);
  border: 1px solid rgba(217, 206, 192, 0.75);
  border-radius: 16px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(10px);
}

.lookup-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  color: var(--demo-muted);
  background: transparent;
  border: 0;
  font-size: 20px;
}

.lookup-head {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding-right: 24px;
}

.lookup-head strong {
  color: var(--demo-ink);
  font-size: 27px;
  font-weight: 900;
}

.lookup-badge {
  padding: 3px 8px;
  color: var(--demo-red);
  background: rgba(229, 57, 53, 0.1);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

.lookup-pronunciation {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.lookup-pronunciation span {
  padding: 3px 7px;
  color: var(--demo-rust);
  background: rgba(235, 226, 211, 0.72);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 900;
}

.lookup-pronunciation b {
  color: var(--demo-ink);
  font-size: 13px;
  font-style: italic;
}

.lookup-pronunciation button {
  width: 28px;
  height: 28px;
  color: var(--demo-red);
  background: transparent;
  border: 0;
}

.lookup-definition {
  margin-top: 14px;
  padding: 11px 12px;
  background: rgba(250, 248, 244, 0.72);
  border: 1px solid rgba(217, 206, 192, 0.75);
  border-radius: 12px;
}

.lookup-definition small {
  display: block;
  color: var(--demo-muted);
  font-size: 11px;
  font-weight: 900;
}

.lookup-definition p {
  margin: 8px 0 0;
  color: var(--demo-ink);
  font-size: 18px;
  font-weight: 700;
}

.interactive-demo.hide-pinyin .demo-hanzi button span,
.interactive-demo.hide-pinyin .cue-body em,
.interactive-demo.hide-english .demo-english {
  visibility: hidden;
}

.interactive-demo.hide-english .cue-body small {
  visibility: hidden;
}

.source-strip {
  padding: 44px 0 22px;
}

.screenshots-showcase {
  padding: 70px 0 26px;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.screenshot-card {
  overflow: hidden;
  min-width: 0;
  margin: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(28, 20, 13, 0.08);
}

.screenshot-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.screenshot-card figcaption {
  display: grid;
  gap: 6px;
  padding: 16px;
}

.screenshot-card strong {
  color: var(--ink);
  font-size: 17px;
}

.screenshot-card span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.42;
}

.source-intro {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  align-items: end;
  gap: 28px;
  margin-bottom: 18px;
}

.source-intro h2 {
  font-size: clamp(30px, 3.8vw, 48px);
}

.source-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.source-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  min-width: 0;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(28, 20, 13, 0.07);
}

.source-logo {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: #fff;
  font-weight: 900;
}

.source-logo.youtube {
  background: #171717;
}

.source-logo.bilibili {
  background: var(--red);
  font-family: Georgia, serif;
  font-size: 28px;
  line-height: 1;
}

.source-logo.local {
  background: #2f5d50;
  font-size: 24px;
}

.source-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 19px;
}

.source-card p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.42;
}

.feature {
  padding: 78px 0;
}

.feature-split {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 54px;
}

.feature-split.reverse {
  grid-template-columns: 1.18fr 0.82fr;
}

.feature-split.reverse .feature-copy {
  order: 2;
}

.feature-copy p,
.center-copy p {
  max-width: 560px;
}

.center-copy {
  max-width: 760px;
  margin: 0 auto 32px;
  text-align: center;
}

.center-copy p {
  margin-right: auto;
  margin-left: auto;
}

.wide-frame {
  margin-top: 22px;
}

.scenes {
  padding: 82px 0;
}

.scene-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.scene-card {
  overflow: hidden;
  min-width: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 36px rgba(28, 20, 13, 0.08);
}

.scene-card span,
.scene-card small {
  display: block;
  padding: 0 16px;
}

.scene-card span {
  margin-top: 14px;
  color: var(--ink);
  font-weight: 800;
}

.scene-card small {
  margin: 6px 0 16px;
  color: var(--red-dark);
  font-size: 13px;
  font-weight: 740;
}

.community-band,
.download-panel,
.coming-soon {
  margin-top: 44px;
  padding: 42px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 42px rgba(28, 20, 13, 0.08);
}

.community-band {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
}

.community-band p {
  max-width: 700px;
}

.coming-soon,
.download-panel {
  text-align: center;
}

.coming-soon {
  background: #1d1b19;
}

.coming-soon h2,
.coming-soon p {
  color: #fff;
}

.coming-soon .eyebrow {
  color: #ffb2aa;
}

.download-panel {
  margin-bottom: 68px;
}

.download-panel p,
.coming-soon p {
  max-width: 620px;
  margin-right: auto;
  margin-left: auto;
}

.download-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 720px;
  margin: 28px auto 0;
}

.download-card {
  display: grid;
  gap: 8px;
  min-height: 138px;
  padding: 20px;
  text-align: left;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.download-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(28, 20, 13, 0.1);
}

.download-card.available {
  border-color: rgba(228, 61, 48, 0.38);
}

.download-card span {
  color: var(--red-dark);
  font-size: 13px;
  font-weight: 820;
  text-transform: uppercase;
}

.download-card strong {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.15;
}

.download-card small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: min(100% - 40px, var(--content));
  margin: 0 auto;
  padding: 28px 0 42px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 14px;
}

@media (max-width: 900px) {
  .site-header {
    width: 100%;
    padding: 14px 18px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding-top: 56px;
  }

  h1 {
    font-size: clamp(44px, 14vw, 64px);
  }

  .feature-split,
  .feature-split.reverse {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .feature-split.reverse .feature-copy {
    order: 0;
  }

  .feature {
    padding: 54px 0;
  }

  .scene-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .community-band {
    grid-template-columns: 1fr;
  }

  .source-intro {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .source-grid {
    grid-template-columns: 1fr;
  }

  .screenshot-grid {
    grid-template-columns: 1fr;
  }

  .demo-workspace {
    grid-template-columns: 1fr;
  }

  .demo-main {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .demo-side {
    min-height: 520px;
  }
}

@media (max-width: 560px) {
  .section-shell {
    width: min(100% - 28px, var(--content));
  }

  .brand span:last-child {
    display: none;
  }

  .button {
    width: 100%;
  }

  .download-actions {
    grid-template-columns: 1fr;
  }

  .header-actions .button {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
  }

  .scene-grid {
    grid-template-columns: 1fr;
  }

  .community-band,
  .download-panel,
  .coming-soon {
    padding: 28px;
  }

  .site-footer {
    flex-direction: column;
  }

  .demo-titlebar {
    grid-template-columns: auto 1fr;
  }

  .demo-note {
    align-items: flex-start;
    flex-direction: column;
    border-radius: 8px;
    text-align: left;
  }

  .demo-status {
    display: none;
  }

  .demo-main,
  .demo-side {
    padding: 14px;
  }

  .demo-side {
    min-height: 560px;
  }

  .demo-video {
    min-height: 230px;
  }

  .demo-controls {
    grid-template-columns: repeat(5, 34px);
  }

  .demo-controls span {
    display: none;
  }

  .demo-lookup-card {
    position: static;
    width: 100%;
    margin-top: 4px;
  }
}
