    body {
      margin: 0;
      font-family: 'Poppins', sans-serif;
      background: radial-gradient(circle at top, #f3f7ff, #e9eefc);
      background-size: cover;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 100vh;
      text-align: center;
    }
    .container {
      max-width: 400px;
      //width: 100%;
      //background: rgba(255, 255, 255, 0.85);
      //border-radius: 16px;
      //box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
      padding: 20px 20px;
      padding-bottom: 200px;
    }
    .profile {
      position: relative;
    }
   
    h1 {
      font-size: 22px;
      font-weight: 600;
      color: #ffffff;
      margin-bottom: 8px;
        }

    h2 {
    font-size: 10px;
    font-weight: normal;
    color: #ffffff;
    margin-bottom: 8px;
        }

    p {
      color: #ffffff;
      font-size: 14px;
      margin-bottom: 18px;
    }
    .social-icons {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 25px;
    }
    .social-icons a {
      color: #ffffff;
      font-size: 20px;
      transition: transform 0.2s, color 0.2s;
    }
    .social-icons a:hover {
      transform: scale(1.2);
      color: #5a2efc;
    }
    .links {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .link-btn:hover {
      transform: scale(1.05);
      box-shadow: 0 4px 15px #ffffff;
    }
    a.link-btn {
    box-shadow: 0 0 5px #ffffff;
    }
