    .section-notyet {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100vh;
      color: #fff;
      text-align: center;
      padding: 2rem;
    }

    .container-notyet {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 40px;
    }

    .container-notyet h1 {
      font-size: 2.2rem;
      max-width: 900px;
      color: #ed006a;
      text-shadow: 0 0 5px #ed006a, 0 0 20px #ed006a;
      animation: pulsenotyey 2s infinite;
    }

    .sad-face {
      font-size: 5rem;
      color: #ed006a;
      text-shadow: 0 0 8px #ed006a, 0 0 20px #ed006a;
      animation: pulsenotyey 3s infinite;
    }

    @keyframes pulsenotyey {
      0% { text-shadow: 0 0 5px #ed006a, 0 0 20px #ed006a; }
      50% { text-shadow: 0 0 15px #ff89d0, 0 0 40px #ff89d0; }
      100% { text-shadow: 0 0 5px #ed006a, 0 0 20px #ed006a; }
    }