.popSc {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.6); /* white overlay */
  backdrop-filter: blur(8px); /* diffused/blurred background */
  -webkit-backdrop-filter: blur(8px); /* Safari support */
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popBo {
  background: #fff;
  max-width: 480px;
  width: 90%;
  padding: 25px 20px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 40px rgba(0,0,0,0.15);
  animation: fadeInScale 0.3s ease-out;
}

.popBo svg {
  width: 55px;
  height: 55px;
  margin-bottom: 15px;
  color: #3f3d56;
}

.popBo h2 {
  margin: 10px 0;
  font-size: 1.4rem;
  font-weight: 700;
  color: #1d1d1f;
}

.popCo {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
}

/* Smooth entrance animation */
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Dev Tools Warning Styles */
.devToolsWarning {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255, 0, 0, 0.1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: warningFadeIn 0.3s ease-out;
}

.warningBox {
  background: linear-gradient(135deg, #ff6b6b, #ee5a52);
  max-width: 500px;
  width: 90%;
  padding: 30px 25px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 50px rgba(255, 107, 107, 0.4);
  border: 3px solid #fff;
  animation: warningBounce 0.5s ease-out;
}

.warningBox h3 {
  margin: 0 0 20px 0;
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.warningBox p {
  margin: 15px 0;
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.warningBox strong {
  color: #ffeaa7;
  font-size: 18px;
}

.warningBox small {
  display: block;
  margin-top: 20px;
  font-size: 14px;
  color: #ffeaa7;
  font-style: italic;
}

/* Warning animations */
@keyframes warningFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes warningBounce {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }
  50% {
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
