.mimilandia-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(255, 192, 203, 0.92);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  backdrop-filter: blur(6px);
  animation: fadeIn 0.8s ease-out;
}

.mimilandia-overlay-content {
  text-align: center;
  color: #b3005a;
  font-family: 'Poppins', sans-serif;
  background: rgba(255, 255, 255, 0.8);
  padding: 40px 60px;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  animation: slideDown 0.7s ease-out;
}

.mimilandia-lock {
  font-size: 60px;
  display: block;
  margin-bottom: 15px;
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes slideDown {
  from {transform: translateY(-30px);}
  to {transform: translateY(0);}
}
