* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg {
  min-height: 100vh;
  width: 100%;
  background: linear-gradient(160deg, #ffd6e7 0%, #ffb3d1 40%, #ff85b8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.card {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 8px 40px rgba(100, 120, 200, 0.13);
  padding: 40px 36px 36px;
  max-width: 380px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.avatar-wrap {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid #ff69a0;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 4px 18px rgba(255, 105, 160, 0.35);
}

.avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.name {
  font-size: 1.55rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}

.bio {
  font-size: 0.97rem;
  color: #555;
  line-height: 1.6;
  max-width: 280px;
  margin-bottom: 24px;
}

.divider {
  width: 100%;
  border: none;
  border-top: 1px solid #eaeaea;
  margin-bottom: 24px;
}

.btn-telegram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #5b9bd5 0%, #4a86c8 100%);
  color: white;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 50px;
  width: 100%;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 4px 16px rgba(74, 134, 200, 0.35);
  letter-spacing: 0.2px;
}

.btn-telegram:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(74, 134, 200, 0.45);
}

.btn-telegram:active {
  transform: translateY(0);
}

.tg-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

@media (max-width: 420px) {
  .card {
    padding: 32px 20px 28px;
  }
  .name {
    font-size: 1.35rem;
  }
}
