/* Fancy CPR simulator UI */
.cpr-sim {
  position: relative;
  padding: 32px 20px 56px;
  color: #111827;
  overflow: visible;
}
/* Ensure the full front-page wrapper scrolls when content extends */
.wp-block-group.min-h-screen {
  overflow: auto;
  position: relative;
}

/* Sticky Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: saturate(130%) blur(6px);
  border-bottom: 1px solid rgba(17, 24, 39, 0.06);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}
.site-header .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  font-weight: 900;
  letter-spacing: 0.02em;
  font-size: 1.1rem;
  color: #111827;
}
.site-nav {
  display: flex;
  gap: 16px;
}
.site-nav a {
  color: #374151;
  text-decoration: none;
  font-weight: 700;
  padding: 8px 10px;
  border-radius: 10px;
}
.site-nav a:hover {
  background: #f3f4f6;
  color: #111827;
}

/* Full-width info band */
.info-band {
  margin: 48px 0 0;
  padding: 0;
  background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
  border-top: 1px solid rgba(17, 24, 39, 0.06);
}
.info-wrap {
  max-width: 1200px;
  margin: 0 auto 64px;
  padding: 28px 16px;
  position: relative;
  z-index: auto;
}
.info-hero {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(17, 24, 39, 0.06);
  padding: 32px;
}
.info-hero--full {
  border-radius: 0;
  box-shadow: none;
  border-left: 0;
  border-right: 0;
}
.info-hero h2 {
  margin: 0 0 12px;
  font-weight: 900;
  color: #111827;
  font-size: 1.9rem;
}
.info-hero p {
  margin: 0 0 16px;
  color: #374151;
  line-height: 1.7;
  font-size: 1.08rem;
}
.info-cta {
  display: inline-block;
  padding: 12px 18px;
  background: #111827;
  color: #fff;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
}
.info-cta:hover {
  background: #1f2937;
}

/* Footer */
.site-footer {
  margin-top: 40px;
  background: #111827;
  color: #e5e7eb;
}
.site-footer .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 22px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.site-footer a {
  color: #e5e7eb;
  text-decoration: none;
  font-weight: 700;
}
.site-footer a:hover {
  text-decoration: underline;
}

/* Scroll reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(24px) scale(0.96);
  transition: transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.7s ease;
  will-change: transform, opacity;
}
.reveal-up {
  transform: translateY(32px) scale(0.96);
}
.reveal-right {
  transform: translateX(48px) scale(0.96);
}
.reveal-left {
  transform: translateX(-48px) scale(0.96);
}
.reveal-zoom {
  transform: scale(0.88);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.2s;
}
.delay-3 {
  transition-delay: 0.3s;
}

/* Scroll-driven hero micro-motion */
.cpr-sim {
  --scroll: 0;
}
.sim-heart {
  transform: translateY(calc(var(--scroll) * 18px));
  transition: transform 0.25s ease;
}
.target-ring {
  transform: translate(-50%, -50%) scale(calc(1 - (var(--scroll) * 0.06)));
}
/* Subtle parallax for content card */
.info-hero {
  transform: translateY(calc(var(--scroll) * 8px));
  transition: transform 0.25s ease;
}
.cpr-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  --c1: 255, 77, 109; /* base red */
  --c2: 16, 185, 129; /* base green */
  --c3: 58, 134, 255; /* base blue */
  --a1: 0.22;
  --a2: 0.18;
  --a3: 0.18;
  --x1: 30%;
  --y1: 20%;
  --x2: 70%;
  --y2: 80%;
  background: radial-gradient(
      1000px 600px at var(--x1) var(--y1),
      rgba(var(--c1), var(--a1)),
      transparent 60%
    ),
    radial-gradient(
      1000px 600px at var(--x2) var(--y2),
      rgba(var(--c3), var(--a2)),
      transparent 60%
    ),
    linear-gradient(180deg, #f9fafb 0%, #eef2ff 100%);
  transition: background 200ms ease, filter 240ms ease;
  will-change: background;
}
.cpr-bg.bg-perfect {
  --c1: 16, 185, 129;
  --c3: 16, 185, 129;
  --a1: 0.22;
  --a2: 0.16;
  filter: saturate(1.1) brightness(1.06);
  animation: bg-pulse 1s ease-in-out infinite;
}
.cpr-bg.bg-slow {
  --c1: 58, 134, 255;
  --c3: 58, 134, 255;
  --a1: 0.22;
  --a2: 0.16;
  filter: saturate(1.05);
}
.cpr-bg.bg-fast {
  --c1: 255, 0, 110;
  --c3: 255, 77, 109;
  --a1: 0.24;
  --a2: 0.18;
  filter: saturate(1.15);
}
@keyframes bg-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.92;
  }
}
.sim-topbar {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin: 0 auto 16px;
  max-width: 1100px;
}
.sim-pill {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(6px);
  font-weight: 600;
}
.sim-icon {
  font-size: 16px;
}
.sim-text {
  opacity: 0.85;
}

/* Stage container (no grid) */
.sim-stage {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: 12px;
}

/* Fullwidth variant */
.cpr-sim.fullwidth {
  padding: 0;
}
.cpr-sim.fullwidth .sim-topbar {
  max-width: none;
  padding: 16px;
}
.cpr-sim.fullwidth .sim-grid {
  max-width: none;
  grid-template-columns: 1fr;
}
.cpr-sim.fullwidth .sim-heart {
  border-radius: 0;
  padding: 18px 0;
}
.cpr-sim.fullwidth .target-ring {
  width: min(80vmin, 900px);
  height: min(80vmin, 900px);
}
.cpr-sim.fullwidth #cpr-heart {
  max-width: 1400px;
  margin-inline: auto;
}

.sim-heart {
  position: relative;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  padding: 24px;
  margin: 24px auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 900px) {
  .sim-heart { padding: 16px; margin: 16px auto; }
}
.sim-heart .heart-container {
  width: 100%;
  max-width: none;
  margin-inline: auto;
}
.sim-heart {
  position: relative;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  padding: 16px;
  margin: 16px auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.target-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 64vmin;
  height: 64vmin;
  max-width: 820px;
  max-height: 820px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  box-shadow: inset 0 0 0 3px rgba(17, 24, 39, 0.06);
  pointer-events: none;
  transition: box-shadow 0.2s ease;
  z-index: 1;
}
.revive-progress {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 64vmin;
  height: 64vmin;
  max-width: 820px;
  max-height: 820px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  z-index: 2;
  pointer-events: none;
}
.revive-progress::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0.95;
  z-index: 0;
  /* Thin ring arc that fills with progress; neutral remainder visible */
  background: conic-gradient(#10b981 var(--revive-pct, 0%), #e5e7eb 0);
  -webkit-mask: radial-gradient(
    farthest-side,
    transparent calc(100% - 12px),
    #000 calc(100% - 11px)
  );
  mask: radial-gradient(
    farthest-side,
    transparent calc(100% - 12px),
    #000 calc(100% - 11px)
  );
  transition: opacity 0.25s ease;
}
.revive-progress.hidden::before {
  opacity: 0;
}
/* Fill the progress container with the heart container, centered */
.sim-heart .heart-container {
  position: relative;
  z-index: 100;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* SOS speech bubbles overlay */
.sos-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 60;
  overflow: hidden;
}
.sos-bubble {
  position: absolute;
  color: #111827;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  white-space: nowrap;
  opacity: 0.92;
  transform: translate(-50%, -50%) rotate(var(--rot, 0deg))
    scale(var(--scale, 1));
  animation: sosFloat var(--dur, 7s) ease-in-out infinite;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.08));
}
.sos-bubble.alt {
  background: #111827;
  color: #fff;
  opacity: 0.95;
}
.sos-bubble.warn {
  background: #ffe8e8;
  color: #b91c1c;
}
@keyframes sosFloat {
  0% {
    transform: translate(
        calc(-50% + var(--dx, 0px)),
        calc(-50% + var(--dy, 0px))
      )
      rotate(var(--rot, 0deg)) scale(var(--scale, 1));
    opacity: 0.9;
  }
  50% {
    transform: translate(
        calc(-50% + var(--dx2, 0px)),
        calc(-50% + var(--dy2, 0px))
      )
      rotate(calc(var(--rot, 0deg) + 3deg)) scale(calc(var(--scale, 1) * 1.06));
    opacity: 1;
  }
  100% {
    transform: translate(
        calc(-50% + var(--dx, 0px)),
        calc(-50% + var(--dy, 0px))
      )
      rotate(var(--rot, 0deg)) scale(var(--scale, 1));
    opacity: 0.9;
  }
}
.sos-bubbles.hidden {
  opacity: 0;
  transition: opacity 0.4s ease;
}
.mindmap-overlay { position: absolute; inset: 0; z-index: 70; pointer-events: none; opacity: .95; }
/* Doodle text chips */
.doodle-text { position: absolute; transform: translate(-50%,-50%) rotate(var(--rot, 0deg));
  color: #111827; background: rgba(255,255,255,0.96); border-radius: 999px; padding: 6px 12px; font-weight: 900;
  letter-spacing: .02em; box-shadow: 0 6px 16px rgba(0,0,0,.12); white-space: nowrap; opacity: .95; font-size: var(--fs, 14px);
  text-shadow: 0 1px 0 rgba(255,255,255,.6); transition: transform .2s ease;
}
.doodle-text.alt { background: #111827; color: #fff; }
.doodle-text.warn { background: #ffe8e8; color: #b91c1c; }
.doodle-text.wiggle { animation: doodleWiggle var(--wdur,0.6s) ease-in-out var(--wdelay,0s) 1; }
@keyframes doodleWiggle {
  0%   { transform: translate(-50%,-50%) rotate(calc(var(--rot,0deg) - 4deg)) scale(1); }
  40%  { transform: translate(-50%,-50%) rotate(calc(var(--rot,0deg) + 5deg)) scale(1.06); }
  70%  { transform: translate(-50%,-50%) rotate(calc(var(--rot,0deg) - 3deg)) scale(1.02); }
  100% { transform: translate(-50%,-50%) rotate(calc(var(--rot,0deg))) scale(1); }
}
.mindmap-overlay.hidden { opacity: 0; transition: opacity .35s ease; }
.mindmap-overlay.hidden { opacity: 0; transition: opacity .35s ease; }
.target-ring.pulse {
  animation: ringPulse 0.4s ease-out;
}
@keyframes ringPulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.04);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}
.target-ring.green {
  box-shadow: inset 0 0 0 5px #10b98166, 0 0 80px #10b98144;
}
.target-ring.blue {
  box-shadow: inset 0 0 0 5px #3a86ff66, 0 0 80px #3a86ff44;
}
.target-ring.red {
  box-shadow: inset 0 0 0 5px #ff006e66, 0 0 80px #ff006e44;
}

.sim-panel {
  position: relative;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  display: grid;
  gap: 18px;
}

.patient {
  display: grid;
  gap: 10px;
}
.patient-body {
  position: relative;
  height: 240px;
  border-radius: 16px;
  background: linear-gradient(180deg, #111827 0%, #1f2937 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  display: grid;
  place-items: center;
}
.patient-body::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(255, 77, 109, 0.2),
    rgba(0, 191, 255, 0.2)
  );
  z-index: -1;
  filter: blur(8px);
}
.patient-heart {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #ef4444;
  box-shadow: 0 0 20px #ef4444;
  animation: patient-pulse 1.2s ease-in-out infinite;
}
@keyframes patient-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 12px #ef4444;
  }
  50% {
    transform: scale(1.3);
    box-shadow: 0 0 28px #ef4444;
  }
}
.patient-status {
  text-align: center;
  font-weight: 700;
  color: #374151;
}
.patient.ok .patient-heart {
  background: #10b981;
  box-shadow: 0 0 24px #10b981;
}
.patient.slow .patient-heart {
  background: #3a86ff;
  box-shadow: 0 0 24px #3a86ff;
}
.patient.fast .patient-heart {
  background: #ff006e;
  box-shadow: 0 0 24px #ff006e;
}

.meter {
  display: grid;
  gap: 10px;
}
.meter-labels {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  color: #4b5563;
}
.meter-bar {
  height: 14px;
  border-radius: 999px;
  background: #e5e7eb;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  overflow: hidden;
}
.meter-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #ef4444, #f59e0b, #10b981);
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.35);
  transition: width 0.25s ease;
}

.sim-footer {
  position: relative;
  max-width: 1100px;
  margin: 20px auto 0;
  display: flex;
  justify-content: center;
}
.legend {
  display: flex;
  gap: 18px;
  align-items: center;
  background: rgba(255, 255, 255, 0.6);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  color: #374151;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  display: inline-block;
  margin-right: 6px;
}
.dot-green {
  background: #10b981;
  box-shadow: 0 0 10px #10b981;
}
.dot-blue {
  background: #3a86ff;
  box-shadow: 0 0 10px #3a86ff;
}
.dot-red {
  background: #ff006e;
  box-shadow: 0 0 10px #ff006e;
}

/* Revived / Flatline screen cues */
.revive-burst {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.revive-burst::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  background: #10b98155;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  animation: revive-ring 1s ease-out forwards;
}
@keyframes revive-ring {
  to {
    width: 1200px;
    height: 1200px;
    opacity: 0;
  }
}
.flatline-flash {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  /* Soft gradient that fades to transparent at the bottom to avoid cut-off on scroll */
  background: linear-gradient(
    to bottom,
    rgba(255, 0, 110, 0.28) 0%,
    rgba(255, 0, 110, 0.18) 40%,
    rgba(255, 0, 110, 0.08) 70%,
    rgba(255, 0, 110, 0) 100%
  );
  animation: flatline-flash 0.6s ease-out forwards;
}
@keyframes flatline-flash {
  from {
    opacity: 0.9;
  }
  to {
    opacity: 0;
  }
}

/* Big BPM badge near the heart */
.bpm-badge {
  position: static;
  margin: 20px auto 0;
  z-index: 30;
  display: grid;
  place-items: center;
  width: 120px;
  height: 120px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.status-dot {
  position: static; /* flow with content */
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #ffffff8f;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.15), 0 0 8px #ffffffaa inset;
  display: block;
  margin: 8px auto 0; /* center under the heart */
}
/* Optional modifier to pin to top-right if needed later */
.status-dot--top {
  position: absolute;
  top: 14px;
  right: 14px;
  margin: 0;
}
.score-badge { position:absolute; top: 14px; right: 44px; z-index: 30; display: inline-flex; align-items: center; gap: 8px; padding: 6px 10px; border-radius: 12px; background: rgba(255,255,255,0.96); box-shadow: 0 8px 20px rgba(0,0,0,.08); font-weight: 900; color: #111827; letter-spacing: .01em; }
.score-badge .score-label { opacity: .6; font-weight: 800; font-size: 12px; text-transform: uppercase; }
.score-badge .score-num { font-size: 16px; }
.score-badge.bump { animation: scoreBump .35s ease; }
@keyframes scoreBump { 0% { transform: scale(1); } 40% { transform: scale(1.12); } 100% { transform: scale(1); } }
.score-panel { position: relative; z-index: 30; display:flex; flex-direction: column; align-items: center; gap: 2px; margin: 6px auto 10px; }
.score-panel .score-title { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; font-weight: 800; color: #4b5563; }
.score-panel .score-value { font-size: 22px; font-weight: 900; color: #111827; }
.score-panel.hidden { display: none; }
.score-panel.reveal-final { animation: scoreReveal .6s cubic-bezier(.2,.8,.2,1); }
@keyframes scoreReveal { 0% { opacity: 0; transform: translateY(12px) scale(.96); } 60% { opacity: 1; transform: translateY(0) scale(1.06); } 100% { transform: translateY(0) scale(1); } }
.score-value.spark { animation: scoreSpark .9s ease; text-shadow: 0 0 0 rgba(16,185,129,0); }
@keyframes scoreSpark { 0% { text-shadow: 0 0 0 rgba(16,185,129,0); } 30% { text-shadow: 0 0 18px rgba(16,185,129,.55); } 100% { text-shadow: 0 0 0 rgba(16,185,129,0); } }
.info-reset { margin-left: 12px; border: 0; border-radius: 10px; padding: 6px 10px; background: #111827; color: #fff; font-weight: 800; cursor: pointer; }
.info-reset:hover { background: #1f2937; }
.bpm-helper {
  position: static;
  margin: 12px auto 0;
  z-index: 1;
  text-align: center;
  font-weight: 700;
  color: #4b5563;
  background: rgba(255, 255, 255, 0.95);
  padding: 6px 10px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  width: max-content;
}
.bpm-badge.hidden {
  display: none;
}
.sound-btn {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 2147483647;
  border: 0;
  background: rgba(255, 255, 255, 0.95);
  width: 44px;
  height: 44px;
  border-radius: 10px;
  font-weight: 800;
  color: #111827;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}
.sound-btn svg {
  display: block;
  width: 22px;
  height: 22px;
}
.sound-btn .icon-sound-off {
  display: none;
}
.sound-btn.is-muted .icon-sound-on {
  display: none;
}
.sound-btn.is-muted .icon-sound-off {
  display: block;
}
.tap-hint {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.95);
  color: #111827;
  font-weight: 800;
  padding: 8px 12px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  z-index: 2147483647;
}
.sim-heart {
  cursor: default;
}
.sim-heart:hover {
  cursor: pointer;
}

/* Force stacking: keep heart/canvas below overlays */
.sim-heart .heart-container {
  position: relative;
  z-index: 0;
}
.sim-heart #cpr-heart {
  position: relative;
  z-index: 0;
}
.sim-heart #heart-canvas {
  position: relative;
  z-index: 0;
}
.bpm-num {
  font-size: 36px;
  font-weight: 800;
  color: #111827;
  line-height: 1;
}
.bpm-label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7280;
}

/* Informational cards (site content below simulator) */
.info-wrap {
  max-width: 1100px;
  margin: 60px auto 64px;
  padding-inline: 12px;
  position: relative;
  z-index: 2147483647;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
@media (max-width: 900px) {
  .info-grid {
    grid-template-columns: 1fr;
  }
}
.info-card {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(17, 24, 39, 0.06);
}
.info-card h3 {
  margin: 0 0 8px;
  font-weight: 800;
  color: #111827;
  font-size: 1.25rem;
}
.info-card p {
  margin: 0 0 12px;
  color: #374151;
  line-height: 1.5;
}
.info-card .cta {
  display: inline-block;
  padding: 10px 14px;
  background: #111827;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
}
.info-card .cta:hover {
  background: #1f2937;
}
.revive-progress {
  pointer-events: none;
}

/* Ensure page can scroll regardless of theme wrappers */
html,
body {
  min-height: 100%;
  overflow-y: auto;
}
