body {
  margin: 0;
  padding: 0;
  font-family: system-ui, sans-serif;
  background: url("./background/1cf61d97-bfa7-4fac-b8d4-8e3c542552ea.jpeg") no-repeat center center fixed;
  background-size: cover;
  color: #f1f1f1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  flex-direction: column;
}

.container {
  max-width: 400px;
  width: 90%;
  text-align: center;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.6); /* затемнённый контейнер для читабельности */
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

.avatar {
  width: 100%;
  height: auto;
  max-height: 260px;
  object-fit: cover;
  border-radius: 12px;
  border: 4px solid #ffffff22;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
  margin-bottom: 24px;
}

h1 {
  font-size: 26px;
  margin: 0 0 10px;
}

p {
  font-size: 16px;
  color: #ddd;
  margin-bottom: 24px;
}

.link {
  display: block;
  padding: 16px;
  margin-bottom: 14px;
  border: none;
  border-radius: 14px;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.link:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
}

.link.tiktok {
  background-color: #000;
  color: #fff;
  border: 2px solid transparent;
  padding: 16px;
  margin-bottom: 14px;
  border-radius: 14px;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  display: block;
  text-align: center;
  box-shadow:
    2px 2px 0 #25f4ee,
    -2px -2px 0 #ff0050;
  transition: transform 0.2s, box-shadow 0.2s;
}

.link.tiktok:hover {
  transform: scale(1.03);
  box-shadow:
    3px 3px 0 #25f4ee,
    -3px -3px 0 #ff0050;
}

.link.telegram {
  background: #2AABEE;
}

.link.instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

@media (max-width: 500px) {
  .avatar {
    max-height: 200px;
  }

  h1 {
    font-size: 22px;
  }

  .link {
    font-size: 16px;
  }
}
