* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(to right, #000000, #000000);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
  }
  
  .linktree-container {
    background: #050505;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 400px;
    width: 90%;
  }
  
  .profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #0077b6;
    margin-bottom: 1rem;
  }
  
  h1 {
    font-size: 1.8rem;
    color: #9c9696;
  }
  
  .tagline {
    color: #959191;
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  .skills {
    margin-bottom: 1.5rem;
  }
  
  .skills h2 {
    font-size: 1.2rem;
    color: #0077b6;
    margin-bottom: 0.5rem;
  }
  
  .skills ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }
  
  .skills li {
    background-color: #e6f0f8;
    color: #0077b6;
    padding: 6px 14px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 4px rgba(0, 119, 182, 0.1);
    transition: background 0.3s ease;
  }
  
  .skills li i {
    font-size: 1rem;
  }
  
  .link-buttons a {
    display: block;
    margin: 10px 0;
    padding: 12px 18px;
    background-color: #0077b6;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: background 0.3s ease;
  }
  
  .link-buttons a:hover {
    background-color: #005b8a;
  }
  
  .link-buttons i {
    margin-right: 8px;
  }
  
  .social-footer {
    margin-top: 1.8rem;
  }
  
  .social-footer a {
    color: #0077b6;
    margin: 0 10px;
    font-size: 1.2rem;
    transition: color 0.3s ease;
  }
  
  .social-footer a:hover {
    color: #004a6f;
  }
  
  copyright {
    font-size: 0.85rem;
    color: #999;
    margin-top: 1rem;
  }