* {
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #333;
  }
  
  /* Верхняя карточка */
  .profile {
    text-align: center;
    padding: 60px 20px;
    color: white;
  }
  
  .avatar {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 4px solid white;
    margin-bottom: 20px;
  }
  
  .role {
    opacity: 0.8;
    margin-bottom: 20px;
  }
  
  .buttons a {
    display: inline-block;
    margin: 5px;
    padding: 10px 18px;
    border-radius: 20px;
    background: white;
    color: #5a4fcf;
    text-decoration: none;
    font-weight: bold;
    transition: 0.2s;
  }
  
  .buttons a:hover {
    background: #eee;
  }
  
  /* Секции */
  .section {
    background: white;
    max-width: 800px;
    margin: 0 auto 20px;
    padding: 30px;
    border-radius: 12px;
  }
  
  .section h2 {
    margin-top: 0;
    color: #5a4fcf;
  }
  
  .skills {
    list-style: none;
    padding: 0;
  }
  
  .skills li {
    background: #f3f3f3;
    display: inline-block;
    margin: 5px;
    padding: 8px 14px;
    border-radius: 16px;
  }
  