
#cleanerOverlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
#cleanerOverlay.visible {
  display: flex;
}

.cl-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, #f8e9d2 0%, #e8d5b7 55%, #c9a96e 100%);
}
.cl-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(179,135,79,.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 80% 20%, rgba(179,135,79,.4) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 60% 70%, rgba(179,135,79,.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 10% 80%, rgba(179,135,79,.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 60%, rgba(179,135,79,.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 40% 10%, rgba(179,135,79,.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 90%, rgba(179,135,79,.3) 0%, transparent 100%);
  animation: starsTwinkle 4s ease-in-out infinite alternate;
}
@keyframes starsTwinkle {
  0%   { opacity: .5; }
  100% { opacity: 1; }
}

.cl-nebula {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
.cl-nebula-1 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(179,135,79,.35) 0%, transparent 70%);
  top: -60px; left: -60px;
  animation: nebulaFloat1 8s ease-in-out infinite alternate;
}
.cl-nebula-2 {
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(200,160,100,.25) 0%, transparent 70%);
  bottom: -40px; right: -40px;
  animation: nebulaFloat2 10s ease-in-out infinite alternate;
}
.cl-nebula-3 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(160,120,60,.2) 0%, transparent 70%);
  top: 50%; left: 10%;
  animation: nebulaFloat3 7s ease-in-out infinite alternate;
}
@keyframes nebulaFloat1 {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(30px,20px) scale(1.2); }
}
@keyframes nebulaFloat2 {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(-20px,-30px) scale(1.15); }
}
@keyframes nebulaFloat3 {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(40px,-20px) scale(1.1); }
}

.cl-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 40px 20px;
  width: 100%;
  max-width: 360px;
}

.cl-orbital {
  position: relative;
  width: 220px;
  height: 220px;
  margin-bottom: 8px;
}

.cl-pulse-ring {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 2px solid rgba(179,135,79,.3);
  animation: pulseRing 2s ease-out infinite;
}
.cl-pulse-ring:nth-child(2) { animation-delay: .7s; }
.cl-pulse-ring:nth-child(3) { animation-delay: 1.4s; }
@keyframes pulseRing {
  0%   { transform: scale(.8); opacity: .8; }
  100% { transform: scale(1.3); opacity: 0; }
}

.cl-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  filter: drop-shadow(0 0 12px #b3874f);
}
.cl-track {
  fill: none;
  stroke: rgba(179,135,79,.12);
  stroke-width: 8;
}
.cl-fill {
  fill: none;
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 565.5;
  stroke-dashoffset: 565.5;
  transition: stroke-dashoffset .08s linear;
  stroke: #b3874f;
}
.cl-center {
  position: absolute;
  inset: 24px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #f5e6cc, #e8d5b7);
  border: 1px solid rgba(179,135,79,.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  box-shadow:
    inset 0 0 40px rgba(179,135,79,.3),
    0 0 40px rgba(179,135,79,.2);
}
.cl-icon {
  font-size: 42px;
  filter: drop-shadow(0 0 12px #b3874f);
  transition: transform .3s ease;
  display: block;
}
.cl-icon.sweeping {
  animation: sweepAnim .35s ease-in-out infinite alternate;
}
@keyframes sweepAnim {
  0%   { transform: rotate(-15deg) scale(1); }
  100% { transform: rotate(15deg) scale(1.1); }
}

.cl-pct {
  font-size: 13px;
  font-weight: 700;
  color: rgba(120,80,40,.7);
  letter-spacing: 1px;
}
.cl-orbit-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #b3874f;
  box-shadow: 0 0 12px #b3874f, 0 0 24px #b3874f;
  top: 50%;
  left: 50%;
  margin: -5px;
  transform-origin: 0 0;
  animation: orbitDot 2s linear infinite;
}
.cl-orbit-dot-2 {
  width: 6px; height: 6px;
  background: #8b6914;
  box-shadow: 0 0 8px #8b6914;
  margin: -3px;
  animation: orbitDot 3.2s linear infinite reverse;
  animation-delay: -1s;
}

@keyframes orbitDot {
  0%   { transform: rotate(0deg)   translateX(107px); }
  100% { transform: rotate(360deg) translateX(107px); }
}

.cl-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: visible;
}
.cl-p {
  position: absolute;
  border-radius: 50%;
  animation: pFly var(--d) var(--e) forwards;
  left: 50%; top: 50%;
}
@keyframes pFly {
  0%   { transform: translate(-50%,-50%) scale(1);   opacity: 1; }
  100% { transform: translate(calc(-50% + var(--tx)), calc(-50% + var(--ty))) scale(0); opacity: 0; }
}

.cl-counter-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 16px;
  gap: 2px;
}
.cl-counter-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(139,105,20,.5);
}
.cl-counter {
  font-size: 72px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  background: linear-gradient(135deg, #c9a96e, #b3874f, #8b6914);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(179,135,79,.6));
  min-width: 120px;
  text-align: center;
  transition: transform .08s ease;
}
.cl-counter.bump {
  transform: scale(1.12);
}

.cl-label-wrap {
  margin-top: 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cl-label {
  font-size: 17px;
  font-weight: 700;
  color: #5c3d1e;
  text-shadow: 0 0 20px rgba(179,135,79,.8);
  transition: opacity .3s ease;
}
.cl-sublabel {
  font-size: 12px;
  color: rgba(120,80,40,.5);
  letter-spacing: .5px;
}

.cl-steps {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}
.cl-step {
  width: 32px;
  height: 4px;
  border-radius: 2px;
  background: rgba(179,135,79,.2);
  transition: background .4s ease, box-shadow .4s ease;
}
.cl-step.active {
  background: linear-gradient(90deg, #c9a96e, #8b6914);
  box-shadow: 0 0 8px #b3874f;
}
.cl-step.done {
  background: rgba(179,135,79,.5);
}
.cl-done {
  margin-top: 28px;
  padding: 15px 52px;
  border-radius: 999px;
  background: linear-gradient(135deg, #c9a96e, #b3874f, #8b6914);
  background-size: 200% 200%;
  animation: gradShift 3s ease infinite, doneIn .5s cubic-bezier(.34,1.5,.64,1) forwards;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  box-shadow:
    0 4px 32px rgba(179,135,79,.6),
    0 0 0 1px rgba(201,169,110,.3);
  letter-spacing: .5px;
  display: none;
}
@keyframes gradShift {
  0%,100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
@keyframes doneIn {
  0%   { transform: scale(0.6) translateY(20px); opacity: 0; }
  100% { transform: scale(1)   translateY(0);    opacity: 1; }
}
.cl-done:active { transform: scale(.96); }

.cl-scanline {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(179,135,79,.015) 2px,
    rgba(179,135,79,.015) 4px
  );
  pointer-events: none;
}
