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

body {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  background: #2b0d2f;
  color: white;
}

.landing {
  width: 100%;
  max-width: 430px;
  min-height: 100vh;
  margin: 0 auto;
  padding: 26px 10px 18px;
  background:
    radial-gradient(circle at top, rgba(90, 24, 103, 0.45), transparent 40%),
    linear-gradient(180deg, #2b0d2f 0%, #29102f 50%, #210c27 100%);
}

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

.profile-img {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 214, 255, 0.35);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
  margin-bottom: 12px;
}

.profile h1 {
  font-size: 24px;
  font-weight: 700;
  color: #f3b1ff;
  margin-bottom: 8px;
}

.location {
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 5px;
}

.bio {
  font-size: 13px;
  line-height: 1.35;
  color: #f2d3f8;
  font-weight: 600;
  margin-bottom: 18px;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 26px;
  align-items: center;
}

.socials a {
  color: #f3b1ff;
  font-size: 25px;
  text-decoration: none;
  transition: transform 0.2s ease, color 0.2s ease;
}

.socials a:hover {
  transform: scale(1.12);
  color: white;
}

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

.link-card {
  width: 100%;
  height: 58px;
  background: #efa9ff;
  border-radius: 999px;
  display: grid;
  grid-template-columns: 52px 1fr 28px;
  align-items: center;
  padding: 4px 13px 4px 5px;
  text-decoration: none;
  color: #2c1033;
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.25);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.link-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.28);
  background: #f4b9ff;
}

.link-card:active {
  transform: translateY(2px);
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.25);
}

.link-card img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.65);
}

.link-card span {
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  padding-right: 8px;
}

.menu-icon {
  font-size: 14px;
  color: rgba(74, 28, 82, 0.65);
  justify-self: end;
}

@media (max-width: 380px) {
  .landing {
    padding-left: 8px;
    padding-right: 8px;
  }

  .profile-img {
    width: 82px;
    height: 82px;
  }

  .profile h1 {
    font-size: 22px;
  }

  .link-card {
    height: 56px;
  }

  .link-card span {
    font-size: 12px;
  }
}