* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'DM Sans', sans-serif;
}

:root {
    --primary-gradient: linear-gradient(135deg, #6366f1, #a855f7, #ec4899);
    --bg-light: #f8fafc;
    --card-shadow: 0 20px 50px rgba(0,0,0,0.08);
    --text-dark: #0f172a;
    --text-muted: #64748b;
}

body {
    background-color: #e2e8f0;
    background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
    background-size: 24px 24px;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.card {
    background: white;
    width: 100%;
    max-width: 400px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    position: relative;
    text-align: center;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.banner {
    height: 160px;
    background-image: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1618005182384-a83a8bd57fbe?auto=format&fit=crop&w=600&h=300&q=80');
    background-size: cover;
    background-position: center;
    position: relative;
}

.live-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ef4444;
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(239, 68, 68, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

.profile-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin: -60px auto 20px;
}

.profile-pic {
    width: 100%;
    height: 100%;
    border-radius: 40px;
    border: 6px solid white;
    object-fit: cover;
    background: white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card:hover .profile-pic {
    transform: rotate(5deg) scale(1.05);
}

.status-indicator {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 24px;
    height: 24px;
    background: #22c55e;
    border: 4px solid white;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.info {
    padding: 0 30px;
}

h1 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 4px;
    letter-spacing: -0.5px;
}

.username {
    color: #a855f7;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 15px !important;
}

.bio {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 30px 20px;
    padding: 20px 0;
    background: var(--bg-light);
    border-radius: 24px;
}

.stat-box {
    display: flex;
    flex-direction: column;
}

.number {
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--text-dark);
}

.label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 4px;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 0 30px 35px;
}

.social-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 18px 10px;
    border-radius: 20px;
    background: var(--bg-light);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-dark);
    border: 1px solid rgba(0,0,0,0.02);
}

.social-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 20px rgba(0,0,0,0.05);
}

.social-item i {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.social-item span {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* Premium Social Colors */
.instagram:hover { color: #E1306C; background: #fff5f7; border-color: #ffdce4; }
.youtube:hover { color: #FF0000; background: #fff0f0; border-color: #ffd9d9; }
.twitter:hover { color: #1DA1F2; background: #f0f9ff; border-color: #d1edff; }
.tiktok:hover { color: #000000; background: #f1f5f9; border-color: #e2e8f0; }
.twitch:hover { color: #9146FF; background: #f5f3ff; border-color: #ddd6fe; }
.linkedin:hover { color: #0077b5; background: #f0f9ff; border-color: #d1edff; }

.follow-btn {
    width: calc(100% - 60px);
    margin: 0 auto 40px;
    display: block;
    padding: 18px;
    border: none;
    border-radius: 20px;
    background: var(--primary-gradient);
    color: white;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 25px rgba(168, 85, 247, 0.3);
}

.follow-btn:hover {
    transform: scale(1.02) translateY(-2px);
    box-shadow: 0 15px 30px rgba(168, 85, 247, 0.4);
}

