body {
  background-color: #000000;
  color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  margin: 0;
  padding: 0;
}

.banner {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
  margin-bottom: -78px;
}

.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-img {
  position: relative;
  z-index: 10;
  border: 4px solid #000000;
}

.username {
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

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

.link-btn {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  text-decoration: none;
  color: #ffffff;
  transition: all 0.2s ease;
  gap: 12px;
}

.link-btn:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.link-btn i {
  font-size: 20px;
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}

.link-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.link-title {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
}

.link-url {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
}