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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a0a0f;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

/* Animated background glow */
.bg-glow {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, rgba(139, 92, 246, 0.08) 40%, transparent 70%);
  pointer-events: none;
  animation: glow-pulse 8s ease-in-out infinite;
}

@keyframes glow-pulse {

  0%,
  100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.container {
  width: 100%;
  max-width: 420px;
  position: relative;
  z-index: 1;
}

.card {
  background: linear-gradient(145deg, rgba(22, 22, 30, 0.9) 0%, rgba(15, 15, 20, 0.95) 100%);
  backdrop-filter: blur(20px);
  border-radius: 28px;
  padding: 48px 36px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 30px 60px -15px rgba(0, 0, 0, 0.6),
    0 0 120px -40px rgba(99, 102, 241, 0.2);
}

/* Avatar with animated ring */
.avatar-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 28px;
}

.avatar {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  z-index: 2;
  border: 3px solid rgba(255, 255, 255, 0.1);
}

.avatar-ring {
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #3b82f6, #8b5cf6, #ec4899, #3b82f6);
  opacity: 0.4;
  animation: ring-rotate 6s linear infinite;
  z-index: 1;
}

@keyframes ring-rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

h1 {
  color: #ffffff;
  font-size: 1.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

.subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  font-weight: 400;
  margin-bottom: 4px;
}

.company {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.9rem;
  font-weight: 300;
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  margin: 32px 0;
}

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

.link-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.link-item:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-3px) scale(1.01);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 24px -8px rgba(0, 0, 0, 0.4);
}

.link-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
  border-radius: 12px;
  flex-shrink: 0;
}

.link-icon.linkedin {
  background: linear-gradient(135deg, #0077b5 0%, #00a0dc 100%);
}

.link-icon i {
  font-size: 1.35rem;
  color: #ffffff;
}

.link-content {
  flex: 1;
  text-align: left;
}

.link-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.link-value {
  display: block;
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
}

.link-arrow {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.25);
  transition: all 0.3s ease;
}

.link-item:hover .link-arrow {
  color: rgba(255, 255, 255, 0.6);
  transform: translateX(4px);
}

.footer {
  text-align: center;
  margin-top: 24px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.25);
  font-weight: 300;
  letter-spacing: 0.05em;
}

@media (max-width: 480px) {
  .card {
    padding: 40px 28px;
    border-radius: 24px;
  }

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

  h1 {
    font-size: 1.6rem;
  }

  .link-item {
    padding: 14px 16px;
  }

  .link-icon {
    width: 40px;
    height: 40px;
  }
}