* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  font-family: Arial, sans-serif;
  background: #0f172a;
  color: #e2e8f0;
}

.container {
  width: min(90vw, 420px);
  text-align: center;
  padding: 24px;
  border-radius: 14px;
  background: #111827;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.icon {
  font-size: 72px;
  line-height: 1;
  margin-bottom: 18px;
  display: inline-block;
}

.gear {
  color: #cbd5e1;
  animation: spin 1s linear infinite;
}

.check {
  color: #22c55e;
  animation: pop-in 250ms ease-out;
}

.status-text {
  margin: 0;
  font-size: 21px;
  line-height: 1.4;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes pop-in {
  from {
    transform: scale(0.85);
    opacity: 0.6;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
