  .shorty-protect-box-custom {
    background: rgba(20, 20, 30, 0.85);
    border: 2px solid #00ffff;
    border-radius: 16px;
    padding: 40px 15px;
    text-align: center;
    width: 100%;
    max-width: 600px;
    margin: 10px auto;
    color: #fff;
    /*font-family: 'Orbitron', sans-serif;*/
font-family: 'Outfit', sans-serif;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    backdrop-filter: blur(6px);
    animation: spb-glow 2s infinite ease-in-out;
  }
  
#shortyForm {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin: 20px 0;
}

  .shorty-protect-box-custom h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #00ffe1;
    letter-spacing: 1px;
    text-shadow: 0 0 8px #00ffe1;
  }

  .shorty-protect-box-custom p {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 25px;
  }

  .shorty-protect-box-custom button {
    background: linear-gradient(45deg, #00ffc3, #007cf0);
    color: #000;
    border: none;
    padding: 14px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 0 12px rgba(0, 255, 255, 0.4);
    transition: 0.3s ease-in-out;
  }

  .shorty-protect-box-custom button:hover {
    transform: scale(1.08);
    background: linear-gradient(45deg, #ff00c8, #ffcc00);
    box-shadow: 0 0 20px rgba(255, 0, 200, 0.5);
  }

  @keyframes spb-glow {
    0%, 100% {
      box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    }
    50% {
      box-shadow: 0 0 35px rgba(0, 255, 255, 0.6);
    }
  }