* {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(135deg, #ff7a18, #af002d 50%, #1e1e1e);
  color: #fff;
}

.container {
  max-width: 420px;
  margin: auto;
  padding: 40px 20px;
  text-align: center;
}

.profile img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,.4);
}

.profile h1 {
  margin: 16px 0 6px;
  font-size: 28px;
}

.profile p {
  margin: 0 0 30px;
  color: rgba(255,255,255,.8);
}

.links .link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255,255,255,.92);
  color: #000;
  padding: 16px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 14px;
  transition: transform .08s ease, background .2s;
}

.links .link:hover {
  background: #fff;
  transform: scale(0.99);
}

.socials {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 14px;
  font-size: 20px;
}

.socials a {
  color: rgba(255,255,255,.85);
  text-decoration: none;
}
