:root {
  --bg: #070708;
  --panel: rgba(18, 18, 20, 0.88);
  --panel-soft: rgba(255, 255, 255, 0.055);
  --text: #f2f2f0;
  --muted: #a2a19b;
  --accent: #f4f4ef;
  --accent-soft: rgba(245, 245, 245, 0.16);
  --accent-glow: rgba(245, 245, 245, 0.38);
  --accent-rgb: 245, 245, 245;
  --green: #81d884;
  --red: #ff5e58;
  --yellow: #e6bd63;
  --border: rgba(255, 255, 255, 0.12);
  --glow: 0 0 46px rgba(var(--accent-rgb), 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 48% 7%, rgba(var(--accent-rgb), 0.16), transparent 23rem),
    radial-gradient(circle at 24% 37%, rgba(255, 255, 255, 0.045), transparent 26rem),
    linear-gradient(180deg, #111113 0%, var(--bg) 38%, #030303 100%);
  overflow-x: hidden;
  animation: pageIn 420ms ease both;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.017) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 82%);
}

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

button {
  color: inherit;
  font: inherit;
}

.site-header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  width: min(1180px, calc(100% - 28px));
  margin: 16px auto 0;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(12, 12, 13, 0.72);
  backdrop-filter: blur(18px);
}

.brand {
  max-width: 62vw;
  overflow: hidden;
  font-size: clamp(0.95rem, 3.6vw, 1.16rem);
  font-weight: 850;
  letter-spacing: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.header-note {
  color: var(--muted);
  font-size: clamp(0.76rem, 2.6vw, 0.9rem);
  white-space: nowrap;
}

.header-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
}

.accent-picker {
  display: flex;
  gap: 6px;
  align-items: center;
  padding: 5px 7px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.22);
}

.accent-dot {
  width: 15px;
  height: 15px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  padding: 0;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.accent-dot.white {
  background: #f5f5f5;
}

.accent-dot.red {
  background: #ff3b3b;
}

.accent-dot.yellow {
  background: #f5c400;
}

.accent-dot.blue {
  background: #2f80ff;
}

.accent-dot.purple {
  background: #9b5cff;
}

.accent-dot.green {
  background: #00b85f;
}

.accent-dot.active,
.accent-dot:hover,
.accent-dot:focus-visible {
  transform: scale(1.17);
  border-color: var(--accent);
  box-shadow: 0 0 14px var(--accent-glow);
  outline: none;
}

.lang-switch {
  display: flex;
  gap: 3px;
  padding: 4px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.22);
}

.lang-btn {
  min-width: 34px;
  border: 0;
  border-radius: 999px;
  padding: 5px 8px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 800;
  transition: color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.lang-btn.active,
.lang-btn:hover,
.lang-btn:focus-visible {
  color: var(--text);
  background: var(--accent-soft);
  box-shadow: 0 0 16px rgba(var(--accent-rgb), 0.15);
  outline: none;
}

main {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
}

.intro {
  max-width: 930px;
  padding: clamp(24px, 5vw, 46px) 0 20px;
}

.kicker {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 14px;
  font-size: clamp(2.15rem, 6vw, 4.4rem);
  line-height: 1;
  letter-spacing: 0;
}

.intro-text {
  max-width: 910px;
  margin-bottom: 12px;
  color: #d9d8d2;
  font-size: clamp(1rem, 2.1vw, 1.2rem);
  line-height: 1.65;
}

.safety-note {
  display: inline-flex;
  max-width: 760px;
  margin: 0;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(0, 0, 0, 0.24);
  font-size: 0.9rem;
}

.simulation-stage {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.scenario-tabs {
  display: flex;
  justify-self: center;
  gap: 8px;
  max-width: 100%;
  margin: 0;
  padding: 5px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(5, 5, 6, 0.7);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
  overflow-x: auto;
}

.scenario-tab {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  min-width: 86px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 8px 15px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-weight: 750;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.scenario-tab span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.65;
}

.scenario-tab.active,
.scenario-tab:hover,
.scenario-tab:focus-visible {
  border-color: rgba(var(--accent-rgb), 0.42);
  color: var(--text);
  background: var(--accent-soft);
  box-shadow: var(--glow);
  outline: none;
}

.scenario-panel[hidden] {
  display: none;
}

.scenario-pill[hidden],
.fake-data-grid[hidden],
.archive-visual[hidden],
.received-log[hidden],
.ransom-screen[hidden] {
  display: none;
}

.scenario-panel.active {
  animation: scenarioIn 280ms ease both;
}

.status-widget {
  justify-self: end;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: min(360px, 100%);
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(6, 6, 7, 0.82);
  box-shadow: 0 16px 58px rgba(0, 0, 0, 0.44);
  backdrop-filter: blur(16px);
}

.status-widget div {
  display: grid;
  gap: 5px;
}

.status-widget span {
  color: var(--muted);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.74rem;
}

.status-widget strong {
  color: var(--muted);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.92rem;
  font-weight: 700;
}

.status-widget.active strong {
  color: var(--green);
  text-shadow: 0 0 16px rgba(129, 216, 132, 0.42);
}

.visual-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(320px, 0.78fr);
  gap: 24px;
  align-items: stretch;
}

.stealer-stage {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.locker-stage {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.scenario-card {
  position: relative;
  isolation: isolate;
  justify-self: center;
  width: min(620px, 100%);
  padding: 15px 18px;
  border: 1px solid rgba(var(--accent-rgb), 0.28);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% -20%, rgba(var(--accent-rgb), 0.16), transparent 18rem),
    rgba(11, 11, 12, 0.76);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.34), 0 0 72px rgba(var(--accent-rgb), 0.18);
  backdrop-filter: blur(16px);
  text-align: left;
}

.scenario-card h2 {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 9px;
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
}

.scenario-card h2 i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px var(--accent-glow);
}

.scenario-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.62;
}

.scenario-pill {
  display: inline-flex;
  margin: 0 0 10px 19px;
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: #deded8;
  background: rgba(255, 255, 255, 0.055);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.74rem;
}

.resource-widget {
  position: relative;
  isolation: isolate;
  justify-self: end;
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 12px;
  width: max-content;
  max-width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  border-radius: 16px;
  background: rgba(5, 5, 6, 0.84);
  box-shadow: 0 18px 62px rgba(0, 0, 0, 0.45), 0 0 52px rgba(var(--accent-rgb), 0.16);
  backdrop-filter: blur(16px);
}

.resource-widget div {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  color: var(--muted);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.76rem;
}

.resource-widget strong {
  color: #deded9;
}

.resource-widget .danger {
  color: var(--red);
  text-shadow: 0 0 15px rgba(255, 94, 88, 0.44);
}

.stealer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
  gap: 18px;
  align-items: stretch;
}

.desktop-window,
.terminal-window,
.tutorial-panel,
.theory-card,
.target-panel,
.c2-panel {
  position: relative;
  isolation: isolate;
  border: 1px solid var(--border);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% -12%, rgba(var(--accent-rgb), 0.17), transparent 20rem),
    var(--panel);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.4), 0 0 82px rgba(var(--accent-rgb), 0.18);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.scenario-card::before,
.resource-widget::before,
.desktop-window::before,
.terminal-window::before,
.tutorial-panel::before,
.target-panel::before,
.c2-panel::before,
.locker-target-panel::before,
.theory-main-card::before,
.theory-image-card::before,
.theory-flow::before,
.info-block::before,
.encryption-theory::before,
.code-window::before {
  position: absolute;
  inset: -26px;
  z-index: -1;
  content: "";
  pointer-events: none;
  border-radius: inherit;
  background:
    radial-gradient(circle at 50% 18%, rgba(var(--accent-rgb), 0.32), rgba(var(--accent-rgb), 0.14) 34%, transparent 72%);
  filter: blur(22px);
  opacity: 0.72;
  transition: opacity 220ms ease, background 220ms ease, filter 220ms ease;
}

.desktop-window:hover,
.terminal-window:hover,
.target-panel:hover,
.c2-panel:hover,
.locker-target-panel:hover,
.theory-card:hover,
.info-block:hover,
.locker-theory-card:hover {
  transform: translateY(-2px);
  border-color: rgba(var(--accent-rgb), 0.42);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.44), 0 0 96px rgba(var(--accent-rgb), 0.26);
}

.target-panel,
.c2-panel {
  min-height: 520px;
  overflow: hidden;
}

.locker-target-panel {
  position: relative;
  isolation: isolate;
  min-height: 540px;
  overflow: hidden;
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% -12%, rgba(var(--accent-rgb), 0.17), transparent 20rem),
    var(--panel);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.4), 0 0 82px rgba(var(--accent-rgb), 0.18);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.stealer-window-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  padding: 0 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: #151516;
}

.stealer-window-bar strong,
.stealer-window-bar span {
  color: #deded9;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.82rem;
}

.stealer-window-bar span {
  color: var(--muted);
}

.target-desktop {
  position: relative;
  min-height: 476px;
  overflow: hidden;
  background:
    linear-gradient(rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.58)),
    radial-gradient(circle at 26% 25%, rgba(150, 150, 145, 0.3), transparent 15rem),
    radial-gradient(circle at 78% 46%, rgba(102, 102, 99, 0.24), transparent 17rem),
    linear-gradient(135deg, #292a2b, #111214 54%, #070707);
}

.locker-desktop {
  position: relative;
  min-height: 496px;
  overflow: hidden;
  background:
    linear-gradient(rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.62)),
    radial-gradient(circle at 28% 22%, rgba(150, 150, 145, 0.28), transparent 16rem),
    radial-gradient(circle at 76% 52%, rgba(112, 102, 102, 0.24), transparent 20rem),
    linear-gradient(135deg, #28292a, #111214 55%, #060606);
}

.path-window {
  position: absolute;
  top: 76px;
  left: 50%;
  z-index: 3;
  width: min(560px, calc(100% - 58px));
  min-height: 288px;
  transform: translateX(-50%);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  background: rgba(9, 9, 10, 0.74);
  box-shadow: 0 28px 76px rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(12px);
}

.locker-doc-window {
  position: absolute;
  top: 54px;
  left: 50%;
  z-index: 3;
  width: min(760px, calc(100% - 64px));
  min-height: 260px;
  transform: translateX(-50%);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  background: rgba(9, 9, 10, 0.76);
  box-shadow: 0 28px 76px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
}

.path-title {
  padding: 11px 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  color: #d8d8d1;
  background: rgba(35, 35, 37, 0.82);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.78rem;
}

.fake-data-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 16px;
}

.locker-file-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  padding: 14px;
}

.locker-file-card {
  position: relative;
  display: grid;
  min-height: 98px;
  align-content: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 13px;
  background: rgba(255, 255, 255, 0.05);
  transition: border-color 220ms ease, background 220ms ease, transform 220ms ease;
}

.locker-file-card::before {
  width: 32px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  content: "";
  background:
    linear-gradient(135deg, transparent 0 70%, rgba(0, 0, 0, 0.22) 71%),
    #d9d7cc;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.locker-file-card span {
  color: #e3e3dc;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.78rem;
  line-height: 1.32;
  overflow-wrap: anywhere;
}

.locker-file-card.locked {
  border-color: rgba(255, 94, 88, 0.56);
  background:
    radial-gradient(circle at 50% 10%, rgba(255, 94, 88, 0.18), transparent 70%),
    rgba(80, 12, 14, 0.36);
  box-shadow: inset 0 0 28px rgba(255, 94, 88, 0.08), 0 16px 42px rgba(0, 0, 0, 0.34);
  transform: translateY(-2px);
}

.locker-file-card.locked::before {
  border-color: rgba(255, 94, 88, 0.52);
  background:
    radial-gradient(circle at 50% 42%, transparent 0 8px, rgba(255, 94, 88, 0.85) 9px 11px, transparent 12px),
    linear-gradient(to bottom, transparent 0 16px, rgba(255, 94, 88, 0.85) 17px 28px, transparent 29px),
    #241112;
}

.locker-file-card.locked span {
  color: #ffcfca;
}

.fake-data-card {
  position: relative;
  min-height: 88px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 13px;
  padding: 13px;
  background: rgba(255, 255, 255, 0.052);
  transition: border-color 220ms ease, background 220ms ease, transform 220ms ease;
}

.fake-data-card.highlight {
  border-color: rgba(255, 94, 88, 0.5);
  background: rgba(255, 94, 88, 0.09);
  transform: translateY(-2px);
}

.fake-data-card.highlight::after {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  content: "";
  background: var(--red);
  box-shadow: 0 0 14px rgba(255, 94, 88, 0.74);
}

.fake-data-card span {
  display: block;
  color: #dfdfd8;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.78rem;
  line-height: 1.35;
}

.archive-visual {
  display: grid;
  min-height: 210px;
  place-items: center;
  align-content: center;
  gap: 14px;
  padding: 28px;
}

.archive-icon {
  position: relative;
  width: 86px;
  height: 74px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 13px;
  background: linear-gradient(180deg, #d8d3bf, #9f9a88);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.5);
}

.archive-icon::before {
  position: absolute;
  top: -9px;
  left: 12px;
  width: 35px;
  height: 15px;
  border-radius: 8px 8px 0 0;
  content: "";
  background: #c9c2a9;
}

.archive-icon::after {
  position: absolute;
  top: 9px;
  bottom: 9px;
  left: 39px;
  width: 9px;
  content: "";
  background: repeating-linear-gradient(to bottom, rgba(0, 0, 0, 0.34) 0 5px, transparent 5px 10px);
}

.archive-visual strong {
  color: #e7e7df;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.92rem;
}

.stealer-process {
  position: absolute;
  right: 24px;
  bottom: 70px;
  z-index: 6;
  width: min(360px, calc(100% - 48px));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(5, 5, 6, 0.92);
  box-shadow: 0 22px 68px rgba(0, 0, 0, 0.56);
  opacity: 0;
  transform: scale(0.96) translateY(10px);
  pointer-events: none;
  transition: opacity 240ms ease, transform 240ms ease;
}

.locker-console {
  position: absolute;
  bottom: 62px;
  left: 28px;
  z-index: 6;
  width: min(470px, calc(100% - 56px));
  overflow: hidden;
  border: 1px solid rgba(255, 94, 88, 0.32);
  border-radius: 13px;
  background: rgba(8, 3, 4, 0.94);
  box-shadow: 0 24px 78px rgba(0, 0, 0, 0.58), 0 0 34px rgba(255, 94, 88, 0.08);
}

.locker-console-title {
  padding: 10px 12px;
  color: #ffd8d3;
  background: rgba(70, 12, 14, 0.72);
  font-size: 0.8rem;
}

.locker-console pre {
  min-height: 128px;
  margin: 0;
  padding: 14px;
  color: #ffd8d3;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.76rem;
  line-height: 1.58;
  white-space: pre-wrap;
}

.ransom-screen {
  position: absolute;
  inset: 22px;
  z-index: 12;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 94, 88, 0.62);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 94, 88, 0.18), transparent 18rem),
    linear-gradient(180deg, rgba(32, 4, 6, 0.98), rgba(4, 2, 3, 0.98));
  box-shadow: inset 0 0 56px rgba(255, 94, 88, 0.07), 0 30px 92px rgba(0, 0, 0, 0.72);
  animation: scenarioIn 240ms ease both;
}

.ransom-inner {
  display: grid;
  width: min(760px, calc(100% - 36px));
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.skull-icon {
  position: relative;
  width: 82px;
  height: 82px;
  border: 3px solid rgba(255, 94, 88, 0.78);
  border-radius: 50% 50% 44% 44%;
  box-shadow: 0 0 34px rgba(255, 94, 88, 0.34);
}

.skull-icon::before,
.skull-icon::after {
  position: absolute;
  top: 28px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  content: "";
  background: var(--red);
}

.skull-icon::before {
  left: 21px;
}

.skull-icon::after {
  right: 21px;
}

.ransom-inner h2 {
  margin: 0;
  color: #ffb8b2;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.ransom-inner p {
  max-width: 760px;
  margin-bottom: 0;
  color: #e7c8c5;
  line-height: 1.6;
}

.ransom-box {
  display: grid;
  gap: 8px;
  width: min(520px, 100%);
  margin-top: 6px;
  padding: 18px;
  border: 1px solid rgba(255, 94, 88, 0.38);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.36);
}

.ransom-box span,
.ransom-box code {
  color: #e8d8d5;
}

.ransom-box strong {
  color: #ffcec9;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
}

.ransom-box code {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  overflow-wrap: anywhere;
}

.encryption-theory {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(16px, 2.4vw, 22px);
  border: 1px solid rgba(var(--accent-rgb), 0.3);
  border-radius: 22px;
  background:
    radial-gradient(circle at 85% 18%, rgba(var(--accent-rgb), 0.2), transparent 18rem),
    radial-gradient(circle at 10% 0%, rgba(var(--accent-rgb), 0.13), transparent 16rem),
    rgba(14, 14, 16, 0.78);
  box-shadow: 0 20px 62px rgba(0, 0, 0, 0.38), 0 0 86px rgba(var(--accent-rgb), 0.22);
}

.encryption-theory::after {
  position: absolute;
  right: 22px;
  bottom: -44px;
  z-index: 0;
  content: "⚿";
  color: rgba(var(--accent-rgb), 0.06);
  font-size: 11rem;
  line-height: 1;
}

.encryption-theory h2 {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 14px;
  font-size: clamp(1.12rem, 2.4vw, 1.65rem);
}

.encryption-theory h2 span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px var(--accent-glow);
}

.encryption-theory h2 em {
  font-style: normal;
}

.locker-theory-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.locker-theory-card {
  min-height: 150px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.043);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.locker-theory-card:nth-child(3) {
  grid-column: 1 / -1;
}

.locker-theory-card h3 {
  margin-bottom: 8px;
  color: #f0f0ea;
  font-size: 1rem;
}

.locker-theory-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.92rem;
}

.stealer-process.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.process-title {
  padding: 9px 11px;
  color: #d8d8d1;
  background: rgba(45, 45, 48, 0.95);
  font-size: 0.8rem;
}

.stealer-process pre {
  min-height: 112px;
  margin: 0;
  padding: 13px;
  color: #d8d8d1;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.76rem;
  line-height: 1.58;
  white-space: pre-wrap;
}

.dark-square {
  border-radius: 6px;
  background: #1b1b1d;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.c2-body {
  display: grid;
  min-height: 516px;
  place-items: center;
  align-content: center;
  gap: 22px;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 32%, rgba(255, 255, 255, 0.06), transparent 14rem),
    rgba(4, 4, 5, 0.64);
}

.server-orb {
  display: grid;
  width: 138px;
  height: 138px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 0 38px rgba(255, 255, 255, 0.04), 0 24px 66px rgba(0, 0, 0, 0.42);
}

.server-orb span {
  position: relative;
  width: 58px;
  height: 72px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  background: linear-gradient(180deg, #2b2b2d, #111113);
}

.server-orb span::before,
.server-orb span::after {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 5px;
  border-radius: 999px;
  content: "";
  background: #dadad3;
}

.server-orb span::before {
  top: 18px;
}

.server-orb span::after {
  top: 34px;
  opacity: 0.42;
}

.received-log {
  width: min(430px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 15px;
  padding: 16px;
  background: rgba(10, 10, 11, 0.78);
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.5);
  animation: scenarioIn 240ms ease both;
}

.received-log h3 {
  margin-bottom: 12px;
  font-size: 1rem;
}

.received-log p,
.received-log strong {
  margin: 0 0 7px;
  color: #d8d8d1;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.78rem;
}

.received-log hr {
  height: 1px;
  margin: 13px 0;
  border: 0;
  background: rgba(255, 255, 255, 0.12);
}

.received-log strong {
  color: var(--green);
  text-shadow: 0 0 14px rgba(129, 216, 132, 0.34);
}

.desktop-window {
  min-height: 520px;
  padding: 12px;
}

.desktop-bg {
  position: relative;
  min-height: 496px;
  overflow: hidden;
  border-radius: 20px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.62)),
    radial-gradient(circle at 18% 24%, rgba(150, 150, 145, 0.32), transparent 16rem),
    radial-gradient(circle at 72% 44%, rgba(108, 108, 104, 0.28), transparent 18rem),
    radial-gradient(circle at 45% 80%, rgba(54, 54, 55, 0.55), transparent 22rem),
    linear-gradient(135deg, #2b2c2c 0%, #161717 45%, #090a0a 100%);
}

.desktop-bg::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 28% 30%, rgba(255, 255, 255, 0.075), transparent 7rem),
    radial-gradient(circle at 62% 34%, rgba(255, 255, 255, 0.05), transparent 9rem),
    radial-gradient(circle at 38% 70%, rgba(255, 255, 255, 0.035), transparent 6rem);
  filter: blur(1px);
}

.desktop-icons {
  position: relative;
  z-index: 2;
  display: grid;
  width: 86px;
  gap: 24px;
  padding: 28px 0 0 28px;
}

.desktop-icon {
  display: grid;
  justify-items: center;
  gap: 7px;
}

.icon-box {
  position: relative;
  display: block;
  width: 44px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 9px;
  background: rgba(235, 235, 225, 0.82);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.32);
}

.folder-shape::before {
  position: absolute;
  top: -5px;
  left: 6px;
  width: 18px;
  height: 8px;
  border-radius: 5px 5px 0 0;
  content: "";
  background: #d6d1bd;
}

.browser-shape {
  border-radius: 50%;
  background:
    radial-gradient(circle, #111 0 18%, transparent 19%),
    conic-gradient(from 20deg, #d0d6df, #888f9c, #f2f1ea, #d0d6df);
}

.desktop-icon b {
  padding: 3px 7px;
  border-radius: 5px;
  color: #f2f2f0;
  background: rgba(0, 0, 0, 0.76);
  font-size: 0.75rem;
  font-weight: 600;
}

.taskbar {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 46px;
  padding: 0 16px;
  background: rgba(8, 8, 8, 0.78);
  backdrop-filter: blur(12px);
}

.task-left,
.task-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.task-icon,
.wifi-icon {
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  opacity: 0.88;
}

.grid-icon {
  background:
    linear-gradient(#d8d8d1 0 0) 3px 3px / 6px 6px,
    linear-gradient(#d8d8d1 0 0) 13px 3px / 6px 6px,
    linear-gradient(#d8d8d1 0 0) 3px 13px / 6px 6px,
    linear-gradient(#d8d8d1 0 0) 13px 13px / 6px 6px;
  background-repeat: no-repeat;
}

.folder-icon {
  border-radius: 5px;
  background: #d9d3bf;
}

.globe-icon {
  border: 2px solid #d8d8d1;
  border-radius: 50%;
}

.shield-icon {
  clip-path: polygon(50% 0, 88% 14%, 80% 72%, 50% 100%, 20% 72%, 12% 14%);
  background: #d8d8d1;
}

.wifi-icon {
  position: relative;
}

.wifi-icon::before,
.wifi-icon::after {
  position: absolute;
  border: 2px solid #d8d8d1;
  border-top-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
  content: "";
  transform: rotate(45deg);
}

.wifi-icon::before {
  width: 18px;
  height: 18px;
}

.wifi-icon::after {
  width: 9px;
  height: 9px;
}

.taskbar time {
  color: #deded9;
  font-size: 0.82rem;
}

.hidden-console,
.camera-window {
  position: absolute;
  z-index: 7;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(5, 5, 6, 0.92);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.62);
  opacity: 0;
  transform: scale(0.96) translateY(10px);
  pointer-events: none;
  transition: opacity 260ms ease, transform 260ms ease;
}

.hidden-console.visible,
.camera-window.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.hidden-console {
  right: 8%;
  bottom: 82px;
  width: min(440px, 72%);
}

.mini-title,
.camera-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
  padding: 8px 10px;
  color: #d8d8d1;
  background: rgba(45, 45, 48, 0.95);
  font-size: 0.8rem;
}

.mini-title i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
}

.hidden-console pre,
.terminal-body {
  margin: 0;
  color: #d9d9d2;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  white-space: pre-wrap;
}

.hidden-console pre {
  min-height: 126px;
  padding: 14px;
  font-size: 0.78rem;
  line-height: 1.55;
}

.camera-window {
  top: 54px;
  right: 48px;
  width: min(420px, 74%);
}

.camera-title button {
  border: 0;
  color: #ddd;
  background: transparent;
  cursor: default;
}

.camera-preview {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 48%, rgba(155, 155, 155, 0.2), transparent 5rem),
    radial-gradient(circle at 52% 55%, rgba(80, 80, 80, 0.38), transparent 10rem),
    #030304;
}

.fake-noise {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    radial-gradient(circle at 28% 40%, rgba(255, 255, 255, 0.14) 0 1px, transparent 2px),
    radial-gradient(circle at 70% 62%, rgba(255, 255, 255, 0.12) 0 1px, transparent 2px);
  background-size: 17px 17px, 23px 23px;
  filter: blur(0.5px);
}

.rec-badge,
.quality,
.mic {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  padding: 5px 8px;
  color: #efefea;
  background: rgba(0, 0, 0, 0.65);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.72rem;
}

.rec-badge {
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.rec-badge i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 12px rgba(255, 94, 88, 0.75);
}

.quality {
  right: 12px;
  top: 12px;
}

.mic {
  right: 12px;
  bottom: 12px;
}

.terminal-window {
  min-height: 520px;
  overflow: hidden;
  background: rgba(3, 3, 4, 0.94);
}

.terminal-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: #151516;
}

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

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot.red {
  background: var(--red);
}

.dot.yellow {
  background: var(--yellow);
}

.dot.green {
  background: var(--green);
}

.terminal-header strong {
  overflow: hidden;
  color: #ddddda;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.86rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.terminal-body {
  min-height: 476px;
  padding: 18px;
  color: #d8d8d1;
  font-size: 0.84rem;
  line-height: 1.74;
}

.terminal-line {
  display: block;
  opacity: 0;
  transform: translateY(5px);
  animation: lineIn 220ms ease forwards;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.tutorial-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(15px, 2.6vw, 22px);
  border-color: rgba(var(--accent-rgb), 0.28);
  background:
    radial-gradient(circle at 18% -20%, rgba(var(--accent-rgb), 0.22), transparent 22rem),
    radial-gradient(circle at 92% 120%, rgba(var(--accent-rgb), 0.13), transparent 18rem),
    rgba(13, 13, 14, 0.88);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.42), 0 0 88px rgba(var(--accent-rgb), 0.2);
}

.tutorial-copy p {
  margin-bottom: 9px;
  color: var(--muted);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.8rem;
}

.tutorial-copy h2 {
  margin-bottom: 9px;
  font-size: clamp(1.2rem, 3vw, 1.85rem);
}

.tutorial-copy span {
  display: block;
  max-width: 840px;
  color: #cecdc7;
  line-height: 1.65;
}

.tutorial-button {
  min-width: min(280px, 100%);
  min-height: 54px;
  border: 0;
  border-radius: 999px;
  padding: 0 34px;
  color: #0b0b0c;
  background: var(--accent);
  box-shadow: var(--glow), 0 0 68px rgba(var(--accent-rgb), 0.24);
  cursor: pointer;
  font-size: clamp(1rem, 2.2vw, 1.22rem);
  font-weight: 850;
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.tutorial-button:hover,
.tutorial-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--glow), 0 0 96px rgba(var(--accent-rgb), 0.34);
  outline: none;
}

.theory-section {
  display: grid;
  gap: 14px;
  padding: 0 0 28px;
}

.theory-hero {
  justify-self: center;
  width: min(760px, 100%);
  padding: clamp(16px, 2.5vw, 22px);
  border: 1px solid rgba(var(--accent-rgb), 0.18);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 0%, rgba(var(--accent-rgb), 0.09), transparent 13rem),
    rgba(13, 13, 15, 0.78);
  box-shadow: 0 20px 62px rgba(0, 0, 0, 0.38);
}

.theory-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 14px;
  align-items: stretch;
}

.theory-main-card,
.theory-image-card {
  position: relative;
  isolation: isolate;
  border: 1px solid rgba(var(--accent-rgb), 0.18);
  border-radius: 22px;
  background:
    radial-gradient(circle at 22% 0%, rgba(var(--accent-rgb), 0.2), transparent 18rem),
    rgba(13, 13, 15, 0.78);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.38), 0 0 82px rgba(var(--accent-rgb), 0.2);
}

.theory-main-card {
  display: grid;
  align-content: start;
  gap: 13px;
  padding: clamp(16px, 2.5vw, 22px);
}

.theory-main-card h2 {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 0;
  font-size: clamp(1.55rem, 4vw, 2.8rem);
}

.theory-main-card h2 i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px var(--accent-glow);
}

.theory-main-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.62;
}

.theory-image-card {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 12px;
}

.theory-image-card img {
  display: block;
  width: 100%;
  height: clamp(190px, 28vw, 310px);
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.42), 0 0 34px rgba(var(--accent-rgb), 0.18);
}

.code-window {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(var(--accent-rgb), 0.34);
  border-radius: 15px;
  background:
    radial-gradient(circle at 14% 0%, rgba(var(--accent-rgb), 0.12), transparent 15rem),
    rgba(0, 0, 0, 0.38);
  box-shadow: inset 0 0 30px rgba(var(--accent-rgb), 0.08), 0 0 42px rgba(var(--accent-rgb), 0.16);
}

.code-window-bar {
  display: flex;
  gap: 9px;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #deded8;
  background: rgba(255, 255, 255, 0.045);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.78rem;
}

.code-window-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px var(--accent-glow);
}

.code-window pre {
  min-height: 178px;
  margin: 0;
  padding: 13px;
  color: #e6e6df;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: clamp(0.72rem, 1.7vw, 0.86rem);
  line-height: 1.55;
  white-space: pre-wrap;
}

.theory-hero h2 {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
  font-size: clamp(1.25rem, 3vw, 2rem);
}

.theory-hero h2 i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px var(--accent-glow);
}

.theory-hero p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.theory-flow,
.info-block {
  position: relative;
  isolation: isolate;
  border: 1px solid var(--border);
  border-radius: 22px;
  background:
    radial-gradient(circle at 10% 0%, rgba(var(--accent-rgb), 0.17), transparent 16rem),
    rgba(14, 14, 16, 0.74);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.34), 0 0 78px rgba(var(--accent-rgb), 0.18);
}

.theory-flow {
  padding: clamp(16px, 2.4vw, 22px);
}

.theory-flow h2 {
  margin-bottom: 14px;
  font-size: clamp(1.25rem, 3vw, 2rem);
}

.theory-rows {
  display: grid;
  gap: 9px;
}

.theory-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 13px;
  align-items: center;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.043);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.theory-row:hover {
  transform: translateY(-2px);
  border-color: rgba(var(--accent-rgb), 0.42);
  background: rgba(var(--accent-rgb), 0.08);
  box-shadow: 0 0 34px rgba(var(--accent-rgb), 0.18);
}

.theory-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  border-radius: 12px;
  color: var(--accent);
  background: var(--accent-soft);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.75rem;
  font-weight: 800;
}

.theory-row h3 {
  margin-bottom: 5px;
  font-size: 1rem;
}

.theory-row p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.52;
  font-size: 0.92rem;
}

.theory-row b {
  color: var(--accent);
  font-size: 1.35rem;
  font-weight: 400;
}

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

.info-block {
  padding: clamp(16px, 2.4vw, 22px);
}

.info-block h3 {
  margin-bottom: 14px;
  color: var(--accent);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.info-item {
  display: grid;
  gap: 7px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.info-item:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.info-item code {
  color: #f0f0ea;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.85rem;
}

.info-item p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.92rem;
}

@keyframes lineIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pageIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes scenarioIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .scenario-tabs {
    grid-column: 1 / -1;
    justify-self: stretch;
  }

  .header-tools {
    justify-self: end;
  }

  .visual-grid,
  .stealer-grid {
    grid-template-columns: 1fr;
  }

  .terminal-window,
  .desktop-window,
  .target-panel,
  .c2-panel,
  .locker-target-panel {
    min-height: 500px;
  }

  .desktop-bg,
  .terminal-body,
  .target-desktop,
  .c2-body,
  .locker-desktop {
    min-height: 476px;
  }

  .resource-widget {
    justify-self: stretch;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
  }

  .tutorial-panel {
    grid-template-columns: 1fr;
  }

  .tutorial-button {
    width: 100%;
  }

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

  .locker-file-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .locker-theory-grid {
    grid-template-columns: 1fr;
  }

  .theory-hero-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header,
  main {
    width: min(100% - 18px, 1180px);
  }

  .site-header {
    padding: 10px;
  }

  .site-header {
    grid-template-columns: 1fr;
  }

  .header-tools {
    justify-content: space-between;
    width: 100%;
  }

  .accent-picker {
    overflow-x: auto;
  }

  .header-note {
    max-width: 44vw;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .intro {
    padding-top: 30px;
  }

  .safety-note {
    border-radius: 14px;
  }

  .status-widget {
    justify-self: stretch;
  }

  .scenario-tabs {
    width: 100%;
  }

  .scenario-tab {
    flex: 1;
  }

  .desktop-window,
  .terminal-window,
  .target-panel,
  .c2-panel,
  .locker-target-panel {
    min-height: 430px;
    border-radius: 20px;
  }

  .desktop-bg,
  .target-desktop,
  .c2-body,
  .locker-desktop {
    min-height: 406px;
  }

  .resource-widget {
    grid-template-columns: 1fr;
  }

  .scenario-card,
  .theory-main-card,
  .theory-hero,
  .theory-flow,
  .info-block,
  .encryption-theory {
    padding: 16px;
  }

  .theory-image-card {
    padding: 10px;
  }

  .theory-image-card img {
    height: 210px;
  }

  .desktop-icons {
    padding: 20px 0 0 20px;
  }

  .hidden-console {
    right: 16px;
    bottom: 70px;
    width: calc(100% - 54px);
  }

  .camera-window {
    top: 40px;
    right: 16px;
    width: calc(100% - 54px);
  }

  .camera-preview {
    min-height: 210px;
  }

  .path-window {
    top: 52px;
    width: calc(100% - 32px);
  }

  .locker-doc-window {
    top: 42px;
    width: calc(100% - 32px);
  }

  .fake-data-grid,
  .locker-file-grid {
    grid-template-columns: 1fr;
  }

  .stealer-process {
    right: 16px;
    bottom: 60px;
    width: calc(100% - 32px);
  }

  .locker-console {
    left: 16px;
    bottom: 58px;
    width: calc(100% - 32px);
  }

  .ransom-screen {
    inset: 12px;
  }

  .ransom-inner {
    width: calc(100% - 24px);
  }

  .ransom-inner h2 {
    font-size: clamp(1.7rem, 10vw, 2.6rem);
  }

  .terminal-body {
    min-height: 386px;
    padding: 14px;
    font-size: 0.76rem;
  }

  .taskbar {
    height: 42px;
    padding: 0 10px;
  }

  .task-left,
  .task-right {
    gap: 9px;
  }

  .theory-grid,
  .theory-bottom-grid {
    grid-template-columns: 1fr;
  }

  .theory-row {
    grid-template-columns: 1fr auto;
  }

  .theory-icon {
    width: 38px;
    height: 38px;
  }

  .theory-row .theory-icon {
    grid-row: 1;
  }

  .theory-row div {
    grid-column: 1 / -1;
  }
}
