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

body {
  font-family: 'Inter', sans-serif;
  background: radial-gradient(circle at top, #020617, #0F172A);
  color: #E5E7EB;
  min-height: 100vh;
}

.container {
  max-width: 480px;
  margin: auto;
  padding: 40px 20px;
}

.profile {
  text-align: center;
  margin-bottom: 32px;
}

.avatar {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 3px solid #22D3EE;
  margin-bottom: 16px;
}

.profile h1 {
  font-size: 1.6rem;
  font-weight: 700;
}

.subtitle {
  font-size: 0.95rem;
  color: #38BDF8;
  margin-top: 4px;
}

.description {
  font-size: 0.9rem;
  color: #CBD5F5;
  margin-top: 12px;
  line-height: 1.5;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.link-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(2, 6, 23, 0.8);
  border-radius: 12px;
  text-decoration: none;
  color: #E5E7EB;
  border: 1px solid rgba(56, 189, 248, 0.15);
  transition: all 0.25s ease;
}

.link-card span {
  font-size: 1.2rem;
}

.link-card strong {
  color: #22D3EE;
}

.link-card:hover {
  transform: translateY(-2px);
  background: rgba(15, 23, 42, 0.9);
  border-color: #22D3EE;
}

.social {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.social a {
  color: #94A3B8;
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.2s;
}

.social a:hover {
  color: #22D3EE;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.social-icons a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(2, 6, 23, 0.8);
  border-radius: 50%;
  color: #94A3B8;
  font-size: 1.2rem;
  border: 1px solid rgba(56, 189, 248, 0.15);
  transition: all 0.25s ease;
}

.social-icons a:hover {
  color: #22D3EE;
  border-color: #22D3EE;
  transform: translateY(-2px);
}
