.storm-divider {
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, rgba(180,220,255,0.4), rgba(80,120,180,0.1));
  box-shadow: 0 0 12px rgba(180,220,255,0.2);
  margin: 24px 0;
  animation: storm-pulse 6s ease-in-out infinite;
}

@keyframes storm-pulse {
  0% { opacity: 0.6; }
  50% { opacity: 1; box-shadow: 0 0 24px rgba(180,220,255,0.3); }
  100% { opacity: 0.6; }
}