/* CleanBan Spoofer walkthrough — matches client UI (dark + #00AEEF accents) */
.cb-spoof-demo[hidden] {
  display: none !important;
}

.cb-spoof-demo {
  --cb-cyan: #00aeef;
  --cb-cyan-dim: rgba(0, 174, 239, 0.45);
  --cb-win-bg: rgba(8, 10, 16, 0.92);
  --cb-text: #f0f4fc;
  --cb-muted: #8b9bb8;
  --cb-green: #4ade80;
  position: absolute;
  inset: 0;
  border-radius: 12px;
  overflow: hidden;
  font-family: "Segoe UI", "Inter", system-ui, sans-serif;
  font-size: clamp(0.62rem, 1.35vw, 0.74rem);
  line-height: 1.45;
  color: var(--cb-text);
  background: #020308;
}
.cb-spoof-demo--autoplay.cb-spoof-demo--loop-gap .cb-spoof-win {
  animation: cbSpoofLoopBreathe 0.55s ease;
}
@keyframes cbSpoofLoopBreathe {
  0%,
  100% {
    transform: scale(1);
    filter: brightness(1);
  }
  50% {
    transform: scale(0.985);
    filter: brightness(1.06);
  }
}

.cb-spoof-bg {
  position: absolute;
  inset: -8%;
  background:
    radial-gradient(ellipse 55% 70% at 50% 42%, rgba(180, 20, 20, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 80% 90% at 50% 100%, rgba(0, 40, 80, 0.35) 0%, #000 72%),
    linear-gradient(180deg, #050508 0%, #0a0c12 100%);
  pointer-events: none;
}
.cb-spoof-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 38%, transparent 22%, rgba(0, 0, 0, 0.55) 58%);
  mix-blend-mode: multiply;
}
.cb-spoof-demo--autoplay .cb-spoof-bg {
  animation: cbSpoofBgDrift 14s ease-in-out infinite alternate;
}
@keyframes cbSpoofBgDrift {
  0% {
    filter: hue-rotate(0deg) brightness(1);
    transform: scale(1);
  }
  100% {
    filter: hue-rotate(-8deg) brightness(1.05);
    transform: scale(1.03);
  }
}

.cb-spoof-win {
  position: absolute;
  inset: 5% 4% 5% 4%;
  display: flex;
  border-radius: 10px;
  border: 1px solid var(--cb-cyan-dim);
  box-shadow:
    0 0 0 1px rgba(0, 174, 239, 0.08),
    0 0 40px rgba(0, 120, 200, 0.12);
  background: var(--cb-win-bg);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: box-shadow 0.4s ease, border-color 0.4s ease;
}
.cb-spoof-demo--autoplay .cb-spoof-win {
  animation: cbSpoofWinGlow 4.5s ease-in-out infinite;
}
@keyframes cbSpoofWinGlow {
  0%,
  100% {
    box-shadow:
      0 0 0 1px rgba(0, 174, 239, 0.08),
      0 0 40px rgba(0, 120, 200, 0.12);
    border-color: rgba(0, 174, 239, 0.35);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(0, 200, 255, 0.2),
      0 0 52px rgba(0, 174, 239, 0.22);
    border-color: rgba(0, 200, 255, 0.55);
  }
}

.cb-spoof-side {
  width: 44px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 12px;
  border-right: 1px solid rgba(0, 174, 239, 0.12);
  background: rgba(0, 0, 0, 0.35);
}

.cb-spoof-logo {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: 1.05rem;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #fff 0%, var(--cb-cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0, 174, 239, 0.5);
  margin-bottom: 18px;
}

.cb-spoof-navico {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cb-muted);
  margin-top: 6px;
}
.cb-spoof-navico svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}
.cb-spoof-navico--active {
  color: var(--cb-cyan);
  background: rgba(0, 174, 239, 0.12);
  box-shadow: 0 0 12px rgba(0, 174, 239, 0.2);
}
.cb-spoof-navico--bottom {
  margin-top: auto;
}

.cb-spoof-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  position: relative;
}

.cb-spoof-titlebar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px 4px 8px;
  border-bottom: 1px solid rgba(0, 174, 239, 0.1);
}

.cb-spoof-tabs {
  display: flex;
  gap: 18px;
  flex: 1;
  justify-content: center;
}
.cb-spoof-tab {
  background: none;
  border: none;
  color: var(--cb-muted);
  font: inherit;
  font-weight: 600;
  padding: 4px 10px 6px;
  cursor: default;
  position: relative;
  display: inline-block;
  border-radius: 6px;
  transition: color 0.25s ease, background 0.25s ease, transform 0.15s ease;
}
.cb-spoof-demo[data-tab="driver"] .cb-spoof-tab--instr,
.cb-spoof-demo[data-tab="instr"] .cb-spoof-tab--driver {
  animation: cbSpoofTabHint 2.8s ease-in-out infinite;
}
@keyframes cbSpoofTabHint {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.65;
  }
}
.cb-spoof-tab::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--cb-cyan);
  border-radius: 2px;
  box-shadow: 0 0 8px var(--cb-cyan);
  opacity: 0;
}
.cb-spoof-demo[data-tab="instr"] .cb-spoof-tab--instr {
  color: var(--cb-cyan);
}
.cb-spoof-demo[data-tab="instr"] .cb-spoof-tab--instr::after {
  opacity: 1;
}
.cb-spoof-demo[data-tab="driver"] .cb-spoof-tab--driver {
  color: var(--cb-cyan);
}
.cb-spoof-demo[data-tab="driver"] .cb-spoof-tab--driver::after {
  opacity: 1;
}

.cb-spoof-ctrl {
  display: flex;
  gap: 12px;
  color: #5a6578;
  font-size: 0.75rem;
  padding-right: 4px;
}

.cb-spoof-body {
  flex: 1;
  position: relative;
  min-height: 0;
  overflow: hidden;
}

.cb-spoof-panel {
  position: absolute;
  inset: 0;
  padding: 10px 12px 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px) scale(0.99);
  transition:
    opacity 0.4s cubic-bezier(0.33, 1, 0.68, 1),
    visibility 0.4s,
    transform 0.45s cubic-bezier(0.33, 1, 0.68, 1);
  overflow-y: auto;
}
.cb-spoof-demo[data-phase="instr"] .cb-spoof-panel--instr,
.cb-spoof-demo[data-phase="driver"] .cb-spoof-panel--driver,
.cb-spoof-demo[data-phase="cleaning"] .cb-spoof-panel--driver,
.cb-spoof-demo[data-phase="driver_post"] .cb-spoof-panel--driver,
.cb-spoof-demo[data-phase="load_hw"] .cb-spoof-panel--loading,
.cb-spoof-demo[data-phase="load_render"] .cb-spoof-panel--loading,
.cb-spoof-demo[data-phase="success"] .cb-spoof-panel--success {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.cb-spoof-instr-title {
  color: var(--cb-cyan);
  font-weight: 600;
  margin: 0 0 8px;
  font-size: 0.95em;
}
.cb-spoof-demo[data-phase="instr"].cb-spoof-demo--autoplay .cb-spoof-instr-title {
  animation: cbSpoofTitlePulse 2.2s ease-in-out infinite;
}
@keyframes cbSpoofTitlePulse {
  0%,
  100% {
    text-shadow: 0 0 12px rgba(0, 174, 239, 0.25);
  }
  50% {
    text-shadow: 0 0 22px rgba(0, 174, 239, 0.5);
  }
}
.cb-spoof-instr-text {
  color: #d4dce8;
  margin: 0;
  white-space: pre-line;
  font-size: 0.88em;
  line-height: 1.55;
}

.cb-spoof-seed-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.cb-spoof-seed {
  flex: 1;
  min-width: 0;
  font-family: ui-monospace, monospace;
  font-size: 0.78em;
  color: #c8d4e8;
  padding: 6px 8px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(0, 174, 239, 0.2);
  border-radius: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.cb-spoof-demo--autoplay .cb-spoof-panel--driver .cb-spoof-seed {
  animation: cbSpoofSeedShimmer 2.5s ease-in-out infinite;
}
@keyframes cbSpoofSeedShimmer {
  0%,
  100% {
    border-color: rgba(0, 174, 239, 0.22);
    box-shadow: none;
  }
  50% {
    border-color: rgba(0, 200, 255, 0.45);
    box-shadow: 0 0 12px rgba(0, 174, 239, 0.12);
  }
}
.cb-spoof-btn {
  appearance: none;
  border: 1px solid rgba(0, 174, 239, 0.35);
  background: linear-gradient(180deg, rgba(0, 90, 140, 0.5), rgba(0, 50, 90, 0.6));
  color: #e8f4ff;
  font: inherit;
  font-weight: 600;
  font-size: 0.82em;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: default;
  white-space: nowrap;
  transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease;
}
.cb-spoof-btn.cb-spoof--pressed,
.cb-spoof-tab.cb-spoof--pressed {
  transform: scale(0.94);
  filter: brightness(1.15);
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.35);
}
.cb-spoof-modal-actions button.cb-spoof--pressed {
  transform: scale(0.96);
  filter: brightness(0.92);
}
.cb-spoof-btn--ghost {
  opacity: 0.55;
}
.cb-spoof-btn--primary-lg {
  display: block;
  width: 100%;
  max-width: 220px;
  margin: 0 auto 8px;
  padding: 10px 16px;
  font-size: 0.9em;
  border-color: var(--cb-cyan);
  box-shadow: 0 0 16px rgba(0, 174, 239, 0.15);
}
.cb-spoof-btn--hot {
  box-shadow: 0 0 0 2px rgba(0, 174, 239, 0.45), 0 0 24px rgba(0, 174, 239, 0.25);
}

.cb-spoof-driver-head {
  text-align: center;
  margin-bottom: 10px;
}
.cb-spoof-driver-head h3 {
  margin: 0;
  font-size: 1.35em;
  font-weight: 700;
  color: #fff;
}
.cb-spoof-driver-head p {
  margin: 4px 0 0;
  color: var(--cb-cyan);
  font-size: 0.88em;
}

.cb-spoof-check {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: var(--cb-muted);
  font-size: 0.85em;
}
.cb-spoof-check i {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  background: var(--cb-cyan);
  box-shadow: inset 0 0 0 2px #020308;
}

.cb-spoof-expiry {
  margin-top: 12px;
  text-align: center;
  color: var(--cb-cyan);
  font-size: 0.82em;
}

.cb-spoof-clean-bar-wrap {
  margin-top: 14px;
  max-width: 240px;
  margin-left: auto;
  margin-right: auto;
  display: none;
}
.cb-spoof-demo[data-phase="cleaning"] .cb-spoof-clean-bar-wrap {
  display: block;
}
.cb-spoof-clean-note {
  margin: 8px 0 0;
  text-align: center;
  color: var(--cb-muted);
  font-size: 0.85em;
}
.cb-spoof-demo[data-phase="cleaning"] .cb-spoof-clean-note {
  animation: cbSpoofBlink 0.9s ease-in-out infinite;
}
@keyframes cbSpoofBlink {
  0%,
  100% {
    opacity: 0.65;
  }
  50% {
    opacity: 1;
    color: var(--cb-cyan);
  }
}
.cb-spoof-clean-bar {
  height: 6px;
  border-radius: 99px;
  background: rgba(0, 40, 70, 0.6);
  overflow: hidden;
}
.cb-spoof-clean-bar span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--cb-cyan), #38bdf8);
  border-radius: inherit;
}
.cb-spoof-demo[data-phase="cleaning"] .cb-spoof-clean-bar span {
  animation: cbSpoofCleanBar 2.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes cbSpoofCleanBar {
  0% {
    width: 0;
  }
  70% {
    width: 92%;
  }
  100% {
    width: 100%;
  }
}

.cb-spoof-panel--loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.cb-spoof-spinner {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 3px solid rgba(0, 174, 239, 0.15);
  border-top-color: var(--cb-cyan);
  animation: cbSpoofSpin 0.75s linear infinite;
  box-shadow: 0 0 24px rgba(0, 174, 239, 0.2);
}
.cb-spoof-spinner::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(0, 174, 239, 0.12);
  animation: cbSpoofSpinOuter 1.8s ease-in-out infinite;
}
@keyframes cbSpoofSpin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes cbSpoofSpinOuter {
  0%,
  100% {
    opacity: 0.35;
    transform: scale(1);
  }
  50% {
    opacity: 0.85;
    transform: scale(1.08);
  }
}
.cb-spoof-load-text {
  margin-top: 14px;
  color: var(--cb-muted);
  font-size: 0.9em;
}
.cb-spoof-load-line--render {
  display: none;
}
.cb-spoof-demo[data-phase="load_render"] .cb-spoof-load-line--hw {
  display: none;
}
.cb-spoof-demo[data-phase="load_render"] .cb-spoof-load-line--render {
  display: block;
}

.cb-spoof-panel--success {
  padding-top: 8px;
}
.cb-spoof-success-title {
  text-align: center;
  color: var(--cb-green);
  font-size: 1.25em;
  font-weight: 800;
  margin: 0 0 4px;
  text-shadow: 0 0 20px rgba(74, 222, 128, 0.35);
}
.cb-spoof-demo[data-phase="success"].cb-spoof-demo--autoplay .cb-spoof-success-title {
  animation: cbSpoofSuccessPop 0.65s cubic-bezier(0.34, 1.3, 0.64, 1) both;
}
@keyframes cbSpoofSuccessPop {
  0% {
    transform: scale(0.7);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.cb-spoof-success-sub {
  text-align: center;
  color: var(--cb-muted);
  font-size: 0.82em;
  margin: 0 0 12px;
}
.cb-spoof-hw-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 140px;
  overflow-y: auto;
  padding-right: 4px;
}
.cb-spoof-hw-row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 10px;
  background: rgba(20, 28, 42, 0.85);
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  font-family: ui-monospace, monospace;
  font-size: 0.72em;
  opacity: 0;
  transform: translateX(-10px);
}
.cb-spoof-demo:not([data-phase="success"]) .cb-spoof-hw-row {
  animation: none !important;
}
.cb-spoof-demo[data-phase="success"] .cb-spoof-hw-row {
  animation: cbSpoofRowIn 0.5s cubic-bezier(0.34, 1.2, 0.64, 1) forwards;
}
.cb-spoof-demo[data-phase="success"] .cb-spoof-hw-row:nth-child(1) {
  animation-delay: 0.08s;
}
.cb-spoof-demo[data-phase="success"] .cb-spoof-hw-row:nth-child(2) {
  animation-delay: 0.18s;
}
.cb-spoof-demo[data-phase="success"] .cb-spoof-hw-row:nth-child(3) {
  animation-delay: 0.28s;
}
.cb-spoof-demo[data-phase="success"] .cb-spoof-hw-row:nth-child(4) {
  animation-delay: 0.38s;
}
@keyframes cbSpoofRowIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.cb-spoof-hw-label {
  color: var(--cb-muted);
  flex-shrink: 0;
}
.cb-spoof-hw-val {
  text-align: right;
  word-break: break-all;
}
.cb-spoof-hw-val .cb-g {
  color: var(--cb-green);
  font-weight: 600;
}

.cb-spoof-foot {
  flex-shrink: 0;
  padding: 6px 10px;
  font-size: 0.68em;
  color: #5a6578;
  border-top: 1px solid rgba(0, 174, 239, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.cb-spoof-foot-copy {
  text-align: center;
}
.cb-spoof-foot-meta {
  display: none;
  color: #4a5568;
}
.cb-spoof-demo[data-phase="success"] .cb-spoof-foot-meta {
  display: inline;
}

.cb-spoof-demo[data-phase="driver_post"] .cb-spoof-btn-load.cb-spoof-btn--primary-lg {
  box-shadow: 0 0 0 2px rgba(0, 174, 239, 0.5), 0 0 28px rgba(0, 174, 239, 0.3);
  animation: cbSpoofPulseBtn 1.2s ease-in-out infinite;
}
@keyframes cbSpoofPulseBtn {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}
@media (prefers-reduced-motion: reduce) {
  .cb-spoof-demo[data-phase="driver_post"] .cb-spoof-btn-load.cb-spoof-btn--primary-lg {
    animation: none;
  }
}

.cb-spoof-modal-layer {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
  padding: 12px;
}
.cb-spoof-demo[data-phase="modal_restart"] .cb-spoof-modal-layer--restart,
.cb-spoof-demo[data-phase="modal_first"] .cb-spoof-modal-layer--first,
.cb-spoof-demo[data-phase="modal_cod"] .cb-spoof-modal-layer--cod {
  opacity: 1;
  visibility: visible;
}
.cb-spoof-demo[data-phase="modal_restart"] .cb-spoof-modal-layer--restart .cb-spoof-modal,
.cb-spoof-demo[data-phase="modal_first"] .cb-spoof-modal-layer--first .cb-spoof-modal,
.cb-spoof-demo[data-phase="modal_cod"] .cb-spoof-modal-layer--cod .cb-spoof-modal {
  animation: cbSpoofModalIn 0.42s cubic-bezier(0.34, 1.25, 0.64, 1) both;
}
@keyframes cbSpoofModalIn {
  0% {
    opacity: 0;
    transform: scale(0.88) translateY(12px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.cb-spoof-modal {
  background: #f2f2f2;
  color: #1a1a1a;
  border-radius: 6px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.55);
  max-width: 320px;
  width: 100%;
  font-size: 0.78rem;
  line-height: 1.45;
  border: 1px solid #ccc;
}
.cb-spoof-modal-h {
  padding: 8px 10px;
  font-weight: 600;
  background: linear-gradient(180deg, #fff, #e8e8e8);
  border-bottom: 1px solid #ccc;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cb-spoof-modal-b {
  padding: 10px 12px;
}
.cb-spoof-modal-b p {
  margin: 0 0 8px;
}
.cb-spoof-modal-b ol {
  margin: 0;
  padding-left: 1.1rem;
}
.cb-spoof-modal-b li {
  margin-bottom: 6px;
}
.cb-spoof-modal-actions {
  padding: 8px 12px 10px;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  background: #e8e8e8;
  border-top: 1px solid #ccc;
}
.cb-spoof-modal-actions button {
  min-width: 64px;
  padding: 5px 12px;
  font: inherit;
  font-size: 0.9em;
  border: 1px solid #888;
  border-radius: 3px;
  background: linear-gradient(180deg, #fff, #ddd);
  cursor: default;
}
.cb-spoof-modal-actions button.cb-spoof-modal-primary {
  outline: 1px solid #0066cc;
}

.cb-spoof-warn {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.cb-spoof-warn-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: #ffc107;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #333;
  font-size: 14px;
}

.cb-spoof-reboot {
  position: absolute;
  inset: 0;
  z-index: 25;
  background: #000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #444;
  font-size: 0.8rem;
}
.cb-spoof-demo[data-phase="reboot"] .cb-spoof-reboot {
  opacity: 1;
  visibility: visible;
}
.cb-spoof-demo--autoplay[data-phase="reboot"] .cb-spoof-reboot {
  animation: cbSpoofRebootFlash 1s ease-in-out;
}
@keyframes cbSpoofRebootFlash {
  0%,
  100% {
    color: #333;
  }
  40% {
    color: var(--cb-cyan);
    text-shadow: 0 0 20px rgba(0, 174, 239, 0.4);
  }
}

.cb-spoof-cursor {
  position: absolute;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  overflow: visible;
}
.cb-spoof-cursor-img {
  position: absolute;
  left: 0;
  top: 0;
  will-change: transform;
  opacity: 0;
  transition: opacity 0.22s ease;
  filter: drop-shadow(1px 2px 2px rgba(0, 0, 0, 0.55));
}
.cb-spoof-cursor.is-visible .cb-spoof-cursor-img {
  opacity: 1;
}
.cb-spoof-cursor-svg {
  display: block;
  vertical-align: top;
}
.cb-spoof-cursor-ripple {
  position: absolute;
  left: 1px;
  top: 2px;
  width: 26px;
  height: 26px;
  margin: -13px 0 0 -13px;
  border-radius: 50%;
  border: 2px solid rgba(0, 174, 239, 0.75);
  opacity: 0;
  pointer-events: none;
}
.cb-spoof-cursor--click .cb-spoof-cursor-ripple {
  animation: cbSpoofRipple 0.38s ease-out forwards;
}
@keyframes cbSpoofRipple {
  0% {
    transform: scale(0.35);
    opacity: 0.9;
  }
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}
.cb-spoof-cursor--click .cb-spoof-cursor-svg {
  animation: cbSpoofCursorPress 0.2s ease;
}
@keyframes cbSpoofCursorPress {
  50% {
    transform: scale(0.92);
  }
}

@media (max-width: 520px) {
  .cb-spoof-win {
    inset: 4% 2%;
  }
  .cb-spoof-side {
    width: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cb-spoof-spinner,
  .cb-spoof-spinner::before,
  .cb-spoof-clean-bar span,
  .cb-spoof-clean-note {
    animation: none;
  }
  .cb-spoof-panel {
    transition: none;
    transform: none;
  }
  .cb-spoof-clean-bar span {
    width: 100%;
  }
  .cb-spoof-demo--autoplay .cb-spoof-bg,
  .cb-spoof-demo--autoplay .cb-spoof-win {
    animation: none;
  }
  .cb-spoof-hw-row {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
