* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  }

  body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: #fff;
    overflow: hidden;
    position: relative;
    margin: 0;
    background: #000000;
  }

  /* Фоновый слой — сильно размытое изображение с головой по центру */
  body::before {
    content: '';
    position: absolute;
    top: 0%;
    left: 0%;
    right: 0%;
    bottom: 0%;
    background: url('Фото/Pudgeуeee0.png') no-repeat 30% center;
    background-size: 120% 120% ;
    filter: blur(40px);
    z-index: -1;
    background-attachment: fixed;
  }

  .container {
    max-width: 600px;
    width: 100%;
    text-align: center;
    background: none;
    padding: 0;
    border: none;
    box-shadow: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
  }

  .profile {
    margin-bottom: 40px;
  }

  .profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 2px solid #333;
  }

  .profile h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
  }

  .profile p {
    font-size: 1.1rem;
    color: #aaa;
    font-weight: 400;
  }

  .links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
    width: 100%; /* Явно задаём ширину контейнера для кнопок */
  }

  .link-btn {
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: background 0.3s ease, transform 0.2s ease;
    border: 1px solid #333;
    width: 100%; /* Кнопка занимает всю ширину контейнера */
    box-sizing: border-box; /* Учитываем padding и border */
  }

  .link-btn:hover {
    background: #2a2a2a;
    transform: translateY(-2px);
  }

  .link-btn i {
    font-size: 1.4rem;
  }

  @media (max-width: 600px) {
    .profile h1 {
      font-size: 2rem;
    }
    .link-btn {
      padding: 14px 20px;
      font-size: 1rem;
    }
  }