.occasion-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .occasion-animation .message {
    text-align: center;
    color: #fff;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 2s forwards, glow 2s infinite alternate;
  }
  
  .occasion-animation .heading {
    font-size: 3em;
    margin-bottom: 0.5em;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .occasion-animation .subtext {
    font-size: 1.5em;
    line-height: 1.4;
    max-width: 600px;
    padding: 0 20px;
  }
  
  .occasion-animation .particles {  
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }
  
  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes glow {
    from {
      text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #4ecdc4;
    }
    to {
      text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #4ecdc4;
    }
  } 