body {
      margin: 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: linear-gradient(135deg, #ff416c, #ff4b2b);
      color: #fff;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 100vh;
      padding: 20px;
      overflow: hidden;
    }

    h2 {
      font-size: 3rem;
      margin-bottom: 20px;
      text-shadow: 2px 2px 5px rgba(0,0,0,0.4);
      letter-spacing: 2px;
      animation: glow 2s ease-in-out infinite alternate;
    }

    /* Glowing animation */
    @keyframes glow {
      from {
        text-shadow: 0 0 10px #fff, 0 0 20px #ff416c, 0 0 30px #ff4b2b, 0 0 40px #ff416c;
      }
      to {
        text-shadow: 0 0 20px #fff, 0 0 30px #ff4b2b, 0 0 40px #ff416c, 0 0 50px #ff4b2b;
      }
    }

    textarea {
      width: 400px;
      max-width: 90vw;
      height: 150px;
      padding: 15px;
      font-size: 1.2rem;
      border-radius: 12px;
      border: none;
      outline: none;
      resize: none;
      box-shadow: 0 4px 15px rgba(255, 75, 43, 0.6);
      background: rgba(255, 255, 255, 0.15);
      color: white;
      font-weight: 600;
      backdrop-filter: blur(10px);
      transition: box-shadow 0.3s ease;
    }

    textarea::placeholder {
      color: #ffe3dc;
      font-style: italic;
    }

    textarea:focus {
      box-shadow: 0 0 20px 5px #ff4b2b;
      background: rgba(255, 75, 43, 0.2);
    }

    p {
      font-size: 1.5rem;
      margin-top: 25px;
      background: rgba(255, 255, 255, 0.2);
      padding: 12px 25px;
      border-radius: 25px;
      box-shadow: 0 0 15px rgba(255, 75, 43, 0.7);
      user-select: none;
      font-weight: 700;
      letter-spacing: 1px;
      width: fit-content;
      min-width: 280px;
      text-align: center;
    }

    #alphaCount {
      color: #fff;
      font-size: 2rem;
      font-weight: 900;
      text-shadow: 0 0 8px #ff416c, 0 0 15px #ff4b2b;
      transition: all 0.3s ease;
      display: inline-block;
      min-width: 40px;
    }