:root {
  color-scheme: dark;
  --bg: #06080c;
  --bg-2: #0b1118;
  --ink: #fff8ec;
  --muted: #b9c7ce;
  --line: rgba(255, 255, 255, 0.16);
  --panel: rgba(9, 15, 21, 0.82);
  --panel-strong: rgba(7, 11, 17, 0.94);
  --grass: #27e28b;
  --grass-dark: #0b8754;
  --cyan: #62ecff;
  --gold: #ffd166;
  --danger: #ff5d5d;
  --shadow: 0 32px 100px rgba(0, 0, 0, 0.42);
  --radius: 8px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(6, 8, 12, 0), var(--bg) 88vh),
    var(--bg);
  font: 16px/1.55 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(6, 8, 12, 0.95) 0%, rgba(6, 8, 12, 0.66) 44%, rgba(6, 8, 12, 0.82) 100%),
    linear-gradient(180deg, rgba(6, 8, 12, 0.1) 0%, #06080c 88%),
    url("assets/hero-spoiler-shield.png") center top / cover no-repeat;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

img,
svg {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible,
.play-stage:focus-visible {
  outline: 3px solid rgba(98, 236, 255, 0.72);
  outline-offset: 4px;
}

.site-header,
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 32px));
  min-height: 70px;
  margin: 0 auto;
  gap: 18px;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  background: rgba(6, 8, 12, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 950;
  text-decoration: none;
}

.brand img {
  border-radius: 10px;
  box-shadow: 0 0 26px rgba(39, 226, 139, 0.28);
}

nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(480px, 1.22fr);
  align-items: center;
  gap: 32px;
  width: min(1180px, calc(100% - 32px));
  min-height: calc(100vh - 70px);
  margin: 0 auto;
  padding: 34px 0 54px;
}

.hero-copy {
  display: grid;
  align-content: center;
  gap: 22px;
}

.eyebrow {
  margin: 0;
  color: var(--grass);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  font-size: clamp(48px, 6.2vw, 86px);
  line-height: 0.9;
  text-wrap: balance;
}

html[lang="id"] h1 {
  font-size: clamp(38px, 4.6vw, 60px);
}

h2 {
  font-size: clamp(34px, 5vw, 66px);
  line-height: 0.96;
  text-wrap: balance;
}

h3 {
  font-size: 21px;
  line-height: 1.18;
}

.lede {
  max-width: 620px;
  color: #d5e3e8;
  font-size: clamp(19px, 2.3vw, 27px);
  line-height: 1.28;
}

.hero-actions,
.planner,
.stage-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  color: #06100c;
  font-weight: 950;
  text-decoration: none;
  cursor: pointer;
  background: var(--gold);
  border: 1px solid transparent;
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.primary {
  color: #06100c;
  background: var(--gold);
}

.secondary {
  color: var(--ink);
  background: rgba(39, 226, 139, 0.12);
  border-color: rgba(39, 226, 139, 0.36);
  box-shadow: none;
}

.quiet {
  color: var(--muted);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.proof-list li {
  min-height: 36px;
  padding: 8px 12px;
  color: #dce9ec;
  font-size: 13px;
  font-weight: 850;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
}

.play-stage {
  position: relative;
  min-width: 0;
  padding: 14px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), transparent 30%),
    rgba(5, 10, 15, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.play-stage::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 80% 16%, rgba(255, 209, 102, 0.16), transparent 30%),
    radial-gradient(circle at 16% 26%, rgba(39, 226, 139, 0.18), transparent 30%);
}

.play-stage.pulse {
  animation: stagePulse 520ms ease;
}

.stage-top,
.stage-controls,
.share-result,
.browser-preview {
  position: relative;
  z-index: 1;
}

.stage-top {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.stage-top > div {
  min-width: 0;
}

.stage-top h2 {
  font-size: clamp(28px, 4vw, 52px);
}

.demo-score {
  display: grid;
  grid-template-columns: repeat(2, minmax(72px, 1fr));
  gap: 8px;
}

.demo-score span {
  display: grid;
  gap: 2px;
  min-width: 88px;
  padding: 10px 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.demo-score strong {
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
}

.browser-preview {
  display: grid;
  gap: 10px;
  min-width: 0;
  padding: 10px;
  background: rgba(8, 13, 19, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.browser-bar {
  display: grid;
  grid-template-columns: 10px 10px 10px 1fr;
  gap: 7px;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
}

.browser-bar span {
  width: 10px;
  height: 10px;
  background: var(--danger);
  border-radius: 50%;
}

.browser-bar span:nth-child(2) {
  background: var(--gold);
}

.browser-bar span:nth-child(3) {
  background: var(--grass);
}

.browser-bar strong {
  justify-self: center;
  min-width: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  text-overflow: ellipsis;
}

.clean-badge {
  flex: 0 0 auto;
  padding: 8px 10px;
  color: #06100c;
  font-size: 12px;
  font-weight: 950;
  background: var(--grass);
  border-radius: var(--radius);
  box-shadow: 0 0 28px rgba(39, 226, 139, 0.28);
}

.clean-badge.leaked {
  color: #fff;
  background: var(--danger);
  box-shadow: 0 0 34px rgba(255, 93, 93, 0.34);
}

.arena {
  --cursor-x: 14%;
  --cursor-y: 50%;
  position: relative;
  min-height: 400px;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(5, 9, 14, 0.18), rgba(5, 9, 14, 0.72)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 52px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 42px),
    linear-gradient(135deg, #0f6b3e, #05341f 56%, #06130d);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
}

.arena::before,
.arena::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.arena::before {
  inset: 20px;
  border: 2px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
}

.arena::after {
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at var(--cursor-x) var(--cursor-y), rgba(98, 236, 255, 0.24), transparent 15%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1), transparent 18%);
}

.pitch-line {
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 50%;
  width: 2px;
  background: rgba(255, 255, 255, 0.28);
  transform: translateX(-50%);
}

.pitch-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 138px;
  height: 138px;
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.goal-mouth {
  position: absolute;
  top: 18%;
  bottom: 18%;
  left: 18px;
  z-index: 2;
  width: 104px;
  border: 3px solid rgba(255, 255, 255, 0.72);
  border-left: 0;
  border-radius: 0 8px 8px 0;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px 20px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px 18px),
    rgba(3, 8, 10, 0.2);
}

.goal-mouth span {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.spoiler-card,
.safe-card {
  position: absolute;
  z-index: 4;
  left: var(--x, 70%);
  top: var(--y, 30%);
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 2px 9px;
  align-items: center;
  width: min(220px, 42%);
  min-height: 74px;
  padding: 10px 12px 10px 10px;
  color: var(--ink);
  text-align: left;
  background: rgba(7, 11, 17, 0.9);
  border: 2px solid rgba(255, 93, 93, 0.72);
  border-radius: 999px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.34);
  transform: translate(-50%, -50%);
}

.spoiler-card {
  cursor: pointer;
}

.spoiler-card::before,
.safe-card::before {
  grid-row: 1 / span 3;
  width: 38px;
  height: 38px;
  content: "";
  background:
    radial-gradient(circle at 50% 50%, #111 0 12%, transparent 13%),
    conic-gradient(from 20deg, #fff 0 15%, #111 15% 24%, #fff 24% 42%, #111 42% 50%, #fff 50% 68%, #111 68% 76%, #fff 76% 100%);
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  box-shadow: inset 0 -7px 12px rgba(0, 0, 0, 0.26);
}

.spoiler-card small,
.safe-card small {
  color: var(--danger);
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.spoiler-card strong,
.safe-card strong {
  overflow-wrap: anywhere;
  font-size: 16px;
  line-height: 1.05;
}

.spoiler-card span,
.safe-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.spoiler-card.blocked {
  color: #06100c;
  background: linear-gradient(135deg, rgba(39, 226, 139, 0.95), rgba(98, 236, 255, 0.72));
  border-color: rgba(214, 255, 233, 0.94);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.38),
    0 0 50px rgba(39, 226, 139, 0.48);
}

.spoiler-card.blocked::before {
  background:
    linear-gradient(135deg, rgba(6, 16, 12, 0.16), rgba(6, 16, 12, 0.02)),
    var(--grass);
  clip-path: polygon(50% 0, 92% 16%, 82% 72%, 50% 100%, 18% 72%, 8% 16%);
  border-radius: 10px;
}

.spoiler-card.leaked {
  color: #fff;
  background: rgba(92, 12, 15, 0.94);
  border-color: rgba(255, 147, 147, 0.86);
  animation: leakShake 360ms ease;
}

.spoiler-card.blocked small,
.spoiler-card.blocked span {
  color: rgba(6, 16, 12, 0.72);
}

.safe-card {
  left: 76%;
  top: 82%;
  z-index: 3;
  width: min(190px, 36%);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(39, 226, 139, 0.5);
}

.safe-card::before {
  background:
    radial-gradient(circle at 50% 50%, rgba(6, 16, 12, 0.24) 0 16%, transparent 17%),
    var(--grass);
}

.safe-card small {
  color: var(--grass);
}

.shield-cursor {
  position: absolute;
  z-index: 5;
  left: var(--cursor-x);
  top: var(--cursor-y);
  width: 70px;
  height: 92px;
  pointer-events: none;
  opacity: 0.92;
  transform: translate(-50%, -50%);
  transition: transform 120ms ease;
}

.shield-cursor.active {
  transform: translate(-50%, -50%) scale(1.06);
}

.shield-cursor span {
  display: block;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(135deg, rgba(39, 226, 139, 0.92), rgba(98, 236, 255, 0.74)),
    rgba(39, 226, 139, 0.8);
  border: 3px solid rgba(228, 255, 240, 0.94);
  border-radius: 50% 50% 44% 44%;
  box-shadow:
    0 0 0 5px rgba(39, 226, 139, 0.14),
    0 0 38px rgba(39, 226, 139, 0.5);
}

.shield-cursor span::before {
  display: grid;
  place-items: center;
  height: 100%;
  color: #06100c;
  font-size: 20px;
  font-weight: 950;
  content: "GK";
}

.stage-controls {
  align-items: center;
  justify-content: space-between;
}

.stage-controls .button {
  flex: 1 1 150px;
  min-height: 44px;
  padding: 10px 13px;
}

.share-result {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
}

.share-result > div {
  min-width: 0;
}

.share-result small {
  display: block;
  color: var(--grass);
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.share-result strong {
  display: block;
  overflow: hidden;
  font-size: 13px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.share-result button {
  min-width: 64px;
  min-height: 34px;
  color: #06100c;
  font-weight: 950;
  cursor: pointer;
  background: var(--grass);
  border: 0;
  border-radius: var(--radius);
}

.sr-status {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-strip div {
  display: grid;
  gap: 5px;
  min-height: 118px;
  padding: 24px max(24px, calc((100vw - 1180px) / 2 + 24px));
  background: rgba(7, 12, 17, 0.88);
}

.trust-strip div:nth-child(2) {
  padding-right: 24px;
  padding-left: 24px;
}

.trust-strip strong {
  font-size: 19px;
}

.trust-strip span {
  color: var(--muted);
}

.section {
  display: grid;
  gap: 28px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 82px 0;
}

.section-head {
  display: grid;
  gap: 12px;
  max-width: 760px;
}

.section-head p,
.split p,
.beta-band p,
.faq p {
  color: var(--muted);
}

.planner-band {
  align-items: start;
  grid-template-columns: minmax(0, 1fr) 360px;
}

.planner {
  grid-column: 1;
}

.planner label {
  display: grid;
  flex: 1 1 210px;
  gap: 7px;
  color: #d9e8eb;
  font-weight: 900;
}

.planner input,
.planner select {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
}

.planner option {
  color: #101827;
}

.planner .button {
  align-self: end;
}

.watch-card,
.feature-list article,
.privacy-grid article,
details,
.beta-band {
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

.watch-card {
  display: grid;
  grid-row: 1 / span 2;
  grid-column: 2;
  align-self: stretch;
  gap: 12px;
  padding: 20px;
}

.watch-card h3 {
  font-size: 28px;
}

.split {
  align-items: start;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
}

.feature-list,
.privacy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.feature-list article,
.privacy-grid article {
  display: grid;
  gap: 10px;
  min-height: 180px;
  padding: 18px;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: #06100c;
  font-weight: 950;
  background: var(--grass);
  border-radius: 50%;
}

.privacy-band {
  width: auto;
  max-width: none;
  padding-right: max(24px, calc((100vw - 1180px) / 2 + 24px));
  padding-left: max(24px, calc((100vw - 1180px) / 2 + 24px));
  background:
    linear-gradient(90deg, rgba(39, 226, 139, 0.08), transparent 54%),
    rgba(255, 255, 255, 0.03);
}

.beta-band {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.6fr);
  align-items: start;
  margin-bottom: 36px;
  padding: 28px;
}

.steps {
  display: grid;
  gap: 12px;
  margin: 0;
}

code {
  padding: 2px 5px;
  color: #dfffee;
  background: rgba(39, 226, 139, 0.12);
  border-radius: 6px;
}

.faq {
  gap: 12px;
}

details {
  padding: 18px;
}

summary {
  cursor: pointer;
  font-weight: 950;
}

details p {
  padding-top: 10px;
}

.footer {
  min-height: 96px;
  color: var(--muted);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@keyframes stagePulse {
  0%,
  100% {
    box-shadow: var(--shadow);
  }

  50% {
    box-shadow:
      0 32px 100px rgba(0, 0, 0, 0.42),
      0 0 80px rgba(39, 226, 139, 0.38);
  }
}

@keyframes leakShake {
  0%,
  100% {
    transform: translate(-50%, -50%);
  }

  30% {
    transform: translate(-54%, -50%);
  }

  65% {
    transform: translate(-47%, -50%);
  }
}

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

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

@media (max-width: 980px) {
  .hero,
  .planner-band,
  .split,
  .beta-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 26px;
  }

  .play-stage {
    max-width: 760px;
  }

  .arena {
    min-height: 340px;
  }

  .watch-card {
    grid-row: auto;
    grid-column: auto;
  }

  .feature-list,
  .privacy-grid,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-strip div,
  .trust-strip div:nth-child(2) {
    min-height: auto;
    padding: 20px max(18px, calc((100vw - 760px) / 2 + 18px));
  }
}

@media (max-width: 640px) {
  .site-header,
  .footer {
    align-items: flex-start;
    flex-direction: column;
    width: calc(100% - 28px);
    padding: 12px 0;
  }

  .site-header {
    position: relative;
  }

  nav {
    justify-content: flex-start;
    gap: 10px;
  }

  nav a {
    font-size: 13px;
  }

  .hero,
  .section {
    width: calc(100% - 28px);
  }

  .hero {
    gap: 14px;
    padding-top: 10px;
    padding-bottom: 18px;
  }

  .hero-copy {
    gap: 10px;
  }

  h1 {
    font-size: clamp(32px, 10.5vw, 42px);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(28px, 8.5vw, 40px);
  }

  .lede {
    font-size: 16px;
    line-height: 1.25;
  }

  .hero-actions,
  .planner,
  .stage-controls {
    align-items: stretch;
  }

  .planner {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-actions .button,
  .stage-controls .button {
    width: auto;
    flex: 1 1 0;
  }

  .proof-list li {
    min-height: 30px;
    font-size: 11px;
    padding: 5px 9px;
  }

  .play-stage {
    padding: 8px;
    border-radius: 10px;
  }

  .browser-preview {
    gap: 7px;
    padding: 7px;
  }

  .browser-bar {
    display: none;
  }

  .stage-top {
    align-items: center;
    flex-direction: row;
    gap: 8px;
  }

  .stage-top h2 {
    font-size: 27px;
  }

  .demo-score {
    width: auto;
    min-width: 96px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .demo-score span {
    min-width: 0;
    padding: 6px;
    font-size: 10px;
  }

  .demo-score strong {
    font-size: 20px;
  }

  html[lang="id"] .stage-top,
  html[lang="zh-CN"] .stage-top {
    align-items: flex-start;
    flex-direction: column;
  }

  html[lang="id"] .demo-score,
  html[lang="zh-CN"] .demo-score {
    width: 100%;
  }

  .clean-badge {
    width: auto;
    padding: 6px 8px;
    font-size: 10px;
    text-align: center;
  }

  .arena {
    min-height: 238px;
  }

  .stage-controls {
    gap: 7px;
  }

  .stage-controls .button {
    min-height: 40px;
    padding: 8px 9px;
    font-size: 14px;
  }

  .stage-controls #resetDemo {
    display: none;
  }

  .share-result {
    padding: 8px 9px;
  }

  .share-result strong {
    font-size: 12px;
    white-space: normal;
  }

  .share-result button {
    min-width: 56px;
  }

  .goal-mouth {
    top: 17%;
    bottom: 17%;
    left: 10px;
    width: 64px;
  }

  .goal-mouth span {
    display: none;
  }

  .pitch-circle {
    width: 92px;
    height: 92px;
  }

  .spoiler-card,
  .safe-card {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 1px 6px;
    width: 154px;
    min-height: 58px;
    padding: 7px 9px 7px 7px;
  }

  .spoiler-card::before,
  .safe-card::before {
    width: 28px;
    height: 28px;
  }

  .spoiler-card strong,
  .safe-card strong {
    font-size: 12px;
  }

  .spoiler-card small,
  .safe-card small,
  .spoiler-card span,
  .safe-card span {
    font-size: 9px;
  }

  .safe-card {
    left: 68%;
    top: 84%;
  }

  .shield-cursor {
    width: 46px;
    height: 62px;
  }

  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .privacy-band {
    padding-right: 14px;
    padding-left: 14px;
  }

  .feature-list,
  .privacy-grid {
    grid-template-columns: 1fr;
  }
}
