Загрузка...

UI-компонент: премиум карточка пользователя. Отображает статус, баланс, значок премиум-участника. Современный дизайн с градиентом и анимацией.
<div class="col-span-1 lg:col-span-3 bg-gradient-to-br rounded-3xl p-6 relative overflow-hidden shadow-lg flex flex-col justify-between opacity-0 from-neutral-100 via-neutral-200 to-neutral-300 text-black" style="animation: fadeInUp 0.8s ease-out 0.8s forwards; opacity: 0;">
<div class="absolute top-0 right-0 w-32 h-32 bg-gradient-to-br from-violet-500/20 to-purple-500/20 rounded-full blur-xl"></div>
<div class="relative z-10">
<div class="flex items-center justify-between mb-8">
<div class="flex items-center gap-3">
<img src="https://images.unsplash.com/photo-1503467913725-8484b65b0715?w=320&q=80" alt="Sarah Mitchell" class="w-10 h-10 rounded-full object-cover border-2 border-black/20">
<div>
<p class="text-sm font-medium font-geist">Sarah Mitchell</p>
<p class="text-xs text-neutral-700 font-geist">Premium Member</p>
</div>
</div>
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="w-4 h-4 fill-current text-yellow-600">
<path d="M11.525 2.295a.53.53 0 0 1 .95 0l2.31 4.679a2.123 2.123 0 0 0 1.595 1.16l5.166.756a.53.53 0 0 1 .294.904l-3.736 3.638a2.123 2.123 0 0 0-.611 1.878l.882 5.14a.53.53 0 0 1-.771.56l-4.618-2.428a2.122 2.122 0 0 0-1.973 0L6.396 21.01a.53.53 0 0 1-.77-.56l.881-5.139a2.122 2.122 0 0 0-.611-1.879L2.16 9.795a.53.53 0 0 1 .294-.906l5.165-.755a2.122 2.122 0 0 0 1.597-1.16z"></path>
</svg>
</div>
<div>
<p class="text-xs mb-2 text-neutral-700 font-geist">Available Balance</p>
<p class="text-3xl md:text-4xl tracking-tight font-jakarta font-medium">€12,935.00</p>
</div>
</div>
<div class="flex items-center justify-between text-xs relative z-10 text-neutral-700">
<span class="font-geist">Last activity: 2 min ago</span>
<div class="flex items-center gap-1">
<div class="w-2 h-2 rounded-full animate-pulse bg-emerald-600"></div>
<span class="font-geist">Online</span>
</div>
</div>
<style>
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
</style>
</div>