* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    background-color: #141414;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #fff;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  /* Card container */
  .profile-container {
    padding: 20px;
  }
  
  /* Card style */
  .profile-card {
    background-color: #1f1f1f;
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    max-width: 100%;
    width: 320px;
  }
  
  
  /* Profile image */
  .avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
  }
  
  /* Name & location */
  .username {
    font-size: 1.5rem;
    margin-bottom: 5px;
  }
  
  .location {
    color: #b4ff00;
    font-size: 0.9rem;
    margin-bottom: 15px;
  }
  
  /* Bio */
  .tagline {
    font-size: 0.85rem;
    color: #ccc;
    margin-bottom: 25px;
  }
  
  /* Social links */
  .links {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .link-button {
    background-color: #333;
    padding: 12px 0;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
  }
  
  .link-button:hover {
    background-color: #444;
  }
  

    @media (min-width: 768px) {
        .profile-card {
          width: 500px;
          padding: 35px 25px;
        }
      
        .username {
          font-size: 1.6rem;
        }
      
        .location {
          font-size: 1rem;
        }
      
        .tagline {
          font-size: 0.9rem;
        }
      
        .link-button {
          padding: 14px 0;
          font-size: 1rem;
        }
      
        .avatar {
          width: 90px;
          height: 90px;
          margin-bottom: 20px;
        }
      }
      