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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: linear-gradient(135deg, #f172a3 0%, #6b7280 100%);
  min-height: 100vh;
  padding: 20px;
  color: #1f2937;
}

.container {
  max-width: 768px;
  margin: 0 auto;
}

.card-container {
  max-width: 448px;
  margin: 0 auto;
}

.card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  padding: 24px;
}

.profile-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.profile-info {
  text-align: center;
}

.name-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 4px;
}

.name {
  font-size: 20px;
  font-weight: bold;
  color: #1f2937;
}

.verified-badge {
  width: 16px;
  height: 16px;
  background: #3b82f6;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.verified-badge::after {
  content: "✓";
  color: white;
  font-size: 10px;
  font-weight: bold;
}

.bio {
  color: #6b7280;
  font-size: 14px;
  max-width: 384px;
  line-height: 1.5;
}

.links-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.link-item {
  position: relative;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease-in-out;
  background: white;
}

.link-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-color: #f172a3;
  transform: translateY(-1px);
}

.link-item:active {
  transform: scale(0.98);
}

.link-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(59, 130, 246, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}

.link-item:hover::before {
  opacity: 1;
}

.link-content {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  text-decoration: none;
  color: #1f2937;
  font-weight: 500;
  transition: color 0.2s ease-in-out;
}

.link-content:hover {
  color: #f172a3;
}

.link-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f172a3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.2s ease-in-out;
  flex-shrink: 0;
}

.link-item:hover .link-icon {
  transform: scale(1.1);
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.link-title {
  flex: 1;
}
  .copyright{
    text-align: center;
    color: #9ca3af;
    font-size: 10px;
    margin-top: 1vh;
  }

/* Responsive design */
@media (max-width: 640px) {
  body {
    padding: 16px;
  }

  .card {
    padding: 20px;
  }

  .avatar {
    width: 80px;
    height: 80px;
  }

  .name {
    font-size: 18px;
  }
}
