* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  .container {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f172a 0%, #581c87 50%, #0f172a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    position: relative;
  }
  
  .animated-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
  }
  
  .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: pulse 3s ease-in-out infinite;
  }
  
  .orb-1 {
    top: 2.5rem;
    left: 2.5rem;
    width: 5rem;
    height: 5rem;
    background: rgba(168, 85, 247, 0.2);
  }
  
  .orb-2 {
    top: 8rem;
    right: 2rem;
    width: 4rem;
    height: 4rem;
    background: rgba(236, 72, 153, 0.2);
    animation-delay: 1s;
  }
  
  .orb-3 {
    bottom: 5rem;
    left: 1.5rem;
    width: 6rem;
    height: 6rem;
    background: rgba(59, 130, 246, 0.2);
    animation-delay: 2s;
  }
  
  .orb-4 {
    bottom: 2.5rem;
    right: 3rem;
    width: 3rem;
    height: 3rem;
    background: rgba(168, 85, 247, 0.3);
    filter: blur(16px);
    animation-delay: 3s;
  }
  
  .gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(168, 85, 247, 0.05) 0%, transparent 50%, rgba(236, 72, 153, 0.05) 100%);
    animation: pulse 4s ease-in-out infinite;
  }
  
  @keyframes pulse {
    0%, 100% {
      opacity: 0.5;
    }
    50% {
      opacity: 1;
    }
  }
  
  .profile-card {
    position: relative;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 2rem;
    max-width: 28rem;
    width: 100%;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: all 0.5s ease;
  }
  
  .profile-card:hover {
    box-shadow: 0 25px 50px -12px rgba(168, 85, 247, 0.2);
    transform: scale(1.05);
  }
  
  .profile-image-container {
    position: relative;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
  }
  
  .profile-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #a855f7, #ec4899);
    border-radius: 50%;
    filter: blur(12px);
    transition: all 0.3s ease;
    opacity: 0.5;
  }
  
  .profile-card:hover .profile-glow {
    opacity: 1;
    transform: scale(1.1);
  }
  
  .profile-image {
    position: relative;
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
  }
  
  .profile-image:hover {
    border-color: rgba(168, 85, 247, 0.5);
  }
  
 
  .profile-info {
    text-align: center;
    margin-bottom: 1.5rem;
  }
  
  .profile-name {
    font-size: 1.875rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #a855f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .profile-username {
    color: #c084fc;
    font-weight: 500;
    margin-bottom: 0.75rem;
  }
  
  .profile-bio {
    color: #d1d5db;
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1rem;
  }
  
  .stats {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .stat {
    text-align: center;
  }
  
  .stat-number {
    font-size: 1.25rem;
    font-weight: bold;
    color: white;
  }
  
  .stat-label {
    font-size: 0.75rem;
    color: #9ca3af;
  }
  
  .meta-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
    color: #9ca3af;
    margin-bottom: 1.5rem;
  }
  
  .meta-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }
  
  .meta-icon {
    width: 0.75rem;
    height: 0.75rem;
  }
  
  .social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .social-link {
    width: 3rem;
    height: 3rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d1d5db;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
  }
  
  .social-link:hover {
    background: rgba(168, 85, 247, 0.2);
    border-color: rgba(168, 85, 247, 0.5);
    color: #c084fc;
    transform: scale(1.1);
  }
  
  .social-link:active {
    transform: scale(0.95);
  }
  
  .social-link svg {
    transition: transform 0.3s ease;
  }
  
  .social-link:hover svg {
    transform: scale(1.1);
  }
  
  .action-buttons {
    display: flex;
    gap: 0.75rem;
  }
  
  .btn {
    flex: 1;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
  }
  
  .btn-primary {
    background: linear-gradient(135deg, #a855f7, #ec4899);
    color: white;
  }
  
  .btn-primary:hover {
    box-shadow: 0 10px 25px -5px rgba(168, 85, 247, 0.25);
    transform: scale(1.05);
  }
  
  .btn-primary:active {
    transform: scale(0.95);
  }
  
  .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
  }
  
  .btn-secondary:active {
    transform: scale(0.95);
  }
  
  /* Responsive Design */
  @media (max-width: 640px) {
    .container {
      padding: 0.5rem;
    }
    
    .profile-card {
      padding: 1.5rem;
    }
    
    .stats {
      gap: 1rem;
    }
    
    .meta-info {
      flex-direction: column;
      gap: 0.5rem;
    }
    
    .social-links {
      gap: 0.75rem;
    }
    
    .action-buttons {
      flex-direction: column;
    }
  }
  