* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  min-height: 100vh;
  width: 100vw;
  background: radial-gradient(circle at top, #1a1a1a, #000);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

.page {
  width: 460px;
  padding: 50px;
}

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

.profile img {
 width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: contain;
  background: white;
  padding: 10px;
  
}

.username {
  margin-top: 15px;
  font-weight: 600;
  opacity: 0.9;
  font-size: 35px;
}

.link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #1f1f1f;
  padding: 18px 20px;
  border-radius: 16px;
  margin-bottom: 15px;
  text-decoration: none;
  color: white;
  transition: background 0.2s, transform 0.2s;
}

.link:hover {
  background: #2a2a2a;
  transform: scale(1.02);
}

.link span {
  flex: 1;
  text-align: center;
  font-size: 17px;
}

.left {
  font-size: 20px;
  opacity: 0.9;
}

.right {
  opacity: 0.7;
}
.link i {
  font-size: 20px;   /* perfect balanced size */
  line-height: 1;
}

/*@media (max-width: 500px) {

  .page {
    width: 100%;
    padding: 24px;
  }

  .profile img {
    width: 130px;
    height: 130px;
  }

  .username {
    font-size: 26px;
  }

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

@media (max-width: 360px) {

  .profile img {
    width: 110px;
    height: 110px;
  }

  .username {
    font-size: 22px;
  }

  .link {
    padding: 14px 16px;
  }
} */

.page {
  width: 100%;
  max-width: 380px;
  padding: 20px;
  margin: auto;
}

.profile img {
  width: 120px;
  height: 120px;
}

.username {
  font-size: 24px;
}

.link span {
  font-size: 15px;
}

.link {
  padding: 14px 16px;
}

