
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Poppins', sans-serif;
      }
      body {
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
        background: linear-gradient(135deg, rgb(26, 26, 26), rgb(46, 46, 46));
        position: relative;
        overflow: hidden;
      
      }

.stars {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: url('/zerver/necessary/atticus.jpg') repeat;
  background-size: cover;
}

      .container {
        background: rgba(255, 255, 255, 0.477);
        backdrop-filter: blur(10px);
        padding: 40px;
        border-radius: 16px;
        text-align: center;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
        max-width: 400px;
        width: 90%;
        animation: fadeIn 1s ease-in-out;
      }
      @keyframes fadeIn {
        from { opacity: 0; transform: scale(0.9); }
        to { opacity: 1; transform: scale(1); }
      }
      h1 {
        font-size: 2rem;
        margin-bottom: 20px;
        background: linear-gradient(90deg, rgb(255, 0, 128), rgb(0, 255, 255));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
      }
      p {
        font-size: 1.1rem;
        margin-bottom: 20px;
        color: #ffffff;
        background: rgba(59, 58, 58, 0.353);
        border-radius: 10px;
        padding: 5px;
        text-align: center;
        box-shadow: 0 0 10px rgba(185, 48, 195, 0.7), 0 0 15px rgba(255, 0, 255, 0.5), 0 0 20px rgba(0, 255, 255, 0.4);
      }
      button {
        background: linear-gradient(135deg, rgb(255, 64, 129), rgb(245, 0, 87));
        border: none;
        padding: 12px 24px;
        font-size: 1rem;
        border-radius: 30px;
        cursor: pointer;
        transition: all 0.3s;
        color: white;
        font-weight: bold;
        box-shadow: 0 4px 15px rgba(255, 0, 128, 0.5);
      }
      button:hover {
        background: linear-gradient(135deg, rgb(245, 0, 87), rgb(255, 64, 129));
        transform: scale(1.05);
      }
      footer {
        margin-top: 20px;
        font-size: 0.9rem;
        color: #aaa;
      }
      footer a {
        color: #ff4081;
        text-decoration: none;
        transition: color 0.3s ease;
      }
      footer a:hover {
        color: #f50057;
      }