* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    background-color: #000;
    color: #fff;
    font-family: 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    padding: 20px;
  }
  
  .container {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px 10px;
  }
  
  .profile-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto 15px;
  }
  
  h1 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 5px;
  }
  
  .bio {
    text-align: center;
    color: #a2a1a1;
    margin-bottom: 20px;
    font-size: 15px;
  }
  
  .section-title {
    text-align: center;
    margin: 25px 0 15px;
    font-size: 16px;
    font-weight: bold;
  }
  
  .link-box {
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, #181818 0%, #222 100%);
    border-radius: 40px;
    padding: 12px 15px;
    margin-bottom: 10px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    position: relative;
  }
  
  .link-box:hover {
    background: linear-gradient(90deg, #222 0%, #333 100%);
    transform: translateY(-2px);
  }
  
  .link-box i {
    min-width: 24px;
    font-size: 18px;
    margin-right: 10px;
  }
  
  .link-box span {
    flex: 1;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-right: 24px; /* This offsets the icon width for better centering */
  }
  
  /* Contact Form Styles */
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 12px;
    border-radius: 8px;
    border: none;
    background: #000000;
    color: rgb(255, 255, 255);
    font-size: 15px;
  }
  
  .submit-btn {
    background: #222;
    color: white;
    border: none;
    border-radius: 12px;
    padding: 12px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
  }

  .submit-btn:hover {
    background: #000000;
  }
  
  #formStatus {
    text-align: center;
    margin-top: 15px;
    color: #00ff62;
  }
  
  .back-link {
    display: block;
    text-align: center;
    margin-top: 20px;
    color: #aaa;
    text-decoration: none;
  }
  
  .back-link:hover {
    color: rgb(255, 255, 255);
  }
  