body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    height: 100%;
    
    background: linear-gradient(to bottom, #ffffff, #e2e6ef);
  }
  body {
    min-height: 100vh;
  }
  .cover {
    height: 300px;
    background: url('images/banner.png') center/cover no-repeat;
  }
  
  .profile {
    display: flex;
    align-items: center;
    background: white;
    max-width: 600px;
    margin: -100px auto 20px;
    padding: 20px 30px 20px 20px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1;
  }
  
  .avatar {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid white;
    background: white;
    margin-right: 20px;
  }
  
  .profile h1 {
    margin: 0;
    font-size: 24px;
    text-align: left;
  }
  
  .profile p {
    margin: 4px 0;
    text-align: left;
  }
  
  .links {
    margin: 30px auto;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 0 20px;
  }
  
  .link-block {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }
  
  .link-button {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 16px 20px;
    border: 1px solid #c7b9f9;  /* Тоньше обводка */
    border-radius: 12px;
    color: #222;                /* Основной текст тёмный */
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    transition: all 0.2s ease;
  }
  
  .link-button:hover {
    background: #f6f4ff;
    transform: scale(1.01);
  }
  
  .link-button i {
    font-size: 22px;
    color: #222;  /* Иконки теперь не фиолетовые */
  }
  
  .link-url {
    font-size: 13px;
    color: #666;
    margin-left: 8px;
    user-select: text;
    word-break: break-word;
    padding-left: 36px;
  }
  a {
    text-decoration: none;
  }