.profile-container {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 2rem;
        }

        .profile-wrapper {
            position: relative;
            width: 208px;
            height: 208px;
            border-radius: 24px;
            padding: 4px;
            background: linear-gradient(45deg, #6a0dad, #9d4edd, #c77dff, #8a2be2);
            background-size: 400% 400%;
            animation: gradientRotate 3s ease-in-out infinite;
            box-shadow: 
                0 10px 30px rgba(106, 13, 173, 0.3),
                0 0 20px rgba(157, 78, 221, 0.2);
            transition: all 0.3s ease;
        }

        .profile-image {
            width: 200px;
            height: 200px;
            border-radius: 20px;
            overflow: hidden;
            position: relative;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .profile-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.3s ease;
        }

        .profile-wrapper:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 
                0 20px 40px rgba(106, 13, 173, 0.4),
                0 0 30px rgba(157, 78, 221, 0.3);
            animation-duration: 1s;
        }

        .profile-wrapper:hover .profile-image img {
            transform: scale(1.1);
        }

        /* Effet de brillance qui traverse */
        .shine {
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: left 0.6s ease;
            border-radius: 20px;
            z-index: 2;
        }

        .profile-wrapper:hover .shine {
            left: 100%;
        }

        @keyframes gradientRotate {
            0% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
            100% {
                background-position: 0% 50%;
            }
        }