body {
  background: #000;
  color: #fff;
  margin: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  overflow: hidden;
  font-family: "Cinzel", serif;
}

/* Fade text */
.fade-text {
  opacity: 0;
  transition: opacity 2s ease;
  font-size: 1.8rem;
  max-width: 700px;
  margin: 10px 0;
}

/* White blob that wiggles */
#blob {
  width: 120px;
  height: 120px;
  background: white;
  border-radius: 50%;
  margin-top: 40px;
  opacity: 0;
  animation: wiggle 6s ease-in-out infinite;
  transition: opacity 2s ease;
}

@keyframes wiggle {
  0%   { transform: translate(0, 0) scale(1); }
  25%  { transform: translate(10px, -10px) scale(1.05); }
  50%  { transform: translate(-10px, 10px) scale(0.95); }
  75%  { transform: translate(5px, -5px) scale(1.1); }
  100% { transform: translate(0, 0) scale(1); }
}