  body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
      radial-gradient(circle at 10% 20%, rgba(255,255,255,0.05) 0%, transparent 20%),
      radial-gradient(circle at 90% 80%, rgba(255,255,255,0.03) 0%, transparent 25%),
      radial-gradient(circle at 50% 70%, rgba(255,255,255,0.02) 0%, transparent 30%),
      radial-gradient(circle at 30% 90%, rgba(255,255,255,0.04) 0%, transparent 22%);
    pointer-events: none;
    z-index: -1;
  }

   .fade-scale {
      opacity: 0;
      transform: scale(0.95);
      transition: all 0.4s ease-in-out;
    }

    .fade-scale.show {
      opacity: 1;
      transform: scale(1);
    }